From 82dbe8cb063d1ff6e12a599a987a8f08150e98ae Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Fri, 19 Jul 2024 17:31:46 +0000 Subject: [PATCH 01/33] Reorganize code for MPAS dycore. Isolate FV3 and MPAS pieces. --- CMakeLists.txt | 24 ++++++++++++++++++++---- FV3 | 2 +- driver/UFSDriver.F90 | 11 +++++++++++ 3 files changed, 32 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e5fdd1e83a..f02f312a3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,8 @@ if(NOT (APP IN_LIST VALID_APPS)) endif() set(FMS OFF CACHE BOOL "Enable FMS") -set(FV3 OFF CACHE BOOL "Enable FV3") +set(FV3 OFF CACHE BOOL "Enable FV3 dycore") +set(MPAS OFF CACHE BOOL "Enable MPAS dycore") set(AQM OFF CACHE BOOL "Enable AQM") set(UFS_GOCART OFF CACHE BOOL "Enable GOCART") set(MOM6 OFF CACHE BOOL "Enable MOM6") @@ -41,7 +42,8 @@ include(cmake/configure_apps.cmake) message("") message("FMS .............. ${FMS}") -message("FV3 .............. ${FV3}") +message("FV3_dy ........... ${FV3}") +message("MPAS_dy .......... ${MPAS}") message("AQM .............. ${AQM}") message("GOCART ........... ${UFS_GOCART}") message("MOM6 ............. ${MOM6}") @@ -185,10 +187,18 @@ endif() ############################################################################### ### Atmosphere Components [FV3, MPAS?] +### DJS2024: There will be a generalized atmospheric component with multiple +### dycores, not multiple atmospheric components (one for each dycore). +### So, - rename the atmospheric component FV3 to UFSATM, then +### - if FV3 or MPAS, add_sudirectory(UFSATM) +### ############################################################################### if(FV3) add_subdirectory(FV3) endif() +if (MPAS) + add_subdirectory(FV3) +endif() ############################################################################### ### AQM @@ -296,9 +306,15 @@ if(STOCH_PHYS) endif() if(FV3) - add_dependencies(ufs fv3atm) + add_dependencies(ufs ufsatm) list(APPEND _ufs_defs_private FRONT_FV3=fv3atm_cap_mod) - list(APPEND _ufs_libs_public fv3atm) + list(APPEND _ufs_libs_public ufsatm) +endif() + +if(MPAS) + add_dependencies(ufs ufsatm) + list(APPEND _ufs_defs_private FRONT_MPAS=mpasatm_cap_mod) + list(APPEND _ufs_libs_public ufsatm) endif() if(MOM6) diff --git a/FV3 b/FV3 index 3581423f39..eb63f9fb2b 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 3581423f397e2eb0c1f0cd7f6b728593511278a9 +Subproject commit eb63f9fb2b2c59ae74055a262f447887a047fb99 diff --git a/driver/UFSDriver.F90 b/driver/UFSDriver.F90 index 53c51d818b..9ad721618d 100644 --- a/driver/UFSDriver.F90 +++ b/driver/UFSDriver.F90 @@ -48,6 +48,9 @@ MODULE UFSDriver #ifdef FRONT_FV3 use FRONT_FV3, only: FV3_SS => SetServices #endif +#ifdef FRONT_MPAS + use FRONT_MPAS, only: MPAS_SS => SetServices +#endif #ifdef FRONT_CDEPS_DATM use FRONT_CDEPS_DATM, only: DATM_SS => SetServices #endif @@ -363,6 +366,14 @@ subroutine SetModelServices(driver, rc) found_comp = .true. end if #endif +#ifdef FRONT_MPAS + if (trim(model) == "mpas") then + call NUOPC_DriverAddComp(driver, trim(prefix), MPAS_SS, & + info=info, petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif #if defined FRONT_CDEPS_DATM if (trim(model) == "datm" ) then !TODO: Remove bail code and pass info and SetVM to DriverAddComp From 4b3b5e37621b242b64cd12671be54c8cc24344b9 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Fri, 19 Jul 2024 17:32:18 +0000 Subject: [PATCH 02/33] Update submodules --- .gitmodules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 937184f7f2..f533ca3a2e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,7 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NCAR/fv3atm - branch = feature/mpas-dycore + url = https://github.com/dustinswales/fv3atm + branch = feature/mpas-dycore-reorg [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 From b01ced78506c3b52370831a14949b2cf67994f81 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Fri, 19 Jul 2024 19:43:44 +0000 Subject: [PATCH 03/33] Added more build step pieces, up until the MPAS dycore build --- CMakeLists.txt | 4 ++-- FV3 | 2 +- cmake/configure_apps.cmake | 5 ++++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f02f312a3e..3898c6fd18 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) ############################################################################### # Valid applications and choices -list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML LND S2S S2SA S2SW S2SWA S2SWAL ATM_DS2S ATM_DS2S-PCICE HAFS HAFSW HAFS-MOM6 HAFS-MOM6W HAFS-ALL NG-GODAS) +list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML ATMMPAS LND S2S S2SA S2SW S2SWA S2SWAL ATM_DS2S ATM_DS2S-PCICE HAFS HAFSW HAFS-MOM6 HAFS-MOM6W HAFS-ALL NG-GODAS) set(APP NONE CACHE BOOL "Application Name") if(NOT (APP IN_LIST VALID_APPS)) message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") @@ -157,7 +157,7 @@ if(FMS) elseif (APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|ATM_DS2S|ATM_DS2S-PCICE|NG-GODAS|HAFS-MOM6|HAFS-MOM6W)$") add_library(fms ALIAS FMS::fms_r8) endif() - if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|HAFS|HAFS-ALL)$") + if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|ATMMPAS|HAFS|HAFS-ALL)$") if(32BIT) add_library(fms ALIAS FMS::fms_r4) else() diff --git a/FV3 b/FV3 index eb63f9fb2b..1301e07acd 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit eb63f9fb2b2c59ae74055a262f447887a047fb99 +Subproject commit 1301e07acdbedc306e0c0ca96649c35c785ef44b diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index b6db3a5759..a61c3ff250 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -13,7 +13,7 @@ ############################################################################### ### Configure Application Components ############################################################################### -if(APP MATCHES "^(ATM|ATMW|ATMWM|ATMAQ|ATML)$") +if(APP MATCHES "^(ATM|ATMW|ATMWM|ATMAQ|ATML|ATMMPAS)$") set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) @@ -31,6 +31,9 @@ if(APP MATCHES "^(ATM|ATMW|ATMWM|ATMAQ|ATML)$") set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) message("Configuring UFS app in Atmosphere with Air Quality mode") + elseif(APP MATCHES "ATMMPAS") + set(MPAS ON CACHE BOOL "Enable MPAS dycore" FORCE) + message("Configuring UFS app in Atmosphere with MPAS dycore") else() message("Configuring UFS app in Atmosphere Only mode") endif() From c12760125ce7c5a85e8ced92d7f37c9ad6a59afe Mon Sep 17 00:00:00 2001 From: lisa-bengtsson <54411948+lisa-bengtsson@users.noreply.github.com> Date: Fri, 19 Jul 2024 19:27:11 -0600 Subject: [PATCH 04/33] HR4 and SFS baseline update: Improve convection/radiation interaction in the GFS physics suite (#2340) * ccpp-physics - update convection and PBL schemes to improve cloud/convection interaction * Output updraft value of convective cloud condensate in FV3 and CCPP * update xkinv1 to 0.15 * add check if progsigma is true --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_derecho.log | 634 ++++++-------- tests/logs/RegressionTests_gaea.log | 548 ++++++------ tests/logs/RegressionTests_hera.log | 752 +++++++++-------- tests/logs/RegressionTests_hercules.log | 797 ++++++++++-------- tests/logs/RegressionTests_jet.log | 486 +++++------ tests/logs/RegressionTests_orion.log | 642 ++++++-------- tests/logs/RegressionTests_wcoss2.log | 535 +++++------- tests/test_changes.list | 118 +++ 13 files changed, 2277 insertions(+), 2341 deletions(-) diff --git a/FV3 b/FV3 index 3581423f39..2527c11754 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 3581423f397e2eb0c1f0cd7f6b728593511278a9 +Subproject commit 2527c11754f1b8144dcbfb59952d0e06446a0166 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index fab229196b..e46a9938cf 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240624 +export BL_DATE=20240718 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index fa28320843..4cb0905397 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jul 17 03:56:39 UTC 2024 +Fri Jul 19 00:14:31 UTC 2024 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_618270/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 279.926730 - 0: The maximum resident set size (KB) = 1464436 + 0: The total amount of wall time = 276.279391 + 0: The maximum resident set size (KB) = 1452840 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_618270/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 981.451585 - 0: The maximum resident set size (KB) = 1435700 + 0: The total amount of wall time = 990.272278 + 0: The maximum resident set size (KB) = 1417316 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_618270/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 251.528579 - 0: The maximum resident set size (KB) = 1422160 + 0: The total amount of wall time = 246.988630 + 0: The maximum resident set size (KB) = 1434736 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_618270/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 247.727184 - 0: The maximum resident set size (KB) = 1422076 + 0: The total amount of wall time = 250.035763 + 0: The maximum resident set size (KB) = 1422624 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_618270/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 252.564799 - 0: The maximum resident set size (KB) = 1432092 + 0: The total amount of wall time = 245.869118 + 0: The maximum resident set size (KB) = 1433972 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_618270/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 248.590179 - 0: The maximum resident set size (KB) = 1429984 + 0: The total amount of wall time = 264.558137 + 0: The maximum resident set size (KB) = 1429592 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_618270/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 252.979968 - 0: The maximum resident set size (KB) = 1430948 + 0: The total amount of wall time = 246.179584 + 0: The maximum resident set size (KB) = 1432416 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 17 05:20:20 UTC 2024 -Elapsed time: 01h:23m:41s. Have a nice day! +Fri Jul 19 01:24:28 UTC 2024 +Elapsed time: 01h:09m:58s. 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 bff455551c..2746035280 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jul 17 02:51:07 UTC 2024 +Thu Jul 18 23:13:29 UTC 2024 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_425938/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1423363/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 = 1336.337850 - 0: The maximum resident set size (KB) = 1531400 + 0: The total amount of wall time = 1357.749216 + 0: The maximum resident set size (KB) = 1508564 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_425938/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1423363/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 = 560.046630 - 0: The maximum resident set size (KB) = 1537008 + 0: The total amount of wall time = 429.276836 + 0: The maximum resident set size (KB) = 1490048 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_425938/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1423363/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 = 424.689553 - 0: The maximum resident set size (KB) = 1524172 + 0: The total amount of wall time = 415.555946 + 0: The maximum resident set size (KB) = 1523724 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 17 03:56:38 UTC 2024 -Elapsed time: 01h:05m:32s. Have a nice day! +Fri Jul 19 00:14:30 UTC 2024 +Elapsed time: 01h:01m:02s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index e9c9358bc9..07bd280888 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Jul 17 00:17:07 UTC 2024 +Thu Jul 18 18:52:58 UTC 2024 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_2874969/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3107506/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.948093 - 0: The maximum resident set size (KB) = 773156 + 0: The total amount of wall time = 1502.224676 + 0: The maximum resident set size (KB) = 751036 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_2874969/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3107506/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 = 2254.792018 - 0: The maximum resident set size (KB) = 709916 + 0: The total amount of wall time = 2256.388361 + 0: The maximum resident set size (KB) = 711284 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_2874969/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3107506/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 = 2233.046743 - 0: The maximum resident set size (KB) = 722680 + 0: The total amount of wall time = 2204.842817 + 0: The maximum resident set size (KB) = 698332 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_2874969/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3107506/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 = 2245.932321 - 0: The maximum resident set size (KB) = 719656 + 0: The total amount of wall time = 2259.205585 + 0: The maximum resident set size (KB) = 704392 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 17 02:51:06 UTC 2024 -Elapsed time: 02h:33m:59s. Have a nice day! +Thu Jul 18 23:13:28 UTC 2024 +Elapsed time: 04h:20m:30s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 9227f176a0..30ac89ebae 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: -2f6d2791f9dbc985ef8aec444864bfe74923be57 +1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,371 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_72130 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_127189 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2swa_32bit_intel' [, ] -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_control_p8_mixedmode_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [09:07, 27:21] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:51, 15:09](1920 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:03, 16:58](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:29, 08:50](1067 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:01, 17:02](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [09:06, 26:44] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:37, 14:48](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [54:59, 14:39] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [06:59, 24:57] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:47, 06:41](3229 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:04, 07:07](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:08, 04:39](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:47, 06:36](3251 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:08, 04:29](3182 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:13, 06:26](3731 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:12, 06:46](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:00, 05:52](3543 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:06, 07:08](3235 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:40, 10:21](3815 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [21:12, 07:22](3626 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [45:40, 11:20](4526 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [34:31, 08:35](4665 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:03, 06:24](3213 MB) - -PASS -- COMPILE 's2sw_intel' [03:58, 22:14] ( 10 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:08, 05:27](1925 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:22, 05:40](1988 MB) - -PASS -- COMPILE 's2swa_debug_intel' [55:02, 14:39] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:18, 08:55](3298 MB) - -PASS -- COMPILE 's2sw_debug_intel' [54:01, 13:38] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 06:28](1962 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [59:03, 18:22] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:14, 05:34](1982 MB) - -PASS -- COMPILE 's2s_intel' [59:04, 18:11] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:40, 07:15](2945 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:35, 03:00](2948 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:53, 02:12](2341 MB) - -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2swa_faster_intel' [, ] -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_control_p8_faster_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [27:18, 25:12] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:33, 15:12](1931 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:56, 09:04](1111 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:34, 17:11](1900 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:21, 14:09] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:36, 24:13](1967 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:25, 17:35] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:09, 03:35](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:22, 02:35](1568 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:01, 02:40](1570 MB) -PASS -- TEST 'control_latlon_intel' [05:37, 02:34](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:32, 02:34](1575 MB) -PASS -- TEST 'control_c48_intel' [09:37, 06:18](1621 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:00, 05:20](736 MB) -PASS -- TEST 'control_c192_intel' [12:54, 08:50](1682 MB) -PASS -- TEST 'control_c384_intel' [20:39, 09:06](2004 MB) -PASS -- TEST 'control_c384gdas_intel' [24:36, 07:29](1205 MB) -PASS -- TEST 'control_stochy_intel' [03:47, 01:32](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:08, 00:58](441 MB) -PASS -- TEST 'control_lndp_intel' [04:46, 01:27](628 MB) -PASS -- TEST 'control_iovr4_intel' [06:08, 02:16](625 MB) -PASS -- TEST 'control_iovr5_intel' [05:18, 02:17](619 MB) -PASS -- TEST 'control_p8_intel' [07:10, 03:32](1868 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:23, 03:49](1871 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:11, 03:43](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [05:55, 02:27](1013 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:17, 03:49](1861 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:05, 02:37](1022 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:10, 03:45](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:04, 03:28](1950 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:53, 05:41](1862 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_p8_rrtmgp_intel' [, ]( MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_p8_mynn_intel' [, ]( MB) -PASS -- TEST 'merra2_thompson_intel' [07:25, 03:56](1867 MB) -PASS -- TEST 'regional_control_intel' [08:33, 05:42](874 MB) -PASS -- TEST 'regional_restart_intel' [06:14, 03:33](873 MB) -PASS -- TEST 'regional_decomp_intel' [07:29, 05:45](872 MB) -PASS -- TEST 'regional_noquilt_intel' [08:07, 05:22](1194 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:58, 05:31](880 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:25, 05:24](874 MB) -PASS -- TEST 'regional_wofs_intel' [08:28, 05:45](1606 MB) - -PASS -- COMPILE 'rrfs_intel' [16:19, 14:55] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:58, 06:19](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:47, 03:57](1193 MB) -PASS -- TEST 'rap_decomp_intel' [11:58, 06:29](1006 MB) -PASS -- TEST 'rap_2threads_intel' [11:58, 05:48](1094 MB) -PASS -- TEST 'rap_restart_intel' [06:52, 03:24](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:04, 06:14](1004 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:56, 06:34](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:47, 04:40](886 MB) -PASS -- TEST 'hrrr_control_intel' [09:01, 03:21](1006 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:00, 03:32](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:02, 02:58](1092 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:22, 01:55](836 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:06, 06:09](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 07:28](1968 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:14, 07:15](1954 MB) - -PASS -- COMPILE 'csawmg_intel' [15:21, 13:18] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:41, 07:02](965 MB) -PASS -- TEST 'control_ras_intel' [05:04, 03:00](656 MB) - -PASS -- COMPILE 'wam_intel' [14:22, 12:32] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:27, 10:08](1661 MB) - -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 'atm_faster_dyn32_intel' [, ] -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_p8_faster_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'regional_control_faster_intel' [, ]( MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:23, 14:53] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:37, 02:47](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:34, 02:44](1605 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:49, 02:58](808 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:56, 02:40](807 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:44, 05:01](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [04:58, 02:41](814 MB) -PASS -- TEST 'control_diag_debug_intel' [09:31, 02:43](1664 MB) -PASS -- TEST 'control_debug_p8_intel' [07:38, 03:50](1902 MB) -PASS -- TEST 'regional_debug_intel' [20:36, 17:40](941 MB) -PASS -- TEST 'rap_control_debug_intel' [07:30, 04:51](1193 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:15, 04:44](1185 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:48, 04:44](1190 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:48, 04:49](1191 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:06, 04:48](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:20, 05:07](1275 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:04, 04:56](1193 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:04, 05:06](1195 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:06, 04:49](1192 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:00, 04:51](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:57, 04:41](1191 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:47, 04:48](1192 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:18, 05:43](11889801190 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:34, 02:40](11834201188 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:55, 04:00](11990641197 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:47, 04:54](1194 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:52, 08:07](1198 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:21, 08:33] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:43, 12:24](1701 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:16, 12:31] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:52, 03:47](1057 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:55, 05:18](886 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:11, 02:57](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:50, 04:53](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:45, 02:37](942 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:45, 03:04](882 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:45, 04:05](797 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:13, 01:41](780 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:17, 16:41] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:57, 02:19](1087 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:53, 01:18](1087 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:45, 01:14](975 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 12:39] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:53, 03:45](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:58, 08:41] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:59, 04:40](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:16, 04:37](1069 MB) -PASS -- TEST 'conus13km_debug_intel' [19:22, 13:36](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:09, 13:50](840 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:22, 08:00](1156 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:40, 13:38](1220 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:20, 08:20] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:04, 04:42](1091 MB) - -PASS -- COMPILE 'hafsw_intel' [22:24, 20:21] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:27, 05:06](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:58, 05:51](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:38, 06:58](776 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:24, 11:39](792 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:36, 12:34](814 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:47, 04:54](474 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:31, 06:08](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:35, 02:33](394 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:27, 06:35](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:36](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:38, 03:23](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:12, 04:16](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:48, 01:26](427 MB) -PASS -- TEST 'gnv1_nested_intel' [10:09, 04:39](1723 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:24, 10:31] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:20, 12:38](624 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [32:28, 28:40] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:24, 07:33](633 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:17, 07:38](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [23:28, 21:36] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:00, 05:54](684 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:18, 18:10] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:41, 05:59](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:32, 05:58](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:41, 16:15](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:15, 10:27] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:08, 02:33](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:15, 01:39](754 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:00, 02:23](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:05, 02:28](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:11, 02:29](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:35](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:07, 02:28](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:06, 06:45](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:22, 06:39](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:25, 02:36](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:22, 04:08](2019 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:12](2018 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:19, 07:44] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:52, 05:14](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:15, 10:12] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:58, 02:35](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [07:24, 03:24] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:54, 02:14](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:47, 02:09](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:55, 01:01](452 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:18, 15:15] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:03, 05:09](1923 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:52, 13:53] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:52, 05:06](1912 MB) - -PASS -- COMPILE 'atml_intel' [18:23, 16:47] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:24, 09:26](1884 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:20, 09:30](1894 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:19, 04:55](1041 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:24, 11:37] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:20, 07:43](1933 MB) - -PASS -- COMPILE 'atmw_intel' [16:32, 15:25] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:45, 03:22](1887 MB) - -PASS -- COMPILE 'atmaero_intel' [15:31, 13:58] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:45, 05:26](3124 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 04:32](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:32, 04:47](3012 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:19, 09:15] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:37, 22:59](4543 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:24, 22:36] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:47, 05:32](3200 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:26, 24:42] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 14:35](1916 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 15:51](1953 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 07:58](1084 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:58, 16:44](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:26, 24:44] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:14, 14:28](1911 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:22, 12:46] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [23:24, 22:24] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:41, 06:13](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:05, 06:33](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:52, 04:06](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:49, 06:28](3253 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:58, 04:13](3185 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:41, 06:02](3730 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:41, 06:08](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:37, 05:21](3540 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:01, 06:22](3236 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:56, 09:42](3894 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:54, 06:42](3628 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:42, 10:45](4522 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:53, 07:19](4672 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:32, 06:06](3208 MB) + +PASS -- COMPILE 's2sw_intel' [21:24, 20:44] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:34, 04:54](1928 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:49, 05:06](1994 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:22, 12:44] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:22, 08:33](3302 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:22, 12:07] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:35, 05:55](1957 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:22, 16:29] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:08, 05:01](1991 MB) + +PASS -- COMPILE 's2s_intel' [17:22, 16:41] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:17, 06:53](2939 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:13, 02:31](2951 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:12, 01:37](2343 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:25, 26:56] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:27, 06:22](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:23, 23:12] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:59, 14:57](1941 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:28, 08:07](1115 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:44, 16:39](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:19, 11:44] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:32, 23:57](1969 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:22, 15:49] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:39, 03:27](673 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:10, 02:29](1573 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:34](1580 MB) +PASS -- TEST 'control_latlon_intel' [04:04, 02:29](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:12, 02:30](1574 MB) +PASS -- TEST 'control_c48_intel' [08:14, 06:05](1616 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:38, 05:17](735 MB) +PASS -- TEST 'control_c192_intel' [12:17, 08:45](1694 MB) +PASS -- TEST 'control_c384_intel' [16:06, 08:45](2006 MB) +PASS -- TEST 'control_c384gdas_intel' [15:27, 07:06](1202 MB) +PASS -- TEST 'control_stochy_intel' [02:32, 01:29](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:34, 00:53](443 MB) +PASS -- TEST 'control_lndp_intel' [02:29, 01:22](626 MB) +PASS -- TEST 'control_iovr4_intel' [03:35, 02:06](622 MB) +PASS -- TEST 'control_iovr5_intel' [03:40, 02:11](620 MB) +PASS -- TEST 'control_p8_intel' [05:29, 03:16](1864 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:13](1859 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:11](1864 MB) +PASS -- TEST 'control_restart_p8_intel' [04:25, 02:11](1017 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:49, 03:18](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 02:15](1018 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:37, 03:15](1861 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:34, 03:10](1954 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:28, 05:03](1863 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 04:08](1929 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:46, 03:23](1873 MB) +PASS -- TEST 'merra2_thompson_intel' [05:30, 03:38](1871 MB) +PASS -- TEST 'regional_control_intel' [06:53, 05:08](874 MB) +PASS -- TEST 'regional_restart_intel' [05:06, 03:13](870 MB) +PASS -- TEST 'regional_decomp_intel' [06:55, 05:17](873 MB) +PASS -- TEST 'regional_noquilt_intel' [06:52, 05:00](1187 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:51, 05:05](879 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:01, 05:12](882 MB) +PASS -- TEST 'regional_wofs_intel' [06:58, 05:42](1605 MB) + +PASS -- COMPILE 'rrfs_intel' [14:21, 13:24] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:29, 06:08](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:28, 03:43](1194 MB) +PASS -- TEST 'rap_decomp_intel' [08:29, 06:25](1009 MB) +PASS -- TEST 'rap_2threads_intel' [08:34, 05:41](1101 MB) +PASS -- TEST 'rap_restart_intel' [05:19, 03:17](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:37, 06:07](1004 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:23](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:10, 04:38](884 MB) +PASS -- TEST 'hrrr_control_intel' [05:09, 03:18](1004 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:09, 03:22](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:09, 02:50](1091 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:46, 01:45](839 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:37, 06:01](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:03, 07:27](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:05, 07:11](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [13:13, 11:49] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:14, 06:43](965 MB) +PASS -- TEST 'control_ras_intel' [04:40, 02:57](661 MB) + +PASS -- COMPILE 'wam_intel' [12:15, 11:23] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:36, 10:05](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:15, 17:48] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:35, 03:09](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [06:59, 05:00](871 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:14, 13:23] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:03, 02:32](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:04, 02:36](1602 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:41, 02:52](809 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:41](812 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:00, 04:37](1120 MB) +PASS -- TEST 'control_ras_debug_intel' [03:43, 02:39](816 MB) +PASS -- TEST 'control_diag_debug_intel' [04:51, 02:35](1664 MB) +PASS -- TEST 'control_debug_p8_intel' [05:01, 03:30](1903 MB) +PASS -- TEST 'regional_debug_intel' [19:01, 17:05](932 MB) +PASS -- TEST 'rap_control_debug_intel' [06:35, 04:47](1196 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:38, 04:34](1190 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:34, 04:40](1192 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:48](1197 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:39, 04:55](1197 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:40, 04:55](1277 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:40, 04:51](1196 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:37, 04:48](1197 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:43, 04:53](1197 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:42, 04:49](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:44, 04:35](1191 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:38, 04:42](1194 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:35, 07:33](1191 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:37, 04:40](1187 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:47, 05:33](1198 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:46, 04:44](1192 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:16, 07:59](1194 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:13, 07:27] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:05, 12:16](1703 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:19, 11:32] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:35, 03:34](1060 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:09, 05:11](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:12, 02:52](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:59, 04:47](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:16, 02:28](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 02:57](882 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:03, 03:56](793 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:42, 01:35](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 15:37] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:54, 01:55](1090 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:33, 01:00](1083 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:30, 01:12](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:20, 11:43] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:11, 03:39](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:19, 07:42] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:33](1070 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:36, 04:32](1068 MB) +PASS -- TEST 'conus13km_debug_intel' [15:45, 13:16](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:37, 13:26](837 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:01, 07:45](1152 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 13:25](1220 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:14, 07:28] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:37](1095 MB) + +PASS -- COMPILE 'hafsw_intel' [19:22, 18:48] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:34, 04:42](718 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:52, 05:16](1063 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:16, 06:33](775 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:24, 11:07](796 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:23, 12:13](815 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:29, 04:44](474 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:39, 05:51](493 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:07, 02:24](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:00, 06:12](461 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:12, 03:22](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:21, 03:07](515 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:24, 03:54](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:15](428 MB) +PASS -- TEST 'gnv1_nested_intel' [07:29, 04:10](1721 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:14, 08:51] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:19, 12:17](625 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [28:23, 27:28] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:40, 07:15](634 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:53, 07:20](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:22, 20:06] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:40, 05:32](678 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:24, 16:12] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:25, 05:40](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:37, 05:44](739 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:13, 16:15](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:19, 09:09] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:30, 02:31](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:50, 01:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:43, 02:22](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:43, 02:27](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:35, 02:25](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:45, 02:32](764 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:32](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:23](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:45, 05:41](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:29, 05:44](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:33](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:49, 03:57](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:51, 03:57](2025 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:21, 06:28] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:40, 05:11](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:21, 09:01] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:32, 02:31](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:19, 03:02] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:45, 01:19](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:15](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:48](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:22, 13:51] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:52, 04:02](1926 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:20, 12:47] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 03:45](1900 MB) + +PASS -- COMPILE 'atml_intel' [17:21, 15:55] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:40, 07:04](1884 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:42, 07:17](1883 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:00, 04:03](1029 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:20, 10:28] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:45, 06:12](1938 MB) + +PASS -- COMPILE 'atmw_intel' [15:19, 14:33] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:31, 02:15](1895 MB) + +PASS -- COMPILE 'atmaero_intel' [13:19, 12:46] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:56, 04:16](3126 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:21](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:22, 04:24](3008 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:17, 08:28] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:12, 21:53](4534 MB) SYNOPSIS: -Starting Date/Time: 20240717 17:53:45 -Ending Date/Time: 20240717 21:27:52 -Total Time: 03h:35m:49s -Compiles Completed: 38/41 -Tests Completed: 177/183 -Failed Compiles: -* COMPILE s2swa_32bit_intel: FAILED: UNABLE TO FINISH COMPILE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/compile_s2swa_32bit_intel.log -* COMPILE s2swa_faster_intel: FAILED: UNABLE TO FINISH COMPILE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/compile_s2swa_faster_intel.log -* COMPILE atm_faster_dyn32_intel: FAILED: UNABLE TO FINISH COMPILE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/compile_atm_faster_dyn32_intel.log -Failed Tests: -* TEST control_p8_rrtmgp_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/run_control_p8_rrtmgp_intel.log -* TEST control_p8_mynn_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/run_control_p8_mynn_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_5262 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [23:18, 22:52] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:10, 05:46](3205 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:40, 27:12] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:58, 06:29](3232 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [23:18, 18:03] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:25, 03:27](1868 MB) -PASS -- TEST 'regional_control_faster_intel' [06:47, 05:06](871 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:14, 15:46] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 04:33](1923 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:05, 03:32](1875 MB) - -SYNOPSIS: -Starting Date/Time: 20240718 07:21:40 -Ending Date/Time: 20240718 08:04:53 -Total Time: 00h:43m:33s -Compiles Completed: 4/4 -Tests Completed: 6/6 +Starting Date/Time: 20240719 10:21:56 +Ending Date/Time: 20240719 12:00:26 +Total Time: 01h:39m:41s +Compiles Completed: 41/41 +Tests Completed: 183/183 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index a935178f3f..e42e626032 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 +1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,285 +35,285 @@ 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-20240624 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_256117 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_218421 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [42:16, 41:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:57, 07:24](3196 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [43:17, 42:13] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:18, 13:47](1925 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:26, 15:07](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:06, 07:28](1078 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:37, 15:37](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [43:17, 42:13] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:53, 13:27](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [38:14, 38:09] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:25, 24:40](1949 MB) - -PASS -- COMPILE 's2swa_intel' [41:15, 40:51] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:57, 08:23](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:58, 08:22](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:18, 05:40](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:57, 08:13](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:18, 05:46](3181 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:54, 06:54](3461 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:17, 07:57](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:57, 07:18](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:58, 08:09](3226 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:51, 10:33](3446 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:21, 08:22](3608 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:19, 13:16](4207 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:46, 09:25](4357 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:37, 08:18](3207 MB) - -PASS -- COMPILE 's2sw_intel' [41:15, 40:17] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:26, 05:02](1938 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:17, 05:23](1995 MB) - -PASS -- COMPILE 's2swa_debug_intel' [38:12, 38:09] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:23, 10:34](3279 MB) - -PASS -- COMPILE 's2sw_debug_intel' [36:16, 35:46] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:34, 06:02](1957 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [38:14, 37:38] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:17, 05:14](1998 MB) - -PASS -- COMPILE 's2s_intel' [37:16, 36:14] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:33, 06:35](2925 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:03, 02:01](2930 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:28, 01:12](2326 MB) - -PASS -- COMPILE 's2swa_faster_intel' [44:15, 44:04] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:47, 08:07](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [39:16, 38:21] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:04, 15:16](1935 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:55, 07:27](1108 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:34, 17:47](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [32:16, 31:16] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:41, 27:20](1963 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [28:15, 27:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:50, 03:50](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:21, 03:04](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:22, 03:11](1569 MB) -PASS -- TEST 'control_latlon_intel' [05:39, 03:06](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:02, 03:10](1572 MB) -PASS -- TEST 'control_c48_intel' [10:46, 06:37](1600 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:26, 05:39](719 MB) -PASS -- TEST 'control_c192_intel' [12:23, 10:07](1682 MB) -PASS -- TEST 'control_c384_intel' [22:01, 18:24](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [19:48, 14:20](1178 MB) -PASS -- TEST 'control_stochy_intel' [04:15, 01:57](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:32, 01:00](426 MB) -PASS -- TEST 'control_lndp_intel' [04:05, 01:51](622 MB) -PASS -- TEST 'control_iovr4_intel' [05:17, 02:40](620 MB) -PASS -- TEST 'control_iovr5_intel' [04:45, 02:32](619 MB) -PASS -- TEST 'control_p8_intel' [06:48, 03:21](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:20, 03:22](1859 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:30, 03:21](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [05:18, 01:53](1013 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:19, 03:21](1858 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:29, 01:58](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:10, 03:26](1858 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:08, 02:55](1950 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:42, 05:28](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:42, 04:16](1919 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:20, 03:28](1867 MB) -PASS -- TEST 'merra2_thompson_intel' [07:23, 03:50](1865 MB) -PASS -- TEST 'regional_control_intel' [06:50, 04:43](859 MB) -PASS -- TEST 'regional_restart_intel' [04:59, 02:39](861 MB) -PASS -- TEST 'regional_decomp_intel' [07:51, 05:11](860 MB) -PASS -- TEST 'regional_2threads_intel' [05:57, 03:05](999 MB) -PASS -- TEST 'regional_noquilt_intel' [07:00, 04:38](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:10, 04:47](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:51, 04:46](858 MB) -PASS -- TEST 'regional_wofs_intel' [08:04, 06:05](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [27:12, 26:48] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:17, 06:58](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:43, 04:02](1187 MB) -PASS -- TEST 'rap_decomp_intel' [11:49, 07:10](1009 MB) -PASS -- TEST 'rap_2threads_intel' [11:17, 06:10](1096 MB) -PASS -- TEST 'rap_restart_intel' [07:20, 03:56](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:07, 07:02](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:48, 07:19](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:33, 04:57](880 MB) -PASS -- TEST 'hrrr_control_intel' [08:34, 03:51](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:34, 03:57](1005 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:34, 03:07](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:44, 02:04](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:08, 06:49](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:58, 08:12](1964 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:06, 07:59](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [25:16, 24:57] -PASS -- TEST 'control_csawmg_intel' [09:16, 06:41](964 MB) -PASS -- TEST 'control_ras_intel' [05:43, 03:24](657 MB) - -PASS -- COMPILE 'wam_intel' [25:17, 24:20] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:31, 11:39](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [34:14, 33:12] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:05, 03:16](1859 MB) -PASS -- TEST 'regional_control_faster_intel' [06:21, 04:49](857 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [27:21, 26:59] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:31, 03:16](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:58, 03:02](1590 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:00, 03:13](796 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:59](794 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:01, 04:41](1107 MB) -PASS -- TEST 'control_ras_debug_intel' [04:27, 02:56](803 MB) -PASS -- TEST 'control_diag_debug_intel' [04:59, 03:04](1659 MB) -PASS -- TEST 'control_debug_p8_intel' [05:54, 03:20](1890 MB) -PASS -- TEST 'regional_debug_intel' [18:43, 16:36](899 MB) -PASS -- TEST 'rap_control_debug_intel' [07:18, 05:18](1180 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:12](1174 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:27, 05:08](1178 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 05:06](1178 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:17, 05:12](1180 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:14](1263 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:28, 05:10](1182 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 05:15](1183 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:11, 05:06](1182 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:16, 05:05](1180 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:05, 05:00](1178 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:54, 05:09](1178 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:01](1178 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:46, 05:01](1173 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:35, 06:03](1186 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:47, 05:02](1180 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:50, 08:50](1182 MB) - -PASS -- COMPILE 'wam_debug_intel' [22:19, 21:10] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:45, 13:43](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:15, 25:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:59, 03:48](1047 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:21, 05:56](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:27, 03:28](880 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:21, 05:17](942 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:06, 02:43](935 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:25, 03:36](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:32, 04:12](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:39, 01:51](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [30:15, 30:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:52, 02:17](1096 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:32, 01:05](1076 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:04, 01:26](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [25:15, 24:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:34, 04:18](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [22:15, 21:23] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 04:58](1058 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:30, 05:09](1057 MB) -PASS -- TEST 'conus13km_debug_intel' [18:18, 14:27](1137 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:18, 14:18](817 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:40, 08:21](1124 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 14:17](1209 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [22:14, 21:13] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 05:18](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [35:16, 34:24] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:30, 05:18](703 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 04:33](1056 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:18, 07:43](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:47, 11:44](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:28, 12:56](800 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:12, 05:28](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:03, 06:58](494 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:03, 02:55](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:36, 08:22](447 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:20, 03:47](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:41, 03:33](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:20, 04:47](571 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:18, 01:45](403 MB) -PASS -- TEST 'gnv1_nested_intel' [12:11, 06:27](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [29:13, 28:17] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:59, 13:05](598 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [40:16, 39:20] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:13, 07:43](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:14, 07:47](787 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [36:16, 35:49] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:19, 06:02](784 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:12, 33:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:03, 06:17](737 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 06:20](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:13, 20:08](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [27:18, 26:13] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:33](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:37, 01:36](750 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:02, 02:26](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:26](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:23, 02:29](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 02:33](760 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 02:35](758 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:25](638 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:05, 06:06](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:05, 05:49](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:35](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:14, 04:40](2017 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:15, 04:40](2019 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [24:15, 23:25] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:39, 05:32](730 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [27:21, 26:11] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:35, 02:36](760 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [12:16, 11:59] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:49, 02:06](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:47, 01:42](455 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:48, 01:11](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [29:15, 28:50] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:49, 04:11](1925 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [26:15, 25:45] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:02, 04:17](1914 MB) - -PASS -- COMPILE 'atml_intel' [25:11, 24:27] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:03, 07:40](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:03, 07:43](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 04:03](1023 MB) - -PASS -- COMPILE 'atml_debug_intel' [21:12, 20:38] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:53, 06:37](1931 MB) - -PASS -- COMPILE 'atmw_intel' [21:16, 19:34] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:09, 02:21](1898 MB) - -PASS -- COMPILE 'atmaero_intel' [19:11, 18:16] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:41, 06:09](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:41, 06:37](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:16, 06:43](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [15:11, 15:07] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:06, 18:25](4445 MB) +PASS -- COMPILE 's2swa_32bit_intel' [53:17, 52:22] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:28, 07:23](3196 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:17, 53:56] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:50, 13:51](1925 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:51, 15:16](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:45, 06:57](1077 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:02, 15:12](1895 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:17, 53:40] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:26, 14:18](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [49:13, 48:18] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:49, 24:18](1951 MB) + +PASS -- COMPILE 's2swa_intel' [52:14, 51:26] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:09, 08:45](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:41, 08:20](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [14:39, 06:45](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:09, 08:41](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [14:39, 06:31](3180 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:49, 06:53](3466 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:08, 08:07](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:24, 07:25](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:41, 08:23](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:58, 10:34](3447 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [17:36, 07:57](3610 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:26, 13:09](4208 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:31, 09:24](4361 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [16:19, 08:22](3207 MB) + +PASS -- COMPILE 's2sw_intel' [51:17, 51:00] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:40, 05:23](1932 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:40, 05:52](1995 MB) + +PASS -- COMPILE 's2swa_debug_intel' [49:13, 48:29] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [18:39, 10:42](3278 MB) + +PASS -- COMPILE 's2sw_debug_intel' [43:17, 42:53] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:59, 06:33](1957 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [46:17, 45:29] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:57, 05:30](1998 MB) + +PASS -- COMPILE 's2s_intel' [45:17, 44:37] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:32, 06:36](2926 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [10:22, 02:09](2929 MB) +PASS -- TEST 'cpld_restart_c48_intel' [08:25, 01:11](2326 MB) + +PASS -- COMPILE 's2swa_faster_intel' [02:17, 01:35] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:07, 08:14](3227 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [55:23, 55:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:07, 15:37](1936 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:18, 08:25](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:10, 18:11](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [47:23, 46:10] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:33, 27:03](1960 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [40:13, 39:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:47, 04:05](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:46, 03:06](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:42, 03:35](1569 MB) +PASS -- TEST 'control_latlon_intel' [07:17, 03:34](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:27, 03:08](1571 MB) +PASS -- TEST 'control_c48_intel' [11:38, 06:32](1599 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 05:44](719 MB) +PASS -- TEST 'control_c192_intel' [13:53, 10:28](1684 MB) +PASS -- TEST 'control_c384_intel' [22:18, 18:36](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [20:49, 14:22](1181 MB) +PASS -- TEST 'control_stochy_intel' [04:44, 02:20](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:03, 01:22](425 MB) +PASS -- TEST 'control_lndp_intel' [03:36, 01:54](623 MB) +PASS -- TEST 'control_iovr4_intel' [05:29, 02:59](619 MB) +PASS -- TEST 'control_iovr5_intel' [05:50, 03:12](620 MB) +PASS -- TEST 'control_p8_intel' [09:03, 04:02](1860 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:35, 03:34](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:40, 03:47](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [06:41, 02:07](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:30, 03:32](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 02:02](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:29, 04:01](1861 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:34, 03:14](1950 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:19, 05:30](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:37, 04:25](1917 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:52, 03:37](1868 MB) +PASS -- TEST 'merra2_thompson_intel' [08:39, 03:46](1865 MB) +PASS -- TEST 'regional_control_intel' [07:38, 04:55](859 MB) +PASS -- TEST 'regional_restart_intel' [04:34, 02:38](861 MB) +PASS -- TEST 'regional_decomp_intel' [07:13, 05:00](861 MB) +PASS -- TEST 'regional_2threads_intel' [06:23, 03:11](997 MB) +PASS -- TEST 'regional_noquilt_intel' [07:19, 04:55](1179 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:29, 04:50](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:14, 05:07](859 MB) +PASS -- TEST 'regional_wofs_intel' [09:07, 06:35](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [36:16, 35:21] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [13:03, 06:55](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:51, 04:03](1190 MB) +PASS -- TEST 'rap_decomp_intel' [13:56, 07:13](1009 MB) +PASS -- TEST 'rap_2threads_intel' [13:03, 06:14](1095 MB) +PASS -- TEST 'rap_restart_intel' [07:55, 03:55](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:53, 06:52](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:58, 07:11](1007 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:57, 05:30](880 MB) +PASS -- TEST 'hrrr_control_intel' [08:27, 03:52](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:17, 03:57](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:55, 03:04](1085 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:58, 02:00](835 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:06, 07:13](1002 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:50, 08:06](1963 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:11, 07:59](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [34:13, 33:42] +PASS -- TEST 'control_csawmg_intel' [09:36, 06:48](964 MB) +PASS -- TEST 'control_ras_intel' [06:02, 03:31](657 MB) + +PASS -- COMPILE 'wam_intel' [35:21, 34:59] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:01, 11:59](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [41:16, 40:18] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:04, 03:41](1859 MB) +PASS -- TEST 'regional_control_faster_intel' [07:04, 04:58](859 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [39:19, 38:48] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:44, 03:08](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:18, 03:07](1590 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:03, 03:30](797 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:01, 02:59](793 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:50, 04:32](1106 MB) +PASS -- TEST 'control_ras_debug_intel' [05:10, 03:08](803 MB) +PASS -- TEST 'control_diag_debug_intel' [06:13, 03:16](1655 MB) +PASS -- TEST 'control_debug_p8_intel' [06:03, 03:22](1890 MB) +PASS -- TEST 'regional_debug_intel' [18:37, 16:12](900 MB) +PASS -- TEST 'rap_control_debug_intel' [06:15, 05:00](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:21, 05:12](1174 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:04, 05:02](1178 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:04, 05:01](1178 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:14, 05:03](1180 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:20, 05:36](1262 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:08, 05:13](1181 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:18, 05:21](1183 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:16, 05:09](1182 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:12, 05:05](1180 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:04, 05:02](1177 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:07, 05:11](1178 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:12, 08:02](1177 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:57](1173 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 06:06](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:38, 05:26](1180 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:52, 08:41](1183 MB) + +PASS -- COMPILE 'wam_debug_intel' [32:17, 31:24] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:35, 13:51](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [29:19, 28:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:34, 03:54](1045 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:51, 06:22](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:48, 03:52](880 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:15, 05:23](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:00, 02:59](934 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 03:48](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:46, 04:34](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:23, 01:57](763 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:15, 32:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:38, 02:17](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:36, 01:13](1080 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:40, 02:06](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [29:16, 28:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:37, 04:30](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [26:14, 25:41] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:16](1057 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:59](1057 MB) +PASS -- TEST 'conus13km_debug_intel' [18:03, 14:21](1137 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:03, 14:09](817 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:16, 08:23](1126 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:49, 14:20](1209 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [20:19, 19:40] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:36, 05:22](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [35:15, 35:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:32, 05:25](705 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:53, 04:36](1055 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:09, 07:33](757 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:15, 11:29](780 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:10, 12:44](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:15, 05:20](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:51, 06:56](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:13, 02:57](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:30, 08:01](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:23, 03:43](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:04, 03:32](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:07, 05:52](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:17, 01:43](403 MB) +PASS -- TEST 'gnv1_nested_intel' [11:24, 06:12](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [30:15, 29:40] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:47, 12:48](600 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [44:12, 43:48] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:49, 07:44](615 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:57, 07:49](788 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [33:12, 32:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:17, 06:32](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [30:15, 29:17] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:03, 06:14](738 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 06:13](727 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:13, 20:10](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [24:11, 24:03] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:05, 02:35](747 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:44, 01:34](750 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:05, 02:26](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:05, 02:28](636 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:53, 02:29](638 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:07, 02:34](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:05, 02:33](760 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:07, 02:25](640 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:00, 06:11](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:40, 06:00](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:55, 02:35](760 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:01, 04:39](2014 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:01, 04:40](2015 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [20:16, 19:48] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:01, 05:35](744 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [23:18, 22:45] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:43, 02:35](747 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [10:14, 09:33] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:25, 02:36](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:16, 01:38](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:14, 02:19](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:12, 26:00] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:35, 04:10](1924 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [24:19, 23:43] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:21](1913 MB) + +PASS -- COMPILE 'atml_intel' [25:12, 24:16] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:38, 07:01](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:38, 07:01](1894 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 03:55](1044 MB) + +PASS -- COMPILE 'atml_debug_intel' [20:11, 20:08] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:31, 06:45](1931 MB) + +PASS -- COMPILE 'atmw_intel' [22:11, 21:18] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:00, 02:21](1899 MB) + +PASS -- COMPILE 'atmaero_intel' [20:11, 19:19] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:21, 06:08](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:22, 06:46](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:16, 07:08](3016 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [15:17, 14:20] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:38, 18:23](4483 MB) SYNOPSIS: -Starting Date/Time: 20240716 17:46:49 -Ending Date/Time: 20240716 20:20:15 -Total Time: 02h:35m:37s +Starting Date/Time: 20240719 03:43:01 +Ending Date/Time: 20240719 06:38:43 +Total Time: 02h:56m:50s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 178360535f..71eb3baa5b 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -49f4d2924a6e9ac32d439c07a897d5732b6f49ef +1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -24,384 +24,384 @@ 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_2335013 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3156853 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:13, 13:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:24, 05:42](3326 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:15, 16:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:05, 17:28](1978 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:21, 18:11](2159 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:18, 08:19](1251 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 19:18](1853 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:14, 16:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:43, 17:09](1976 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:13, 05:10] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:59, 22:49](1936 MB) - -PASS -- COMPILE 's2swa_intel' [14:13, 13:42] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:18, 06:04](3340 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:28, 05:55](3351 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:22, 03:33](3257 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:17, 06:08](3372 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:24, 03:39](3291 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:15, 05:36](3631 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:15, 06:01](3343 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:17, 05:02](3221 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:26, 06:05](3348 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:10, 10:20](3529 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:59, 06:33](3632 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:47, 09:45](4346 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:46, 06:30](4396 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:20, 05:31](3342 MB) - -PASS -- COMPILE 's2sw_intel' [14:13, 13:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:10, 04:54](1997 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:17, 04:31](2052 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:13, 05:18] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:07, 08:47](3387 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:13, 04:57] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:59, 05:58](2004 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:13, 12:06] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:02, 04:22](2057 MB) - -PASS -- COMPILE 's2s_intel' [13:13, 12:10] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:44, 09:07](3106 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:43, 02:44](3096 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:36](2508 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:13, 17:30] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:18, 05:34](3359 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 16:07] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:08, 17:23](2016 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:19, 08:25](1278 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:08, 19:57](1926 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:03] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 25:20](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 12:06] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:25, 03:21](708 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:53](1607 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:55, 03:00](1601 MB) -PASS -- TEST 'control_latlon_intel' [03:42, 02:54](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:50, 02:56](1609 MB) -PASS -- TEST 'control_c48_intel' [08:48, 07:40](1757 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:31, 06:28](876 MB) -PASS -- TEST 'control_c192_intel' [12:05, 10:35](1765 MB) -PASS -- TEST 'control_c384_intel' [13:07, 10:24](2004 MB) -PASS -- TEST 'control_c384gdas_intel' [13:11, 08:04](1401 MB) -PASS -- TEST 'control_stochy_intel' [02:26, 01:39](656 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:28, 00:59](508 MB) -PASS -- TEST 'control_lndp_intel' [02:25, 01:32](667 MB) -PASS -- TEST 'control_iovr4_intel' [03:29, 02:29](659 MB) -PASS -- TEST 'control_iovr5_intel' [03:28, 02:29](659 MB) -PASS -- TEST 'control_p8_intel' [04:58, 03:10](1876 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:05, 03:07](1907 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 02:59](1901 MB) -PASS -- TEST 'control_restart_p8_intel' [02:52, 01:53](1137 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:57, 03:01](1889 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:07, 01:51](1155 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:52, 03:14](1883 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:50, 02:58](1989 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:24](1901 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:57, 04:08](1968 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:57, 03:09](1908 MB) -PASS -- TEST 'merra2_thompson_intel' [06:55, 03:33](1912 MB) -PASS -- TEST 'regional_control_intel' [08:40, 05:19](1101 MB) -PASS -- TEST 'regional_restart_intel' [03:40, 02:53](1096 MB) -PASS -- TEST 'regional_decomp_intel' [08:40, 05:49](1090 MB) -PASS -- TEST 'regional_2threads_intel' [06:43, 03:33](1092 MB) -PASS -- TEST 'regional_noquilt_intel' [07:43, 05:24](1397 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 05:23](1093 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:39, 05:27](1104 MB) -PASS -- TEST 'regional_wofs_intel' [08:39, 06:59](1918 MB) - -PASS -- COMPILE 'rrfs_intel' [11:12, 11:03] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:43, 07:44](1113 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:13, 04:14](1301 MB) -PASS -- TEST 'rap_decomp_intel' [09:43, 08:16](1032 MB) -PASS -- TEST 'rap_2threads_intel' [08:43, 07:18](1180 MB) -PASS -- TEST 'rap_restart_intel' [05:51, 04:09](1101 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:45, 07:42](1114 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:43, 08:09](1039 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:52, 05:58](1138 MB) -PASS -- TEST 'hrrr_control_intel' [05:45, 04:01](1047 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 04:08](1038 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:45, 03:39](1112 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:41, 02:10](994 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:51, 07:36](1096 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:36, 09:24](1997 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:35, 09:08](2048 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 10:39] -PASS -- TEST 'control_csawmg_intel' [07:42, 06:08](1023 MB) -PASS -- TEST 'control_ras_intel' [04:27, 03:18](757 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:12, 04:18] -PASS -- TEST 'control_csawmg_gnu' [09:37, 08:21](745 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 10:35] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:51, 10:48](1666 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 14:37] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:51, 02:46](1896 MB) -PASS -- TEST 'regional_control_faster_intel' [05:42, 04:52](1106 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:19] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:44, 02:37](1631 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:48, 02:41](1633 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:05](831 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:23, 02:51](835 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:25](1154 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:50](845 MB) -PASS -- TEST 'control_diag_debug_intel' [04:46, 02:52](1690 MB) -PASS -- TEST 'control_debug_p8_intel' [04:42, 02:58](1926 MB) -PASS -- TEST 'regional_debug_intel' [18:41, 17:52](1118 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 04:58](1222 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:49](1224 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 05:08](1215 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 04:57](1224 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 05:05](1224 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:16](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 05:00](1224 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 05:04](1221 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:26, 05:05](1225 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 05:01](1226 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:50](1221 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 05:09](1229 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:16](1222 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:26, 04:58](1219 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 06:00](1224 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:56](1219 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:44, 08:35](1224 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 05:03] -PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:23](733 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:12, 03:59] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:47, 13:27](1697 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 10:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:08, 03:57](1162 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:45, 06:25](1055 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 03:22](992 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:38, 06:03](1091 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:34, 03:09](962 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:36, 03:37](926 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:43, 04:52](1040 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 01:52](932 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 13:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:59, 02:07](1208 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:43, 00:57](1126 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:14](1121 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:17](973 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:56] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:52](1095 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 05:01](1101 MB) -PASS -- TEST 'conus13km_debug_intel' [15:55, 14:54](1255 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 14:30](909 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:14](1181 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:49, 14:39](1318 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 03:54] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 05:04](1144 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 12:19] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:15, 05:01](739 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:34, 05:47](1111 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:49](831 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:22, 13:38](866 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:38, 15:11](894 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:03, 05:25](506 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:24, 06:40](527 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:48, 02:40](382 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:13, 07:08](477 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:41](536 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:50, 03:30](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:03](591 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:10](407 MB) -PASS -- TEST 'gnv1_nested_intel' [06:35, 04:13](1745 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:29] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:56, 12:52](597 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:13, 16:29] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:03, 08:46](645 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:09, 08:55](745 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:34] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:06, 06:38](733 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:14, 11:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:41](841 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:20, 06:26](821 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:01, 16:01](1219 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:30] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 02:36](1154 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:38](1104 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:38](1026 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:38](1023 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:21, 02:38](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:42](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:39](1166 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:33](1022 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:26, 06:24](1072 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:26, 06:15](1054 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:43](1168 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 04:01](2491 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:52](2454 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:19] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 06:15](1051 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:13, 06:36] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:36](1172 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:15] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 00:49](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:49](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:31](326 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:12, 11:32] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:10, 03:51](1961 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:07] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:10, 03:39](1969 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 12:33] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:06, 04:25](1872 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:05, 04:27](1833 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:50, 02:23](1102 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 05:01] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:42](1902 MB) - -PASS -- COMPILE 'atmw_intel' [11:12, 11:07] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:57](1942 MB) - -PASS -- COMPILE 'atmaero_intel' [11:11, 11:07] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:05, 04:06](3187 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:01, 04:53](3105 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:45, 05:11](3099 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 04:01] ( 884 warnings 6 remarks ) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:19, 05:51](3320 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:54] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:08, 17:26](1986 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:22, 18:08](2162 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:19, 08:13](1237 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:02, 19:38](1872 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:32] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:47, 17:16](1984 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:13] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:13](1943 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 13:26] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:14, 05:56](3326 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:26, 06:05](3354 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:22, 03:38](3251 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:14, 05:58](3373 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:22, 03:37](3286 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:10, 05:34](3632 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:11, 06:05](3335 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:11, 04:48](3203 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:25, 05:55](3357 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:06, 10:20](3525 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:52, 06:36](3638 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:14, 09:34](4308 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:46, 06:14](4378 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:10, 05:25](3336 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 12:50] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:51](1994 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:04, 04:24](2020 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:12] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:02, 08:55](3399 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:49] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:09, 05:51](1990 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:59] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:32](2044 MB) + +PASS -- COMPILE 's2s_intel' [13:12, 11:58] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:47, 09:02](3106 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:46, 02:41](3095 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:41, 01:33](2515 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:13, 17:29] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:14, 05:36](3328 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 16:03] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:09, 17:50](2003 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:14, 08:18](1272 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:01, 19:53](1937 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:57] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:02, 25:05](1972 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:13, 11:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:37](702 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:41, 02:58](1588 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:46, 02:59](1607 MB) +PASS -- TEST 'control_latlon_intel' [04:37, 02:57](1598 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:43, 02:55](1598 MB) +PASS -- TEST 'control_c48_intel' [09:42, 07:29](1763 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 06:26](871 MB) +PASS -- TEST 'control_c192_intel' [11:56, 10:33](1761 MB) +PASS -- TEST 'control_c384_intel' [15:50, 10:30](2005 MB) +PASS -- TEST 'control_c384gdas_intel' [13:57, 07:53](1399 MB) +PASS -- TEST 'control_stochy_intel' [02:28, 01:39](658 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:28, 01:02](504 MB) +PASS -- TEST 'control_lndp_intel' [05:30, 01:33](661 MB) +PASS -- TEST 'control_iovr4_intel' [06:27, 02:27](657 MB) +PASS -- TEST 'control_iovr5_intel' [06:27, 02:27](659 MB) +PASS -- TEST 'control_p8_intel' [07:58, 03:12](1904 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:01, 03:14](1893 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 03:04](1905 MB) +PASS -- TEST 'control_restart_p8_intel' [04:48, 01:46](1129 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:48, 03:01](1899 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:52, 01:44](1164 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:47, 03:11](1882 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:45, 02:56](1981 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:43, 05:24](1877 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:52, 04:06](1961 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:56, 03:07](1905 MB) +PASS -- TEST 'merra2_thompson_intel' [08:53, 03:23](1907 MB) +PASS -- TEST 'regional_control_intel' [06:39, 05:22](1108 MB) +PASS -- TEST 'regional_restart_intel' [04:34, 02:54](1092 MB) +PASS -- TEST 'regional_decomp_intel' [10:36, 05:40](1093 MB) +PASS -- TEST 'regional_2threads_intel' [06:42, 03:31](1097 MB) +PASS -- TEST 'regional_noquilt_intel' [09:46, 05:19](1399 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:53, 05:27](1092 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:40, 05:27](1104 MB) +PASS -- TEST 'regional_wofs_intel' [10:40, 06:48](1920 MB) + +PASS -- COMPILE 'rrfs_intel' [12:15, 11:15] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:37, 07:46](1112 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:05, 04:10](1302 MB) +PASS -- TEST 'rap_decomp_intel' [11:38, 08:09](1043 MB) +PASS -- TEST 'rap_2threads_intel' [10:40, 07:18](1188 MB) +PASS -- TEST 'rap_restart_intel' [16:44, 04:01](1105 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:41, 07:45](1109 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:38, 08:09](1038 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [18:47, 05:50](1135 MB) +PASS -- TEST 'hrrr_control_intel' [06:39, 03:59](1046 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 04:06](1042 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 03:40](1115 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:27, 02:12](1003 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:49, 07:34](1103 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:17](1995 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:09](2049 MB) + +PASS -- COMPILE 'csawmg_intel' [11:14, 10:30] +PASS -- TEST 'control_csawmg_intel' [07:48, 06:14](1026 MB) +PASS -- TEST 'control_ras_intel' [05:26, 03:21](749 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:12, 04:25] +PASS -- TEST 'control_csawmg_gnu' [09:47, 08:24](762 MB) + +PASS -- COMPILE 'wam_intel' [11:14, 10:27] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:52, 10:57](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:16, 14:43] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:56, 02:45](1906 MB) +PASS -- TEST 'regional_control_faster_intel' [05:38, 04:52](1110 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:13, 06:19] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:47](1629 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:45](1628 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:07](838 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:28, 02:49](834 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:45, 04:28](1149 MB) +PASS -- TEST 'control_ras_debug_intel' [04:28, 02:51](840 MB) +PASS -- TEST 'control_diag_debug_intel' [08:54, 02:44](1689 MB) +PASS -- TEST 'control_debug_p8_intel' [08:50, 03:00](1930 MB) +PASS -- TEST 'regional_debug_intel' [24:46, 17:41](1112 MB) +PASS -- TEST 'rap_control_debug_intel' [06:27, 05:00](1222 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:30, 05:00](1219 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 05:03](1224 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 05:06](1226 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:27, 05:03](1219 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:11](1298 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 05:08](1220 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:15](1219 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 05:03](1218 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 04:55](1222 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:58](1216 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:24, 05:08](1229 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:25, 08:01](1218 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [17:25, 05:03](1224 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [18:27, 05:57](1223 MB) +PASS -- TEST 'rap_flake_debug_intel' [17:24, 05:07](1225 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:41, 08:24](1222 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:35] +PASS -- TEST 'control_csawmg_debug_gnu' [05:43, 02:24](723 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:03] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:46, 13:38](1694 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:13, 10:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:04, 03:52](1165 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [18:37, 06:25](1055 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:36, 03:26](988 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:41, 06:06](1091 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:32, 03:10](966 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [16:32, 03:34](931 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:44, 04:50](1033 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:53](930 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:13, 13:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [15:00, 02:06](1211 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:47, 00:52](1126 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:13](1118 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:13, 10:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:45, 04:09](983 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:12] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [17:27, 04:57](1099 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [17:24, 04:45](1103 MB) +PASS -- TEST 'conus13km_debug_intel' [26:53, 14:25](1261 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:47, 14:55](945 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [20:46, 08:21](1179 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:45, 14:50](1318 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:12, 03:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:25, 05:02](1145 MB) + +PASS -- COMPILE 'hafsw_intel' [14:12, 12:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [17:17, 05:07](738 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:31, 06:08](1106 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:31, 06:58](840 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:21, 13:34](871 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:48, 15:25](895 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:01, 05:30](505 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:27, 06:50](523 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:44, 02:39](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:08, 07:11](478 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:45, 03:52](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:52, 03:33](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:57, 04:06](591 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:17](407 MB) +PASS -- TEST 'gnv1_nested_intel' [06:35, 04:02](1734 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:29] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 12:55](592 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:13, 16:31] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:07, 08:46](663 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 08:46](752 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:14, 12:17] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:03, 06:30](741 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:12, 11:28] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:21, 06:30](830 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 06:34](823 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:34](1223 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:27] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:50](1161 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:37](1121 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:38](1021 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:41](1030 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 03:01](999 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:40](1167 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:40](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:34](1021 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:42, 06:31](1066 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:28, 06:09](1045 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:40](1152 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:59](2447 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:52](2442 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:18] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:22, 06:06](1076 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:12, 06:29] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:21, 02:39](1142 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:12, 01:02] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:32, 00:44](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:48](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:33](323 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:12, 11:17] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 03:44](1994 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:14, 10:57] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:11, 03:36](1968 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 12:27] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:10, 04:20](1868 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:07, 04:20](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:21](1105 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 05:00] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:08, 05:50](1908 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 11:29] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:48, 01:52](1933 MB) + +PASS -- COMPILE 'atmaero_intel' [13:12, 11:01] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:00, 04:08](3208 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:13, 04:50](3100 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:01, 05:03](3104 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:57] ( 884 warnings 6 remarks ) FAILED: TEST TIMED OUT -- TEST 'regional_atmaq_debug_intel' [, ]( MB) -PASS -- COMPILE 'atm_gnu' [06:11, 04:54] -PASS -- TEST 'control_c48_gnu' [12:41, 11:19](1535 MB) -PASS -- TEST 'control_stochy_gnu' [04:24, 03:21](500 MB) -PASS -- TEST 'control_ras_gnu' [05:23, 04:44](502 MB) -PASS -- TEST 'control_p8_gnu' [05:58, 04:50](1453 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:39](1460 MB) -PASS -- TEST 'control_flake_gnu' [11:24, 10:08](545 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:24] -PASS -- TEST 'rap_control_gnu' [11:36, 10:43](853 MB) -PASS -- TEST 'rap_decomp_gnu' [11:39, 11:02](818 MB) -PASS -- TEST 'rap_2threads_gnu' [10:38, 09:48](929 MB) -PASS -- TEST 'rap_restart_gnu' [07:44, 05:28](576 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:46, 10:49](816 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:39, 11:08](852 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:46, 08:10](582 MB) -PASS -- TEST 'hrrr_control_gnu' [06:35, 05:33](814 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 05:50](795 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:38, 05:00](926 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:36](843 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:30, 02:59](560 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:28, 02:49](657 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:47, 10:32](810 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:46] -PASS -- TEST 'control_diag_debug_gnu' [02:47, 01:36](1275 MB) -PASS -- TEST 'regional_debug_gnu' [11:40, 10:24](733 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:40](821 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:35](823 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:34](828 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:23, 02:36](825 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:39, 02:49](910 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:08](824 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:35](828 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:33](822 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:22, 01:35](494 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:44](451 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:42, 01:48](1441 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:27, 02:37](827 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 02:53](825 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:24](831 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:34] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:14] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:32, 09:24](711 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:33, 04:56](705 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:43, 08:27](752 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:44, 04:28](749 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:30, 05:04](703 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:38, 07:01](554 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:40, 02:35](535 MB) -PASS -- TEST 'conus13km_control_gnu' [04:55, 03:11](877 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:46, 06:13](882 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:50, 01:48](559 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:54] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:41, 05:40](727 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:32](721 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:25, 02:33](718 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:53, 06:55](896 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:49, 07:08](584 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:45, 07:46](895 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 07:02](963 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 07:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:26, 02:37](743 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:39] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:11] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:09, 07:13](1530 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:12, 03:20] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:12, 16:04] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:02, 20:27](1450 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 03:05] +PASS -- COMPILE 'atm_gnu' [05:11, 04:47] +PASS -- TEST 'control_c48_gnu' [11:40, 11:07](1536 MB) +PASS -- TEST 'control_stochy_gnu' [04:27, 03:26](502 MB) +PASS -- TEST 'control_ras_gnu' [05:22, 04:47](505 MB) +PASS -- TEST 'control_p8_gnu' [06:00, 04:52](1458 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:52, 04:43](1459 MB) +PASS -- TEST 'control_flake_gnu' [11:28, 10:21](544 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:13] +PASS -- TEST 'rap_control_gnu' [11:38, 10:45](811 MB) +PASS -- TEST 'rap_decomp_gnu' [11:35, 10:54](849 MB) +PASS -- TEST 'rap_2threads_gnu' [10:42, 09:52](937 MB) +PASS -- TEST 'rap_restart_gnu' [06:41, 05:24](578 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:38, 10:46](817 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:33, 11:00](850 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 07:58](579 MB) +PASS -- TEST 'hrrr_control_gnu' [06:34, 05:35](850 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:30, 05:37](800 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:39, 04:58](919 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:35, 05:36](846 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 02:54](564 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 02:48](654 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:33](811 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:30] +PASS -- TEST 'control_diag_debug_gnu' [03:01, 01:43](1275 MB) +PASS -- TEST 'regional_debug_gnu' [12:45, 12:06](727 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:35](823 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:35](826 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:39](825 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:28, 02:46](829 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:43, 02:47](906 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:22, 04:05](860 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:44](826 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:24, 02:37](814 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:22, 01:34](456 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:43](455 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:47](1441 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:23, 02:38](826 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:58](822 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:41, 04:19](833 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:33] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:07] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:18](712 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:40, 05:00](704 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:35](754 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 04:33](746 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 05:05](702 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:42, 07:04](555 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 02:32](541 MB) +PASS -- TEST 'conus13km_control_gnu' [05:00, 03:09](878 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:50, 06:01](878 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:48, 01:46](553 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 10:55] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:38, 05:40](728 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:37] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:29](712 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:22, 02:30](711 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:50, 07:02](892 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:44, 07:07](581 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:41, 07:42](895 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:42, 06:56](961 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 07:34] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:23, 02:37](745 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 16:29] + +PASS -- COMPILE 's2s_gnu' [18:12, 16:05] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:04, 07:14](1547 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [12:12, 03:17] + +PASS -- COMPILE 's2sw_pdlib_gnu' [26:13, 16:13] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [20:57, 19:38](1453 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:12, 03:09] FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB) -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:33] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:22, 02:57](692 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [26:17, 15:39] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 02:56](687 MB) SYNOPSIS: -Starting Date/Time: 20240716 15:26:34 -Ending Date/Time: 20240716 17:30:47 -Total Time: 02h:04m:46s +Starting Date/Time: 20240719 06:09:15 +Ending Date/Time: 20240719 08:28:29 +Total Time: 02h:19m:33s Compiles Completed: 57/57 Tests Completed: 243/245 Failed Tests: * TEST regional_atmaq_debug_intel: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_2335013/regional_atmaq_debug_intel/err +-- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3156853/regional_atmaq_debug_intel/err * TEST cpld_debug_pdlib_p8_gnu: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_2335013/cpld_debug_pdlib_p8_gnu/err +-- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3156853/cpld_debug_pdlib_p8_gnu/err NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -414,7 +414,7 @@ Result: FAILURE ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -49f4d2924a6e9ac32d439c07a897d5732b6f49ef +1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -422,7 +422,7 @@ Submodule hashes used in testing: 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -430,29 +430,31 @@ Submodule hashes used in testing: d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + NOTES: [Times](Memory) are at the end of each compile/test in format [MM:SS](Size). The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_3432358 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_270761 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW -PASS -- COMPILE 'atmaq_debug_intel' [21:15, 04:10] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21.51, 45:32](4455 MB) +PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:08] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [33:55, 25:33](4444 MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:12, 03:30] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [41:02, 16:47](1445 MB) +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:24] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:54, 13:00](1448 MB) SYNOPSIS: -Starting Date/Time: 20240716 20:11:10 -Ending Date/Time: 20240716 20:57:40 -Total Time: 00h:46m:36s +Starting Date/Time: 20240719 14:49:13 +Ending Date/Time: 20240719 15:29:43 +Total Time: 00h:40m:42s Compiles Completed: 2/2 Tests Completed: 2/2 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 8c11ab9059..ad7efc7a77 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: -a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 +64efdbc9603ff8a1dad35b3050a8bbdccc306e1f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,378 +35,443 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_962708 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_647280 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:12, 12:19] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:03, 08:44](2134 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:15] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:55, 14:05](2003 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:18, 15:15](2286 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:22, 07:32](1336 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:33, 15:34](1914 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:16, 18:31] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:27, 13:52](1996 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:14, 05:49] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:24, 21:03](1975 MB) - -PASS -- COMPILE 's2swa_intel' [11:22, 10:46] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:58, 07:53](2197 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:17, 08:11](2185 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:44, 05:38](1977 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:57, 07:48](2211 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:44, 05:20](1744 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:44, 10:27](2558 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:57, 07:33](2192 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:52, 06:35](2083 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:52, 07:39](2196 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:14, 17:37](2976 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:37, 07:37](2936 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:09, 10:13](3796 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:09, 06:49](3643 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:12, 04:54](2156 MB) - -PASS -- COMPILE 's2sw_intel' [12:12, 11:20] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:10, 07:54](2027 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:29, 04:36](2081 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:12, 06:54] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:48, 08:04](2218 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:45] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:26, 06:06](2051 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:15, 09:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:54, 04:17](2085 MB) - -PASS -- COMPILE 's2s_intel' [09:13, 09:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:57, 07:02](3106 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:48, 02:05](3085 MB) -PASS -- TEST 'cpld_restart_c48_intel' [09:36, 02:05](2513 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:21, 17:44] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:23, 08:32](2194 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:14, 15:39] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:53, 14:23](2051 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:10, 07:57](1364 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:35, 16:27](1960 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:48] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:09, 22:45](2021 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:16, 09:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:36, 02:50](707 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:51, 02:25](1608 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:28, 02:33](1636 MB) -PASS -- TEST 'control_latlon_intel' [06:21, 02:29](1606 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:11, 02:28](1610 MB) -PASS -- TEST 'control_c48_intel' [08:58, 07:19](1739 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:39, 05:47](862 MB) -PASS -- TEST 'control_c192_intel' [11:01, 08:56](1759 MB) -PASS -- TEST 'control_c384_intel' [13:28, 09:37](2038 MB) -PASS -- TEST 'control_c384gdas_intel' [14:27, 07:28](1526 MB) -PASS -- TEST 'control_stochy_intel' [06:07, 01:39](671 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:46, 00:51](540 MB) -PASS -- TEST 'control_lndp_intel' [07:21, 01:38](675 MB) -PASS -- TEST 'control_iovr4_intel' [06:59, 02:04](667 MB) -PASS -- TEST 'control_iovr5_intel' [06:58, 02:09](659 MB) -PASS -- TEST 'control_p8_intel' [10:58, 04:01](1913 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:24, 03:35](1907 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:58, 03:37](1908 MB) -PASS -- TEST 'control_restart_p8_intel' [08:12, 02:42](1163 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:49, 03:34](1894 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:17, 02:10](1222 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:29, 03:43](1896 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:35, 03:31](1999 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:14, 05:24](1915 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:56, 04:38](1981 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:46, 03:30](1913 MB) -PASS -- TEST 'merra2_thompson_intel' [12:42, 03:59](1913 MB) -PASS -- TEST 'regional_control_intel' [12:30, 05:37](1203 MB) -PASS -- TEST 'regional_restart_intel' [06:56, 03:29](1180 MB) -PASS -- TEST 'regional_decomp_intel' [12:54, 06:00](1201 MB) -PASS -- TEST 'regional_2threads_intel' [07:56, 04:26](1157 MB) -PASS -- TEST 'regional_noquilt_intel' [11:50, 06:02](1519 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:53, 05:34](1202 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [11:00, 05:43](1205 MB) -PASS -- TEST 'regional_wofs_intel' [10:55, 05:42](2077 MB) - -PASS -- COMPILE 'rrfs_intel' [08:21, 08:17] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [14:00, 06:59](1234 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:26, 03:45](1416 MB) -PASS -- TEST 'rap_decomp_intel' [16:27, 07:22](1150 MB) -PASS -- TEST 'rap_2threads_intel' [14:00, 06:32](1375 MB) -PASS -- TEST 'rap_restart_intel' [09:31, 03:40](1161 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:24, 06:57](1206 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:31, 07:27](1158 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:31, 05:19](1214 MB) -PASS -- TEST 'hrrr_control_intel' [11:20, 03:34](1072 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:59, 03:31](1041 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:45, 03:08](1127 MB) -PASS -- TEST 'hrrr_control_restart_intel' [08:41, 01:55](1026 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:34, 07:09](1196 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:21, 07:48](2006 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:23, 07:29](2193 MB) - -PASS -- COMPILE 'csawmg_intel' [08:15, 07:26] -PASS -- TEST 'control_csawmg_intel' [13:05, 06:42](1056 MB) -PASS -- TEST 'control_ras_intel' [09:44, 02:54](821 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:18, 04:43] -PASS -- TEST 'control_csawmg_gnu' [16:00, 07:39](1075 MB) - -PASS -- COMPILE 'wam_intel' [09:14, 07:23] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:04, 09:47](1672 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 13:32] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:09, 03:16](1908 MB) -PASS -- TEST 'regional_control_faster_intel' [10:06, 05:04](1204 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:16, 05:16] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:25, 02:20](1637 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:04, 02:11](1635 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:32, 02:45](839 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:38, 02:18](845 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:46, 04:26](1162 MB) -PASS -- TEST 'control_ras_debug_intel' [05:27, 02:20](859 MB) -PASS -- TEST 'control_diag_debug_intel' [06:51, 02:19](1700 MB) -PASS -- TEST 'control_debug_p8_intel' [06:56, 03:13](1938 MB) -PASS -- TEST 'regional_debug_intel' [17:52, 15:43](1163 MB) -PASS -- TEST 'rap_control_debug_intel' [05:34, 04:08](1229 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:45, 03:56](1223 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:47, 04:01](1235 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:37, 04:01](1230 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:03](1239 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:49, 04:27](1313 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:45, 04:09](1235 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 04:09](1249 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:26, 04:03](1242 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 04:07](1231 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:32, 03:56](1236 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:31, 04:11](1238 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:32, 06:38](1220 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:36, 03:58](1230 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 04:52](1231 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:29, 04:07](1235 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 07:02](1231 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:28, 04:45] -PASS -- TEST 'control_csawmg_debug_gnu' [06:00, 03:35](1060 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:15, 03:18] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:30, 07:32] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 03:33](1272 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:03, 05:21](1177 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:11, 02:51](1014 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:27, 05:03](1290 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:58, 03:19](1045 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:16, 03:05](997 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:28, 04:07](1117 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:46, 01:32](971 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:15, 12:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:12, 01:43](1298 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:03, 00:51](1208 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:46, 01:02](1155 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:13, 07:42] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:24, 03:44](1080 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:23, 03:20] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:40, 04:09](1103 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:59, 04:04](1110 MB) -PASS -- TEST 'conus13km_debug_intel' [13:59, 12:13](1374 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:43, 12:24](1003 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:41, 07:06](1262 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:05, 12:04](1419 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:37, 02:55] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:39, 04:16](1165 MB) - -PASS -- COMPILE 'hafsw_intel' [11:16, 09:48] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:30, 05:15](874 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 05:05](1271 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:58, 06:38](927 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:16, 14:39](999 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:30, 15:36](1160 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:32, 05:31](606 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:07, 07:12](620 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:00, 02:37](440 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:29, 07:45](546 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:55](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:53, 03:43](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:37, 05:02](679 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:05, 01:05](459 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:23, 04:12] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:40, 11:44](646 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:12, 15:46] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:45, 17:04](724 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:26, 16:35](854 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:15, 10:18] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:34, 10:19](831 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:17, 10:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:48, 05:42](943 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:32, 05:42](935 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:07, 16:30](1339 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:15, 07:22] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:35, 02:17](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:27, 01:21](1107 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:09](1006 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:10](1010 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:11](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:22, 02:16](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:26, 02:24](1141 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:26, 02:21](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:02, 05:06](1162 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:29, 04:52](1154 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:27, 02:24](1167 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:26, 03:27](2329 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:49, 03:38](2384 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:26, 02:50] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:15](1067 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:20, 06:46] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:28](1152 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:15, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:58, 00:51](340 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:53, 00:50](582 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:55, 00:33](569 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:19, 08:07] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:22, 04:35](2023 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:16, 07:14] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:03, 04:15](1985 MB) - -PASS -- COMPILE 'atml_intel' [14:14, 09:25] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:07, 06:42](1907 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:23, 06:59](1902 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 03:25](1148 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:14, 04:22] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:15, 06:18](1933 MB) - -PASS -- COMPILE 'atmw_intel' [12:14, 09:30] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:50, 02:57](1944 MB) - -PASS -- COMPILE 'atmaero_intel' [11:13, 08:42] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:38, 04:52](2033 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:48, 04:40](1807 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:17, 04:37](1828 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:17, 03:36] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:15, 17:38](4635 MB) - -PASS -- COMPILE 'atm_gnu' [12:24, 07:43] -PASS -- TEST 'control_c48_gnu' [12:48, 10:00](1575 MB) -PASS -- TEST 'control_stochy_gnu' [05:02, 03:09](733 MB) -PASS -- TEST 'control_ras_gnu' [05:35, 04:35](737 MB) -PASS -- TEST 'control_p8_gnu' [07:33, 05:17](1730 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:16, 04:56](1760 MB) -PASS -- TEST 'control_flake_gnu' [08:17, 05:20](812 MB) - -PASS -- COMPILE 'rrfs_gnu' [10:11, 07:14] -PASS -- TEST 'rap_control_gnu' [10:03, 08:05](1084 MB) -PASS -- TEST 'rap_decomp_gnu' [10:00, 08:16](1085 MB) -PASS -- TEST 'rap_2threads_gnu' [10:10, 07:36](1148 MB) -PASS -- TEST 'rap_restart_gnu' [05:36, 03:55](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:59, 08:51](1085 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:29, 08:24](1089 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:22, 05:45](885 MB) -PASS -- TEST 'hrrr_control_gnu' [07:30, 05:18](1074 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:15](1136 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:43, 04:14](1046 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:33, 04:17](1074 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:33, 02:22](881 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:47, 02:02](937 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:02, 08:10](1098 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [15:13, 12:10] -PASS -- TEST 'control_diag_debug_gnu' [02:59, 01:30](1631 MB) -PASS -- TEST 'regional_debug_gnu' [07:55, 06:55](1116 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:31, 02:25](1102 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:30, 02:07](1093 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:57, 02:26](1103 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:34, 02:29](1101 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:53, 02:03](1281 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:30, 03:43](1104 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:48, 01:59](1106 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:33, 04:17](1097 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:37, 01:15](728 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:23, 02:43](730 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:45, 01:23](1726 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:33, 01:59](1102 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:26, 02:08](1109 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:58, 03:16](1107 MB) - -PASS -- COMPILE 'wam_debug_gnu' [07:13, 05:32] -PASS -- TEST 'control_wam_debug_gnu' [07:48, 05:39](1575 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:12, 07:11] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:48, 07:14](963 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:15, 04:37](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:39, 06:45](971 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:56, 03:28](895 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:52, 03:50](966 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:46, 05:31](859 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:35, 02:05](858 MB) -PASS -- TEST 'conus13km_control_gnu' [04:39, 03:07](1269 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:12, 01:04](1174 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:50, 01:27](931 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [16:11, 15:24] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:01, 04:21](990 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [16:17, 11:59] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:42, 01:58](981 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:47, 02:27](973 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:04, 06:10](1286 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:36, 05:51](962 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:00, 03:58](1198 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:41, 05:45](1360 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:18, 12:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:08, 02:47](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [21:16, 20:20] - -PASS -- COMPILE 's2s_gnu' [18:20, 17:35] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:57, 05:37](3092 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [13:12, 11:39] - -PASS -- COMPILE 's2sw_pdlib_gnu' [22:13, 19:55] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:33, 26:05](3052 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [12:14, 09:20] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:20, 13:10](2914 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [20:11, 18:00] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:51, 03:01](766 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:29] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 07:35](2138 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:17] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:08, 13:15](2012 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:28, 14:21](2321 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:30, 06:30](1327 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:01, 15:09](1928 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:33, 14:12](1991 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:55] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:55, 22:01](1976 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 12:24] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:00, 08:04](2183 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:07, 08:22](2193 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:16, 04:18](1968 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:01, 08:19](2222 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:07, 04:26](1750 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:59, 10:04](2551 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:56, 07:45](2175 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:04, 06:57](2087 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:08, 08:37](2186 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:40, 15:56](2991 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:23, 06:44](2928 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [17:31, 10:13](3799 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:12, 06:49](3646 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:51, 05:07](2155 MB) + +PASS -- COMPILE 's2sw_intel' [12:11, 11:31] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:52, 07:16](2032 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:58, 04:07](2081 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:55] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:46, 08:21](2211 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:26] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:42, 05:53](2059 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:11, 10:42] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:50, 03:57](2081 MB) + +PASS -- COMPILE 's2s_intel' [09:11, 08:49] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:42, 07:06](3114 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:13](3074 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:42, 01:12](2512 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:11, 15:53] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:06, 07:21](2196 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:11, 14:32] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:05, 13:55](2043 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:05, 06:52](1400 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:55, 16:56](1973 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:59] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:48, 22:33](2016 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:30] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:20, 02:50](714 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:31, 02:24](1615 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:31](1622 MB) +PASS -- TEST 'control_latlon_intel' [03:28, 02:26](1617 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:27](1613 MB) +PASS -- TEST 'control_c48_intel' [07:33, 06:51](1739 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:23, 05:45](857 MB) +PASS -- TEST 'control_c192_intel' [09:41, 08:54](1775 MB) +PASS -- TEST 'control_c384_intel' [10:19, 08:56](2050 MB) +PASS -- TEST 'control_c384gdas_intel' [08:54, 07:08](1523 MB) +PASS -- TEST 'control_stochy_intel' [02:19, 01:23](671 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:36, 00:49](551 MB) +PASS -- TEST 'control_lndp_intel' [02:19, 01:18](674 MB) +PASS -- TEST 'control_iovr4_intel' [02:20, 02:05](661 MB) +PASS -- TEST 'control_iovr5_intel' [02:23, 02:04](662 MB) +PASS -- TEST 'control_p8_intel' [03:47, 02:54](1899 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:48, 02:51](1908 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:45, 02:35](1909 MB) +PASS -- TEST 'control_restart_p8_intel' [02:45, 01:30](1157 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:38, 02:39](1900 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:46, 01:29](1216 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:38, 03:12](1902 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:36, 02:40](1997 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:29, 05:01](1904 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 03:33](1984 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:47, 02:38](1918 MB) +PASS -- TEST 'merra2_thompson_intel' [03:53, 02:54](1919 MB) +PASS -- TEST 'regional_control_intel' [05:26, 04:39](1202 MB) +PASS -- TEST 'regional_restart_intel' [04:29, 03:12](1181 MB) +PASS -- TEST 'regional_decomp_intel' [05:23, 04:56](1189 MB) +PASS -- TEST 'regional_2threads_intel' [03:23, 03:01](1159 MB) +PASS -- TEST 'regional_noquilt_intel' [05:28, 04:26](1517 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:28, 04:37](1196 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 04:38](1209 MB) +PASS -- TEST 'regional_wofs_intel' [07:23, 06:23](2085 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 07:58] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:46, 06:58](1209 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 03:30](1405 MB) +PASS -- TEST 'rap_decomp_intel' [08:40, 07:12](1151 MB) +PASS -- TEST 'rap_2threads_intel' [07:32, 06:30](1376 MB) +PASS -- TEST 'rap_restart_intel' [04:58, 03:40](1141 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:48, 07:00](1206 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:36, 07:08](1152 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:01, 05:15](1221 MB) +PASS -- TEST 'hrrr_control_intel' [04:51, 03:28](1089 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:35, 03:31](1054 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:37, 03:09](1132 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:29, 01:49](1023 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:55, 06:46](1211 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:43](2011 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 07:28](2194 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 07:05] +PASS -- TEST 'control_csawmg_intel' [06:31, 05:37](1041 MB) +PASS -- TEST 'control_ras_intel' [03:17, 02:53](876 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 04:05] +PASS -- TEST 'control_csawmg_gnu' [07:39, 07:07](1070 MB) + +PASS -- COMPILE 'wam_intel' [08:11, 07:13] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:34, 11:24](1679 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 13:10] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:49, 02:47](1903 MB) +PASS -- TEST 'regional_control_faster_intel' [05:27, 04:54](1197 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 05:01] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:36, 02:10](1645 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:31, 02:09](1634 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:33](847 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:19, 02:16](841 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:27, 04:27](1166 MB) +PASS -- TEST 'control_ras_debug_intel' [03:19, 02:17](851 MB) +PASS -- TEST 'control_diag_debug_intel' [04:34, 02:22](1698 MB) +PASS -- TEST 'control_debug_p8_intel' [05:34, 03:32](1931 MB) +PASS -- TEST 'regional_debug_intel' [17:28, 15:36](1160 MB) +PASS -- TEST 'rap_control_debug_intel' [05:22, 04:04](1230 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:21, 04:01](1231 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:18, 04:08](1233 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:18, 04:07](1240 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 04:11](1233 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:29, 04:20](1321 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:18, 04:11](1236 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 04:17](1238 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:20, 04:15](1243 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 04:14](1234 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:09](1227 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 04:16](1240 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:52](1225 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 04:08](1230 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:20, 04:57](1238 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:18, 04:07](1241 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 07:09](1243 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:30] +PASS -- TEST 'control_csawmg_debug_gnu' [03:35, 02:45](1058 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 03:03] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 07:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 03:40](1273 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:34, 05:33](1136 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:08, 02:54](1020 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:45, 05:04](1295 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:51, 02:39](1048 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:46, 03:02](978 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:55, 04:06](1092 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:37, 01:35](973 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:12, 12:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:41, 01:51](1317 MB) +PASS -- TEST 'conus13km_2threads_intel' [09:39, 00:52](1210 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [09:37, 01:04](1156 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:33, 03:44](1098 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 02:56] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 04:09](1118 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:19, 03:57](1116 MB) +PASS -- TEST 'conus13km_debug_intel' [13:32, 12:23](1359 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:29, 12:22](1019 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:26, 07:09](1255 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:27, 12:05](1425 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 03:01] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:20, 04:03](1173 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 09:26] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:09, 05:24](839 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 05:17](1278 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:26, 06:52](961 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [24:14, 14:54](986 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:29, 15:11](1000 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:03, 05:33](608 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:25, 07:00](621 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [10:43, 02:38](437 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:04, 07:37](547 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:49, 04:00](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:50, 03:56](618 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 04:49](682 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:27, 01:09](456 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:24] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:45, 11:40](648 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:28] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:52, 17:06](765 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:53, 16:23](843 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 09:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:58, 10:14](824 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:10, 09:39] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:08, 05:41](957 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:08, 05:39](917 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:46, 16:39](1345 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:14] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:17, 02:11](1132 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:28](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:14, 02:06](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:09](1006 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:07](1011 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:12](1143 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:12](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:04](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:56, 04:57](1156 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:54, 04:50](1151 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:10](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:03](2385 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:16, 03:05](2372 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:57] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:18, 05:07](1071 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:36] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:14](1163 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:45] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:54](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:50](579 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:23, 00:29](588 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:12, 08:02] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:50, 03:54](2037 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:12, 07:42] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:48, 03:44](2009 MB) + +PASS -- COMPILE 'atml_intel' [09:10, 08:35] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:07, 06:22](1906 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:06, 06:39](1912 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:39, 03:03](1149 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:10, 03:59] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:53, 06:06](1938 MB) + +PASS -- COMPILE 'atmw_intel' [09:10, 09:07] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:45](1948 MB) + +PASS -- COMPILE 'atmaero_intel' [09:10, 07:39] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:45, 03:41](2030 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:15](1795 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:17](1838 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:12] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:29, 16:54](4561 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 04:42] +PASS -- TEST 'control_c48_gnu' [10:40, 09:25](1571 MB) +PASS -- TEST 'control_stochy_gnu' [03:23, 02:23](745 MB) +PASS -- TEST 'control_ras_gnu' [04:19, 03:47](739 MB) +PASS -- TEST 'control_p8_gnu' [05:48, 04:48](1709 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:35, 03:48](1732 MB) +PASS -- TEST 'control_flake_gnu' [05:19, 04:32](816 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:22] +PASS -- TEST 'rap_control_gnu' [08:34, 07:41](1089 MB) +PASS -- TEST 'rap_decomp_gnu' [08:46, 07:49](1089 MB) +PASS -- TEST 'rap_2threads_gnu' [07:46, 07:04](1122 MB) +PASS -- TEST 'rap_restart_gnu' [04:59, 03:57](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:49, 07:39](1087 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 08:02](1084 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:04, 05:46](885 MB) +PASS -- TEST 'hrrr_control_gnu' [04:49, 03:55](1074 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:38, 04:05](1135 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:32, 03:43](1024 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:31, 03:57](1074 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:23, 02:05](881 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:21, 02:00](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:52, 07:48](1086 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:38] +PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:16](1631 MB) +PASS -- TEST 'regional_debug_gnu' [08:25, 07:45](1118 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:17, 01:57](1105 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:19, 01:58](1094 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:16, 02:02](1106 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:08](1099 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:16](1275 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 03:11](1101 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 02:06](1111 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:17, 02:06](1098 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:15](729 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:21](733 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:36, 01:57](1757 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:06](1105 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:23](1105 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:53, 03:21](1108 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 03:19] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_gnu' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:38] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:32, 07:23](966 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:46, 03:54](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:43, 06:51](998 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:35, 03:33](873 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 03:56](952 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:58, 05:28](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:20, 02:00](858 MB) +PASS -- TEST 'conus13km_control_gnu' [03:41, 02:32](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:30, 01:01](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:33, 01:31](951 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:10, 11:28] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:30, 04:28](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 08:33] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:19, 02:04](979 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:19, 01:59](970 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:32, 05:32](1285 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:32, 05:49](969 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:28, 03:34](1191 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:28, 05:35](1361 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 08:38] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:16](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [16:10, 15:30] + +PASS -- COMPILE 's2s_gnu' [15:16, 14:31] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:06, 04:47](2722 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:47] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:15] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:00, 25:47](2873 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [08:10, 05:00] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:50, 12:14](2893 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [20:10, 17:29] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:20](762 MB) SYNOPSIS: -Starting Date/Time: 20240717 08:37:30 -Ending Date/Time: 20240717 10:30:01 -Total Time: 01h:53m:28s +Starting Date/Time: 20240719 09:01:22 +Ending Date/Time: 20240719 10:35:41 +Total Time: 01h:35m:03s Compiles Completed: 57/57 -Tests Completed: 244/244 +Tests Completed: 243/244 +Failed Tests: +* TEST control_wam_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2340/tests/logs/log_hercules/run_control_wam_debug_gnu.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERCULES REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +64efdbc9603ff8a1dad35b3050a8bbdccc306e1f + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_902260 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:36] +PASS -- TEST 'control_wam_debug_gnu' [10:32, 05:19](1576 MB) + +SYNOPSIS: +Starting Date/Time: 20240719 11:23:50 +Ending Date/Time: 20240719 11:37:33 +Total Time: 00h:13m:48s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index f915017cff..f04154312b 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 +1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,254 +35,254 @@ 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: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2732353 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3314321 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [42:17, 40:48] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:16, 08:54](2009 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:18, 48:21] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:36, 22:10](1890 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:19, 23:46](1980 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:57, 11:19](1112 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:32, 25:39](1842 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [00:21, 48:49] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:11, 21:06](1891 MB) - -PASS -- COMPILE 's2swa_intel' [43:17, 41:35] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:22, 09:18](2064 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:09, 09:20](2053 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:15, 05:34](1717 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:26, 09:20](2077 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:12, 05:53](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:21, 09:08](2310 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:35, 09:02](2038 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:58, 08:05](2001 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:46, 09:17](2057 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:35, 08:52](2035 MB) - -PASS -- COMPILE 's2sw_intel' [51:19, 39:50] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:33, 07:17](1906 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:13, 07:25](1958 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:12, 06:18] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:37, 11:26](2083 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:46] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:26, 08:14](1934 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:14, 34:35] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:48, 07:00](1977 MB) - -PASS -- COMPILE 's2s_intel' [35:16, 34:45] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:10, 12:59](3067 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:08, 04:13](3056 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:10, 02:25](2489 MB) - -PASS -- COMPILE 's2swa_faster_intel' [35:27, 34:32] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:09, 08:27](2043 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:18, 47:14] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:40, 22:44](1924 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [22:39, 11:33](1124 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:45, 25:08](1884 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:43] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:19, 33:06](1934 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:16, 37:35] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [08:40, 04:50](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [31:30, 04:11](1554 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [29:32, 04:42](1554 MB) -PASS -- TEST 'control_latlon_intel' [31:25, 04:09](1555 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:24, 04:17](1555 MB) -PASS -- TEST 'control_c48_intel' [13:31, 12:05](1732 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:56, 10:24](850 MB) -PASS -- TEST 'control_c192_intel' [38:40, 15:13](1686 MB) -PASS -- TEST 'control_c384_intel' [28:51, 19:05](1824 MB) -PASS -- TEST 'control_c384gdas_intel' [39:57, 14:04](1026 MB) -PASS -- TEST 'control_stochy_intel' [03:40, 02:28](606 MB) -PASS -- TEST 'control_stochy_restart_intel' [26:01, 01:29](438 MB) -PASS -- TEST 'control_lndp_intel' [03:40, 02:27](610 MB) -PASS -- TEST 'control_iovr4_intel' [04:37, 03:40](580 MB) -PASS -- TEST 'control_iovr5_intel' [04:37, 03:50](600 MB) -PASS -- TEST 'control_p8_intel' [32:59, 04:52](1843 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [33:13, 04:52](1845 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:11, 04:55](1844 MB) -PASS -- TEST 'control_restart_p8_intel' [04:15, 02:56](1058 MB) -PASS -- TEST 'control_noqr_p8_intel' [33:08, 05:05](1836 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:10, 02:46](1079 MB) -PASS -- TEST 'control_decomp_p8_intel' [33:50, 05:06](1840 MB) -PASS -- TEST 'control_2threads_p8_intel' [15:01, 05:37](1938 MB) -PASS -- TEST 'control_p8_lndp_intel' [32:29, 08:22](1849 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [31:07, 06:14](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [30:04, 05:24](1844 MB) -PASS -- TEST 'merra2_thompson_intel' [30:22, 05:53](1847 MB) -PASS -- TEST 'regional_control_intel' [10:11, 08:44](1013 MB) -PASS -- TEST 'regional_restart_intel' [06:48, 04:56](1017 MB) -PASS -- TEST 'regional_decomp_intel' [11:12, 09:08](1016 MB) -PASS -- TEST 'regional_2threads_intel' [08:12, 06:34](1002 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:21, 08:26](1019 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:11, 08:46](1012 MB) - -PASS -- COMPILE 'rrfs_intel' [35:19, 35:01] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [25:03, 10:20](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:20, 05:58](1214 MB) -PASS -- TEST 'rap_decomp_intel' [25:03, 10:54](976 MB) -PASS -- TEST 'rap_2threads_intel' [24:30, 10:00](1087 MB) -PASS -- TEST 'rap_restart_intel' [07:37, 05:36](996 MB) -PASS -- TEST 'rap_sfcdiff_intel' [25:13, 10:20](991 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [25:13, 10:57](982 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:39, 07:53](997 MB) -PASS -- TEST 'hrrr_control_intel' [20:16, 05:15](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [20:16, 05:32](986 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [20:16, 04:58](1059 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:33, 02:53](922 MB) -PASS -- TEST 'rrfs_v1beta_intel' [25:45, 10:14](986 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [25:40, 12:43](1948 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:38, 12:26](1940 MB) - -PASS -- COMPILE 'csawmg_intel' [32:19, 32:14] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [25:54, 09:03](962 MB) -PASS -- TEST 'control_ras_intel' [21:35, 04:51](664 MB) - -PASS -- COMPILE 'wam_intel' [33:17, 32:14] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [15:58, 14:37](1625 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [54:21, 53:07] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:41, 04:10](1846 MB) -PASS -- TEST 'regional_control_faster_intel' [08:48, 07:33](1014 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:13, 06:29] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:49, 03:27](1574 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 03:40](1570 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:23, 03:50](771 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:26, 03:26](776 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 05:58](1090 MB) -PASS -- TEST 'control_ras_debug_intel' [04:26, 03:40](783 MB) -PASS -- TEST 'control_diag_debug_intel' [04:52, 03:27](1632 MB) -PASS -- TEST 'control_debug_p8_intel' [08:56, 06:53](1872 MB) -PASS -- TEST 'regional_debug_intel' [23:48, 22:46](1042 MB) -PASS -- TEST 'rap_control_debug_intel' [07:32, 06:20](1161 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:32, 06:06](1163 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:31, 06:14](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:30, 06:17](1165 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:13](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:51, 06:37](1240 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 06:24](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 06:24](1163 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:30, 06:23](1166 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:15](1158 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:28, 06:13](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:30, 06:15](1163 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:31, 10:10](1166 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 06:10](1159 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 07:31](1169 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:14](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:33, 10:40](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [18:13, 04:47] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [20:12, 16:55](1646 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 30:24] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:15, 05:41](1074 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:07, 08:53](899 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:53, 22:42](867 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:07, 08:39](956 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:49, 04:17](916 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:10, 04:56](862 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 06:43](898 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:50, 02:37](847 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:16, 48:22] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:17, 03:08](1111 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:55, 01:27](1053 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:56, 01:42](1029 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:13, 30:59] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:58, 05:55](913 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 04:57] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 06:03](1044 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:33, 05:57](1041 MB) -PASS -- TEST 'conus13km_debug_intel' [20:09, 18:36](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:08, 18:41](873 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:03, 10:46](1098 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:03, 18:40](1225 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:48] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:12](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [38:16, 37:51] ( 1 warnings 1427 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:33, 07:21](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:42, 07:13](1082 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:44, 09:28](772 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [24:37, 16:44](799 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:51, 18:23](816 MB) -PASS -- TEST 'gnv1_nested_intel' [17:03, 07:20](1681 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:16, 33:26] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:31, 08:55](769 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:36, 08:56](754 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:31] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:42](1059 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:18](1033 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 03:46](922 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:27, 03:47](927 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:28, 03:42](921 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:28, 03:47](1056 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 03:47](1062 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:28, 03:42](927 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:52, 07:56](893 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:53, 07:49](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:25, 03:34](1065 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:28, 05:15](2400 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 05:07](2339 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:43] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 08:01](1010 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:13, 08:25] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:21, 03:42](1064 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:50] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [13:41, 02:14](232 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:31, 01:29](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 01:06](253 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:13, 33:56] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:27, 05:32](1906 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [33:19, 33:08] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:36, 05:11](1890 MB) - -PASS -- COMPILE 'atml_intel' [40:13, 37:16] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:04, 11:36](1857 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:01, 11:03](1866 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [20:04, 17:03](1072 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 05:55] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:44, 08:08](1884 MB) - -PASS -- COMPILE 'atmw_intel' [41:17, 34:35] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:01, 03:15](1843 MB) - -PASS -- COMPILE 'atmaero_intel' [34:14, 33:16] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:45, 07:10](1932 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:38, 07:34](1711 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:21, 07:38](1742 MB) +PASS -- COMPILE 's2swa_32bit_intel' [41:15, 40:51] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:43, 08:35](2017 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:17, 53:48] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:08, 21:41](1899 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:15, 23:18](2009 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:18, 11:39](1113 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:49, 23:16](1837 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [48:15, 47:00] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:44, 21:17](1892 MB) + +PASS -- COMPILE 's2swa_intel' [42:15, 41:02] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:21, 09:04](2056 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:42, 08:39](2047 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:53, 04:48](1713 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 08:49](2077 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:52, 05:06](1736 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:14, 08:30](2322 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:17, 09:05](2047 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:34, 07:44](2012 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:46, 09:09](2056 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:33, 08:48](2031 MB) + +PASS -- COMPILE 's2sw_intel' [39:14, 38:41] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:39, 07:34](1912 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:52, 07:54](1977 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:06] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:47, 11:02](2092 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:13, 05:36] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:29, 07:44](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:17, 34:33] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:41, 06:41](1972 MB) + +PASS -- COMPILE 's2s_intel' [36:17, 35:13] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:07, 12:36](3062 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:07, 03:55](3057 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:09, 02:28](2481 MB) + +PASS -- COMPILE 's2swa_faster_intel' [36:22, 34:12] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:23, 08:07](2054 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [54:20, 52:24] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:40, 21:42](1913 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:51, 11:23](1131 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:33, 25:08](1881 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:25] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:31, 33:26](1930 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:14, 37:51] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [05:38, 04:33](649 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 04:03](1551 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:18, 04:12](1555 MB) +PASS -- TEST 'control_latlon_intel' [05:10, 03:59](1548 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:19, 04:05](1548 MB) +PASS -- TEST 'control_c48_intel' [13:29, 11:47](1727 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:52, 10:16](848 MB) +PASS -- TEST 'control_c192_intel' [16:47, 14:19](1685 MB) +PASS -- TEST 'control_c384_intel' [20:36, 18:00](1822 MB) +PASS -- TEST 'control_c384gdas_intel' [17:57, 13:34](1020 MB) +PASS -- TEST 'control_stochy_intel' [03:33, 02:21](607 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:21](441 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 02:13](609 MB) +PASS -- TEST 'control_iovr4_intel' [04:36, 03:25](604 MB) +PASS -- TEST 'control_iovr5_intel' [04:36, 03:22](599 MB) +PASS -- TEST 'control_p8_intel' [06:34, 04:40](1845 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 04:43](1843 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:55, 04:30](1841 MB) +PASS -- TEST 'control_restart_p8_intel' [04:19, 02:39](1057 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:37, 04:41](1843 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:17, 02:48](1077 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:37, 04:48](1833 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:37, 04:38](1935 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:16, 07:52](1846 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 05:49](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:50, 04:45](1851 MB) +PASS -- TEST 'merra2_thompson_intel' [08:12, 05:09](1850 MB) +PASS -- TEST 'regional_control_intel' [09:08, 08:03](1016 MB) +PASS -- TEST 'regional_restart_intel' [05:47, 04:52](1024 MB) +PASS -- TEST 'regional_decomp_intel' [10:08, 08:27](1018 MB) +PASS -- TEST 'regional_2threads_intel' [07:09, 05:43](1006 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:15, 07:54](1019 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:07, 08:01](1011 MB) + +PASS -- COMPILE 'rrfs_intel' [36:14, 35:12] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [13:28, 10:13](993 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:35, 05:41](1221 MB) +PASS -- TEST 'rap_decomp_intel' [14:15, 10:37](987 MB) +PASS -- TEST 'rap_2threads_intel' [13:28, 09:41](1077 MB) +PASS -- TEST 'rap_restart_intel' [10:27, 06:00](997 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:12, 10:10](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:38, 10:47](990 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:17, 08:20](1007 MB) +PASS -- TEST 'hrrr_control_intel' [13:18, 05:15](989 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:45, 05:24](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:18, 04:48](1062 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:34, 03:51](916 MB) +PASS -- TEST 'rrfs_v1beta_intel' [16:52, 10:02](988 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:39, 12:18](1941 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:43, 12:16](1939 MB) + +PASS -- COMPILE 'csawmg_intel' [33:16, 32:19] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [15:55, 08:52](966 MB) +PASS -- TEST 'control_ras_intel' [10:32, 04:29](667 MB) + +PASS -- COMPILE 'wam_intel' [33:18, 32:25] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [17:03, 14:37](1620 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [53:18, 52:29] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:36, 04:15](1845 MB) +PASS -- TEST 'regional_control_faster_intel' [08:47, 07:09](1020 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:11] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:01, 03:26](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:05, 03:18](1576 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:55](776 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:35](781 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:59, 06:01](1099 MB) +PASS -- TEST 'control_ras_debug_intel' [04:33, 03:34](785 MB) +PASS -- TEST 'control_diag_debug_intel' [08:05, 03:26](1637 MB) +PASS -- TEST 'control_debug_p8_intel' [08:01, 04:16](1877 MB) +PASS -- TEST 'regional_debug_intel' [27:00, 23:08](1037 MB) +PASS -- TEST 'rap_control_debug_intel' [07:33, 06:16](1164 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:51, 06:07](1162 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:45, 06:12](1161 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:41, 06:14](1169 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:16](1166 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:00, 06:34](1245 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:27, 06:26](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 06:51](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:28, 06:13](1161 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:28, 06:10](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:31, 06:03](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:34, 06:21](1169 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:31, 10:10](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:30, 06:13](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:32, 07:32](1161 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:38, 06:13](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:47, 10:46](1173 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:43] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:08, 16:54](1651 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:17, 30:27] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:25, 05:17](1055 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:06, 08:19](907 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:11, 04:27](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:06, 07:59](949 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:11, 04:06](910 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:11, 04:40](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:10, 06:26](906 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 02:25](847 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [50:16, 49:06] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:09, 02:59](1109 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:52, 01:24](1047 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:52, 01:37](1025 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:17, 31:05] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:53, 05:41](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:28] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 06:11](1046 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 06:04](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [20:07, 18:41](1150 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:07, 18:45](883 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:01, 10:53](1101 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:01, 18:37](1223 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:33] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:18](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [39:17, 38:12] ( 1 warnings 1427 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [11:29, 09:19](692 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:44, 12:16](1083 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:47, 13:02](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:32, 17:18](800 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:52, 18:34](818 MB) +PASS -- TEST 'gnv1_nested_intel' [15:48, 13:04](1675 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:15, 33:34] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:26, 10:40](774 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:05, 10:59](749 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:21] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:49](1058 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:15](1030 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:27, 03:41](921 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:44](926 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:27, 03:48](919 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:27, 03:40](1063 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 03:45](1057 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 03:34](923 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:31, 08:16](886 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:33, 08:10](848 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 03:53](1061 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 05:19](2386 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 05:35](2346 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:52] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:27, 08:06](1007 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:39] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 03:38](1063 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:13, 01:50] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:34, 01:39](236 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:23](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:51](252 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:16, 33:38] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:55, 06:09](1915 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:17, 33:29] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:37, 05:41](1905 MB) + +PASS -- COMPILE 'atml_intel' [38:14, 37:25] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:49, 18:45](1861 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [20:46, 18:24](1856 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:52, 05:19](1073 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 05:44] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:54, 09:22](1887 MB) + +PASS -- COMPILE 'atmw_intel' [36:16, 35:28] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:36, 03:13](1866 MB) + +PASS -- COMPILE 'atmaero_intel' [34:19, 33:55] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:36, 06:04](1936 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:39, 06:32](1725 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:17, 06:37](1741 MB) SYNOPSIS: -Starting Date/Time: 20240716 21:47:09 -Ending Date/Time: 20240717 02:06:24 -Total Time: 04h:19m:54s +Starting Date/Time: 20240719 07:42:32 +Ending Date/Time: 20240719 11:45:08 +Total Time: 04h:03m:15s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index cc666b3552..24218707bd 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: -a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 +64efdbc9603ff8a1dad35b3050a8bbdccc306e1f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,379 +35,287 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3326160 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 17:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [28:52, 24:11](2085 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 21:33] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:38, 21:27](1964 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:55, 24:02](2136 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [16:43, 11:37](1210 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:25, 24:38](1877 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:13, 22:02] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:57, 21:59](1959 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:10, 10:13] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:23, 28:28](1943 MB) - -PASS -- COMPILE 's2swa_intel' [20:11, 19:22] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [27:07, 24:09](2145 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:37, 24:26](2132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [14:25, 10:50](1817 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [28:16, 25:05](2172 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:53, 11:20](1712 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [26:50, 23:45](2433 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [26:50, 23:59](2127 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [26:50, 23:42](2047 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [28:55, 24:03](2137 MB) -FAILED: TEST TIMED OUT -- TEST 'cpld_control_c192_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [30:00, 22:56](2736 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [40:36, 27:04](3657 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [43:23, 27:56](3505 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [22:58, 19:27](2110 MB) - -PASS -- COMPILE 's2sw_intel' [19:15, 18:11] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [27:40, 24:17](1981 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:47, 22:08](2047 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:10, 10:17] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [18:30, 14:59](2168 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 09:41] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:00, 09:14](2009 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:14, 16:00] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [21:29, 18:45](2049 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 15:33] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:47, 12:33](3103 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [10:09, 07:16](3079 MB) -PASS -- TEST 'cpld_restart_c48_intel' [08:21, 04:24](2517 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:19, 26:42] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [23:13, 19:55](2150 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:22, 21:42] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:36, 23:33](1999 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:22, 13:54](1254 MB) -FAILED: TEST TIMED OUT -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:13, 08:46] ( 1560 warnings 2000 remarks ) -FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:17, 15:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [10:39, 08:12](689 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:53, 06:49](1588 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:47, 06:45](1601 MB) -PASS -- TEST 'control_latlon_intel' [09:41, 06:12](1595 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:43, 07:17](1595 MB) -PASS -- TEST 'control_c48_intel' [13:58, 10:47](1744 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:43, 10:03](861 MB) -PASS -- TEST 'control_c192_intel' [20:36, 16:56](1735 MB) -PASS -- TEST 'control_c384_intel' [28:36, 22:20](2010 MB) -PASS -- TEST 'control_c384gdas_intel' [21:55, 16:51](1355 MB) -PASS -- TEST 'control_stochy_intel' [04:58, 03:11](646 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:32, 01:45](478 MB) -PASS -- TEST 'control_lndp_intel' [04:47, 03:09](646 MB) -PASS -- TEST 'control_iovr4_intel' [06:03, 04:54](638 MB) -PASS -- TEST 'control_iovr5_intel' [06:00, 05:09](644 MB) -PASS -- TEST 'control_p8_intel' [09:02, 06:16](1889 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:42, 06:02](1892 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:11, 06:21](1892 MB) -PASS -- TEST 'control_restart_p8_intel' [06:11, 03:36](1097 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:21, 05:14](1877 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:49, 02:58](1131 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:50, 05:03](1886 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:03, 05:26](1969 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:24, 09:20](1898 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:48, 06:15](1954 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:27, 05:17](1887 MB) -PASS -- TEST 'merra2_thompson_intel' [09:55, 06:11](1900 MB) -PASS -- TEST 'regional_control_intel' [14:23, 12:48](1088 MB) -PASS -- TEST 'regional_restart_intel' [09:14, 07:45](1084 MB) -PASS -- TEST 'regional_decomp_intel' [15:33, 13:59](1080 MB) -PASS -- TEST 'regional_2threads_intel' [13:21, 11:40](1082 MB) -PASS -- TEST 'regional_noquilt_intel' [13:31, 11:52](1386 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [15:15, 13:56](1093 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:59, 12:47](1086 MB) -PASS -- TEST 'regional_wofs_intel' [16:35, 14:50](1906 MB) - -PASS -- COMPILE 'rrfs_intel' [16:21, 15:11] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [15:57, 13:46](1059 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:41, 07:14](1305 MB) -PASS -- TEST 'rap_decomp_intel' [15:57, 13:44](1020 MB) -PASS -- TEST 'rap_2threads_intel' [15:24, 13:05](1165 MB) -PASS -- TEST 'rap_restart_intel' [12:37, 09:50](1048 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:19, 13:48](1063 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:23, 15:35](1026 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [19:12, 15:31](1076 MB) -PASS -- TEST 'hrrr_control_intel' [09:21, 06:34](1029 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:28, 06:46](1017 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:19, 06:58](1100 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:10, 03:55](955 MB) -PASS -- TEST 'rrfs_v1beta_intel' [16:10, 14:03](1049 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [19:06, 17:15](1987 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:52, 16:10](2030 MB) - -PASS -- COMPILE 'csawmg_intel' [14:12, 13:57] -PASS -- TEST 'control_csawmg_intel' [14:49, 12:39](1027 MB) -PASS -- TEST 'control_ras_intel' [08:49, 07:25](722 MB) - -PASS -- COMPILE 'wam_intel' [15:12, 14:42] ( 1 remarks ) -FAILED: TEST TIMED OUT -- TEST 'control_wam_intel' [, ]( MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:16, 20:47] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:17, 05:14](1886 MB) -FAILED: TEST TIMED OUT -- TEST 'regional_control_faster_intel' [, ]( MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:19, 12:12] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:57, 04:10](1624 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:44, 03:28](1619 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:49, 03:52](814 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:49, 03:32](823 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:23, 05:03](1139 MB) -PASS -- TEST 'control_ras_debug_intel' [04:47, 03:58](831 MB) -PASS -- TEST 'control_diag_debug_intel' [06:34, 04:09](1678 MB) -PASS -- TEST 'control_debug_p8_intel' [05:20, 03:52](1914 MB) -PASS -- TEST 'regional_debug_intel' [25:10, 23:11](1091 MB) -PASS -- TEST 'rap_control_debug_intel' [07:17, 05:59](1215 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:13, 06:06](1210 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:22, 06:24](1210 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:17, 06:11](1211 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:46, 06:02](1213 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:11, 07:44](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:48, 06:58](1211 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:50, 06:22](1216 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:27, 06:39](1213 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:50, 06:46](1206 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:29, 07:03](1211 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 07:00](1210 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:57, 10:37](1209 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:53, 06:46](1206 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:22, 07:42](1216 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:50, 06:58](1207 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:39, 10:27](1208 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:12, 07:53] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:13, 14:30](1692 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:12, 14:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:46, 11:17](1164 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:35, 21:16](1010 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:59, 10:26](930 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [27:53, 25:12](1078 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:05, 11:14](954 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:52, 10:16](906 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:38, 05:20](982 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:12, 09:20](876 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [21:12, 20:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:03, 05:48](1182 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:04, 04:42](1132 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:22, 05:04](1080 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:12, 13:35] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:27, 13:59](977 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:14, 06:57] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 06:15](1094 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:02, 05:35](1087 MB) -PASS -- TEST 'conus13km_debug_intel' [18:45, 16:13](1248 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:04, 18:18](943 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:09, 12:56](1176 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:06, 15:57](1311 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:12, 07:13] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:06, 06:25](1144 MB) - -PASS -- COMPILE 'hafsw_intel' [16:10, 15:27] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [23:29, 21:46](762 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [23:54, 22:12](1131 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:38, 23:11](834 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [30:40, 28:39](870 MB) -FAILED: TEST TIMED OUT -- TEST 'hafs_regional_atm_ocn_wav_intel' [, ]( MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:32, 22:31](512 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [25:54, 22:45](520 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [20:32, 18:22](384 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [25:04, 21:37](494 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [18:16, 17:11](538 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [17:56, 17:04](542 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [16:42, 13:03](599 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:04, 11:24](407 MB) -PASS -- TEST 'gnv1_nested_intel' [14:19, 10:09](1733 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:10, 08:28] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:33, 16:46](598 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:13, 24:08] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:58, 16:39](660 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:45, 17:20](741 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:12, 16:03] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:21, 13:41](725 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:13, 16:15] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [16:08, 12:13](837 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:39, 11:42](817 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:37, 17:44](1204 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:27] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:45, 06:20](1150 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:59](1109 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:42, 05:40](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:46, 05:30](1013 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:43, 05:14](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 04:01](1139 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 03:10](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:51](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:20, 06:40](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:21, 06:29](999 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:56](1150 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:22, 04:19](2382 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:21, 04:21](2439 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:13, 06:03] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:33](1062 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:13, 09:21] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 03:06](1143 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:35] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:35, 01:02](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 01:00](320 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:30, 00:36](320 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:48] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:18, 04:09](1976 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:14, 14:40] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:20, 04:04](1964 MB) - -PASS -- COMPILE 'atml_intel' [15:19, 15:05] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:53, 05:01](1875 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:43, 04:55](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:04, 02:57](1069 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:13, 08:50] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:40, 06:00](1909 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 13:22] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:36, 02:13](1918 MB) - -PASS -- COMPILE 'atmaero_intel' [17:11, 16:40] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:30, 04:37](1998 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:27, 05:20](1776 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:11, 05:25](1787 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:12, 08:29] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:13, 25:57](4555 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:23] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:45, 14:15](2096 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 21:28] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:44, 18:05](1957 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:22, 19:17](2139 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 09:05](1199 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:52, 20:21](1882 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:13, 22:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:38, 17:46](1954 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:37] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:45, 27:22](1940 MB) + +PASS -- COMPILE 's2swa_intel' [16:12, 15:55] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:41, 14:47](2147 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:43, 14:22](2147 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:47, 07:46](1809 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:41, 14:30](2156 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:48, 07:46](1709 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:35, 13:13](2434 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:35, 14:02](2128 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 12:59](2048 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:42, 14:22](2153 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:33, 16:15](2750 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:01, 08:43](2725 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:26, 11:27](3659 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:48, 07:18](3499 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:32, 05:51](2120 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 15:01] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:15, 13:39](1983 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:29, 04:43](2048 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 07:08] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:28, 08:34](2160 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:50] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:07, 06:15](2009 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:24] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:30, 04:38](2054 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 14:29] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:02, 09:51](3105 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:59, 03:19](3085 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:58, 02:14](2521 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:12, 23:12] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:34, 15:07](2133 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [30:13, 29:11] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:23, 18:09](2008 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:31, 09:09](1261 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:11, 20:21](1919 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 07:08] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:25, 28:42](1974 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 13:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:23, 03:39](688 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 03:04](1588 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:47, 03:14](1593 MB) +PASS -- TEST 'control_latlon_intel' [03:36, 03:04](1593 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:47, 03:08](1587 MB) +PASS -- TEST 'control_c48_intel' [09:48, 09:09](1743 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:35, 07:55](857 MB) +PASS -- TEST 'control_c192_intel' [12:56, 11:16](1728 MB) +PASS -- TEST 'control_c384_intel' [13:42, 12:08](2008 MB) +PASS -- TEST 'control_c384gdas_intel' [12:39, 09:24](1360 MB) +PASS -- TEST 'control_stochy_intel' [02:27, 01:47](645 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:40, 01:04](477 MB) +PASS -- TEST 'control_lndp_intel' [02:27, 01:40](649 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:42](643 MB) +PASS -- TEST 'control_iovr5_intel' [03:26, 02:39](642 MB) +PASS -- TEST 'control_p8_intel' [05:14, 03:26](1882 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:15, 03:31](1887 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 03:24](1886 MB) +PASS -- TEST 'control_restart_p8_intel' [03:16, 02:06](1094 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:11, 03:24](1875 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:16, 02:03](1118 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:10, 03:30](1868 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:10, 03:37](1979 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:46](1885 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:48](1955 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:32, 03:28](1891 MB) +PASS -- TEST 'merra2_thompson_intel' [05:35, 03:45](1894 MB) +PASS -- TEST 'regional_control_intel' [07:40, 06:21](1071 MB) +PASS -- TEST 'regional_restart_intel' [04:34, 03:29](1086 MB) +PASS -- TEST 'regional_decomp_intel' [07:39, 06:39](1088 MB) +PASS -- TEST 'regional_2threads_intel' [05:29, 04:37](1077 MB) +PASS -- TEST 'regional_noquilt_intel' [07:42, 06:23](1385 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:44, 06:17](1088 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 06:21](1094 MB) +PASS -- TEST 'regional_wofs_intel' [08:42, 07:32](1909 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 12:09] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:26, 08:16](1056 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:56, 05:04](1306 MB) +PASS -- TEST 'rap_decomp_intel' [10:09, 08:31](1025 MB) +PASS -- TEST 'rap_2threads_intel' [09:57, 08:16](1171 MB) +PASS -- TEST 'rap_restart_intel' [06:33, 04:18](1046 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:18, 08:12](1054 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:53, 08:26](1029 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:28, 06:10](1077 MB) +PASS -- TEST 'hrrr_control_intel' [05:55, 04:13](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:51, 04:20](1024 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:18, 04:04](1091 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:24, 02:23](947 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:22, 08:04](1048 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:44](1990 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:30, 09:23](2024 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:50] +PASS -- TEST 'control_csawmg_intel' [07:45, 06:27](1022 MB) +PASS -- TEST 'control_ras_intel' [04:27, 03:25](723 MB) + +PASS -- COMPILE 'wam_intel' [11:12, 10:58] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:45, 12:13](1668 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:13, 19:56] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:23, 03:13](1894 MB) +PASS -- TEST 'regional_control_faster_intel' [06:41, 06:03](1087 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:16] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:41](1620 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:36](1624 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:26, 03:00](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:49](821 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:44, 04:27](1140 MB) +PASS -- TEST 'control_ras_debug_intel' [03:26, 02:46](831 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 02:42](1677 MB) +PASS -- TEST 'control_debug_p8_intel' [03:50, 03:01](1923 MB) +PASS -- TEST 'regional_debug_intel' [18:46, 17:39](1113 MB) +PASS -- TEST 'rap_control_debug_intel' [05:29, 04:58](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:48](1211 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:29, 04:50](1218 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:29, 04:55](1211 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 04:54](1208 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:12](1299 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 05:13](1205 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 05:02](1210 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:21, 05:00](1212 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 05:09](1213 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:54](1206 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 05:05](1205 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 08:04](1211 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:27, 04:53](1206 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 06:03](1216 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:28, 04:58](1210 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:29](1217 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 05:28] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:47, 13:39](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 11:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 04:49](1166 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:04, 06:59](1001 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:31, 03:42](934 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:54, 07:08](1075 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:05, 03:35](949 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:43, 03:50](905 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:26, 05:13](980 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:45, 01:58](885 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:14, 18:50] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:50, 02:36](1173 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:10](1127 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:42, 01:28](1087 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:15, 11:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:39, 04:28](980 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:13] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:52](1096 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:43](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [14:54, 14:10](1239 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 14:25](946 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 08:31](1178 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 14:23](1315 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:13] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:53](1141 MB) + +PASS -- COMPILE 'hafsw_intel' [14:12, 13:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:17, 06:02](760 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 06:22](1134 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 07:37](832 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:12, 24:21](866 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:21, 28:49](890 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:02, 07:02](517 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:27, 08:24](526 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:57, 03:24](384 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:21, 09:31](492 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:42](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 04:26](544 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 05:45](595 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:30](408 MB) +PASS -- TEST 'gnv1_nested_intel' [07:13, 04:16](1732 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:15, 05:37] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:02, 13:17](594 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:15, 22:19] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:01, 12:58](674 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:03, 13:05](741 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:13, 14:17] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:04, 08:47](724 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:13, 13:33] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:19, 07:37](834 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:20, 07:25](819 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:01, 16:26](1202 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:12, 09:26] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:57](1145 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:52](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:53](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:52](1010 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:55](1017 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 03:04](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:59](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:50](1013 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:18, 06:30](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:18, 06:24](1004 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:19, 02:59](1142 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:21, 04:18](2437 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:21](2381 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:12, 05:15] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:33](1077 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 09:17] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 03:00](1149 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:32] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:36, 01:03](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 01:03](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:38](317 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:12, 12:20] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:05, 04:07](1968 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:53] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:18, 03:52](1963 MB) + +PASS -- COMPILE 'atml_intel' [14:12, 13:53] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:32, 04:47](1874 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:31, 04:49](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:57, 02:49](1087 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 06:25] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:29, 05:53](1900 MB) + +PASS -- COMPILE 'atmw_intel' [12:13, 12:08] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:31, 02:05](1918 MB) + +PASS -- COMPILE 'atmaero_intel' [12:12, 11:42] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:14, 04:33](1994 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:08, 05:11](1782 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:02, 05:19](1787 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 05:03] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:00, 21:02](4556 MB) SYNOPSIS: -Starting Date/Time: 20240717 08:36:40 -Ending Date/Time: 20240717 10:51:22 -Total Time: 02h:15m:24s +Starting Date/Time: 20240719 09:03:08 +Ending Date/Time: 20240719 10:34:12 +Total Time: 01h:32m:06s Compiles Completed: 41/41 -Tests Completed: 179/185 -Failed Tests: -* TEST cpld_control_c192_p8_intel: FAILED: TEST TIMED OUT --- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/cpld_control_c192_p8_intel/err -* TEST cpld_mpi_pdlib_p8_intel: FAILED: TEST TIMED OUT --- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/cpld_mpi_pdlib_p8_intel/err -* TEST cpld_debug_pdlib_p8_intel: FAILED: TEST TIMED OUT --- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/cpld_debug_pdlib_p8_intel/err -* TEST control_wam_intel: FAILED: TEST TIMED OUT --- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/control_wam_intel/err -* TEST regional_control_faster_intel: FAILED: TEST TIMED OUT --- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/regional_control_faster_intel/err -* TEST hafs_regional_atm_ocn_wav_intel: FAILED: TEST TIMED OUT --- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/hafs_regional_atm_ocn_wav_intel/err - -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 ORION REGRESSION TESTING LOG==== -====START OF ORION REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1454326 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_intel' [20:11, 19:12] ( 10 remarks ) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:16, 16:45](2716 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:12, 21:46] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:26, 19:12](2002 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:18, 20:38](1914 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 08:46] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:08, 29:00](1972 MB) - -PASS -- COMPILE 'wam_intel' [13:11, 12:46] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:44, 12:40](1665 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [22:12, 21:58] ( 1 remarks ) -PASS -- TEST 'regional_control_faster_intel' [07:45, 06:42](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [17:12, 16:12] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:45, 29:17](870 MB) - -SYNOPSIS: -Starting Date/Time: 20240717 12:40:54 -Ending Date/Time: 20240717 13:48:08 -Total Time: 01h:07m:27s -Compiles Completed: 6/6 -Tests Completed: 7/7 +Tests Completed: 185/185 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index a09f25969f..99ed895c99 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: -31eab834de3e8b497f0a2b397567e8517d16dd72 +64efdbc9603ff8a1dad35b3050a8bbdccc306e1f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b16) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (remotes/origin/develop-88-g3581423) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5269-g8103e21c) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,312 +35,241 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_155005 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_17359 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:42, 21:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [27:15, 01:32](3099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:37, 17:06] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [32:20, 01:45](1819 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:24, 01:41](1850 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:23, 02:19](981 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [32:21, 01:33](1799 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:29, 11:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [37:27, 01:08](1823 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:22, 04:45] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [44:35, 01:51](1843 MB) - -PASS -- COMPILE 's2swa_intel' [16:35, 16:19] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [33:21, 01:30](3132 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:21, 01:49](3130 MB) -PASS -- TEST 'cpld_restart_p8_intel' [25:11, 01:55](3065 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [33:21, 01:27](3150 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [25:11, 01:51](3085 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [33:21, 01:02](3367 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [33:21, 01:36](3128 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [33:22, 01:35](3075 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:21, 01:50](3131 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [33:30, 04:31](4127 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:21, 05:52](4270 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [33:21, 01:51](3114 MB) - -PASS -- COMPILE 's2sw_intel' [11:30, 11:01] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [38:26, 00:53](1835 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [38:26, 01:58](1898 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:29, 10:27] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [38:27, 01:59](1894 MB) - -PASS -- COMPILE 's2s_intel' [24:42, 23:55] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [25:12, 01:08](2920 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [25:00, 01:24](2926 MB) -PASS -- TEST 'cpld_restart_c48_intel' [20:53, 01:18](2325 MB) - -PASS -- COMPILE 's2swa_faster_intel' [37:00, 36:06] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:24, 02:15](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:40, 22:25] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:17, 01:00](1834 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:54, 01:43](1008 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [09:55, 01:37](1810 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [22:37, 21:59] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:34, 01:40](1857 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:24, 11:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [27:01, 00:20](571 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [27:02, 00:28](1470 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:01, 01:24](1473 MB) -PASS -- TEST 'control_latlon_intel' [27:01, 01:17](1478 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:02, 01:30](1472 MB) -PASS -- TEST 'control_c48_intel' [27:00, 00:54](1595 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [27:00, 00:51](713 MB) -PASS -- TEST 'control_c192_intel' [27:01, 00:34](1587 MB) -PASS -- TEST 'control_c384_intel' [27:06, 01:24](1904 MB) -PASS -- TEST 'control_c384gdas_intel' [27:05, 02:00](1089 MB) -PASS -- TEST 'control_stochy_intel' [27:02, 00:24](529 MB) -PASS -- TEST 'control_stochy_restart_intel' [24:34, 00:53](331 MB) -PASS -- TEST 'control_lndp_intel' [27:01, 00:28](524 MB) -PASS -- TEST 'control_iovr4_intel' [27:02, 00:46](525 MB) -PASS -- TEST 'control_iovr5_intel' [27:02, 00:46](522 MB) -PASS -- TEST 'control_p8_intel' [27:01, 01:53](1775 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [26:00, 01:49](1774 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [26:00, 01:52](1769 MB) -PASS -- TEST 'control_restart_p8_intel' [20:37, 00:41](919 MB) -PASS -- TEST 'control_noqr_p8_intel' [24:51, 01:27](1758 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [19:38, 00:53](910 MB) -PASS -- TEST 'control_decomp_p8_intel' [24:51, 01:27](1761 MB) -PASS -- TEST 'control_2threads_p8_intel' [24:35, 01:37](1870 MB) -PASS -- TEST 'control_p8_lndp_intel' [23:27, 01:10](1768 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [23:26, 01:59](1827 MB) -PASS -- TEST 'control_p8_mynn_intel' [23:14, 01:47](1774 MB) -PASS -- TEST 'merra2_thompson_intel' [22:32, 01:43](1776 MB) -PASS -- TEST 'regional_control_intel' [22:19, 00:14](852 MB) -PASS -- TEST 'regional_restart_intel' [16:37, 00:22](849 MB) -PASS -- TEST 'regional_decomp_intel' [22:09, 00:58](849 MB) -PASS -- TEST 'regional_2threads_intel' [22:07, 00:53](904 MB) -PASS -- TEST 'regional_noquilt_intel' [22:06, 00:19](1175 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [20:33, 00:23](851 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [20:32, 01:12](862 MB) -PASS -- TEST 'regional_wofs_intel' [20:17, 01:05](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [36:02, 35:30] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [02:22, 01:44](912 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [02:23, 01:30](1097 MB) -PASS -- TEST 'rap_decomp_intel' [02:22, 01:28](913 MB) -PASS -- TEST 'rap_2threads_intel' [02:22, 01:52](1004 MB) -PASS -- TEST 'rap_restart_intel' [53:11, 01:14](783 MB) -PASS -- TEST 'rap_sfcdiff_intel' [02:22, 02:12](912 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [02:22, 01:58](911 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [52:43, 01:42](780 MB) -PASS -- TEST 'hrrr_control_intel' [02:22, 01:07](904 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [02:22, 01:03](901 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [02:23, 01:29](983 MB) -PASS -- TEST 'hrrr_control_restart_intel' [57:09, 00:59](741 MB) -PASS -- TEST 'rrfs_v1beta_intel' [02:22, 01:19](901 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [02:22, 00:56](1869 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [02:22, 01:14](1855 MB) - -PASS -- COMPILE 'csawmg_intel' [27:50, 26:37] -PASS -- TEST 'control_csawmg_intel' [09:37, 00:26](872 MB) -PASS -- TEST 'control_ras_intel' [09:37, 01:05](564 MB) - -PASS -- COMPILE 'wam_intel' [11:26, 10:31] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [19:45, 00:56](1566 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:42, 20:51] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [10:38, 02:19](1769 MB) -PASS -- TEST 'regional_control_faster_intel' [10:37, 00:24](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:25, 09:46] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [16:51, 01:19](1496 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:51, 01:25](1501 MB) -PASS -- TEST 'control_stochy_debug_intel' [16:51, 00:46](707 MB) -PASS -- TEST 'control_lndp_debug_intel' [16:51, 01:04](704 MB) -PASS -- TEST 'control_csawmg_debug_intel' [16:51, 00:29](1017 MB) -PASS -- TEST 'control_ras_debug_intel' [16:51, 01:03](714 MB) -PASS -- TEST 'control_diag_debug_intel' [16:51, 01:12](1568 MB) -PASS -- TEST 'control_debug_p8_intel' [16:51, 00:52](1807 MB) -PASS -- TEST 'regional_debug_intel' [16:50, 00:23](893 MB) -PASS -- TEST 'rap_control_debug_intel' [16:51, 00:47](1088 MB) -PASS -- TEST 'hrrr_control_debug_intel' [16:51, 00:46](1081 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [16:51, 00:47](1083 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [16:51, 00:46](1088 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:42, 00:43](1089 MB) -PASS -- TEST 'rap_diag_debug_intel' [16:31, 00:38](1170 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:23, 00:37](1088 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:52, 00:40](1091 MB) -PASS -- TEST 'rap_lndp_debug_intel' [15:31, 00:46](1093 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:28, 00:45](1084 MB) -PASS -- TEST 'rap_noah_debug_intel' [14:48, 00:45](1084 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:53, 00:52](1086 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:01, 00:38](1086 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [12:20, 00:56](1084 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:20, 00:59](1093 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:20, 00:49](1094 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:06, 02:00](1094 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:24, 09:29] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [12:05, 01:18](1596 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:40, 18:24] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:23, 01:23](958 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:22, 01:10](792 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:22, 02:03](787 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:22, 01:37](855 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:23, 02:23](843 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:22, 01:54](787 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [01:02, 01:36](689 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:46, 00:23](672 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:36, 14:26] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:37, 01:10](1005 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:38, 00:51](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:37, 00:40](880 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:38, 16:19] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:17, 01:50](808 MB) - -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [, ] -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_control_debug_dyn32_phy32_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'conus13km_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'conus13km_debug_qr_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:31, 09:42] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 00:49](994 MB) - -PASS -- COMPILE 'hafsw_intel' [16:38, 16:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [00:13, 01:51](617 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [00:13, 00:51](971 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [00:11, 01:44](660 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [00:11, 01:17](698 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [00:12, 01:25](717 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:11, 01:03](391 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [00:12, 02:09](409 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [00:12, 01:42](287 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [59:51, 02:21](371 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:11, 01:28](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [58:43, 00:51](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [57:44, 00:48](501 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [57:11, 00:34](322 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [17:37, 16:56] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [55:22, 01:20](512 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:40, 18:54] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [51:00, 00:51](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [51:00, 01:39](713 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:33, 16:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [52:06, 00:51](709 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:37, 16:39] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [52:00, 02:15](662 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [52:00, 01:15](647 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [51:58, 00:27](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:34, 17:54] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [49:47, 01:42](1829 MB) - -PASS -- COMPILE 'atml_intel' [17:33, 16:32] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [05:23, 04:48] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [18:33, 17:54] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [43:49, 01:22](3024 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [43:49, 01:53](2905 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [43:49, 01:50](2925 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:27, 11:17] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [47:44, 01:15](4441 MB) +PASS -- COMPILE 's2swa_32bit_intel' [35:53, 35:11] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [54:55, 01:12](3098 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:40, 22:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [07:14, 01:46](1825 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [44:56, 01:51](1855 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [44:56, 01:27](971 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [07:15, 01:57](1802 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:39, 23:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [07:15, 01:11](1824 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:20, 04:40] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:36, 02:06](1848 MB) + +PASS -- COMPILE 's2swa_intel' [12:28, 11:35] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:27, 01:07](3133 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:27, 01:32](3131 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:07, 01:13](3063 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:26, 01:12](3150 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:06, 01:11](3085 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:27, 01:29](3371 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:26, 01:01](3124 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [18:28, 01:18](3079 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:27, 01:29](3132 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:35, 04:37](4122 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [46:02, 04:41](4267 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [18:27, 01:40](3113 MB) + +PASS -- COMPILE 's2sw_intel' [11:26, 11:01] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [19:28, 00:58](1836 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:28, 01:18](1898 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:26, 10:22] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:28, 01:19](1893 MB) + +PASS -- COMPILE 's2s_intel' [22:39, 22:04] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:14, 00:46](2926 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [08:14, 01:10](2920 MB) +PASS -- TEST 'cpld_restart_c48_intel' [00:04, 01:04](2325 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:38, 22:06] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:16, 01:57](3133 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:28, 11:31] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:27, 01:46](1834 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [59:59, 00:54](1011 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [00:00, 01:16](1810 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:30, 15:58] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [09:05, 01:45](1862 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [21:38, 20:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [57:48, 00:19](571 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [57:48, 01:18](1476 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [57:48, 01:23](1479 MB) +PASS -- TEST 'control_latlon_intel' [57:48, 01:00](1476 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [57:48, 01:10](1472 MB) +PASS -- TEST 'control_c48_intel' [57:47, 01:16](1592 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [57:47, 00:56](715 MB) +PASS -- TEST 'control_c192_intel' [57:48, 01:10](1584 MB) +PASS -- TEST 'control_c384_intel' [57:52, 01:49](1909 MB) +PASS -- TEST 'control_c384gdas_intel' [57:52, 02:37](1091 MB) +PASS -- TEST 'control_stochy_intel' [57:48, 00:23](531 MB) +PASS -- TEST 'control_stochy_restart_intel' [53:19, 00:57](333 MB) +PASS -- TEST 'control_lndp_intel' [57:48, 00:29](525 MB) +PASS -- TEST 'control_iovr4_intel' [57:48, 00:40](525 MB) +PASS -- TEST 'control_iovr5_intel' [57:48, 00:45](525 MB) +PASS -- TEST 'control_p8_intel' [57:48, 01:06](1768 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [57:48, 01:22](1764 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [57:48, 02:03](1769 MB) +PASS -- TEST 'control_restart_p8_intel' [51:18, 01:47](921 MB) +PASS -- TEST 'control_noqr_p8_intel' [55:56, 01:37](1767 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [49:37, 01:39](915 MB) +PASS -- TEST 'control_decomp_p8_intel' [55:26, 00:59](1760 MB) +PASS -- TEST 'control_2threads_p8_intel' [53:22, 01:05](1857 MB) +PASS -- TEST 'control_p8_lndp_intel' [53:20, 01:05](1769 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [52:16, 01:45](1833 MB) +PASS -- TEST 'control_p8_mynn_intel' [52:15, 01:29](1778 MB) +PASS -- TEST 'merra2_thompson_intel' [51:15, 01:41](1772 MB) +PASS -- TEST 'regional_control_intel' [50:59, 01:08](853 MB) +PASS -- TEST 'regional_restart_intel' [44:18, 00:25](853 MB) +PASS -- TEST 'regional_decomp_intel' [50:54, 00:50](857 MB) +PASS -- TEST 'regional_2threads_intel' [50:51, 00:50](909 MB) +PASS -- TEST 'regional_noquilt_intel' [50:49, 00:21](1181 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [50:12, 00:18](851 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [50:09, 01:14](853 MB) +PASS -- TEST 'regional_wofs_intel' [50:08, 00:32](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [33:52, 32:35] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [45:35, 01:31](911 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [45:36, 01:01](1088 MB) +PASS -- TEST 'rap_decomp_intel' [45:35, 01:17](911 MB) +PASS -- TEST 'rap_2threads_intel' [45:35, 01:42](999 MB) +PASS -- TEST 'rap_restart_intel' [36:27, 02:03](781 MB) +PASS -- TEST 'rap_sfcdiff_intel' [45:35, 01:57](909 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [45:35, 01:41](907 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [35:59, 01:45](781 MB) +PASS -- TEST 'hrrr_control_intel' [45:35, 01:11](902 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [45:35, 01:43](902 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [45:36, 01:36](984 MB) +PASS -- TEST 'hrrr_control_restart_intel' [40:12, 00:42](739 MB) +PASS -- TEST 'rrfs_v1beta_intel' [45:35, 02:00](907 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [45:35, 00:46](1872 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:32, 01:04](1858 MB) + +PASS -- COMPILE 'csawmg_intel' [18:34, 18:08] +PASS -- TEST 'control_csawmg_intel' [59:53, 01:08](876 MB) +PASS -- TEST 'control_ras_intel' [59:53, 01:01](563 MB) + +PASS -- COMPILE 'wam_intel' [13:28, 12:59] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [04:58, 00:42](1567 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:33, 13:28] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [49:57, 01:23](1769 MB) +PASS -- TEST 'regional_control_faster_intel' [49:45, 00:50](851 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [23:42, 18:16] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:34, 00:53](1504 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:24, 00:57](1500 MB) +PASS -- TEST 'control_stochy_debug_intel' [44:23, 00:34](706 MB) +PASS -- TEST 'control_lndp_debug_intel' [44:17, 00:37](702 MB) +PASS -- TEST 'control_csawmg_debug_intel' [43:26, 00:25](1016 MB) +PASS -- TEST 'control_ras_debug_intel' [43:23, 01:02](713 MB) +PASS -- TEST 'control_diag_debug_intel' [43:06, 01:09](1564 MB) +PASS -- TEST 'control_debug_p8_intel' [42:59, 00:51](1799 MB) +PASS -- TEST 'regional_debug_intel' [42:56, 00:16](904 MB) +PASS -- TEST 'rap_control_debug_intel' [42:24, 00:53](1088 MB) +PASS -- TEST 'hrrr_control_debug_intel' [41:49, 00:37](1086 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [41:45, 00:28](1088 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [40:23, 00:43](1093 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [40:12, 00:44](1085 MB) +PASS -- TEST 'rap_diag_debug_intel' [39:51, 01:10](1169 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [39:50, 01:08](1092 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [39:36, 00:53](1093 MB) +PASS -- TEST 'rap_lndp_debug_intel' [39:30, 00:43](1091 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [39:29, 00:40](1090 MB) +PASS -- TEST 'rap_noah_debug_intel' [39:24, 00:32](1082 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [38:53, 00:52](1089 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [38:18, 01:04](1086 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [38:16, 00:26](1082 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [37:37, 00:44](1097 MB) +PASS -- TEST 'rap_flake_debug_intel' [37:16, 00:43](1092 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [37:14, 01:48](1095 MB) + +PASS -- COMPILE 'wam_debug_intel' [24:43, 19:06] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [36:53, 01:03](1595 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [40:04, 35:34] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:01, 01:10](954 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:53, 01:10](789 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:23, 01:44](787 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:16, 01:28](853 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [26:12, 01:40](838 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:41, 01:57](790 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:34, 01:15](687 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:16, 00:48](671 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [28:50, 23:52] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [36:41, 00:57](1005 MB) +PASS -- TEST 'conus13km_2threads_intel' [32:21, 00:51](1009 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [32:20, 00:41](880 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:33, 12:29] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [48:57, 01:09](812 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [19:56, 19:01] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [33:31, 00:25](961 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [33:27, 00:33](955 MB) +PASS -- TEST 'conus13km_debug_intel' [32:14, 01:26](1052 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [32:07, 01:04](726 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [31:59, 01:02](1054 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [31:59, 01:01](1121 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [18:35, 15:25] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [36:26, 00:44](997 MB) + +PASS -- COMPILE 'hafsw_intel' [11:29, 10:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [36:05, 01:59](617 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [36:02, 01:05](965 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [35:58, 02:00](661 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [35:57, 01:48](696 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [35:37, 02:27](713 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [35:15, 01:05](391 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [35:15, 02:26](408 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [33:57, 00:51](287 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [31:58, 02:54](373 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:29, 01:24](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [31:24, 00:53](422 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:51, 01:25](498 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [29:57, 00:28](315 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:32, 08:29] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:58, 01:30](517 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:56, 19:47] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:26, 01:32](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:32, 01:19](716 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 10:42] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:56, 00:58](714 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:25, 09:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [29:39, 02:15](657 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:37, 01:54](644 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:54, 00:14](882 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:29, 13:51] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [25:12, 01:00](1829 MB) + +PASS -- COMPILE 'atml_intel' [20:36, 19:46] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [14:31, 13:23] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [17:50, 15:58] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [21:22, 01:13](3023 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [21:22, 01:39](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [21:22, 01:13](2921 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:21, 06:25] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:10, 01:51](4439 MB) SYNOPSIS: -Starting Date/Time: 20240717 16:09:47 -Ending Date/Time: 20240717 17:38:50 -Total Time: 01h:29m:40s -Compiles Completed: 32/33 -Tests Completed: 150/156 -Failed Compiles: -* COMPILE rrfs_dyn32_phy32_debug_intel: FAILED: UNABLE TO FINISH COMPILE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_wcoss2/compile_rrfs_dyn32_phy32_debug_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF WCOSS2 REGRESSION TESTING LOG==== -====START OF WCOSS2 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -31eab834de3e8b497f0a2b397567e8517d16dd72 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b16) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (remotes/origin/develop-88-g3581423) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5269-g8103e21c) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48576 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-l) - USE CONFIG FILE: rt.test -* (-e) - USE ECFLOW - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:16, 03:45] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [43:44, 00:57](961 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [43:44, 01:03](956 MB) -PASS -- TEST 'conus13km_debug_intel' [43:44, 01:06](1049 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [43:44, 00:59](725 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [43:45, 01:19](1054 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [43:44, 00:55](1120 MB) - -SYNOPSIS: -Starting Date/Time: 20240717 21:11:58 -Ending Date/Time: 20240717 21:34:40 -Total Time: 00h:23m:03s -Compiles Completed: 1/1 -Tests Completed: 6/6 +Starting Date/Time: 20240719 15:28:45 +Ending Date/Time: 20240719 17:07:59 +Total Time: 01h:40m:04s +Compiles Completed: 33/33 +Tests Completed: 156/156 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..9b0b0ff136 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,118 @@ +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +control_flake intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c48.v2.sfc intel +control_c192 intel +control_c384 intel +control_c384gdas intel +control_stochy intel +control_stochy_restart intel +control_lndp intel +control_iovr4 intel +control_iovr5 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +control_p8_rrtmgp intel +control_p8_mynn intel +merra2_thompson intel +control_csawmg intel +control_ras intel +control_wam intel +control_p8_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_stochy_debug intel +control_lndp_debug intel +control_ras_debug intel +control_diag_debug intel +control_debug_p8 intel +control_wam_debug intel +conus13km_debug_2threads intel +hafs_regional_atm intel +hafs_regional_atm_thompson_gfdlsf intel +hafs_regional_atm_ocn intel +hafs_regional_atm_wav intel +hafs_regional_atm_ocn_wav intel +hafs_regional_1nest_atm intel +hafs_regional_telescopic_2nests_atm intel +hafs_global_1nest_atm intel +hafs_global_multiple_4nests_atm intel +hafs_regional_specified_moving_1nest_atm intel +hafs_regional_storm_following_1nest_atm intel +hafs_regional_storm_following_1nest_atm_ocn intel +hafs_global_storm_following_1nest_atm intel +hafs_regional_storm_following_1nest_atm_ocn_debug intel +hafs_regional_storm_following_1nest_atm_ocn_wav intel +hafs_regional_storm_following_1nest_atm_ocn_wav_inline intel +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel +hafs_regional_docn intel +hafs_regional_docn_oisst intel +atm_ds2s_docn_pcice intel +atm_ds2s_docn_dice intel +control_p8_atmlnd_sbs intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel +control_p8_atmlnd_debug intel +atmwav_control_noaero_p8 intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +regional_atmaq_debug intel +control_c48 gnu +control_stochy gnu +control_ras gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_flake gnu +control_diag_debug gnu +control_ras_debug gnu +control_stochy_debug gnu +control_debug_p8 gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu + From 7544ee8a6a432c005e172dbf9e089a7d4827f254 Mon Sep 17 00:00:00 2001 From: HelinWei-NOAA <48133472+HelinWei-NOAA@users.noreply.github.com> Date: Wed, 24 Jul 2024 08:04:21 -0400 Subject: [PATCH 05/33] Land surface upgrades for HR4 (#2354) * HR4 land surface upgrades to address surface cold biases * update noahmp table --- FV3 | 2 +- NOAHMP-interface/noahmp | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_derecho.log | 617 ++++++++------ tests/logs/RegressionTests_gaea.log | 550 ++++++------ tests/logs/RegressionTests_hera.log | 794 ++++++++---------- tests/logs/RegressionTests_hercules.log | 733 ++++++++-------- tests/logs/RegressionTests_jet.log | 488 +++++------ tests/logs/RegressionTests_orion.log | 550 ++++++------ tests/logs/RegressionTests_wcoss2.log | 460 +++++----- tests/parm/noahmptable.tbl | 32 +- tests/test_changes.list | 51 +- 15 files changed, 2184 insertions(+), 2199 deletions(-) diff --git a/FV3 b/FV3 index 2527c11754..927261d391 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 2527c11754f1b8144dcbfb59952d0e06446a0166 +Subproject commit 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp index ec38ea3d90..3ac32f0db7 160000 --- a/NOAHMP-interface/noahmp +++ b/NOAHMP-interface/noahmp @@ -1 +1 @@ -Subproject commit ec38ea3d902644cd4519d5fe060316859ccdc108 +Subproject commit 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index e46a9938cf..dcd06eace9 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240718 +export BL_DATE=20240722 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 4cb0905397..72195a564d 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Jul 19 00:14:31 UTC 2024 +Mon Jul 22 20:34:33 UTC 2024 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_2536879/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 276.279391 - 0: The maximum resident set size (KB) = 1452840 + 0: The total amount of wall time = 290.687493 + 0: The maximum resident set size (KB) = 1455104 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_2536879/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 990.272278 - 0: The maximum resident set size (KB) = 1417316 + 0: The total amount of wall time = 991.650717 + 0: The maximum resident set size (KB) = 1439732 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_2536879/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 246.988630 - 0: The maximum resident set size (KB) = 1434736 + 0: The total amount of wall time = 255.224911 + 0: The maximum resident set size (KB) = 1430828 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_2536879/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 250.035763 - 0: The maximum resident set size (KB) = 1422624 + 0: The total amount of wall time = 252.620393 + 0: The maximum resident set size (KB) = 1433224 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_2536879/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 245.869118 - 0: The maximum resident set size (KB) = 1433972 + 0: The total amount of wall time = 262.750592 + 0: The maximum resident set size (KB) = 1435888 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_2536879/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 264.558137 - 0: The maximum resident set size (KB) = 1429592 + 0: The total amount of wall time = 252.883306 + 0: The maximum resident set size (KB) = 1432108 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_2536879/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 246.179584 - 0: The maximum resident set size (KB) = 1432416 + 0: The total amount of wall time = 257.944152 + 0: The maximum resident set size (KB) = 1433316 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jul 19 01:24:28 UTC 2024 -Elapsed time: 01h:09m:58s. Have a nice day! +Mon Jul 22 21:47:03 UTC 2024 +Elapsed time: 01h:12m:31s. 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 2746035280..73884b41fa 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 Jul 18 23:13:29 UTC 2024 +Mon Jul 22 19:01:08 UTC 2024 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_1423363/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1231766/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 = 1357.749216 - 0: The maximum resident set size (KB) = 1508564 + 0: The total amount of wall time = 1574.601495 + 0: The maximum resident set size (KB) = 1510852 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_1423363/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1231766/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 = 429.276836 - 0: The maximum resident set size (KB) = 1490048 + 0: The total amount of wall time = 435.767884 + 0: The maximum resident set size (KB) = 1538868 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_1423363/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1231766/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 = 415.555946 - 0: The maximum resident set size (KB) = 1523724 + 0: The total amount of wall time = 435.149030 + 0: The maximum resident set size (KB) = 1523140 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jul 19 00:14:30 UTC 2024 -Elapsed time: 01h:01m:02s. Have a nice day! +Mon Jul 22 20:34:32 UTC 2024 +Elapsed time: 01h:33m:24s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 07bd280888..a85adfdae1 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Jul 18 18:52:58 UTC 2024 +Mon Jul 22 16:30:51 UTC 2024 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_3107506/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2519577/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 = 1502.224676 - 0: The maximum resident set size (KB) = 751036 + 0: The total amount of wall time = 1397.064435 + 0: The maximum resident set size (KB) = 762344 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_3107506/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2519577/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 = 2256.388361 - 0: The maximum resident set size (KB) = 711284 + 0: The total amount of wall time = 2174.865742 + 0: The maximum resident set size (KB) = 709236 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_3107506/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2519577/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 = 2204.842817 - 0: The maximum resident set size (KB) = 698332 + 0: The total amount of wall time = 2179.697019 + 0: The maximum resident set size (KB) = 717568 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_3107506/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2519577/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 = 2259.205585 - 0: The maximum resident set size (KB) = 704392 + 0: The total amount of wall time = 2239.474214 + 0: The maximum resident set size (KB) = 705128 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Jul 18 23:13:28 UTC 2024 -Elapsed time: 04h:20m:30s. Have a nice day! +Mon Jul 22 19:01:08 UTC 2024 +Elapsed time: 02h:30m:17s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 30ac89ebae..301236ca75 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: -1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,285 +35,354 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_127189 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_70873 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:24, 22:36] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:47, 05:32](3200 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:26, 24:42] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 14:35](1916 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 15:51](1953 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 07:58](1084 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:58, 16:44](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:26, 24:44] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:14, 14:28](1911 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:22, 12:46] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [23:24, 22:24] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:41, 06:13](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:05, 06:33](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:52, 04:06](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:49, 06:28](3253 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:58, 04:13](3185 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:41, 06:02](3730 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:41, 06:08](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:37, 05:21](3540 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:01, 06:22](3236 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:56, 09:42](3894 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:54, 06:42](3628 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:42, 10:45](4522 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:53, 07:19](4672 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:32, 06:06](3208 MB) - -PASS -- COMPILE 's2sw_intel' [21:24, 20:44] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:34, 04:54](1928 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:49, 05:06](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:22, 12:44] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:22, 08:33](3302 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:22, 12:07] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:35, 05:55](1957 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:22, 16:29] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:08, 05:01](1991 MB) - -PASS -- COMPILE 's2s_intel' [17:22, 16:41] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:17, 06:53](2939 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:13, 02:31](2951 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:12, 01:37](2343 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:25, 26:56] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:27, 06:22](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:23, 23:12] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:59, 14:57](1941 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:28, 08:07](1115 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:44, 16:39](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:19, 11:44] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:32, 23:57](1969 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:22, 15:49] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:39, 03:27](673 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:10, 02:29](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:34](1580 MB) -PASS -- TEST 'control_latlon_intel' [04:04, 02:29](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:12, 02:30](1574 MB) -PASS -- TEST 'control_c48_intel' [08:14, 06:05](1616 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:38, 05:17](735 MB) -PASS -- TEST 'control_c192_intel' [12:17, 08:45](1694 MB) -PASS -- TEST 'control_c384_intel' [16:06, 08:45](2006 MB) -PASS -- TEST 'control_c384gdas_intel' [15:27, 07:06](1202 MB) -PASS -- TEST 'control_stochy_intel' [02:32, 01:29](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:34, 00:53](443 MB) -PASS -- TEST 'control_lndp_intel' [02:29, 01:22](626 MB) -PASS -- TEST 'control_iovr4_intel' [03:35, 02:06](622 MB) -PASS -- TEST 'control_iovr5_intel' [03:40, 02:11](620 MB) -PASS -- TEST 'control_p8_intel' [05:29, 03:16](1864 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:13](1859 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:11](1864 MB) -PASS -- TEST 'control_restart_p8_intel' [04:25, 02:11](1017 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:49, 03:18](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 02:15](1018 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:37, 03:15](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:34, 03:10](1954 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:28, 05:03](1863 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 04:08](1929 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:46, 03:23](1873 MB) -PASS -- TEST 'merra2_thompson_intel' [05:30, 03:38](1871 MB) -PASS -- TEST 'regional_control_intel' [06:53, 05:08](874 MB) -PASS -- TEST 'regional_restart_intel' [05:06, 03:13](870 MB) -PASS -- TEST 'regional_decomp_intel' [06:55, 05:17](873 MB) -PASS -- TEST 'regional_noquilt_intel' [06:52, 05:00](1187 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:51, 05:05](879 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:01, 05:12](882 MB) -PASS -- TEST 'regional_wofs_intel' [06:58, 05:42](1605 MB) - -PASS -- COMPILE 'rrfs_intel' [14:21, 13:24] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:29, 06:08](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:28, 03:43](1194 MB) -PASS -- TEST 'rap_decomp_intel' [08:29, 06:25](1009 MB) -PASS -- TEST 'rap_2threads_intel' [08:34, 05:41](1101 MB) -PASS -- TEST 'rap_restart_intel' [05:19, 03:17](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:37, 06:07](1004 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:23](1002 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:10, 04:38](884 MB) -PASS -- TEST 'hrrr_control_intel' [05:09, 03:18](1004 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:09, 03:22](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:09, 02:50](1091 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:46, 01:45](839 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:37, 06:01](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:03, 07:27](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:05, 07:11](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [13:13, 11:49] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:14, 06:43](965 MB) -PASS -- TEST 'control_ras_intel' [04:40, 02:57](661 MB) - -PASS -- COMPILE 'wam_intel' [12:15, 11:23] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:36, 10:05](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:15, 17:48] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:35, 03:09](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [06:59, 05:00](871 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:14, 13:23] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:03, 02:32](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:04, 02:36](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:41, 02:52](809 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:41](812 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:00, 04:37](1120 MB) -PASS -- TEST 'control_ras_debug_intel' [03:43, 02:39](816 MB) -PASS -- TEST 'control_diag_debug_intel' [04:51, 02:35](1664 MB) -PASS -- TEST 'control_debug_p8_intel' [05:01, 03:30](1903 MB) -PASS -- TEST 'regional_debug_intel' [19:01, 17:05](932 MB) -PASS -- TEST 'rap_control_debug_intel' [06:35, 04:47](1196 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:38, 04:34](1190 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:34, 04:40](1192 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:48](1197 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:39, 04:55](1197 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:40, 04:55](1277 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:40, 04:51](1196 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:37, 04:48](1197 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:43, 04:53](1197 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:42, 04:49](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:44, 04:35](1191 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:38, 04:42](1194 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:35, 07:33](1191 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:37, 04:40](1187 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:47, 05:33](1198 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:46, 04:44](1192 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:16, 07:59](1194 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:13, 07:27] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:05, 12:16](1703 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:19, 11:32] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:35, 03:34](1060 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:09, 05:11](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:12, 02:52](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:59, 04:47](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:16, 02:28](939 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 02:57](882 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:03, 03:56](793 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:42, 01:35](777 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 15:37] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:54, 01:55](1090 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:33, 01:00](1083 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:30, 01:12](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:20, 11:43] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:11, 03:39](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:19, 07:42] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:33](1070 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:36, 04:32](1068 MB) -PASS -- TEST 'conus13km_debug_intel' [15:45, 13:16](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:37, 13:26](837 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:01, 07:45](1152 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 13:25](1220 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:14, 07:28] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:37](1095 MB) - -PASS -- COMPILE 'hafsw_intel' [19:22, 18:48] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:34, 04:42](718 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:52, 05:16](1063 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:16, 06:33](775 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:24, 11:07](796 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:23, 12:13](815 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:29, 04:44](474 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:39, 05:51](493 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:07, 02:24](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:00, 06:12](461 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:12, 03:22](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:21, 03:07](515 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:24, 03:54](587 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:15](428 MB) -PASS -- TEST 'gnv1_nested_intel' [07:29, 04:10](1721 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:14, 08:51] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:19, 12:17](625 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [28:23, 27:28] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:40, 07:15](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:53, 07:20](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:22, 20:06] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:40, 05:32](678 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:24, 16:12] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:25, 05:40](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:37, 05:44](739 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:13, 16:15](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:19, 09:09] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:30, 02:31](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:50, 01:34](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:43, 02:22](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:43, 02:27](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:35, 02:25](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:45, 02:32](764 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:32](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:23](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:45, 05:41](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:29, 05:44](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:33](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:49, 03:57](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:51, 03:57](2025 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:21, 06:28] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:40, 05:11](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:21, 09:01] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:32, 02:31](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:19, 03:02] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:45, 01:19](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:15](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:48](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:22, 13:51] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:52, 04:02](1926 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:20, 12:47] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 03:45](1900 MB) - -PASS -- COMPILE 'atml_intel' [17:21, 15:55] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:40, 07:04](1884 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:42, 07:17](1883 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:00, 04:03](1029 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:20, 10:28] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:45, 06:12](1938 MB) - -PASS -- COMPILE 'atmw_intel' [15:19, 14:33] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:31, 02:15](1895 MB) - -PASS -- COMPILE 'atmaero_intel' [13:19, 12:46] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:56, 04:16](3126 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:21](2996 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:22, 04:24](3008 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:17, 08:28] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:12, 21:53](4534 MB) +PASS -- COMPILE 's2swa_32bit_intel' [25:18, 21:53] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:50, 05:31](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:20, 23:50] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:59, 14:42](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:06, 15:50](1957 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 07:53](1081 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:36, 16:25](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:17, 23:56] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:52, 14:22](1918 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [27:32, 11:57] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [37:34, 21:25] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:26, 06:02](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:29, 06:10](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:14, 03:51](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:24, 06:15](3253 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:14, 04:11](3184 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:08, 05:54](3730 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:08, 06:17](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:02, 05:06](3539 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:13, 06:15](3235 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c192_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_c192_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:40, 10:29](4519 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:43, 06:57](4665 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:49, 05:46](3210 MB) + +PASS -- COMPILE 's2sw_intel' [30:20, 19:56] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:33, 04:58](1925 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:47, 04:56](1992 MB) + +PASS -- COMPILE 's2swa_debug_intel' [27:33, 11:36] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:15, 08:10](3303 MB) + +PASS -- COMPILE 's2sw_debug_intel' [27:33, 11:08] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:39, 05:51](1955 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [31:34, 15:43] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:25, 04:52](1987 MB) + +PASS -- COMPILE 's2s_intel' [19:16, 16:00] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [03:25, 06:47](2941 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [19:13, 02:21](2947 MB) +PASS -- TEST 'cpld_restart_c48_intel' [39:21, 01:38](2343 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:32, 25:55] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:07, 06:07](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:25, 22:11] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:40, 14:36](1943 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:09, 07:48](1110 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:40, 16:41](1907 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [01:27, 11:10] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:33, 23:42](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [03:23, 15:14] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:37, 03:24](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:25](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 02:28](1571 MB) +PASS -- TEST 'control_latlon_intel' [04:15, 02:24](1563 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 02:26](1562 MB) +PASS -- TEST 'control_c48_intel' [08:19, 06:05](1619 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:43, 05:17](734 MB) +PASS -- TEST 'control_c192_intel' [11:59, 08:44](1687 MB) +PASS -- TEST 'control_c384_intel' [14:08, 08:45](2001 MB) +PASS -- TEST 'control_c384gdas_intel' [12:54, 07:07](1197 MB) +PASS -- TEST 'control_stochy_intel' [02:34, 01:26](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:36, 00:53](435 MB) +PASS -- TEST 'control_lndp_intel' [02:34, 01:22](626 MB) +PASS -- TEST 'control_iovr4_intel' [03:38, 02:09](621 MB) +PASS -- TEST 'control_iovr5_intel' [03:38, 02:08](622 MB) +PASS -- TEST 'control_p8_intel' [05:21, 03:09](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:28, 03:10](1857 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:28, 03:01](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [04:18, 02:14](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:31, 03:10](1858 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 01:58](1020 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:12, 03:08](1865 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:05](1956 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:14, 05:00](1863 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:17, 04:01](1926 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:35, 03:09](1873 MB) +PASS -- TEST 'merra2_thompson_intel' [05:25, 03:26](1870 MB) +PASS -- TEST 'regional_control_intel' [06:55, 04:58](869 MB) +PASS -- TEST 'regional_restart_intel' [04:54, 02:57](876 MB) +PASS -- TEST 'regional_decomp_intel' [06:48, 05:10](872 MB) +PASS -- TEST 'regional_noquilt_intel' [06:53, 04:55](1189 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:45, 04:56](872 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:56, 05:02](872 MB) +PASS -- TEST 'regional_wofs_intel' [07:59, 05:41](1604 MB) + +PASS -- COMPILE 'rrfs_intel' [59:23, 13:03] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:10, 06:09](1012 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 03:41](1193 MB) +PASS -- TEST 'rap_decomp_intel' [08:10, 06:25](1005 MB) +PASS -- TEST 'rap_2threads_intel' [08:10, 05:39](1097 MB) +PASS -- TEST 'rap_restart_intel' [05:05, 03:13](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:08, 06:06](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:08, 06:22](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 04:35](881 MB) +PASS -- TEST 'hrrr_control_intel' [05:00, 03:14](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:00, 03:18](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:00, 02:48](1081 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:39, 01:47](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:06, 06:00](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:51, 07:21](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:47, 07:07](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [12:21, 11:06] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:51, 06:26](963 MB) +PASS -- TEST 'control_ras_intel' [04:28, 02:52](657 MB) + +PASS -- COMPILE 'wam_intel' [11:21, 10:46] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:53, 09:56](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:21, 17:24] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:17, 03:03](1852 MB) +PASS -- TEST 'regional_control_faster_intel' [06:48, 04:46](872 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:19, 12:29] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 02:35](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:59, 02:30](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:32, 02:53](810 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:30, 02:37](810 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:53, 04:33](1122 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:41](817 MB) +PASS -- TEST 'control_diag_debug_intel' [05:11, 02:39](1667 MB) +PASS -- TEST 'control_debug_p8_intel' [04:49, 03:12](1908 MB) +PASS -- TEST 'regional_debug_intel' [17:49, 16:27](930 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 04:49](1195 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:34, 04:41](1183 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:37, 04:44](1196 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:39](1196 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:33, 04:43](1191 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:16, 04:53](1274 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:32, 04:45](1192 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:35, 04:57](1199 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:35, 04:42](1192 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:42, 04:41](1194 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:36, 04:36](1192 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:37, 04:41](1194 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:29, 07:34](1192 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:35, 04:37](1186 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:34, 05:47](1194 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:33, 04:38](1189 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:10, 07:52](1195 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:12, 06:38] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:09, 12:16](1701 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:20, 11:07] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:34, 03:31](1056 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 05:06](886 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:06, 02:45](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:53, 04:45](949 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:05, 02:26](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:58, 02:53](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:58, 03:52](797 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:45, 01:30](778 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:20, 15:09] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:41, 01:52](1088 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:36, 00:57](1087 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:07](976 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:18, 11:08] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:03, 03:37](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:17, 07:03] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:34, 04:37](1068 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 04:33](1069 MB) +PASS -- TEST 'conus13km_debug_intel' [16:06, 13:20](1154 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:01, 13:24](837 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 07:42](1153 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 13:37](1222 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:17, 06:52] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 04:47](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [19:19, 18:05] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:38, 04:37](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:35, 05:05](1068 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:25](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:49, 11:00](792 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:08, 12:11](815 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 04:40](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:57, 05:49](491 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:08, 02:17](394 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:38, 06:12](461 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:21](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:41, 03:06](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:21, 03:52](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:19](427 MB) +PASS -- TEST 'gnv1_nested_intel' [07:34, 04:07](1718 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:17, 08:16] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:30, 12:11](626 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [28:16, 27:09] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:30, 07:12](629 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:57, 07:12](689 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:15, 19:06] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:36, 05:24](678 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:20, 15:45] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:39, 05:37](756 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:36, 05:40](739 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:18, 16:17](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:17, 08:37] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:34, 02:30](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:43, 01:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:35, 02:22](646 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:34, 02:24](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:35, 02:23](648 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:33, 02:27](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:29](751 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:34, 02:20](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:53, 05:36](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:55, 05:36](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:28](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:46, 03:55](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:47, 03:53](2021 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:55] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:12](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:17, 08:34] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:36, 02:29](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:16, 02:46] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:12, 01:16](312 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:11, 01:05](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:47](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:13, 12:58] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:59, 04:05](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:13, 12:11] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:43, 03:47](1899 MB) + +PASS -- COMPILE 'atml_intel' [16:13, 15:13] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:52, 06:51](1886 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:52, 06:40](1884 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:01, 03:57](1037 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:12, 10:03] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:34, 06:19](1920 MB) + +PASS -- COMPILE 'atmw_intel' [15:15, 14:09] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:27, 02:09](1895 MB) + +PASS -- COMPILE 'atmaero_intel' [13:19, 12:20] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:54, 04:12](3121 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:19](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:25, 04:22](3014 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:18, 08:14] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:48, 21:48](4536 MB) SYNOPSIS: -Starting Date/Time: 20240719 10:21:56 -Ending Date/Time: 20240719 12:00:26 -Total Time: 01h:39m:41s +Starting Date/Time: 20240722 21:35:07 +Ending Date/Time: 20240723 00:11:51 +Total Time: 02h:37m:47s Compiles Completed: 41/41 -Tests Completed: 183/183 +Tests Completed: 181/183 +Failed Tests: +* TEST cpld_control_c192_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2354/tests/logs/log_derecho/run_cpld_control_c192_p8_intel.log +* TEST cpld_restart_c192_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2354/tests/logs/log_derecho/run_cpld_restart_c192_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +ec399e628231e03101314fdb378214c340cf96cc + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_56330 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_intel' [23:16, 21:55] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_c192_p8_intel' [12:38, 09:39](3892 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:17, 06:39](3629 MB) + +SYNOPSIS: +Starting Date/Time: 20240723 10:34:25 +Ending Date/Time: 20240723 11:22:06 +Total Time: 00h:47m:51s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index e42e626032..fa74099679 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,285 +35,285 @@ 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-20240718 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_218421 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_14217 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [53:17, 52:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:28, 07:23](3196 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:17, 53:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:50, 13:51](1925 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:51, 15:16](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:45, 06:57](1077 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:02, 15:12](1895 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:17, 53:40] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:26, 14:18](1912 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [49:13, 48:18] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:49, 24:18](1951 MB) - -PASS -- COMPILE 's2swa_intel' [52:14, 51:26] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:09, 08:45](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:41, 08:20](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [14:39, 06:45](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:09, 08:41](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:39, 06:31](3180 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:49, 06:53](3466 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:08, 08:07](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:24, 07:25](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:41, 08:23](3226 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:58, 10:34](3447 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [17:36, 07:57](3610 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:26, 13:09](4208 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:31, 09:24](4361 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:19, 08:22](3207 MB) - -PASS -- COMPILE 's2sw_intel' [51:17, 51:00] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:40, 05:23](1932 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:40, 05:52](1995 MB) - -PASS -- COMPILE 's2swa_debug_intel' [49:13, 48:29] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [18:39, 10:42](3278 MB) - -PASS -- COMPILE 's2sw_debug_intel' [43:17, 42:53] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:59, 06:33](1957 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [46:17, 45:29] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:57, 05:30](1998 MB) - -PASS -- COMPILE 's2s_intel' [45:17, 44:37] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:32, 06:36](2926 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [10:22, 02:09](2929 MB) -PASS -- TEST 'cpld_restart_c48_intel' [08:25, 01:11](2326 MB) - -PASS -- COMPILE 's2swa_faster_intel' [02:17, 01:35] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:07, 08:14](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [55:23, 55:02] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:07, 15:37](1936 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:18, 08:25](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:10, 18:11](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [47:23, 46:10] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:33, 27:03](1960 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [40:13, 39:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:47, 04:05](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:46, 03:06](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:42, 03:35](1569 MB) -PASS -- TEST 'control_latlon_intel' [07:17, 03:34](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:27, 03:08](1571 MB) -PASS -- TEST 'control_c48_intel' [11:38, 06:32](1599 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 05:44](719 MB) -PASS -- TEST 'control_c192_intel' [13:53, 10:28](1684 MB) -PASS -- TEST 'control_c384_intel' [22:18, 18:36](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [20:49, 14:22](1181 MB) -PASS -- TEST 'control_stochy_intel' [04:44, 02:20](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:03, 01:22](425 MB) -PASS -- TEST 'control_lndp_intel' [03:36, 01:54](623 MB) -PASS -- TEST 'control_iovr4_intel' [05:29, 02:59](619 MB) -PASS -- TEST 'control_iovr5_intel' [05:50, 03:12](620 MB) -PASS -- TEST 'control_p8_intel' [09:03, 04:02](1860 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:35, 03:34](1860 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:40, 03:47](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [06:41, 02:07](1014 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:30, 03:32](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 02:02](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:29, 04:01](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:34, 03:14](1950 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:19, 05:30](1859 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:37, 04:25](1917 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:52, 03:37](1868 MB) -PASS -- TEST 'merra2_thompson_intel' [08:39, 03:46](1865 MB) -PASS -- TEST 'regional_control_intel' [07:38, 04:55](859 MB) -PASS -- TEST 'regional_restart_intel' [04:34, 02:38](861 MB) -PASS -- TEST 'regional_decomp_intel' [07:13, 05:00](861 MB) -PASS -- TEST 'regional_2threads_intel' [06:23, 03:11](997 MB) -PASS -- TEST 'regional_noquilt_intel' [07:19, 04:55](1179 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:29, 04:50](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:14, 05:07](859 MB) -PASS -- TEST 'regional_wofs_intel' [09:07, 06:35](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [36:16, 35:21] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [13:03, 06:55](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:51, 04:03](1190 MB) -PASS -- TEST 'rap_decomp_intel' [13:56, 07:13](1009 MB) -PASS -- TEST 'rap_2threads_intel' [13:03, 06:14](1095 MB) -PASS -- TEST 'rap_restart_intel' [07:55, 03:55](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:53, 06:52](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:58, 07:11](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:57, 05:30](880 MB) -PASS -- TEST 'hrrr_control_intel' [08:27, 03:52](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:17, 03:57](1005 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:55, 03:04](1085 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:58, 02:00](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:06, 07:13](1002 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:50, 08:06](1963 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:11, 07:59](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [34:13, 33:42] -PASS -- TEST 'control_csawmg_intel' [09:36, 06:48](964 MB) -PASS -- TEST 'control_ras_intel' [06:02, 03:31](657 MB) - -PASS -- COMPILE 'wam_intel' [35:21, 34:59] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:01, 11:59](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [41:16, 40:18] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:04, 03:41](1859 MB) -PASS -- TEST 'regional_control_faster_intel' [07:04, 04:58](859 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [39:19, 38:48] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:44, 03:08](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:18, 03:07](1590 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:03, 03:30](797 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:01, 02:59](793 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:50, 04:32](1106 MB) -PASS -- TEST 'control_ras_debug_intel' [05:10, 03:08](803 MB) -PASS -- TEST 'control_diag_debug_intel' [06:13, 03:16](1655 MB) -PASS -- TEST 'control_debug_p8_intel' [06:03, 03:22](1890 MB) -PASS -- TEST 'regional_debug_intel' [18:37, 16:12](900 MB) -PASS -- TEST 'rap_control_debug_intel' [06:15, 05:00](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:21, 05:12](1174 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:04, 05:02](1178 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:04, 05:01](1178 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:14, 05:03](1180 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:20, 05:36](1262 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:08, 05:13](1181 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:18, 05:21](1183 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:16, 05:09](1182 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:12, 05:05](1180 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:04, 05:02](1177 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:07, 05:11](1178 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:12, 08:02](1177 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:57](1173 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 06:06](1183 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:38, 05:26](1180 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:52, 08:41](1183 MB) - -PASS -- COMPILE 'wam_debug_intel' [32:17, 31:24] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:35, 13:51](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [29:19, 28:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:34, 03:54](1045 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:51, 06:22](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:48, 03:52](880 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:15, 05:23](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:00, 02:59](934 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 03:48](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:46, 04:34](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:23, 01:57](763 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:15, 32:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:38, 02:17](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:36, 01:13](1080 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:40, 02:06](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [29:16, 28:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:37, 04:30](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [26:14, 25:41] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:16](1057 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:59](1057 MB) -PASS -- TEST 'conus13km_debug_intel' [18:03, 14:21](1137 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:03, 14:09](817 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:16, 08:23](1126 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:49, 14:20](1209 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [20:19, 19:40] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:36, 05:22](1086 MB) - -PASS -- COMPILE 'hafsw_intel' [35:15, 35:05] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:32, 05:25](705 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:53, 04:36](1055 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:09, 07:33](757 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:15, 11:29](780 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:10, 12:44](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:15, 05:20](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:51, 06:56](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:13, 02:57](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:30, 08:01](437 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:23, 03:43](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:04, 03:32](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:07, 05:52](571 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:17, 01:43](403 MB) -PASS -- TEST 'gnv1_nested_intel' [11:24, 06:12](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [30:15, 29:40] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:47, 12:48](600 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [44:12, 43:48] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:49, 07:44](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:57, 07:49](788 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [33:12, 32:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:17, 06:32](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [30:15, 29:17] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:03, 06:14](738 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 06:13](727 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:13, 20:10](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [24:11, 24:03] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:05, 02:35](747 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:44, 01:34](750 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:05, 02:26](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:05, 02:28](636 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:53, 02:29](638 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:07, 02:34](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:05, 02:33](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:07, 02:25](640 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:00, 06:11](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:40, 06:00](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:55, 02:35](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:01, 04:39](2014 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:01, 04:40](2015 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [20:16, 19:48] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:01, 05:35](744 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [23:18, 22:45] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:43, 02:35](747 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [10:14, 09:33] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:25, 02:36](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:16, 01:38](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:14, 02:19](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:12, 26:00] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:35, 04:10](1924 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [24:19, 23:43] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:21](1913 MB) - -PASS -- COMPILE 'atml_intel' [25:12, 24:16] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:38, 07:01](1892 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:38, 07:01](1894 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 03:55](1044 MB) - -PASS -- COMPILE 'atml_debug_intel' [20:11, 20:08] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:31, 06:45](1931 MB) - -PASS -- COMPILE 'atmw_intel' [22:11, 21:18] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:00, 02:21](1899 MB) - -PASS -- COMPILE 'atmaero_intel' [20:11, 19:19] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:21, 06:08](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:22, 06:46](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:16, 07:08](3016 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [15:17, 14:20] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:38, 18:23](4483 MB) +PASS -- COMPILE 's2swa_32bit_intel' [41:12, 40:46] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:04, 08:00](3197 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [42:15, 41:14] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 14:01](1924 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:57, 14:44](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:46, 06:59](1078 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:44, 15:02](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:15, 41:26] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:56, 13:51](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [37:15, 36:46] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:33, 24:39](1948 MB) + +PASS -- COMPILE 's2swa_intel' [41:12, 40:48] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:28, 08:41](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:35, 08:49](3223 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:03, 05:15](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:27, 08:53](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:04, 05:12](3180 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:41, 06:47](3462 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:18, 08:38](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:51, 07:40](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:45, 08:47](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:45, 10:44](3441 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 07:19](3612 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:06, 13:52](4205 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:34, 09:49](4363 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:52, 07:49](3207 MB) + +PASS -- COMPILE 's2sw_intel' [38:15, 37:51] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:40, 05:43](1938 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:53, 06:06](1996 MB) + +PASS -- COMPILE 's2swa_debug_intel' [37:15, 36:15] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:50, 10:45](3279 MB) + +PASS -- COMPILE 's2sw_debug_intel' [35:12, 34:15] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:53, 06:00](1958 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [37:15, 36:25] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:50, 05:18](1999 MB) + +PASS -- COMPILE 's2s_intel' [34:12, 33:52] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:45, 06:31](2925 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:36, 02:05](2930 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:46, 01:29](2325 MB) + +PASS -- COMPILE 's2swa_faster_intel' [40:16, 40:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:00, 08:26](3228 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [35:14, 34:18] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:46, 15:44](1935 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:51, 08:07](1108 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:39, 18:12](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [25:12, 24:39] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:02, 27:01](1962 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [25:12, 24:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:36, 04:03](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:30, 03:07](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:26, 03:20](1569 MB) +PASS -- TEST 'control_latlon_intel' [07:13, 03:40](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:24, 03:37](1572 MB) +PASS -- TEST 'control_c48_intel' [10:36, 06:31](1596 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:16, 05:40](720 MB) +PASS -- TEST 'control_c192_intel' [15:15, 10:06](1681 MB) +PASS -- TEST 'control_c384_intel' [23:46, 18:14](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [18:27, 14:15](1178 MB) +PASS -- TEST 'control_stochy_intel' [05:33, 02:08](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:36, 01:28](426 MB) +PASS -- TEST 'control_lndp_intel' [04:34, 01:59](622 MB) +PASS -- TEST 'control_iovr4_intel' [05:40, 02:53](620 MB) +PASS -- TEST 'control_iovr5_intel' [05:40, 02:37](620 MB) +PASS -- TEST 'control_p8_intel' [06:31, 03:41](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:44, 04:02](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:31, 03:28](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [03:11, 01:49](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:21, 03:28](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:50](1017 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:18, 03:26](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:18, 03:08](1950 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:23](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:54](1919 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:31, 03:40](1867 MB) +PASS -- TEST 'merra2_thompson_intel' [05:29, 03:50](1865 MB) +PASS -- TEST 'regional_control_intel' [06:52, 05:19](859 MB) +PASS -- TEST 'regional_restart_intel' [03:47, 02:51](861 MB) +PASS -- TEST 'regional_decomp_intel' [06:51, 05:29](860 MB) +PASS -- TEST 'regional_2threads_intel' [04:46, 03:11](1007 MB) +PASS -- TEST 'regional_noquilt_intel' [06:56, 05:08](1176 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 05:10](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:46, 05:17](867 MB) +PASS -- TEST 'regional_wofs_intel' [09:17, 06:51](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [24:12, 23:57] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:30, 06:46](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:15, 04:04](1185 MB) +PASS -- TEST 'rap_decomp_intel' [09:31, 07:08](1009 MB) +PASS -- TEST 'rap_2threads_intel' [08:38, 06:07](1101 MB) +PASS -- TEST 'rap_restart_intel' [06:14, 03:38](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:37, 06:59](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:30, 07:09](1007 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:19, 05:27](880 MB) +PASS -- TEST 'hrrr_control_intel' [05:22, 03:52](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:22, 03:59](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:22, 03:10](1085 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:25](835 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:31, 06:57](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:54, 08:11](1962 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:52](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [23:12, 22:18] +PASS -- TEST 'control_csawmg_intel' [10:55, 06:39](964 MB) +PASS -- TEST 'control_ras_intel' [04:45, 03:29](657 MB) + +PASS -- COMPILE 'wam_intel' [21:11, 20:38] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:12, 11:47](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [29:11, 28:34] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:01, 03:13](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [06:38, 05:05](866 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [24:13, 23:09] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:13, 03:01](1597 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:09, 03:02](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:54, 03:21](801 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:33, 02:51](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:51, 04:30](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [04:07, 02:52](805 MB) +PASS -- TEST 'control_diag_debug_intel' [04:28, 03:01](1660 MB) +PASS -- TEST 'control_debug_p8_intel' [04:42, 03:25](1892 MB) +PASS -- TEST 'regional_debug_intel' [17:47, 16:33](910 MB) +PASS -- TEST 'rap_control_debug_intel' [06:37, 05:10](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:37, 05:04](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:29, 05:43](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:36, 05:24](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 05:31](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:38, 05:45](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:37, 05:39](1183 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:33, 06:01](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:36, 05:40](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:38, 05:52](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:37, 05:42](1180 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:51, 05:22](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:36, 08:17](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:46, 05:03](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:42, 05:59](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:36, 05:10](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:21, 08:42](1185 MB) + +PASS -- COMPILE 'wam_debug_intel' [17:11, 16:58] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:11, 13:39](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [19:12, 18:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:21, 04:04](1046 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:11, 05:54](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:05, 03:39](880 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:16, 05:22](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 02:56](935 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:06, 03:39](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:34, 04:29](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:01](763 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:15, 24:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:49, 02:15](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:58, 01:29](1082 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:01, 01:23](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:11, 19:59] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:20, 04:16](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:12, 15:23] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 04:57](1058 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:27, 04:51](1061 MB) +PASS -- TEST 'conus13km_debug_intel' [17:10, 14:36](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:59, 14:32](819 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:09, 08:28](1126 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 14:20](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [16:12, 15:14] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 05:09](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [25:11, 24:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:25, 05:59](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:50, 05:09](1056 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:47, 08:19](758 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:29, 12:18](788 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:50, 13:32](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:27, 06:34](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:47, 07:53](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:35, 03:16](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:18, 09:09](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:00, 04:27](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:21, 04:43](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:26, 04:51](577 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:18, 01:48](403 MB) +PASS -- TEST 'gnv1_nested_intel' [11:57, 06:11](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [20:14, 19:52] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:21, 13:23](599 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [33:16, 32:43] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:29, 07:44](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:29, 07:49](786 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [29:12, 28:09] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:43, 06:11](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [28:15, 27:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:18, 06:17](742 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:28, 06:17](727 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:33, 20:02](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [24:14, 23:28] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:34](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:33, 01:36](748 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:29, 02:30](635 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:41, 02:28](635 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:32](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:41, 02:35](760 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:36](761 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:28](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:24, 06:06](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:27, 06:13](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:39, 02:34](747 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:39, 04:39](2014 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:37, 04:41](2014 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [19:15, 19:04] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:33](742 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [24:14, 23:51] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:41, 02:34](761 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [08:15, 07:40] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:59, 02:31](317 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:00, 01:50](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:57, 01:13](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:11, 26:01] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:33, 04:13](1924 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [25:11, 24:47] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:46, 04:01](1913 MB) + +PASS -- COMPILE 'atml_intel' [26:11, 25:37] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:48, 07:29](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:48, 07:12](1893 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:57, 04:00](1045 MB) + +PASS -- COMPILE 'atml_debug_intel' [21:17, 20:32] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:39, 06:34](1933 MB) + +PASS -- COMPILE 'atmw_intel' [20:11, 19:39] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:06, 02:29](1897 MB) + +PASS -- COMPILE 'atmaero_intel' [18:11, 17:54] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:27, 06:24](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:27, 06:30](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:20, 07:01](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:11, 12:40] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:40, 18:31](4484 MB) SYNOPSIS: -Starting Date/Time: 20240719 03:43:01 -Ending Date/Time: 20240719 06:38:43 -Total Time: 02h:56m:50s +Starting Date/Time: 20240722 18:29:44 +Ending Date/Time: 20240722 20:48:48 +Total Time: 02h:20m:27s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 71eb3baa5b..3e1f1d26cd 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,11 +9,11 @@ Submodule hashes used in testing: 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -24,439 +24,379 @@ 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3156853 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2238840 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:26] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:19, 05:51](3320 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:54] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:08, 17:26](1986 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:22, 18:08](2162 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:19, 08:13](1237 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:02, 19:38](1872 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:32] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:47, 17:16](1984 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:13] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:13](1943 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 13:26] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:14, 05:56](3326 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:26, 06:05](3354 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:22, 03:38](3251 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:14, 05:58](3373 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:22, 03:37](3286 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:10, 05:34](3632 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:11, 06:05](3335 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:11, 04:48](3203 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:25, 05:55](3357 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:06, 10:20](3525 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:52, 06:36](3638 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:14, 09:34](4308 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:46, 06:14](4378 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:10, 05:25](3336 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 12:50] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:51](1994 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:04, 04:24](2020 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:12] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:02, 08:55](3399 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:49] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:09, 05:51](1990 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:59] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:32](2044 MB) - -PASS -- COMPILE 's2s_intel' [13:12, 11:58] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:47, 09:02](3106 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:46, 02:41](3095 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:41, 01:33](2515 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:13, 17:29] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:14, 05:36](3328 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 16:03] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:09, 17:50](2003 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:14, 08:18](1272 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:01, 19:53](1937 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:57] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:02, 25:05](1972 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:13, 11:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:24, 03:37](702 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:41, 02:58](1588 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:46, 02:59](1607 MB) -PASS -- TEST 'control_latlon_intel' [04:37, 02:57](1598 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:43, 02:55](1598 MB) -PASS -- TEST 'control_c48_intel' [09:42, 07:29](1763 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 06:26](871 MB) -PASS -- TEST 'control_c192_intel' [11:56, 10:33](1761 MB) -PASS -- TEST 'control_c384_intel' [15:50, 10:30](2005 MB) -PASS -- TEST 'control_c384gdas_intel' [13:57, 07:53](1399 MB) -PASS -- TEST 'control_stochy_intel' [02:28, 01:39](658 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:28, 01:02](504 MB) -PASS -- TEST 'control_lndp_intel' [05:30, 01:33](661 MB) -PASS -- TEST 'control_iovr4_intel' [06:27, 02:27](657 MB) -PASS -- TEST 'control_iovr5_intel' [06:27, 02:27](659 MB) -PASS -- TEST 'control_p8_intel' [07:58, 03:12](1904 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:01, 03:14](1893 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 03:04](1905 MB) -PASS -- TEST 'control_restart_p8_intel' [04:48, 01:46](1129 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:48, 03:01](1899 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:52, 01:44](1164 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:47, 03:11](1882 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:45, 02:56](1981 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:43, 05:24](1877 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:52, 04:06](1961 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:56, 03:07](1905 MB) -PASS -- TEST 'merra2_thompson_intel' [08:53, 03:23](1907 MB) -PASS -- TEST 'regional_control_intel' [06:39, 05:22](1108 MB) -PASS -- TEST 'regional_restart_intel' [04:34, 02:54](1092 MB) -PASS -- TEST 'regional_decomp_intel' [10:36, 05:40](1093 MB) -PASS -- TEST 'regional_2threads_intel' [06:42, 03:31](1097 MB) -PASS -- TEST 'regional_noquilt_intel' [09:46, 05:19](1399 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:53, 05:27](1092 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:40, 05:27](1104 MB) -PASS -- TEST 'regional_wofs_intel' [10:40, 06:48](1920 MB) - -PASS -- COMPILE 'rrfs_intel' [12:15, 11:15] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:37, 07:46](1112 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:05, 04:10](1302 MB) -PASS -- TEST 'rap_decomp_intel' [11:38, 08:09](1043 MB) -PASS -- TEST 'rap_2threads_intel' [10:40, 07:18](1188 MB) -PASS -- TEST 'rap_restart_intel' [16:44, 04:01](1105 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:41, 07:45](1109 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:38, 08:09](1038 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [18:47, 05:50](1135 MB) -PASS -- TEST 'hrrr_control_intel' [06:39, 03:59](1046 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 04:06](1042 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 03:40](1115 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:27, 02:12](1003 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:49, 07:34](1103 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:17](1995 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:09](2049 MB) - -PASS -- COMPILE 'csawmg_intel' [11:14, 10:30] -PASS -- TEST 'control_csawmg_intel' [07:48, 06:14](1026 MB) -PASS -- TEST 'control_ras_intel' [05:26, 03:21](749 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:12, 04:25] -PASS -- TEST 'control_csawmg_gnu' [09:47, 08:24](762 MB) - -PASS -- COMPILE 'wam_intel' [11:14, 10:27] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:52, 10:57](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:16, 14:43] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:56, 02:45](1906 MB) -PASS -- TEST 'regional_control_faster_intel' [05:38, 04:52](1110 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:13, 06:19] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:47](1629 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:45](1628 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:07](838 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:28, 02:49](834 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:45, 04:28](1149 MB) -PASS -- TEST 'control_ras_debug_intel' [04:28, 02:51](840 MB) -PASS -- TEST 'control_diag_debug_intel' [08:54, 02:44](1689 MB) -PASS -- TEST 'control_debug_p8_intel' [08:50, 03:00](1930 MB) -PASS -- TEST 'regional_debug_intel' [24:46, 17:41](1112 MB) -PASS -- TEST 'rap_control_debug_intel' [06:27, 05:00](1222 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:30, 05:00](1219 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 05:03](1224 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 05:06](1226 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:27, 05:03](1219 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:11](1298 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 05:08](1220 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:15](1219 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 05:03](1218 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 04:55](1222 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:58](1216 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:24, 05:08](1229 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:25, 08:01](1218 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [17:25, 05:03](1224 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [18:27, 05:57](1223 MB) -PASS -- TEST 'rap_flake_debug_intel' [17:24, 05:07](1225 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:41, 08:24](1222 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:35] -PASS -- TEST 'control_csawmg_debug_gnu' [05:43, 02:24](723 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:03] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:46, 13:38](1694 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:13, 10:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:04, 03:52](1165 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [18:37, 06:25](1055 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:36, 03:26](988 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:41, 06:06](1091 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:32, 03:10](966 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [16:32, 03:34](931 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:44, 04:50](1033 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:53](930 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:13, 13:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [15:00, 02:06](1211 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:47, 00:52](1126 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:13](1118 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:13, 10:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:45, 04:09](983 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:12] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [17:27, 04:57](1099 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [17:24, 04:45](1103 MB) -PASS -- TEST 'conus13km_debug_intel' [26:53, 14:25](1261 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:47, 14:55](945 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [20:46, 08:21](1179 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:45, 14:50](1318 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:12, 03:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:25, 05:02](1145 MB) - -PASS -- COMPILE 'hafsw_intel' [14:12, 12:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [17:17, 05:07](738 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:31, 06:08](1106 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:31, 06:58](840 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:21, 13:34](871 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:48, 15:25](895 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:01, 05:30](505 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:27, 06:50](523 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:44, 02:39](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:08, 07:11](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:45, 03:52](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:52, 03:33](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:57, 04:06](591 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:17](407 MB) -PASS -- TEST 'gnv1_nested_intel' [06:35, 04:02](1734 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:29] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 12:55](592 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:13, 16:31] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:07, 08:46](663 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 08:46](752 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:14, 12:17] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:03, 06:30](741 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:12, 11:28] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:21, 06:30](830 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 06:34](823 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:34](1223 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:27] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:50](1161 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:37](1121 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:38](1021 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:41](1030 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 03:01](999 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:40](1167 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:40](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:34](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:42, 06:31](1066 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:28, 06:09](1045 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:40](1152 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:59](2447 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:52](2442 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:18] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:22, 06:06](1076 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:12, 06:29] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:21, 02:39](1142 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:12, 01:02] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:32, 00:44](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:48](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:33](323 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:12, 11:17] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 03:44](1994 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:14, 10:57] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:11, 03:36](1968 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 12:27] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:10, 04:20](1868 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:07, 04:20](1870 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:21](1105 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 05:00] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:08, 05:50](1908 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 11:29] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:48, 01:52](1933 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 11:01] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:00, 04:08](3208 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:13, 04:50](3100 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:01, 05:03](3104 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:57] ( 884 warnings 6 remarks ) -FAILED: TEST TIMED OUT -- TEST 'regional_atmaq_debug_intel' [, ]( MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 04:47] -PASS -- TEST 'control_c48_gnu' [11:40, 11:07](1536 MB) -PASS -- TEST 'control_stochy_gnu' [04:27, 03:26](502 MB) -PASS -- TEST 'control_ras_gnu' [05:22, 04:47](505 MB) -PASS -- TEST 'control_p8_gnu' [06:00, 04:52](1458 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:52, 04:43](1459 MB) -PASS -- TEST 'control_flake_gnu' [11:28, 10:21](544 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:13] -PASS -- TEST 'rap_control_gnu' [11:38, 10:45](811 MB) -PASS -- TEST 'rap_decomp_gnu' [11:35, 10:54](849 MB) -PASS -- TEST 'rap_2threads_gnu' [10:42, 09:52](937 MB) -PASS -- TEST 'rap_restart_gnu' [06:41, 05:24](578 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:38, 10:46](817 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:33, 11:00](850 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 07:58](579 MB) -PASS -- TEST 'hrrr_control_gnu' [06:34, 05:35](850 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:30, 05:37](800 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:39, 04:58](919 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:35, 05:36](846 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 02:54](564 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 02:48](654 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:33](811 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:30] -PASS -- TEST 'control_diag_debug_gnu' [03:01, 01:43](1275 MB) -PASS -- TEST 'regional_debug_gnu' [12:45, 12:06](727 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:35](823 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:35](826 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:39](825 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:28, 02:46](829 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:43, 02:47](906 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:22, 04:05](860 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:44](826 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:24, 02:37](814 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:22, 01:34](456 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:43](455 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:47](1441 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:23, 02:38](826 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:58](822 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:41, 04:19](833 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:33] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:07] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:18](712 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:40, 05:00](704 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:35](754 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 04:33](746 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 05:05](702 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:42, 07:04](555 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 02:32](541 MB) -PASS -- TEST 'conus13km_control_gnu' [05:00, 03:09](878 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:50, 06:01](878 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:48, 01:46](553 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 10:55] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:38, 05:40](728 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:37] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:29](712 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:22, 02:30](711 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:50, 07:02](892 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:44, 07:07](581 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:41, 07:42](895 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:42, 06:56](961 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 07:34] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:23, 02:37](745 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 16:29] - -PASS -- COMPILE 's2s_gnu' [18:12, 16:05] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:04, 07:14](1547 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [12:12, 03:17] - -PASS -- COMPILE 's2sw_pdlib_gnu' [26:13, 16:13] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [20:57, 19:38](1453 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:12, 03:09] -FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [26:17, 15:39] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 02:56](687 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:16, 06:05](3277 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:12, 16:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:03, 17:32](1956 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:13, 18:08](2132 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:08, 08:23](1228 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 19:26](1861 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:39, 17:11](1951 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:16] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:25](1891 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 13:20] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:10, 05:54](3310 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:18, 06:21](3318 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:26, 03:31](3241 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:11, 06:02](3347 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:26, 03:34](3251 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:11, 05:37](3598 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:09, 06:00](3313 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:04, 05:00](3188 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:17, 05:55](3322 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:03, 10:19](3487 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:47, 06:41](3606 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:26, 10:10](4260 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:10, 06:29](4362 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:09, 05:26](3296 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 12:52] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:58, 05:04](1961 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:05, 04:26](2038 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:19] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:03, 08:39](3333 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:56] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 06:02](1976 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 12:03] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:01, 04:25](2040 MB) + +PASS -- COMPILE 's2s_intel' [12:12, 12:02] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:41, 09:04](3089 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:45](3062 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:45, 01:34](2499 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:15, 17:18] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:17, 05:36](3328 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:14, 16:48] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:02, 17:29](1987 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:22](1270 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:08, 19:56](1895 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:14, 05:06] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 24:58](1919 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:24, 03:21](687 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 02:54](1575 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:44, 02:58](1583 MB) +PASS -- TEST 'control_latlon_intel' [03:42, 02:55](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 02:59](1578 MB) +PASS -- TEST 'control_c48_intel' [08:45, 07:32](1734 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 06:26](840 MB) +PASS -- TEST 'control_c192_intel' [12:02, 10:34](1729 MB) +PASS -- TEST 'control_c384_intel' [14:04, 10:35](1995 MB) +PASS -- TEST 'control_c384gdas_intel' [11:59, 08:00](1379 MB) +PASS -- TEST 'control_stochy_intel' [02:26, 01:41](631 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:06](489 MB) +PASS -- TEST 'control_lndp_intel' [03:23, 01:36](636 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:28](636 MB) +PASS -- TEST 'control_iovr5_intel' [03:25, 02:26](632 MB) +PASS -- TEST 'control_p8_intel' [04:55, 03:08](1872 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:01, 03:11](1875 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 03:00](1874 MB) +PASS -- TEST 'control_restart_p8_intel' [02:49, 01:47](1095 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:51, 03:04](1863 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:52, 01:44](1136 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:49, 03:10](1869 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:48, 02:57](1979 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:26](1877 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 04:06](1937 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:55, 03:06](1891 MB) +PASS -- TEST 'merra2_thompson_intel' [04:52, 03:25](1880 MB) +PASS -- TEST 'regional_control_intel' [06:37, 05:20](1082 MB) +PASS -- TEST 'regional_restart_intel' [04:38, 02:55](1078 MB) +PASS -- TEST 'regional_decomp_intel' [06:36, 05:41](1075 MB) +PASS -- TEST 'regional_2threads_intel' [04:39, 03:29](1074 MB) +PASS -- TEST 'regional_noquilt_intel' [06:39, 05:16](1378 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 05:20](1082 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:35, 05:20](1082 MB) +PASS -- TEST 'regional_wofs_intel' [07:35, 06:52](1896 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 11:07] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:43, 07:45](1093 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:07, 04:16](1286 MB) +PASS -- TEST 'rap_decomp_intel' [08:38, 08:07](1014 MB) +PASS -- TEST 'rap_2threads_intel' [08:37, 07:19](1164 MB) +PASS -- TEST 'rap_restart_intel' [04:48, 04:04](1088 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:42, 07:45](1088 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:39, 08:09](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 05:53](1117 MB) +PASS -- TEST 'hrrr_control_intel' [04:42, 04:00](1024 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:38, 04:10](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:39](1095 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:12](953 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:48, 07:35](1080 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:14](1973 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:08](2044 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:53] +PASS -- TEST 'control_csawmg_intel' [07:36, 06:10](1006 MB) +PASS -- TEST 'control_ras_intel' [04:22, 03:16](732 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:13] +PASS -- TEST 'control_csawmg_gnu' [09:44, 08:25](750 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:41] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:47, 11:00](1649 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:13, 14:43] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:50, 02:49](1890 MB) +PASS -- TEST 'regional_control_faster_intel' [05:40, 04:52](1078 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 06:01] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:56, 02:43](1594 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:56, 02:35](1594 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:28, 03:04](793 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:28, 02:52](788 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:50, 04:23](1117 MB) +PASS -- TEST 'control_ras_debug_intel' [03:28, 03:00](803 MB) +PASS -- TEST 'control_diag_debug_intel' [07:00, 02:48](1649 MB) +PASS -- TEST 'control_debug_p8_intel' [06:52, 03:04](1885 MB) +PASS -- TEST 'regional_debug_intel' [18:48, 17:52](1077 MB) +PASS -- TEST 'rap_control_debug_intel' [06:29, 05:07](1181 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:32, 04:54](1179 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 05:05](1186 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:32, 05:05](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:29, 05:08](1183 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:46, 05:21](1267 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 05:19](1184 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 05:13](1183 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:25, 05:08](1178 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:56](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:24, 05:04](1183 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:59](1190 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:07](1186 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 05:01](1182 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 06:13](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 05:05](1180 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:44, 08:54](1189 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:42] +PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 02:20](705 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:12, 04:10] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:49, 13:44](1656 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 03:54](1143 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:35](1018 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:40, 03:25](980 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 06:09](1050 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:36, 03:12](941 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:34, 03:37](927 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:40, 04:52](1024 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 01:52](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:12, 14:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:59, 02:06](1186 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:44, 00:55](1104 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:50, 01:17](1089 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:43] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:10](971 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:36] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 05:11](1056 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:55](1062 MB) +PASS -- TEST 'conus13km_debug_intel' [15:56, 14:52](1214 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 15:11](903 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:19](1117 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:33](1259 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:54] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:13](1100 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 12:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:17, 05:08](720 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:35, 05:47](1101 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:29, 06:54](811 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:17, 13:33](844 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:44, 15:20](868 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:00, 05:33](484 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:28, 06:49](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:47, 02:44](362 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:08, 07:18](469 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:43](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:49, 03:33](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:54, 04:10](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:29, 01:17](387 MB) +PASS -- TEST 'gnv1_nested_intel' [09:38, 04:08](1704 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:40] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:54, 13:02](553 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:12, 16:48] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:03, 08:43](652 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:07, 08:54](701 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:07, 06:27](674 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 11:47] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:19, 06:30](813 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:15, 06:35](792 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:58, 15:54](1200 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:52] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:44](1147 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:39](1108 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:34](1010 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:37](1011 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:38](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:39](1157 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:40](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:35](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:16](1067 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:24, 06:19](1051 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:44](1132 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:52](2488 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:55](2493 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:26] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:17](1054 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:30] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:39](1153 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:13, 01:07] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:48](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:50](312 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:33](310 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:33] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:11, 03:40](1966 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 10:57] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:14, 03:37](1939 MB) + +PASS -- COMPILE 'atml_intel' [13:12, 12:28] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:06, 04:24](1837 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:02, 04:30](1851 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:27](1074 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 05:09] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:01, 05:48](1866 MB) + +PASS -- COMPILE 'atmw_intel' [12:14, 11:39] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:55](1902 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 11:22] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:20, 04:11](3182 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:15, 04:55](3080 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:47, 05:18](3083 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:54] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:09, 21:26](4438 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:45] +PASS -- TEST 'control_c48_gnu' [12:43, 11:16](1523 MB) +PASS -- TEST 'control_stochy_gnu' [04:31, 03:28](491 MB) +PASS -- TEST 'control_ras_gnu' [06:25, 04:45](496 MB) +PASS -- TEST 'control_p8_gnu' [06:01, 04:46](1449 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:41](1437 MB) +PASS -- TEST 'control_flake_gnu' [11:26, 10:23](531 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:12, 04:14] +PASS -- TEST 'rap_control_gnu' [11:35, 10:53](840 MB) +PASS -- TEST 'rap_decomp_gnu' [12:36, 11:08](842 MB) +PASS -- TEST 'rap_2threads_gnu' [10:40, 09:49](918 MB) +PASS -- TEST 'rap_restart_gnu' [07:57, 05:37](566 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:44, 10:50](803 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:34, 11:02](837 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:41, 08:12](567 MB) +PASS -- TEST 'hrrr_control_gnu' [06:42, 05:37](804 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:37, 05:37](794 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:37, 05:04](913 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:37, 05:37](835 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [08:33, 02:55](550 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:33, 02:55](644 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:35](801 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:36] +PASS -- TEST 'control_diag_debug_gnu' [02:50, 01:40](1254 MB) +PASS -- TEST 'regional_debug_gnu' [11:42, 10:17](723 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:25, 02:42](801 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:35](804 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:26, 02:42](807 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:28, 02:39](805 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:45, 02:50](892 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 04:12](803 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:39](805 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:24, 02:39](801 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:33](440 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:23, 01:47](429 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:43, 01:48](1421 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:25, 02:45](811 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:25, 03:02](811 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:24](819 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:35] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:14] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:35, 09:26](696 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:36, 04:58](703 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:43, 08:38](751 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [11:36, 04:37](731 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:29, 05:06](697 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:40, 07:07](542 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:27, 02:33](525 MB) +PASS -- TEST 'conus13km_control_gnu' [09:03, 03:16](868 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:49, 06:25](866 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:49, 01:49](540 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 10:59] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](719 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:47] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [07:25, 02:36](700 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [07:25, 02:34](699 MB) +PASS -- TEST 'conus13km_debug_gnu' [11:55, 07:00](863 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [11:48, 07:10](565 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [12:44, 07:25](864 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:45, 07:09](931 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:48] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:25, 02:39](718 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 16:49] + +PASS -- COMPILE 's2s_gnu' [16:11, 15:55] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:08, 07:16](1533 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:26] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:12, 16:04] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:57, 20:29](1438 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:10] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:54, 12:53](1446 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:19, 03:03](682 MB) SYNOPSIS: -Starting Date/Time: 20240719 06:09:15 -Ending Date/Time: 20240719 08:28:29 -Total Time: 02h:19m:33s +Starting Date/Time: 20240723 00:42:52 +Ending Date/Time: 20240723 02:20:57 +Total Time: 01h:39m:21s Compiles Completed: 57/57 -Tests Completed: 243/245 -Failed Tests: -* TEST regional_atmaq_debug_intel: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3156853/regional_atmaq_debug_intel/err -* TEST cpld_debug_pdlib_p8_gnu: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3156853/cpld_debug_pdlib_p8_gnu/err - -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 HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_270761 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:08] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [33:55, 25:33](4444 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:24] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:54, 13:00](1448 MB) - -SYNOPSIS: -Starting Date/Time: 20240719 14:49:13 -Ending Date/Time: 20240719 15:29:43 -Total Time: 00h:40m:42s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Tests Completed: 245/245 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index ad7efc7a77..8a915a55f8 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: -64efdbc9603ff8a1dad35b3050a8bbdccc306e1f +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,381 +35,381 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_647280 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1318349 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:29] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 07:35](2138 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:17] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:08, 13:15](2012 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:28, 14:21](2321 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:30, 06:30](1327 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:01, 15:09](1928 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:33, 14:12](1991 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:55] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:55, 22:01](1976 MB) - -PASS -- COMPILE 's2swa_intel' [13:11, 12:24] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:00, 08:04](2183 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:07, 08:22](2193 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:16, 04:18](1968 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:01, 08:19](2222 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:07, 04:26](1750 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:59, 10:04](2551 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:56, 07:45](2175 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:04, 06:57](2087 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:08, 08:37](2186 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:40, 15:56](2991 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:23, 06:44](2928 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [17:31, 10:13](3799 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:12, 06:49](3646 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:51, 05:07](2155 MB) - -PASS -- COMPILE 's2sw_intel' [12:11, 11:31] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:52, 07:16](2032 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:58, 04:07](2081 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:55] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:46, 08:21](2211 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:26] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:42, 05:53](2059 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:11, 10:42] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:50, 03:57](2081 MB) - -PASS -- COMPILE 's2s_intel' [09:11, 08:49] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:42, 07:06](3114 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:13](3074 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:42, 01:12](2512 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:11, 15:53] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:06, 07:21](2196 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:11, 14:32] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:05, 13:55](2043 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:05, 06:52](1400 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:55, 16:56](1973 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:59] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:48, 22:33](2016 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:30] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:20, 02:50](714 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:31, 02:24](1615 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:31](1622 MB) -PASS -- TEST 'control_latlon_intel' [03:28, 02:26](1617 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:27](1613 MB) -PASS -- TEST 'control_c48_intel' [07:33, 06:51](1739 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:23, 05:45](857 MB) -PASS -- TEST 'control_c192_intel' [09:41, 08:54](1775 MB) -PASS -- TEST 'control_c384_intel' [10:19, 08:56](2050 MB) -PASS -- TEST 'control_c384gdas_intel' [08:54, 07:08](1523 MB) -PASS -- TEST 'control_stochy_intel' [02:19, 01:23](671 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:36, 00:49](551 MB) -PASS -- TEST 'control_lndp_intel' [02:19, 01:18](674 MB) -PASS -- TEST 'control_iovr4_intel' [02:20, 02:05](661 MB) -PASS -- TEST 'control_iovr5_intel' [02:23, 02:04](662 MB) -PASS -- TEST 'control_p8_intel' [03:47, 02:54](1899 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:48, 02:51](1908 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:45, 02:35](1909 MB) -PASS -- TEST 'control_restart_p8_intel' [02:45, 01:30](1157 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:38, 02:39](1900 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:46, 01:29](1216 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:38, 03:12](1902 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:36, 02:40](1997 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:29, 05:01](1904 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 03:33](1984 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:47, 02:38](1918 MB) -PASS -- TEST 'merra2_thompson_intel' [03:53, 02:54](1919 MB) -PASS -- TEST 'regional_control_intel' [05:26, 04:39](1202 MB) -PASS -- TEST 'regional_restart_intel' [04:29, 03:12](1181 MB) -PASS -- TEST 'regional_decomp_intel' [05:23, 04:56](1189 MB) -PASS -- TEST 'regional_2threads_intel' [03:23, 03:01](1159 MB) -PASS -- TEST 'regional_noquilt_intel' [05:28, 04:26](1517 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:28, 04:37](1196 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 04:38](1209 MB) -PASS -- TEST 'regional_wofs_intel' [07:23, 06:23](2085 MB) - -PASS -- COMPILE 'rrfs_intel' [08:10, 07:58] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:46, 06:58](1209 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 03:30](1405 MB) -PASS -- TEST 'rap_decomp_intel' [08:40, 07:12](1151 MB) -PASS -- TEST 'rap_2threads_intel' [07:32, 06:30](1376 MB) -PASS -- TEST 'rap_restart_intel' [04:58, 03:40](1141 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:48, 07:00](1206 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:36, 07:08](1152 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:01, 05:15](1221 MB) -PASS -- TEST 'hrrr_control_intel' [04:51, 03:28](1089 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:35, 03:31](1054 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:37, 03:09](1132 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:29, 01:49](1023 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:55, 06:46](1211 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:43](2011 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 07:28](2194 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 07:05] -PASS -- TEST 'control_csawmg_intel' [06:31, 05:37](1041 MB) -PASS -- TEST 'control_ras_intel' [03:17, 02:53](876 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 04:05] -PASS -- TEST 'control_csawmg_gnu' [07:39, 07:07](1070 MB) - -PASS -- COMPILE 'wam_intel' [08:11, 07:13] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:34, 11:24](1679 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 13:10] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:49, 02:47](1903 MB) -PASS -- TEST 'regional_control_faster_intel' [05:27, 04:54](1197 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 05:01] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:36, 02:10](1645 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:31, 02:09](1634 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:33](847 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:19, 02:16](841 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:27, 04:27](1166 MB) -PASS -- TEST 'control_ras_debug_intel' [03:19, 02:17](851 MB) -PASS -- TEST 'control_diag_debug_intel' [04:34, 02:22](1698 MB) -PASS -- TEST 'control_debug_p8_intel' [05:34, 03:32](1931 MB) -PASS -- TEST 'regional_debug_intel' [17:28, 15:36](1160 MB) -PASS -- TEST 'rap_control_debug_intel' [05:22, 04:04](1230 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:21, 04:01](1231 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:18, 04:08](1233 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:18, 04:07](1240 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 04:11](1233 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:29, 04:20](1321 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:18, 04:11](1236 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 04:17](1238 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:20, 04:15](1243 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 04:14](1234 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:09](1227 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 04:16](1240 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:52](1225 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 04:08](1230 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:20, 04:57](1238 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:18, 04:07](1241 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 07:09](1243 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:30] -PASS -- TEST 'control_csawmg_debug_gnu' [03:35, 02:45](1058 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:10, 03:03] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 07:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 03:40](1273 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:34, 05:33](1136 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:08, 02:54](1020 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:45, 05:04](1295 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:51, 02:39](1048 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:46, 03:02](978 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:55, 04:06](1092 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:37, 01:35](973 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:12, 12:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:41, 01:51](1317 MB) -PASS -- TEST 'conus13km_2threads_intel' [09:39, 00:52](1210 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [09:37, 01:04](1156 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:24] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:33, 03:44](1098 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 02:56] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 04:09](1118 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:19, 03:57](1116 MB) -PASS -- TEST 'conus13km_debug_intel' [13:32, 12:23](1359 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:29, 12:22](1019 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:26, 07:09](1255 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:27, 12:05](1425 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 03:01] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:20, 04:03](1173 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 09:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:09, 05:24](839 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 05:17](1278 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:26, 06:52](961 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [24:14, 14:54](986 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:29, 15:11](1000 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:03, 05:33](608 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:25, 07:00](621 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [10:43, 02:38](437 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:04, 07:37](547 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:49, 04:00](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:50, 03:56](618 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 04:49](682 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:27, 01:09](456 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:24] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:45, 11:40](648 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:28] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:52, 17:06](765 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:53, 16:23](843 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 09:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:58, 10:14](824 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:10, 09:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:08, 05:41](957 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:08, 05:39](917 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:46, 16:39](1345 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:14] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:17, 02:11](1132 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:28](1109 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:14, 02:06](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:09](1006 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:07](1011 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:12](1143 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:12](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:04](1014 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:56, 04:57](1156 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:54, 04:50](1151 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:10](1154 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:03](2385 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:16, 03:05](2372 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:57] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:18, 05:07](1071 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:36] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:14](1163 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:45] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:54](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:50](579 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:23, 00:29](588 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:12, 08:02] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:50, 03:54](2037 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:12, 07:42] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:48, 03:44](2009 MB) - -PASS -- COMPILE 'atml_intel' [09:10, 08:35] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:07, 06:22](1906 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:06, 06:39](1912 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:39, 03:03](1149 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:10, 03:59] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:53, 06:06](1938 MB) - -PASS -- COMPILE 'atmw_intel' [09:10, 09:07] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:45](1948 MB) - -PASS -- COMPILE 'atmaero_intel' [09:10, 07:39] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:45, 03:41](2030 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:15](1795 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:17](1838 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:12] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:29, 16:54](4561 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 04:42] -PASS -- TEST 'control_c48_gnu' [10:40, 09:25](1571 MB) -PASS -- TEST 'control_stochy_gnu' [03:23, 02:23](745 MB) -PASS -- TEST 'control_ras_gnu' [04:19, 03:47](739 MB) -PASS -- TEST 'control_p8_gnu' [05:48, 04:48](1709 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:35, 03:48](1732 MB) -PASS -- TEST 'control_flake_gnu' [05:19, 04:32](816 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:22] -PASS -- TEST 'rap_control_gnu' [08:34, 07:41](1089 MB) -PASS -- TEST 'rap_decomp_gnu' [08:46, 07:49](1089 MB) -PASS -- TEST 'rap_2threads_gnu' [07:46, 07:04](1122 MB) -PASS -- TEST 'rap_restart_gnu' [04:59, 03:57](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:49, 07:39](1087 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 08:02](1084 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:04, 05:46](885 MB) -PASS -- TEST 'hrrr_control_gnu' [04:49, 03:55](1074 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:38, 04:05](1135 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:32, 03:43](1024 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:31, 03:57](1074 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:23, 02:05](881 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:21, 02:00](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:52, 07:48](1086 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:38] -PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:16](1631 MB) -PASS -- TEST 'regional_debug_gnu' [08:25, 07:45](1118 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:17, 01:57](1105 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:19, 01:58](1094 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:16, 02:02](1106 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:08](1099 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:16](1275 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 03:11](1101 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 02:06](1111 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:17, 02:06](1098 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:15](729 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:21](733 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:36, 01:57](1757 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:06](1105 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:23](1105 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:53, 03:21](1108 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 03:19] +PASS -- COMPILE 's2swa_32bit_intel' [11:11, 10:40] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:12, 08:10](2139 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:39] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:17, 13:28](1990 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:37, 13:56](2288 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:33, 06:29](1303 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:59, 14:51](1924 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:35, 12:57](2003 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:11] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:19, 20:32](1977 MB) + +PASS -- COMPILE 's2swa_intel' [11:11, 10:46] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:03, 08:07](2194 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:15, 07:56](2190 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:17, 04:17](1994 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:00, 08:04](2208 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:19, 04:23](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:59, 09:09](2550 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:59, 08:30](2185 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:10, 06:24](2089 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:20, 08:21](2194 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:05, 16:03](2982 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:44, 05:47](2934 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:38, 09:44](3807 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:07, 05:50](3640 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:07, 05:20](2159 MB) + +PASS -- COMPILE 's2sw_intel' [11:11, 11:04] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:53, 07:05](2036 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:09, 04:31](2082 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:11] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:09, 07:22](2220 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:00] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:10, 05:10](2068 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:11, 08:41] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:05, 04:01](2077 MB) + +PASS -- COMPILE 's2s_intel' [09:11, 08:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:45, 07:01](3108 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:49, 02:08](3079 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:13](2517 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 18:06] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:21, 07:42](2200 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:57] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:01, 13:51](2046 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:15, 06:45](1377 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:04, 15:26](1964 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:47] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:09, 22:33](2026 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:19, 02:54](718 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:36, 02:22](1610 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:38, 02:32](1620 MB) +PASS -- TEST 'control_latlon_intel' [03:29, 02:26](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:35, 02:26](1604 MB) +PASS -- TEST 'control_c48_intel' [07:36, 06:50](1739 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:28, 05:48](846 MB) +PASS -- TEST 'control_c192_intel' [09:48, 08:56](1760 MB) +PASS -- TEST 'control_c384_intel' [10:29, 08:57](2040 MB) +PASS -- TEST 'control_c384gdas_intel' [09:15, 06:56](1525 MB) +PASS -- TEST 'control_stochy_intel' [02:19, 01:23](674 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:36, 00:50](534 MB) +PASS -- TEST 'control_lndp_intel' [02:19, 01:21](667 MB) +PASS -- TEST 'control_iovr4_intel' [02:19, 02:03](666 MB) +PASS -- TEST 'control_iovr5_intel' [02:21, 02:06](666 MB) +PASS -- TEST 'control_p8_intel' [03:58, 02:36](1898 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:58, 02:35](1904 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:00, 02:43](1901 MB) +PASS -- TEST 'control_restart_p8_intel' [02:48, 01:30](1161 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:47, 02:35](1890 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:02, 01:31](1180 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:48, 02:39](1901 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:44, 02:25](1995 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:35, 04:27](1913 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:55, 03:31](1975 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:55, 02:38](1902 MB) +PASS -- TEST 'merra2_thompson_intel' [04:04, 02:53](1919 MB) +PASS -- TEST 'regional_control_intel' [05:34, 04:40](1199 MB) +PASS -- TEST 'regional_restart_intel' [03:33, 02:38](1179 MB) +PASS -- TEST 'regional_decomp_intel' [05:28, 04:56](1199 MB) +PASS -- TEST 'regional_2threads_intel' [03:29, 03:03](1164 MB) +PASS -- TEST 'regional_noquilt_intel' [05:37, 04:31](1526 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:34, 04:41](1197 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:33, 04:45](1195 MB) +PASS -- TEST 'regional_wofs_intel' [06:31, 05:37](2089 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 08:04] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:45, 06:40](1225 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:53, 03:26](1408 MB) +PASS -- TEST 'rap_decomp_intel' [07:45, 06:56](1160 MB) +PASS -- TEST 'rap_2threads_intel' [07:45, 06:10](1376 MB) +PASS -- TEST 'rap_restart_intel' [05:09, 03:29](1160 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:45, 06:39](1213 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:45, 06:53](1162 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:07, 05:00](1199 MB) +PASS -- TEST 'hrrr_control_intel' [04:45, 03:25](1070 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:46, 03:31](1048 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:45, 03:10](1119 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:32, 01:51](1023 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:02, 06:27](1215 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:24, 07:34](2015 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 07:25](2167 MB) + +PASS -- COMPILE 'csawmg_intel' [08:16, 07:16] +PASS -- TEST 'control_csawmg_intel' [06:36, 05:27](1048 MB) +PASS -- TEST 'control_ras_intel' [03:19, 02:49](856 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:12] +PASS -- TEST 'control_csawmg_gnu' [07:43, 06:48](1071 MB) + +PASS -- COMPILE 'wam_intel' [08:16, 07:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:42, 10:18](1670 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 13:48] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:55, 02:20](1906 MB) +PASS -- TEST 'regional_control_faster_intel' [05:31, 04:16](1202 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:18] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:33, 02:18](1628 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:36, 02:15](1640 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:21, 02:36](843 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:20](833 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:30, 04:31](1166 MB) +PASS -- TEST 'control_ras_debug_intel' [03:21, 02:18](850 MB) +PASS -- TEST 'control_diag_debug_intel' [03:38, 02:15](1692 MB) +PASS -- TEST 'control_debug_p8_intel' [04:38, 03:15](1924 MB) +PASS -- TEST 'regional_debug_intel' [15:31, 14:58](1158 MB) +PASS -- TEST 'rap_control_debug_intel' [04:20, 04:04](1231 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:22, 04:02](1223 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:22, 04:02](1235 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:19, 04:04](1233 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:19, 03:59](1231 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:32, 04:10](1305 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:19, 04:03](1240 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 04:11](1233 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:19, 04:03](1234 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:20, 04:01](1229 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:20, 04:05](1231 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:20, 04:04](1236 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:25, 06:39](1220 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 03:58](1219 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 04:53](1232 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:20, 04:03](1233 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:59, 07:04](1235 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:15, 04:41] +PASS -- TEST 'control_csawmg_debug_gnu' [03:38, 02:15](1056 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 02:54] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 07:07] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:52, 03:14](1278 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:44, 05:24](1133 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:02, 02:52](1021 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:48, 05:09](1271 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:41, 02:37](1033 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:42, 03:07](995 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:46, 04:01](1098 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:25, 01:35](956 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:48, 01:42](1301 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:40, 00:43](1218 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:37, 01:05](1168 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:36, 03:49](1098 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 03:02] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 04:09](1108 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:20, 04:04](1115 MB) +PASS -- TEST 'conus13km_debug_intel' [13:42, 12:14](1366 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:38, 12:18](1019 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:36, 07:16](1253 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:37, 12:12](1423 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:55] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:27, 04:10](1164 MB) + +PASS -- COMPILE 'hafsw_intel' [10:10, 09:32] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:07, 05:24](878 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:24, 05:09](1276 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:18, 06:23](950 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 14:03](985 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:12, 15:07](1006 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:00, 05:24](611 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:25, 06:50](627 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:52, 02:32](438 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:16, 07:22](540 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:50, 03:52](626 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:38](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:58, 04:48](678 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:28, 01:04](453 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:21] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:51, 11:23](647 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:16] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:58, 16:18](731 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:06, 16:47](815 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 09:35] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 09:59](823 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:10, 09:58] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:15, 05:22](951 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:09, 05:30](933 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:52, 16:23](1338 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:39] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:12](1137 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:19](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:04](1012 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:16, 02:11](1012 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:10](1015 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:16, 02:07](1146 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 02:09](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:16, 02:04](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:04, 04:55](1153 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:59, 04:52](1155 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:11](1161 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:06](2442 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:17, 03:10](2433 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:10, 02:48] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:17, 05:10](1075 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:39] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:13](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:46] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:50](338 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:27, 00:48](584 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:30](585 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:14, 08:01] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:00, 03:18](2027 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 07:20] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:57, 03:05](1993 MB) + +PASS -- COMPILE 'atml_intel' [09:12, 08:58] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:10, 05:40](1897 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 05:41](1906 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:55, 02:59](1149 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:21] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:04, 05:14](1936 MB) + +PASS -- COMPILE 'atmw_intel' [10:11, 09:32] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:54, 01:37](1951 MB) + +PASS -- COMPILE 'atmaero_intel' [08:11, 08:02] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:47, 03:44](2030 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:51, 04:14](1814 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:49, 04:19](1814 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:11, 03:07] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:40, 16:35](4597 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 05:45] +PASS -- TEST 'control_c48_gnu' [10:38, 09:23](1572 MB) +PASS -- TEST 'control_stochy_gnu' [03:22, 02:20](729 MB) +PASS -- TEST 'control_ras_gnu' [04:18, 03:46](734 MB) +PASS -- TEST 'control_p8_gnu' [04:54, 03:50](1712 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:44, 03:43](1718 MB) +PASS -- TEST 'control_flake_gnu' [05:21, 04:27](807 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 05:21] +PASS -- TEST 'rap_control_gnu' [08:42, 07:41](1085 MB) +PASS -- TEST 'rap_decomp_gnu' [08:42, 07:58](1083 MB) +PASS -- TEST 'rap_2threads_gnu' [08:41, 07:10](1127 MB) +PASS -- TEST 'rap_restart_gnu' [04:58, 03:56](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:54, 07:39](1087 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 07:54](1088 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:00, 05:43](884 MB) +PASS -- TEST 'hrrr_control_gnu' [04:42, 04:00](1075 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:41, 04:02](1137 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:37, 03:35](1043 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:42, 03:55](1072 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:24, 02:06](881 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:24, 02:00](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:59, 07:36](1081 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:15, 09:52] +PASS -- TEST 'control_diag_debug_gnu' [02:38, 01:16](1632 MB) +PASS -- TEST 'regional_debug_gnu' [07:30, 06:42](1120 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:19, 02:02](1103 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:25, 01:54](1096 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:22, 01:55](1103 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:02](1103 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:29, 02:03](1275 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:22, 03:04](1106 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 02:00](1109 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:19, 01:54](1100 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:25](731 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:18, 01:21](728 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:32, 01:23](1755 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:21, 01:56](1106 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:14](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:56, 03:23](1110 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:37] FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_gnu' [, ]( MB) -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:38] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:32, 07:23](966 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:46, 03:54](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:43, 06:51](998 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:35, 03:33](873 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 03:56](952 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:58, 05:28](860 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:20, 02:00](858 MB) -PASS -- TEST 'conus13km_control_gnu' [03:41, 02:32](1269 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:30, 01:01](1176 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:33, 01:31](951 MB) +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:30] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:35, 07:15](964 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:04, 03:57](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:50, 06:41](972 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:43, 03:31](892 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:39, 03:56](952 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:01, 05:25](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:26, 01:57](856 MB) +PASS -- TEST 'conus13km_control_gnu' [03:45, 02:39](1267 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:42, 01:03](1177 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:41, 01:26](931 MB) -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:10, 11:28] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:30, 04:28](989 MB) +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 12:00] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:35, 04:24](989 MB) -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 08:33] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:19, 02:04](979 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:19, 01:59](970 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:32, 05:32](1285 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:32, 05:49](969 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:28, 03:34](1191 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:28, 05:35](1361 MB) +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:11, 09:24] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:21, 01:58](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:21, 01:54](969 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:41, 05:38](1284 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:38, 05:40](962 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:31, 03:23](1195 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:33, 05:38](1352 MB) -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 08:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:16](1004 MB) +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 07:02] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:22, 02:09](1008 MB) -PASS -- COMPILE 's2swa_gnu' [16:10, 15:30] +PASS -- COMPILE 's2swa_gnu' [19:11, 18:41] -PASS -- COMPILE 's2s_gnu' [15:16, 14:31] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:06, 04:47](2722 MB) +PASS -- COMPILE 's2s_gnu' [17:11, 16:39] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:05, 04:49](3126 MB) -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:47] +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:55] PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:15] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:00, 25:47](2873 MB) +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:18, 25:50](3035 MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [08:10, 05:00] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:50, 12:14](2893 MB) +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 05:07] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:53, 11:55](3067 MB) -PASS -- COMPILE 'datm_cdeps_gnu' [20:10, 17:29] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:20](762 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 16:03] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:16, 02:16](764 MB) SYNOPSIS: -Starting Date/Time: 20240719 09:01:22 -Ending Date/Time: 20240719 10:35:41 -Total Time: 01h:35m:03s +Starting Date/Time: 20240722 22:35:45 +Ending Date/Time: 20240723 00:04:32 +Total Time: 01h:29m:44s Compiles Completed: 57/57 Tests Completed: 243/244 Failed Tests: * TEST control_wam_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2340/tests/logs/log_hercules/run_control_wam_debug_gnu.log +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2354/tests/logs/log_hercules/run_control_wam_debug_gnu.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -422,7 +422,7 @@ Result: FAILURE ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -64efdbc9603ff8a1dad35b3050a8bbdccc306e1f +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -432,10 +432,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -445,7 +445,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -456,20 +456,21 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_902260 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3970037 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:36] -PASS -- TEST 'control_wam_debug_gnu' [10:32, 05:19](1576 MB) +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:54] +PASS -- TEST 'control_wam_debug_gnu' [06:27, 05:17](1569 MB) SYNOPSIS: -Starting Date/Time: 20240719 11:23:50 -Ending Date/Time: 20240719 11:37:33 -Total Time: 00h:13m:48s +Starting Date/Time: 20240723 05:32:03 +Ending Date/Time: 20240723 05:42:56 +Total Time: 00h:10m:54s Compiles Completed: 1/1 Tests Completed: 1/1 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index f04154312b..dd22fbd906 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,254 +35,254 @@ 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: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3314321 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1587621 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [41:15, 40:51] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:43, 08:35](2017 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:17, 53:48] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:08, 21:41](1899 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:15, 23:18](2009 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:18, 11:39](1113 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:49, 23:16](1837 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [48:15, 47:00] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:44, 21:17](1892 MB) - -PASS -- COMPILE 's2swa_intel' [42:15, 41:02] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:21, 09:04](2056 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:42, 08:39](2047 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:53, 04:48](1713 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 08:49](2077 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:52, 05:06](1736 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:14, 08:30](2322 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:17, 09:05](2047 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:34, 07:44](2012 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:46, 09:09](2056 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:33, 08:48](2031 MB) - -PASS -- COMPILE 's2sw_intel' [39:14, 38:41] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:39, 07:34](1912 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:52, 07:54](1977 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:06] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:47, 11:02](2092 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:13, 05:36] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:29, 07:44](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:17, 34:33] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:41, 06:41](1972 MB) - -PASS -- COMPILE 's2s_intel' [36:17, 35:13] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:07, 12:36](3062 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:07, 03:55](3057 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:09, 02:28](2481 MB) - -PASS -- COMPILE 's2swa_faster_intel' [36:22, 34:12] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:23, 08:07](2054 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [54:20, 52:24] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:40, 21:42](1913 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:51, 11:23](1131 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:33, 25:08](1881 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:25] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:31, 33:26](1930 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:14, 37:51] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [05:38, 04:33](649 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 04:03](1551 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:18, 04:12](1555 MB) -PASS -- TEST 'control_latlon_intel' [05:10, 03:59](1548 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:19, 04:05](1548 MB) -PASS -- TEST 'control_c48_intel' [13:29, 11:47](1727 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:52, 10:16](848 MB) -PASS -- TEST 'control_c192_intel' [16:47, 14:19](1685 MB) -PASS -- TEST 'control_c384_intel' [20:36, 18:00](1822 MB) -PASS -- TEST 'control_c384gdas_intel' [17:57, 13:34](1020 MB) -PASS -- TEST 'control_stochy_intel' [03:33, 02:21](607 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:21](441 MB) -PASS -- TEST 'control_lndp_intel' [03:33, 02:13](609 MB) -PASS -- TEST 'control_iovr4_intel' [04:36, 03:25](604 MB) -PASS -- TEST 'control_iovr5_intel' [04:36, 03:22](599 MB) -PASS -- TEST 'control_p8_intel' [06:34, 04:40](1845 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 04:43](1843 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:55, 04:30](1841 MB) -PASS -- TEST 'control_restart_p8_intel' [04:19, 02:39](1057 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:37, 04:41](1843 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:17, 02:48](1077 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:37, 04:48](1833 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:37, 04:38](1935 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:16, 07:52](1846 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 05:49](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:50, 04:45](1851 MB) -PASS -- TEST 'merra2_thompson_intel' [08:12, 05:09](1850 MB) -PASS -- TEST 'regional_control_intel' [09:08, 08:03](1016 MB) -PASS -- TEST 'regional_restart_intel' [05:47, 04:52](1024 MB) -PASS -- TEST 'regional_decomp_intel' [10:08, 08:27](1018 MB) -PASS -- TEST 'regional_2threads_intel' [07:09, 05:43](1006 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:15, 07:54](1019 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:07, 08:01](1011 MB) - -PASS -- COMPILE 'rrfs_intel' [36:14, 35:12] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [13:28, 10:13](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:35, 05:41](1221 MB) -PASS -- TEST 'rap_decomp_intel' [14:15, 10:37](987 MB) -PASS -- TEST 'rap_2threads_intel' [13:28, 09:41](1077 MB) -PASS -- TEST 'rap_restart_intel' [10:27, 06:00](997 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:12, 10:10](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:38, 10:47](990 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:17, 08:20](1007 MB) -PASS -- TEST 'hrrr_control_intel' [13:18, 05:15](989 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:45, 05:24](983 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:18, 04:48](1062 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:34, 03:51](916 MB) -PASS -- TEST 'rrfs_v1beta_intel' [16:52, 10:02](988 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:39, 12:18](1941 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:43, 12:16](1939 MB) - -PASS -- COMPILE 'csawmg_intel' [33:16, 32:19] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [15:55, 08:52](966 MB) -PASS -- TEST 'control_ras_intel' [10:32, 04:29](667 MB) - -PASS -- COMPILE 'wam_intel' [33:18, 32:25] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [17:03, 14:37](1620 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [53:18, 52:29] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:36, 04:15](1845 MB) -PASS -- TEST 'regional_control_faster_intel' [08:47, 07:09](1020 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:11] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:01, 03:26](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:05, 03:18](1576 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:55](776 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:35](781 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:59, 06:01](1099 MB) -PASS -- TEST 'control_ras_debug_intel' [04:33, 03:34](785 MB) -PASS -- TEST 'control_diag_debug_intel' [08:05, 03:26](1637 MB) -PASS -- TEST 'control_debug_p8_intel' [08:01, 04:16](1877 MB) -PASS -- TEST 'regional_debug_intel' [27:00, 23:08](1037 MB) -PASS -- TEST 'rap_control_debug_intel' [07:33, 06:16](1164 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:51, 06:07](1162 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:45, 06:12](1161 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:41, 06:14](1169 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:16](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:00, 06:34](1245 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:27, 06:26](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 06:51](1164 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:28, 06:13](1161 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:28, 06:10](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:31, 06:03](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:34, 06:21](1169 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:31, 10:10](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [09:30, 06:13](1163 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:32, 07:32](1161 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:38, 06:13](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:47, 10:46](1173 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:43] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:08, 16:54](1651 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:17, 30:27] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:25, 05:17](1055 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:06, 08:19](907 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:11, 04:27](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:06, 07:59](949 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:11, 04:06](910 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:11, 04:40](862 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:10, 06:26](906 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 02:25](847 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [50:16, 49:06] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:09, 02:59](1109 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:52, 01:24](1047 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:52, 01:37](1025 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:17, 31:05] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:53, 05:41](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:28] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 06:11](1046 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 06:04](1043 MB) -PASS -- TEST 'conus13km_debug_intel' [20:07, 18:41](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:07, 18:45](883 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:01, 10:53](1101 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:01, 18:37](1223 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:33] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:18](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [39:17, 38:12] ( 1 warnings 1427 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [11:29, 09:19](692 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:44, 12:16](1083 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:47, 13:02](774 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:32, 17:18](800 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:52, 18:34](818 MB) -PASS -- TEST 'gnv1_nested_intel' [15:48, 13:04](1675 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:15, 33:34] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:26, 10:40](774 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:05, 10:59](749 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:21] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:49](1058 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:15](1030 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:27, 03:41](921 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:44](926 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:27, 03:48](919 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:27, 03:40](1063 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 03:45](1057 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 03:34](923 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:31, 08:16](886 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:33, 08:10](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 03:53](1061 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 05:19](2386 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 05:35](2346 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:52] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:27, 08:06](1007 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:39] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 03:38](1063 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:13, 01:50] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:34, 01:39](236 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:23](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:51](252 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:16, 33:38] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:55, 06:09](1915 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:17, 33:29] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:37, 05:41](1905 MB) - -PASS -- COMPILE 'atml_intel' [38:14, 37:25] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:49, 18:45](1861 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [20:46, 18:24](1856 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:52, 05:19](1073 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 05:44] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:54, 09:22](1887 MB) - -PASS -- COMPILE 'atmw_intel' [36:16, 35:28] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:36, 03:13](1866 MB) - -PASS -- COMPILE 'atmaero_intel' [34:19, 33:55] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:36, 06:04](1936 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:39, 06:32](1725 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:17, 06:37](1741 MB) +PASS -- COMPILE 's2swa_32bit_intel' [41:15, 40:03] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:46, 07:34](2007 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:17, 48:44] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:59, 21:35](1897 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:23, 23:36](2010 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:45, 11:05](1115 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:34, 24:37](1855 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:17, 49:39] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:55, 21:07](1890 MB) + +PASS -- COMPILE 's2swa_intel' [41:15, 40:34] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:33, 08:04](2056 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:44, 07:58](2051 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:41, 05:17](1717 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:33, 08:13](2062 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:54, 04:59](1738 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:42, 08:05](2319 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:15, 08:06](2026 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:20, 06:55](2006 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:45, 07:57](2063 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:36, 07:25](2036 MB) + +PASS -- COMPILE 's2sw_intel' [39:14, 38:12] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 06:37](1863 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:57, 06:29](1981 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:43] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:47, 11:07](2035 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:19] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:16, 07:49](1936 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:15, 34:44] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:46, 06:14](1957 MB) + +PASS -- COMPILE 's2s_intel' [36:13, 35:04] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:27, 12:25](3075 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:04, 03:55](3060 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:03, 02:28](2483 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:20, 33:36] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:08, 07:56](2046 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:21, 48:39] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:41, 22:07](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:45, 11:11](1129 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:39, 25:02](1889 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:21] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:51, 32:50](1898 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:15, 37:50] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [05:38, 04:33](650 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:24, 03:55](1550 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:30, 04:05](1560 MB) +PASS -- TEST 'control_latlon_intel' [05:20, 03:55](1552 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:30, 04:12](1559 MB) +PASS -- TEST 'control_c48_intel' [13:37, 11:48](1735 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:54, 09:13](853 MB) +PASS -- TEST 'control_c192_intel' [16:44, 14:26](1685 MB) +PASS -- TEST 'control_c384_intel' [20:44, 17:57](1829 MB) +PASS -- TEST 'control_c384gdas_intel' [19:55, 13:24](1015 MB) +PASS -- TEST 'control_stochy_intel' [03:37, 02:19](606 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:31, 01:21](441 MB) +PASS -- TEST 'control_lndp_intel' [03:38, 02:14](603 MB) +PASS -- TEST 'control_iovr4_intel' [04:42, 03:27](599 MB) +PASS -- TEST 'control_iovr5_intel' [04:41, 03:27](603 MB) +PASS -- TEST 'control_p8_intel' [06:47, 04:30](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:56, 04:37](1852 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:05, 04:28](1844 MB) +PASS -- TEST 'control_restart_p8_intel' [05:11, 02:58](1057 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:49, 04:30](1841 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 03:03](1074 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:49, 04:37](1837 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:49, 04:25](1940 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:27, 07:39](1855 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:26, 05:49](1910 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:02, 04:37](1842 MB) +PASS -- TEST 'merra2_thompson_intel' [07:20, 04:57](1853 MB) +PASS -- TEST 'regional_control_intel' [09:18, 08:08](1016 MB) +PASS -- TEST 'regional_restart_intel' [05:47, 04:28](1013 MB) +PASS -- TEST 'regional_decomp_intel' [10:19, 08:30](1017 MB) +PASS -- TEST 'regional_2threads_intel' [07:21, 05:32](1009 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:27, 08:13](1024 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [12:52, 07:55](1018 MB) + +PASS -- COMPILE 'rrfs_intel' [36:16, 35:05] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [12:05, 10:10](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 05:44](1217 MB) +PASS -- TEST 'rap_decomp_intel' [12:05, 10:53](984 MB) +PASS -- TEST 'rap_2threads_intel' [11:32, 09:40](1090 MB) +PASS -- TEST 'rap_restart_intel' [07:31, 05:18](995 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:13, 10:10](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:13, 10:53](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:32, 07:54](992 MB) +PASS -- TEST 'hrrr_control_intel' [07:04, 05:25](990 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:06, 05:40](981 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:39, 04:54](1066 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:49](912 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:42, 09:58](991 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:36, 12:42](1929 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:36, 12:18](1927 MB) + +PASS -- COMPILE 'csawmg_intel' [33:16, 32:25] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:51, 08:58](966 MB) +PASS -- TEST 'control_ras_intel' [05:30, 04:30](661 MB) + +PASS -- COMPILE 'wam_intel' [33:14, 32:37] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [16:04, 14:31](1619 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [53:17, 52:41] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:28, 04:28](1837 MB) +PASS -- TEST 'regional_control_faster_intel' [08:43, 07:35](1020 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:17] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 03:34](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:03, 03:31](1573 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:33, 03:55](776 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:33](787 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:05, 05:58](1100 MB) +PASS -- TEST 'control_ras_debug_intel' [04:32, 03:37](783 MB) +PASS -- TEST 'control_diag_debug_intel' [05:03, 03:31](1636 MB) +PASS -- TEST 'control_debug_p8_intel' [06:06, 04:20](1875 MB) +PASS -- TEST 'regional_debug_intel' [23:59, 22:56](1046 MB) +PASS -- TEST 'rap_control_debug_intel' [07:35, 06:27](1162 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:37, 06:16](1158 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:38, 06:28](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:37, 06:25](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:35, 06:25](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:49, 06:48](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:35, 06:28](1162 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 06:29](1163 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:35, 06:24](1164 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:11](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:08](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 06:10](1162 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:32, 10:10](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 06:05](1160 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:31, 07:34](1167 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:32, 06:21](1158 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:36, 10:44](1167 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:41] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:08, 16:50](1651 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:14, 30:14] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:44, 05:19](1086 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:11, 08:26](905 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:18, 04:29](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:10, 07:58](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:18, 04:05](910 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:18, 04:43](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:07, 06:24](898 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 02:27](852 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:15, 48:39] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:16, 03:04](1112 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:00, 01:23](1053 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:39](1029 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:14, 30:54] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:03, 05:39](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:13, 04:45] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 06:13](1040 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 06:02](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [20:14, 18:37](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:12, 18:51](872 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:05, 10:51](1102 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:07, 18:42](1226 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:37] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:39, 06:15](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [39:15, 38:11] ( 1 warnings 1427 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:25, 07:07](710 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:34, 06:45](1083 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:03, 09:32](769 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:29, 16:35](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:43, 18:17](819 MB) +PASS -- TEST 'gnv1_nested_intel' [11:08, 07:12](1671 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:15, 33:20] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:36, 08:49](777 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:38, 08:55](750 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:27] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:42](1060 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:33, 02:16](1029 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:42](932 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:48](921 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:50](923 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:39](1066 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:44](1046 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:28, 03:42](924 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:01, 08:02](896 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:49, 08:01](841 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:44](1064 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 05:09](2398 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:29, 05:11](2355 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:36] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:29, 08:03](1007 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:09] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 03:41](1068 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:54] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:44, 01:44](233 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:35, 01:25](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 01:05](252 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:16, 33:50] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:35, 05:32](1910 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:16, 33:32] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:35, 05:35](1896 MB) + +PASS -- COMPILE 'atml_intel' [38:17, 37:19] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:56, 09:19](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:52, 09:02](1863 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:04, 05:06](1073 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:12, 05:45] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:53, 08:15](1886 MB) + +PASS -- COMPILE 'atmw_intel' [36:18, 35:11] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:32, 03:02](1868 MB) + +PASS -- COMPILE 'atmaero_intel' [34:14, 33:02] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:37, 06:01](1942 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:36, 06:22](1724 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 06:38](1741 MB) SYNOPSIS: -Starting Date/Time: 20240719 07:42:32 -Ending Date/Time: 20240719 11:45:08 -Total Time: 04h:03m:15s +Starting Date/Time: 20240723 05:48:30 +Ending Date/Time: 20240723 09:45:37 +Total Time: 03h:57m:43s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 24218707bd..13807a10e1 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: -64efdbc9603ff8a1dad35b3050a8bbdccc306e1f +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,285 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3326160 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3439478 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:23] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:45, 14:15](2096 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 21:28] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:44, 18:05](1957 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:22, 19:17](2139 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 09:05](1199 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:52, 20:21](1882 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:13, 22:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:38, 17:46](1954 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:37] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:45, 27:22](1940 MB) - -PASS -- COMPILE 's2swa_intel' [16:12, 15:55] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:41, 14:47](2147 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:43, 14:22](2147 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:47, 07:46](1809 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:41, 14:30](2156 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:48, 07:46](1709 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:35, 13:13](2434 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:35, 14:02](2128 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 12:59](2048 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:42, 14:22](2153 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:33, 16:15](2750 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:01, 08:43](2725 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:26, 11:27](3659 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:48, 07:18](3499 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:32, 05:51](2120 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 15:01] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:15, 13:39](1983 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:29, 04:43](2048 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 07:08] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:28, 08:34](2160 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:50] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:07, 06:15](2009 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:24] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:30, 04:38](2054 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 14:29] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:02, 09:51](3105 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:59, 03:19](3085 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:58, 02:14](2521 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:12, 23:12] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:34, 15:07](2133 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [30:13, 29:11] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:23, 18:09](2008 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:31, 09:09](1261 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:11, 20:21](1919 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 07:08] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:25, 28:42](1974 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 13:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:23, 03:39](688 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 03:04](1588 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:47, 03:14](1593 MB) -PASS -- TEST 'control_latlon_intel' [03:36, 03:04](1593 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:47, 03:08](1587 MB) -PASS -- TEST 'control_c48_intel' [09:48, 09:09](1743 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:35, 07:55](857 MB) -PASS -- TEST 'control_c192_intel' [12:56, 11:16](1728 MB) -PASS -- TEST 'control_c384_intel' [13:42, 12:08](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [12:39, 09:24](1360 MB) -PASS -- TEST 'control_stochy_intel' [02:27, 01:47](645 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:40, 01:04](477 MB) -PASS -- TEST 'control_lndp_intel' [02:27, 01:40](649 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:42](643 MB) -PASS -- TEST 'control_iovr5_intel' [03:26, 02:39](642 MB) -PASS -- TEST 'control_p8_intel' [05:14, 03:26](1882 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:15, 03:31](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 03:24](1886 MB) -PASS -- TEST 'control_restart_p8_intel' [03:16, 02:06](1094 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:11, 03:24](1875 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:16, 02:03](1118 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:10, 03:30](1868 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:10, 03:37](1979 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:46](1885 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:48](1955 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:32, 03:28](1891 MB) -PASS -- TEST 'merra2_thompson_intel' [05:35, 03:45](1894 MB) -PASS -- TEST 'regional_control_intel' [07:40, 06:21](1071 MB) -PASS -- TEST 'regional_restart_intel' [04:34, 03:29](1086 MB) -PASS -- TEST 'regional_decomp_intel' [07:39, 06:39](1088 MB) -PASS -- TEST 'regional_2threads_intel' [05:29, 04:37](1077 MB) -PASS -- TEST 'regional_noquilt_intel' [07:42, 06:23](1385 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:44, 06:17](1088 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 06:21](1094 MB) -PASS -- TEST 'regional_wofs_intel' [08:42, 07:32](1909 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 12:09] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:26, 08:16](1056 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:56, 05:04](1306 MB) -PASS -- TEST 'rap_decomp_intel' [10:09, 08:31](1025 MB) -PASS -- TEST 'rap_2threads_intel' [09:57, 08:16](1171 MB) -PASS -- TEST 'rap_restart_intel' [06:33, 04:18](1046 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:18, 08:12](1054 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:53, 08:26](1029 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:28, 06:10](1077 MB) -PASS -- TEST 'hrrr_control_intel' [05:55, 04:13](1029 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:51, 04:20](1024 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:18, 04:04](1091 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:24, 02:23](947 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:22, 08:04](1048 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:44](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:30, 09:23](2024 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:50] -PASS -- TEST 'control_csawmg_intel' [07:45, 06:27](1022 MB) -PASS -- TEST 'control_ras_intel' [04:27, 03:25](723 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 10:58] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:45, 12:13](1668 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:13, 19:56] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:23, 03:13](1894 MB) -PASS -- TEST 'regional_control_faster_intel' [06:41, 06:03](1087 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:16] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:41](1620 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:36](1624 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:26, 03:00](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:49](821 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:44, 04:27](1140 MB) -PASS -- TEST 'control_ras_debug_intel' [03:26, 02:46](831 MB) -PASS -- TEST 'control_diag_debug_intel' [03:49, 02:42](1677 MB) -PASS -- TEST 'control_debug_p8_intel' [03:50, 03:01](1923 MB) -PASS -- TEST 'regional_debug_intel' [18:46, 17:39](1113 MB) -PASS -- TEST 'rap_control_debug_intel' [05:29, 04:58](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:48](1211 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:29, 04:50](1218 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:29, 04:55](1211 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 04:54](1208 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:12](1299 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 05:13](1205 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 05:02](1210 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:21, 05:00](1212 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 05:09](1213 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:54](1206 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 05:05](1205 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 08:04](1211 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:27, 04:53](1206 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 06:03](1216 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:28, 04:58](1210 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:29](1217 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:28] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:47, 13:39](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 11:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 04:49](1166 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:04, 06:59](1001 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:31, 03:42](934 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:54, 07:08](1075 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:05, 03:35](949 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:43, 03:50](905 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:26, 05:13](980 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:45, 01:58](885 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:14, 18:50] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:50, 02:36](1173 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:10](1127 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:42, 01:28](1087 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:15, 11:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:39, 04:28](980 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:13] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:52](1096 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:43](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [14:54, 14:10](1239 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 14:25](946 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 08:31](1178 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 14:23](1315 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:13] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:53](1141 MB) - -PASS -- COMPILE 'hafsw_intel' [14:12, 13:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:17, 06:02](760 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 06:22](1134 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 07:37](832 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:12, 24:21](866 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:21, 28:49](890 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:02, 07:02](517 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:27, 08:24](526 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:57, 03:24](384 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:21, 09:31](492 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:42](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 04:26](544 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 05:45](595 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:30](408 MB) -PASS -- TEST 'gnv1_nested_intel' [07:13, 04:16](1732 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:15, 05:37] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:02, 13:17](594 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:15, 22:19] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:01, 12:58](674 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:03, 13:05](741 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:13, 14:17] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:04, 08:47](724 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:13, 13:33] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:19, 07:37](834 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:20, 07:25](819 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:01, 16:26](1202 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:12, 09:26] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:57](1145 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:52](1109 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:53](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:52](1010 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:55](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 03:04](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:59](1158 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:50](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:18, 06:30](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:18, 06:24](1004 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:19, 02:59](1142 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:21, 04:18](2437 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:21](2381 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:12, 05:15] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:33](1077 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 09:17] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 03:00](1149 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:32] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:36, 01:03](254 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 01:03](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:38](317 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:12, 12:20] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:05, 04:07](1968 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:53] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:18, 03:52](1963 MB) - -PASS -- COMPILE 'atml_intel' [14:12, 13:53] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:32, 04:47](1874 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:31, 04:49](1870 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:57, 02:49](1087 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 06:25] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:29, 05:53](1900 MB) - -PASS -- COMPILE 'atmw_intel' [12:13, 12:08] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:31, 02:05](1918 MB) - -PASS -- COMPILE 'atmaero_intel' [12:12, 11:42] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:14, 04:33](1994 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:08, 05:11](1782 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:02, 05:19](1787 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 05:03] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:00, 21:02](4556 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:35, 14:21](2084 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 18:07](1965 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:04, 19:08](2126 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:59, 09:03](1206 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:46, 20:19](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:12, 20:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:44, 17:45](1963 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:11] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:40, 27:12](1942 MB) + +PASS -- COMPILE 's2swa_intel' [17:12, 16:38] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:27, 14:24](2148 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:34, 14:43](2132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:40, 07:57](1819 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:37, 13:56](2157 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:40, 07:51](1715 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:29, 13:06](2428 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:27, 14:15](2129 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:25, 12:07](2045 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:35, 14:33](2136 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:38, 15:55](2725 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:00, 08:52](2732 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:30, 11:30](3657 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:00, 07:09](3503 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:21, 05:52](2118 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 15:04] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:11, 13:25](1984 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:26, 04:40](2046 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 08:00] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:25, 08:50](2180 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:11] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:03, 06:09](2007 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:39] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:25, 04:41](2052 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 14:37] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:02, 09:42](3107 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:18](3086 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:57, 02:01](2521 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:11, 22:50] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:37, 14:28](2138 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:07, 18:12](1992 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:23, 09:00](1247 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:13, 20:23](1920 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:57] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:10, 28:49](1977 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:24, 03:38](696 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:34, 03:02](1590 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:50, 03:09](1595 MB) +PASS -- TEST 'control_latlon_intel' [03:42, 03:04](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:51, 03:06](1589 MB) +PASS -- TEST 'control_c48_intel' [10:50, 09:13](1739 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:35, 07:56](860 MB) +PASS -- TEST 'control_c192_intel' [11:49, 11:09](1734 MB) +PASS -- TEST 'control_c384_intel' [14:54, 12:16](2011 MB) +PASS -- TEST 'control_c384gdas_intel' [12:41, 09:31](1357 MB) +PASS -- TEST 'control_stochy_intel' [02:22, 01:48](644 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:51, 01:03](476 MB) +PASS -- TEST 'control_lndp_intel' [02:22, 01:42](649 MB) +PASS -- TEST 'control_iovr4_intel' [03:30, 02:42](636 MB) +PASS -- TEST 'control_iovr5_intel' [03:28, 02:36](642 MB) +PASS -- TEST 'control_p8_intel' [05:09, 03:26](1890 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:11, 03:27](1883 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:25, 03:18](1890 MB) +PASS -- TEST 'control_restart_p8_intel' [03:07, 01:57](1094 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:10, 03:22](1872 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 01:55](1123 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:15, 03:26](1878 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:37](1972 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:53, 05:48](1882 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:47](1949 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:20, 03:28](1892 MB) +PASS -- TEST 'merra2_thompson_intel' [05:35, 03:44](1898 MB) +PASS -- TEST 'regional_control_intel' [07:38, 06:23](1088 MB) +PASS -- TEST 'regional_restart_intel' [04:37, 03:34](1086 MB) +PASS -- TEST 'regional_decomp_intel' [07:38, 06:46](1088 MB) +PASS -- TEST 'regional_2threads_intel' [05:37, 04:39](1080 MB) +PASS -- TEST 'regional_noquilt_intel' [07:38, 06:17](1385 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 06:18](1083 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 06:24](1087 MB) +PASS -- TEST 'regional_wofs_intel' [08:34, 07:37](1909 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:17] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:03, 08:12](1062 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 05:08](1298 MB) +PASS -- TEST 'rap_decomp_intel' [10:03, 08:30](1022 MB) +PASS -- TEST 'rap_2threads_intel' [10:25, 08:15](1168 MB) +PASS -- TEST 'rap_restart_intel' [06:34, 04:16](1055 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:24, 08:09](1051 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:23, 08:29](1028 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 06:09](1071 MB) +PASS -- TEST 'hrrr_control_intel' [06:25, 04:15](1026 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:21, 04:21](1022 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:22, 04:06](1098 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:51, 02:19](959 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:18, 08:03](1045 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 09:38](1992 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:25](2025 MB) + +PASS -- COMPILE 'csawmg_intel' [12:12, 11:45] +PASS -- TEST 'control_csawmg_intel' [07:33, 06:32](1021 MB) +PASS -- TEST 'control_ras_intel' [04:21, 03:25](716 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 11:31] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:45, 12:11](1666 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:25] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:25, 03:12](1891 MB) +PASS -- TEST 'regional_control_faster_intel' [06:37, 06:06](1090 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:00] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:45](1627 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:46](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:25, 03:00](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:43](819 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:43, 04:20](1140 MB) +PASS -- TEST 'control_ras_debug_intel' [03:24, 02:46](820 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 02:42](1675 MB) +PASS -- TEST 'control_debug_p8_intel' [04:48, 03:07](1907 MB) +PASS -- TEST 'regional_debug_intel' [18:45, 17:34](1094 MB) +PASS -- TEST 'rap_control_debug_intel' [05:27, 04:53](1209 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:49](1195 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:54](1211 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:49](1204 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:57](1212 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:42, 05:09](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:03](1209 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 04:59](1212 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:19](1212 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:57](1206 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:49](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:26, 05:01](1209 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 07:48](1203 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:27, 04:47](1206 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 06:06](1205 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:54](1212 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 08:18](1210 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 05:04] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:43, 13:29](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:00, 04:47](1165 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 07:00](999 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:41, 03:43](936 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:15, 07:04](1076 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:38, 03:36](950 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:40, 03:49](902 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:27, 05:13](980 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:58](877 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:12, 18:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:50, 02:39](1195 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:41, 01:12](1129 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:27](1084 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:28](973 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:16] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:56](1087 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 04:44](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [14:49, 14:11](1248 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 14:30](947 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:19](1177 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:36, 14:33](1305 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:16] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 05:00](1143 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 14:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:15, 06:01](756 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:29, 06:19](1139 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 07:34](833 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:12, 24:18](872 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:25, 28:47](887 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:04, 07:01](515 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:32, 08:22](524 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:26](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:35, 09:30](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:45](543 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:03, 04:24](548 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:06, 05:45](597 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:35](411 MB) +PASS -- TEST 'gnv1_nested_intel' [07:12, 04:15](1727 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 06:05] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:58, 13:17](596 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:11, 22:32] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:06, 12:50](675 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:05, 12:41](736 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:14, 08:45](719 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 13:21] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:21, 07:27](846 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 07:22](819 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:28](1205 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:34] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:56](1155 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:58](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:19, 02:48](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:52](1006 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:52](1017 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:58](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:58](1144 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:54](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:07, 06:27](1029 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:08, 06:29](997 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:54](1142 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 04:17](2441 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:24](2375 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 05:45] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:30](1079 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 09:28] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:56](1138 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:20] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 01:01](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:56](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:35](319 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 12:02] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:09, 04:03](1975 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 11:46] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:07, 03:50](1965 MB) + +PASS -- COMPILE 'atml_intel' [14:11, 13:15] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:34, 04:50](1876 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:50](1873 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:42](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 06:29] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:27, 05:51](1903 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 12:26] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 02:12](1918 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 11:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:15, 04:31](1993 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:09, 05:14](1782 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 05:18](1786 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 05:14] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:04, 21:02](4556 MB) SYNOPSIS: -Starting Date/Time: 20240719 09:03:08 -Ending Date/Time: 20240719 10:34:12 -Total Time: 01h:32m:06s +Starting Date/Time: 20240722 22:32:52 +Ending Date/Time: 20240723 00:04:05 +Total Time: 01h:32m:05s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 99ed895c99..4cafa4b74d 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: -64efdbc9603ff8a1dad35b3050a8bbdccc306e1f +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,239 +35,239 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_17359 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_192846 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [35:53, 35:11] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [54:55, 01:12](3098 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:40, 22:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [07:14, 01:46](1825 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [44:56, 01:51](1855 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [44:56, 01:27](971 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [07:15, 01:57](1802 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:39, 23:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [07:15, 01:11](1824 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:20, 04:40] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:36, 02:06](1848 MB) - -PASS -- COMPILE 's2swa_intel' [12:28, 11:35] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:27, 01:07](3133 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:27, 01:32](3131 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:07, 01:13](3063 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:26, 01:12](3150 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:06, 01:11](3085 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:27, 01:29](3371 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:26, 01:01](3124 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [18:28, 01:18](3079 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:27, 01:29](3132 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:35, 04:37](4122 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [46:02, 04:41](4267 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [18:27, 01:40](3113 MB) - -PASS -- COMPILE 's2sw_intel' [11:26, 11:01] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [19:28, 00:58](1836 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:28, 01:18](1898 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:26, 10:22] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:28, 01:19](1893 MB) - -PASS -- COMPILE 's2s_intel' [22:39, 22:04] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:14, 00:46](2926 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [08:14, 01:10](2920 MB) -PASS -- TEST 'cpld_restart_c48_intel' [00:04, 01:04](2325 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:38, 22:06] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:16, 01:57](3133 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:28, 11:31] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:27, 01:46](1834 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [59:59, 00:54](1011 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [00:00, 01:16](1810 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:30, 15:58] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [09:05, 01:45](1862 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [21:38, 20:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [57:48, 00:19](571 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [57:48, 01:18](1476 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [57:48, 01:23](1479 MB) -PASS -- TEST 'control_latlon_intel' [57:48, 01:00](1476 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [57:48, 01:10](1472 MB) -PASS -- TEST 'control_c48_intel' [57:47, 01:16](1592 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [57:47, 00:56](715 MB) -PASS -- TEST 'control_c192_intel' [57:48, 01:10](1584 MB) -PASS -- TEST 'control_c384_intel' [57:52, 01:49](1909 MB) -PASS -- TEST 'control_c384gdas_intel' [57:52, 02:37](1091 MB) -PASS -- TEST 'control_stochy_intel' [57:48, 00:23](531 MB) -PASS -- TEST 'control_stochy_restart_intel' [53:19, 00:57](333 MB) -PASS -- TEST 'control_lndp_intel' [57:48, 00:29](525 MB) -PASS -- TEST 'control_iovr4_intel' [57:48, 00:40](525 MB) -PASS -- TEST 'control_iovr5_intel' [57:48, 00:45](525 MB) -PASS -- TEST 'control_p8_intel' [57:48, 01:06](1768 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [57:48, 01:22](1764 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [57:48, 02:03](1769 MB) -PASS -- TEST 'control_restart_p8_intel' [51:18, 01:47](921 MB) -PASS -- TEST 'control_noqr_p8_intel' [55:56, 01:37](1767 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [49:37, 01:39](915 MB) -PASS -- TEST 'control_decomp_p8_intel' [55:26, 00:59](1760 MB) -PASS -- TEST 'control_2threads_p8_intel' [53:22, 01:05](1857 MB) -PASS -- TEST 'control_p8_lndp_intel' [53:20, 01:05](1769 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [52:16, 01:45](1833 MB) -PASS -- TEST 'control_p8_mynn_intel' [52:15, 01:29](1778 MB) -PASS -- TEST 'merra2_thompson_intel' [51:15, 01:41](1772 MB) -PASS -- TEST 'regional_control_intel' [50:59, 01:08](853 MB) -PASS -- TEST 'regional_restart_intel' [44:18, 00:25](853 MB) -PASS -- TEST 'regional_decomp_intel' [50:54, 00:50](857 MB) -PASS -- TEST 'regional_2threads_intel' [50:51, 00:50](909 MB) -PASS -- TEST 'regional_noquilt_intel' [50:49, 00:21](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [50:12, 00:18](851 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [50:09, 01:14](853 MB) -PASS -- TEST 'regional_wofs_intel' [50:08, 00:32](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [33:52, 32:35] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [45:35, 01:31](911 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [45:36, 01:01](1088 MB) -PASS -- TEST 'rap_decomp_intel' [45:35, 01:17](911 MB) -PASS -- TEST 'rap_2threads_intel' [45:35, 01:42](999 MB) -PASS -- TEST 'rap_restart_intel' [36:27, 02:03](781 MB) -PASS -- TEST 'rap_sfcdiff_intel' [45:35, 01:57](909 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [45:35, 01:41](907 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [35:59, 01:45](781 MB) -PASS -- TEST 'hrrr_control_intel' [45:35, 01:11](902 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [45:35, 01:43](902 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [45:36, 01:36](984 MB) -PASS -- TEST 'hrrr_control_restart_intel' [40:12, 00:42](739 MB) -PASS -- TEST 'rrfs_v1beta_intel' [45:35, 02:00](907 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [45:35, 00:46](1872 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:32, 01:04](1858 MB) - -PASS -- COMPILE 'csawmg_intel' [18:34, 18:08] -PASS -- TEST 'control_csawmg_intel' [59:53, 01:08](876 MB) -PASS -- TEST 'control_ras_intel' [59:53, 01:01](563 MB) - -PASS -- COMPILE 'wam_intel' [13:28, 12:59] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [04:58, 00:42](1567 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:33, 13:28] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [49:57, 01:23](1769 MB) -PASS -- TEST 'regional_control_faster_intel' [49:45, 00:50](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [23:42, 18:16] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:34, 00:53](1504 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:24, 00:57](1500 MB) -PASS -- TEST 'control_stochy_debug_intel' [44:23, 00:34](706 MB) -PASS -- TEST 'control_lndp_debug_intel' [44:17, 00:37](702 MB) -PASS -- TEST 'control_csawmg_debug_intel' [43:26, 00:25](1016 MB) -PASS -- TEST 'control_ras_debug_intel' [43:23, 01:02](713 MB) -PASS -- TEST 'control_diag_debug_intel' [43:06, 01:09](1564 MB) -PASS -- TEST 'control_debug_p8_intel' [42:59, 00:51](1799 MB) -PASS -- TEST 'regional_debug_intel' [42:56, 00:16](904 MB) -PASS -- TEST 'rap_control_debug_intel' [42:24, 00:53](1088 MB) -PASS -- TEST 'hrrr_control_debug_intel' [41:49, 00:37](1086 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [41:45, 00:28](1088 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [40:23, 00:43](1093 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [40:12, 00:44](1085 MB) -PASS -- TEST 'rap_diag_debug_intel' [39:51, 01:10](1169 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [39:50, 01:08](1092 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [39:36, 00:53](1093 MB) -PASS -- TEST 'rap_lndp_debug_intel' [39:30, 00:43](1091 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [39:29, 00:40](1090 MB) -PASS -- TEST 'rap_noah_debug_intel' [39:24, 00:32](1082 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [38:53, 00:52](1089 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [38:18, 01:04](1086 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [38:16, 00:26](1082 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [37:37, 00:44](1097 MB) -PASS -- TEST 'rap_flake_debug_intel' [37:16, 00:43](1092 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [37:14, 01:48](1095 MB) - -PASS -- COMPILE 'wam_debug_intel' [24:43, 19:06] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [36:53, 01:03](1595 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [40:04, 35:34] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:01, 01:10](954 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:53, 01:10](789 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:23, 01:44](787 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:16, 01:28](853 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [26:12, 01:40](838 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:41, 01:57](790 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:34, 01:15](687 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:16, 00:48](671 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [28:50, 23:52] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [36:41, 00:57](1005 MB) -PASS -- TEST 'conus13km_2threads_intel' [32:21, 00:51](1009 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [32:20, 00:41](880 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:33, 12:29] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [48:57, 01:09](812 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [19:56, 19:01] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [33:31, 00:25](961 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [33:27, 00:33](955 MB) -PASS -- TEST 'conus13km_debug_intel' [32:14, 01:26](1052 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [32:07, 01:04](726 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [31:59, 01:02](1054 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [31:59, 01:01](1121 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [18:35, 15:25] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [36:26, 00:44](997 MB) - -PASS -- COMPILE 'hafsw_intel' [11:29, 10:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [36:05, 01:59](617 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [36:02, 01:05](965 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [35:58, 02:00](661 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [35:57, 01:48](696 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [35:37, 02:27](713 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [35:15, 01:05](391 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [35:15, 02:26](408 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [33:57, 00:51](287 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [31:58, 02:54](373 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:29, 01:24](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [31:24, 00:53](422 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:51, 01:25](498 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [29:57, 00:28](315 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:32, 08:29] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:58, 01:30](517 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:56, 19:47] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:26, 01:32](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:32, 01:19](716 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 10:42] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:56, 00:58](714 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:25, 09:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [29:39, 02:15](657 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:37, 01:54](644 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:54, 00:14](882 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:29, 13:51] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [25:12, 01:00](1829 MB) - -PASS -- COMPILE 'atml_intel' [20:36, 19:46] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [14:31, 13:23] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [17:50, 15:58] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [21:22, 01:13](3023 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [21:22, 01:39](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [21:22, 01:13](2921 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:21, 06:25] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:10, 01:51](4439 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:37, 19:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [48:10, 01:17](3099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:41, 25:19] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [43:05, 01:59](1824 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:55, 01:35](1853 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [24:00, 01:46](987 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:06, 01:35](1805 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [35:54, 35:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [32:52, 01:08](1821 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:40] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [03:28, 01:55](1848 MB) + +PASS -- COMPILE 's2swa_intel' [20:34, 20:17] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [48:12, 01:24](3136 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [48:12, 01:45](3128 MB) +PASS -- TEST 'cpld_restart_p8_intel' [39:44, 01:06](3064 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [48:12, 01:25](3152 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [39:43, 01:45](3085 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [48:12, 01:51](3367 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [48:12, 01:31](3127 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [48:13, 01:29](3073 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:12, 01:37](3132 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [48:21, 04:38](4128 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:41, 04:45](4270 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [48:12, 01:37](3113 MB) + +PASS -- COMPILE 's2sw_intel' [23:40, 23:07] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [45:06, 01:46](1829 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [45:06, 01:57](1895 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 12:02] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:19, 01:06](1895 MB) + +PASS -- COMPILE 's2s_intel' [34:51, 33:50] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [33:54, 00:59](2924 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [33:54, 01:25](2920 MB) +PASS -- TEST 'cpld_restart_c48_intel' [29:50, 01:20](2324 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:35, 20:36] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [47:11, 01:57](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:41, 22:57] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [45:05, 00:50](1837 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:32, 01:36](1009 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:33, 01:44](1809 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [19:35, 18:56] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:52, 01:42](1859 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [29:49, 29:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [26:29, 00:25](570 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [26:29, 00:31](1468 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:29, 00:25](1481 MB) +PASS -- TEST 'control_latlon_intel' [26:29, 00:23](1476 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [26:29, 00:33](1477 MB) +PASS -- TEST 'control_c48_intel' [26:28, 01:08](1592 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [26:28, 00:50](713 MB) +PASS -- TEST 'control_c192_intel' [26:29, 00:44](1587 MB) +PASS -- TEST 'control_c384_intel' [26:33, 01:22](1907 MB) +PASS -- TEST 'control_c384gdas_intel' [26:33, 01:54](1087 MB) +PASS -- TEST 'control_stochy_intel' [26:29, 00:25](531 MB) +PASS -- TEST 'control_stochy_restart_intel' [23:59, 01:04](334 MB) +PASS -- TEST 'control_lndp_intel' [26:29, 00:30](526 MB) +PASS -- TEST 'control_iovr4_intel' [26:29, 00:42](525 MB) +PASS -- TEST 'control_iovr5_intel' [25:48, 00:45](525 MB) +PASS -- TEST 'control_p8_intel' [23:59, 01:58](1763 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [23:43, 02:00](1772 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [23:02, 02:05](1770 MB) +PASS -- TEST 'control_restart_p8_intel' [18:34, 01:02](919 MB) +PASS -- TEST 'control_noqr_p8_intel' [23:02, 02:06](1757 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [17:21, 01:05](922 MB) +PASS -- TEST 'control_decomp_p8_intel' [22:56, 01:59](1757 MB) +PASS -- TEST 'control_2threads_p8_intel' [22:55, 01:07](1863 MB) +PASS -- TEST 'control_p8_lndp_intel' [22:40, 01:10](1776 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [22:35, 02:02](1823 MB) +PASS -- TEST 'control_p8_mynn_intel' [22:33, 01:48](1784 MB) +PASS -- TEST 'merra2_thompson_intel' [22:29, 01:54](1773 MB) +PASS -- TEST 'regional_control_intel' [22:09, 01:06](854 MB) +PASS -- TEST 'regional_restart_intel' [15:21, 00:19](852 MB) +PASS -- TEST 'regional_decomp_intel' [22:04, 00:51](852 MB) +PASS -- TEST 'regional_2threads_intel' [21:49, 00:59](900 MB) +PASS -- TEST 'regional_noquilt_intel' [21:29, 00:16](1178 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [20:53, 01:24](850 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [20:53, 01:17](853 MB) +PASS -- TEST 'regional_wofs_intel' [20:39, 00:36](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [30:53, 30:02] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [17:09, 01:40](910 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:56, 01:13](1088 MB) +PASS -- TEST 'rap_decomp_intel' [16:47, 01:24](916 MB) +PASS -- TEST 'rap_2threads_intel' [16:45, 01:46](999 MB) +PASS -- TEST 'rap_restart_intel' [08:10, 01:25](783 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:14, 02:11](908 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [16:05, 01:46](910 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:44, 01:52](780 MB) +PASS -- TEST 'hrrr_control_intel' [15:49, 01:01](903 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [15:47, 00:58](907 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [15:44, 01:24](987 MB) +PASS -- TEST 'hrrr_control_restart_intel' [10:43, 01:08](739 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:35, 01:19](905 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:22, 01:02](1865 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:05, 01:10](1854 MB) + +PASS -- COMPILE 'csawmg_intel' [19:37, 19:08] +PASS -- TEST 'control_csawmg_intel' [28:32, 00:23](875 MB) +PASS -- TEST 'control_ras_intel' [28:32, 00:57](562 MB) + +PASS -- COMPILE 'wam_intel' [18:33, 18:01] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [28:37, 00:52](1561 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:37, 20:21] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [19:42, 02:05](1771 MB) +PASS -- TEST 'regional_control_faster_intel' [18:33, 00:23](850 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [20:36, 19:52] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [18:19, 01:17](1505 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:06, 01:21](1497 MB) +PASS -- TEST 'control_stochy_debug_intel' [17:26, 00:52](702 MB) +PASS -- TEST 'control_lndp_debug_intel' [17:21, 01:04](704 MB) +PASS -- TEST 'control_csawmg_debug_intel' [15:05, 00:31](1013 MB) +PASS -- TEST 'control_ras_debug_intel' [14:42, 01:00](709 MB) +PASS -- TEST 'control_diag_debug_intel' [14:09, 01:16](1565 MB) +PASS -- TEST 'control_debug_p8_intel' [14:08, 00:55](1792 MB) +PASS -- TEST 'regional_debug_intel' [14:01, 00:16](898 MB) +PASS -- TEST 'rap_control_debug_intel' [13:50, 00:43](1087 MB) +PASS -- TEST 'hrrr_control_debug_intel' [13:22, 00:53](1079 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [13:19, 00:47](1084 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [13:17, 00:45](1085 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:16, 00:46](1087 MB) +PASS -- TEST 'rap_diag_debug_intel' [12:55, 00:42](1170 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:55, 00:42](1088 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:54, 00:42](1091 MB) +PASS -- TEST 'rap_lndp_debug_intel' [12:54, 00:48](1091 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:38, 00:56](1086 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:43, 00:48](1081 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:42, 00:45](1083 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:38, 00:40](1084 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:34, 00:48](1081 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:14, 00:55](1093 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:19, 00:42](1088 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:18, 02:04](1089 MB) + +PASS -- COMPILE 'wam_debug_intel' [17:30, 16:27] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [09:09, 00:17](1597 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:32, 14:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [28:34, 01:26](957 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [28:33, 01:27](788 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [28:33, 01:58](790 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [28:33, 01:54](858 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [28:34, 01:34](844 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:33, 01:50](789 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:18, 01:32](687 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:45, 00:15](669 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:38, 17:31] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:22, 01:04](1004 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:21, 00:53](1007 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:44, 00:42](882 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:32, 14:16] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 01:21](813 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:40, 18:03] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:01, 00:54](962 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:46, 01:06](956 MB) +PASS -- TEST 'conus13km_debug_intel' [06:46, 01:20](1052 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [06:45, 01:14](724 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [06:44, 00:26](1055 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [06:37, 01:07](1123 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:32, 13:58] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:34, 00:57](995 MB) + +PASS -- COMPILE 'hafsw_intel' [18:45, 18:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:20, 02:04](620 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:20, 00:38](968 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:18, 01:37](661 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [06:02, 01:21](698 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:45, 02:07](710 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 01:06](390 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:30, 02:17](407 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:18, 01:35](286 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:01, 02:14](374 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:10, 01:34](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:10, 00:49](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:09, 00:46](494 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:43, 00:29](316 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [17:43, 17:18] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:38, 01:17](520 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:35, 16:27] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [01:58, 01:46](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:15, 01:35](709 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [22:42, 21:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [01:02, 01:49](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [27:48, 27:25] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [56:41, 02:05](662 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:41, 02:02](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [56:39, 00:26](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:37, 18:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [58:42, 00:48](1829 MB) + +PASS -- COMPILE 'atml_intel' [14:30, 13:40] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [08:25, 07:22] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:28, 09:57] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [00:29, 01:24](3024 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [00:27, 01:58](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [00:11, 01:55](2922 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:32, 10:24] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [58:24, 01:05](4440 MB) SYNOPSIS: -Starting Date/Time: 20240719 15:28:45 -Ending Date/Time: 20240719 17:07:59 -Total Time: 01h:40m:04s +Starting Date/Time: 20240722 17:50:57 +Ending Date/Time: 20240722 19:28:17 +Total Time: 01h:37m:51s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/parm/noahmptable.tbl b/tests/parm/noahmptable.tbl index 3ffd5b5320..44531919ed 100644 --- a/tests/parm/noahmptable.tbl +++ b/tests/parm/noahmptable.tbl @@ -217,7 +217,7 @@ !--------------------------------------------------------------------------------------------------------------------------------------------------------------------- ch2op = 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, dleaf = 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, - z0mvt = 1.09, 1.10, 0.85, 0.80, 0.80, 0.20, 0.06, 0.60, 0.50, 0.12, 0.30, 0.15, 1.00, 0.14, 0.00, 0.00, 0.00, 0.30, 0.20, 0.03, + z0mvt = 1.00, 1.50, 0.75, 0.90, 0.85, 0.20, 0.10, 0.90, 0.60, 0.20, 0.30, 0.25, 1.00, 0.25, 0.00, 0.015, 0.00, 0.30, 0.10, 0.05, hvt = 20.0, 20.0, 18.0, 16.0, 16.0, 1.10, 1.10, 13.0, 10.0, 1.00, 5.00, 2.00, 15.0, 1.50, 0.00, 0.00, 0.00, 4.00, 2.00, 0.50, hvb = 8.50, 8.00, 7.00, 11.5, 10.0, 0.10, 0.10, 0.10, 0.10, 0.05, 0.10, 0.10, 1.00, 0.10, 0.00, 0.00, 0.00, 0.30, 0.20, 0.10, z0mhvt= 0.0545, 0.055, 0.047, 0.050, 0.050, 0.182, 0.0545, 0.046, 0.050, 0.120, 0.060, 0.075, 0.067, 0.093, 0.000, 0.000, 0.000, 0.075, 0.100, 0.060, @@ -226,32 +226,34 @@ !mfsno = 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, ! c. he 12/17/2020: optimized mfsno values dependent on land type based on evaluation with snotel swe and modis scf, surface albedo mfsno = 1.00, 1.00, 1.00, 1.00, 1.00, 2.00, 2.00, 2.00, 2.00, 2.00, 3.00, 3.00, 4.00, 4.00, 2.50, 3.00, 3.00, 3.50, 3.50, 3.50, +!mfsno = 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, ! c. he 12/17/2020: optimized snow cover factor (m) in scf formulation to replace original constant 2.5*z0,z0=0.002m, based on evaluation with snotel swe and modis scf, surface albedo ! scffac = 0.008, 0.008, 0.008, 0.008, 0.008, 0.016, 0.016, 0.020, 0.020, 0.020, 0.020, 0.014, 0.042, 0.026, 0.030, 0.016, 0.030, 0.030, 0.030, 0.030, - scffac = 0.005, 0.005, 0.005, 0.005, 0.005, 0.008, 0.008, 0.010, 0.010, 0.010, 0.010, 0.007, 0.021, 0.013, 0.015, 0.008, 0.015, 0.015, 0.015, 0.015, + scffac = 0.005, 0.005, 0.005, 0.005, 0.005, 0.008, 0.008, 0.010, 0.010, 0.010, 0.010, 0.007, 0.021, 0.013, 0.015, 0.008, 0.015, 0.015, 0.015, 0.015, +! scffac = 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, cbiom = 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, ! row 1: vis ! row 2: near ir rhol_vis=0.07, 0.10, 0.07, 0.10, 0.10, 0.07, 0.07, 0.07, 0.10, 0.11, 0.105, 0.11, 0.00, 0.11, 0.00, 0.00, 0.00, 0.10, 0.10, 0.10, - rhol_nir=0.35, 0.45, 0.35, 0.45, 0.45, 0.35, 0.35, 0.35, 0.45, 0.58, 0.515, 0.58, 0.00, 0.58, 0.00, 0.00, 0.00, 0.45, 0.45, 0.45, + rhol_nir=0.35, 0.45, 0.35, 0.45, 0.45, 0.35, 0.35, 0.35, 0.45, 0.35, 0.515, 0.35, 0.00, 0.35, 0.00, 0.00, 0.00, 0.45, 0.45, 0.45, ! row 1: vis ! row 2: near ir - rhos_vis=0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.36, 0.26, 0.36, 0.00, 0.36, 0.00, 0.00, 0.00, 0.16, 0.16, 0.16, - rhos_nir=0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.58, 0.485, 0.58, 0.00, 0.58, 0.00, 0.00, 0.00, 0.39, 0.39, 0.39, + rhos_vis=0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.31, 0.26, 0.31, 0.00, 0.31, 0.00, 0.00, 0.00, 0.16, 0.16, 0.16, + rhos_nir=0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.53, 0.485, 0.53, 0.00, 0.53, 0.00, 0.00, 0.00, 0.39, 0.39, 0.39, ! row 1: vis ! row 2: near ir - taul_vis=0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.07, 0.06, 0.07, 0.00, 0.07, 0.00, 0.00, 0.00, 0.05, 0.05, 0.05, - taul_nir=0.10, 0.25, 0.10, 0.25, 0.25, 0.10, 0.10, 0.10, 0.25, 0.25, 0.25, 0.25, 0.00, 0.25, 0.00, 0.00, 0.00, 0.25, 0.25, 0.25, + taul_vis=0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.06, 0.05, 0.00, 0.05, 0.00, 0.00, 0.00, 0.05, 0.05, 0.05, + taul_nir=0.10, 0.25, 0.10, 0.25, 0.25, 0.10, 0.10, 0.10, 0.25, 0.34, 0.25, 0.34, 0.00, 0.34, 0.00, 0.00, 0.00, 0.25, 0.25, 0.25, ! row 1: vis ! row 2: near ir - taus_vis=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.220, 0.1105, 0.220, 0.000, 0.220, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, - taus_nir=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.380, 0.1905, 0.380, 0.000, 0.380, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, + taus_vis=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.120, 0.1105, 0.120, 0.000, 0.120, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, + taus_nir=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.250, 0.1905, 0.250, 0.000, 0.250, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, - xl = 0.010, 0.010, 0.010, 0.250, 0.250, 0.010, 0.010, 0.010, 0.010, -0.30, -0.025, -0.30, 0.000, -0.30, 0.000, 0.000, 0.000, 0.250, 0.250, 0.250, + xl = 0.010, 0.10, 0.010, 0.250, 0.250, 0.010, 0.010, 0.010, 0.010, -0.30, -0.025, -0.30, 0.000, -0.30, 0.000, 0.000, 0.000, 0.250, 0.250, 0.250, ! make cwpvt vegetation dependent according to j. goudriaan, crop micrometeorology: a simulation study (simulation monographs), 1977). c. he, 12/17/2020 ! cwpvt = 0.18, 0.67, 0.18, 0.67, 0.29, 1.0, 2.0, 1.3, 1.0, 5.0, 1.17, 1.67, 1.67, 1.67, 0.18, 0.18, 0.18, 0.67, 1.0, 0.18, cwpvt = 0.09, 0.335, 0.09, 0.335, 0.145, 0.5, 1.0, 0.65, 0.5, 2.5, 0.585, 0.835, 0.835, 0.835, 0.09, 0.09, 0.09, 0.335, 0.5, 0.09, @@ -335,10 +337,10 @@ !-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 soil color index for soil albedo !-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - albsat_vis = 0.25, 0.23, 0.21, 0.20, 0.19, 0.18, 0.17, 0.16, 0.15, 0.14, 0.13, 0.12, 0.11, 0.10, 0.09, 0.08, 0.07, 0.06, 0.05, 0.04 ! saturated soil albedos - albsat_nir = 0.50, 0.46, 0.42, 0.40, 0.38, 0.36, 0.34, 0.32, 0.30, 0.28, 0.26, 0.24, 0.22, 0.20, 0.18, 0.16, 0.14, 0.12, 0.10, 0.08 ! saturated soil albedos - albdry_vis = 0.36, 0.34, 0.32, 0.31, 0.30, 0.29, 0.28, 0.27, 0.26, 0.25, 0.24, 0.23, 0.22, 0.20, 0.18, 0.16, 0.14, 0.12, 0.10, 0.08 ! dry soil albedos - albdry_nir = 0.61, 0.57, 0.53, 0.51, 0.49, 0.48, 0.45, 0.43, 0.41, 0.39, 0.37, 0.35, 0.33, 0.31, 0.29, 0.27, 0.25, 0.23, 0.21, 0.16 ! dry soil albedos + albsat_vis = 0.21, 0.20, 0.18, 0.17, 0.16, 0.15, 0.14, 0.13, 0.13, 0.12, 0.11, 0.10, 0.10, 0.09, 0.08, 0.08, 0.08, 0.07, 0.07, 0.06 ! saturated soil albedos + albsat_nir = 0.42, 0.40, 0.36, 0.34, 0.32, 0.30, 0.28, 0.26, 0.26, 0.24, 0.22, 0.20, 0.20, 0.18, 0.16, 0.16, 0.16, 0.14, 0.14, 0.13 ! saturated soil albedos + albdry_vis = 0.31, 0.30, 0.28, 0.27, 0.26, 0.24, 0.23, 0.22, 0.22, 0.22, 0.20, 0.19, 0.20, 0.18, 0.16, 0.16, 0.16, 0.14, 0.14, 0.13 ! dry soil albedos + albdry_nir = 0.52, 0.50, 0.46, 0.44, 0.42, 0.40, 0.38, 0.37, 0.36, 0.34, 0.32, 0.30, 0.30, 0.28, 0.27, 0.27, 0.27, 0.26, 0.25, 0.25 ! dry soil albedos albice = 0.80, 0.55 ! albedo land ice: 1=vis, 2=nir alblak = 0.60, 0.40 ! albedo frozen lakes: 1=vis, 2=nir omegas = 0.8 , 0.4 ! two-stream parameter omega for snow @@ -397,7 +399,7 @@ class_sno_age = 3600.0 ! snow aging e-folding time (s) in class albedo scheme class_alb_new = 0.84 ! fresh snow albedo in class scheme psiwlt = -150.0 !metric potential for wilting point (m) - z0soil = 0.002 ! bare-soil roughness length (m) (i.e., under the canopy) + z0soil = 0.015 ! bare-soil roughness length (m) (i.e., under the canopy) z0lake = 0.01 ! lake surface roughness length (m) / diff --git a/tests/test_changes.list b/tests/test_changes.list index 9b0b0ff136..972378d3ac 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -32,21 +32,13 @@ cpld_control_pdlib_p8 intel cpld_restart_pdlib_p8 intel cpld_mpi_pdlib_p8 intel cpld_debug_pdlib_p8 intel -control_flake intel control_CubedSphereGrid intel control_CubedSphereGrid_parallel intel control_latlon intel control_wrtGauss_netcdf_parallel intel control_c48 intel -control_c48.v2.sfc intel control_c192 intel control_c384 intel -control_c384gdas intel -control_stochy intel -control_stochy_restart intel -control_lndp intel -control_iovr4 intel -control_iovr5 intel control_p8 intel control_p8.v2.sfc intel control_p8_ugwpv1 intel @@ -59,38 +51,22 @@ control_p8_lndp intel control_p8_rrtmgp intel control_p8_mynn intel merra2_thompson intel -control_csawmg intel -control_ras intel +rrfs_v1beta intel +rrfs_v1nssl intel +rrfs_v1nssl_nohailnoccn intel control_wam intel control_p8_faster intel control_CubedSphereGrid_debug intel control_wrtGauss_netcdf_parallel_debug intel -control_stochy_debug intel -control_lndp_debug intel -control_ras_debug intel control_diag_debug intel control_debug_p8 intel +rrfs_v1beta_debug intel +gnv1_c96_no_nest_debug intel control_wam_debug intel -conus13km_debug_2threads intel -hafs_regional_atm intel -hafs_regional_atm_thompson_gfdlsf intel -hafs_regional_atm_ocn intel -hafs_regional_atm_wav intel -hafs_regional_atm_ocn_wav intel -hafs_regional_1nest_atm intel -hafs_regional_telescopic_2nests_atm intel -hafs_global_1nest_atm intel -hafs_global_multiple_4nests_atm intel -hafs_regional_specified_moving_1nest_atm intel -hafs_regional_storm_following_1nest_atm intel -hafs_regional_storm_following_1nest_atm_ocn intel -hafs_global_storm_following_1nest_atm intel -hafs_regional_storm_following_1nest_atm_ocn_debug intel -hafs_regional_storm_following_1nest_atm_ocn_wav intel -hafs_regional_storm_following_1nest_atm_ocn_wav_inline intel -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel -hafs_regional_docn intel -hafs_regional_docn_oisst intel +gnv1_nested intel +datm_cdeps_lnd_gswp3 intel +datm_cdeps_lnd_era5 intel +datm_cdeps_lnd_era5_rst intel atm_ds2s_docn_pcice intel atm_ds2s_docn_dice intel control_p8_atmlnd_sbs intel @@ -103,16 +79,13 @@ atmaero_control_p8_rad intel atmaero_control_p8_rad_micro intel regional_atmaq_debug intel control_c48 gnu -control_stochy gnu -control_ras gnu control_p8 gnu control_p8_ugwpv1 gnu -control_flake gnu +rrfs_v1beta gnu control_diag_debug gnu -control_ras_debug gnu -control_stochy_debug gnu +rrfs_v1beta_debug gnu control_debug_p8 gnu +gnv1_c96_no_nest_debug gnu cpld_control_nowave_noaero_p8 gnu cpld_control_pdlib_p8 gnu cpld_debug_pdlib_p8 gnu - From e6ec3d139f917cfcafdeee01759df0bb225402d8 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Fri, 26 Jul 2024 11:45:51 -0400 Subject: [PATCH 06/33] update CMEPS (#2352) * CMEPS - Sync CMEPS with ESCOMP/main. --- CMEPS-interface/CMEPS | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 528 ++++++------ tests/logs/RegressionTests_derecho.log | 617 ++++++-------- tests/logs/RegressionTests_gaea.log | 550 ++++++------ tests/logs/RegressionTests_hera.log | 742 ++++++++-------- tests/logs/RegressionTests_hercules.log | 796 ++++++++---------- tests/logs/RegressionTests_jet.log | 488 +++++------ tests/logs/RegressionTests_orion.log | 613 ++++++++------ tests/logs/RegressionTests_wcoss2.log | 460 +++++----- tests/rt.conf | 2 +- tests/test_changes.list | 74 +- 15 files changed, 2440 insertions(+), 2536 deletions(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 2d837b16af..f13e16e414 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 2d837b16af326b09ff4018daab4de84f4deff7ec +Subproject commit f13e16e414e115e268b2dd300b665e628e5f2429 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index dcd06eace9..5448183396 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240722 +export BL_DATE=20240724 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 72195a564d..4a8675bfd4 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Jul 22 20:34:33 UTC 2024 +Wed Jul 24 20:10:07 UTC 2024 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_1849586/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/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 = 290.687493 - 0: The maximum resident set size (KB) = 1455104 + 0: The total amount of wall time = 287.098363 + 0: The maximum resident set size (KB) = 1449616 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_1849586/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/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 = 991.650717 - 0: The maximum resident set size (KB) = 1439732 + 0: The total amount of wall time = 987.462605 + 0: The maximum resident set size (KB) = 1413952 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_1849586/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/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 = 255.224911 - 0: The maximum resident set size (KB) = 1430828 + 0: The total amount of wall time = 254.621474 + 0: The maximum resident set size (KB) = 1413152 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_1849586/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/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 = 252.620393 - 0: The maximum resident set size (KB) = 1433224 + 0: The total amount of wall time = 249.757061 + 0: The maximum resident set size (KB) = 1432096 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_1849586/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/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 = 262.750592 - 0: The maximum resident set size (KB) = 1435888 + 0: The total amount of wall time = 249.818760 + 0: The maximum resident set size (KB) = 1404272 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_1849586/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/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 = 252.883306 - 0: The maximum resident set size (KB) = 1432108 + 0: The total amount of wall time = 254.379486 + 0: The maximum resident set size (KB) = 1415716 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_1849586/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/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 = 257.944152 - 0: The maximum resident set size (KB) = 1433316 + 0: The total amount of wall time = 252.840901 + 0: The maximum resident set size (KB) = 1413640 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Jul 22 21:47:03 UTC 2024 -Elapsed time: 01h:12m:31s. Have a nice day! +Wed Jul 24 21:22:39 UTC 2024 +Elapsed time: 01h:12m:33s. 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 73884b41fa..bd5ba9f0c7 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Jul 22 19:01:08 UTC 2024 +Wed Jul 24 19:03:11 UTC 2024 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_1231766/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1901665/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 = 1574.601495 - 0: The maximum resident set size (KB) = 1510852 + 0: The total amount of wall time = 1364.396894 + 0: The maximum resident set size (KB) = 1503220 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_1231766/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1901665/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 = 435.767884 - 0: The maximum resident set size (KB) = 1538868 + 0: The total amount of wall time = 571.646799 + 0: The maximum resident set size (KB) = 1494576 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_1231766/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1901665/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 = 435.149030 - 0: The maximum resident set size (KB) = 1523140 + 0: The total amount of wall time = 430.360696 + 0: The maximum resident set size (KB) = 1506724 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Jul 22 20:34:32 UTC 2024 -Elapsed time: 01h:33m:24s. Have a nice day! +Wed Jul 24 20:10:06 UTC 2024 +Elapsed time: 01h:06m:56s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index a85adfdae1..00f72c583d 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Jul 22 16:30:51 UTC 2024 +Wed Jul 24 16:28:05 UTC 2024 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_2519577/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3909363/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 = 1397.064435 - 0: The maximum resident set size (KB) = 762344 + 0: The total amount of wall time = 1412.442409 + 0: The maximum resident set size (KB) = 740268 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_2519577/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3909363/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 = 2174.865742 - 0: The maximum resident set size (KB) = 709236 + 0: The total amount of wall time = 2294.672242 + 0: The maximum resident set size (KB) = 705360 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_2519577/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3909363/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 = 2179.697019 - 0: The maximum resident set size (KB) = 717568 + 0: The total amount of wall time = 2170.957201 + 0: The maximum resident set size (KB) = 715832 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_2519577/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3909363/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 = 2239.474214 - 0: The maximum resident set size (KB) = 705128 + 0: The total amount of wall time = 2158.899518 + 0: The maximum resident set size (KB) = 704304 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Jul 22 19:01:08 UTC 2024 -Elapsed time: 02h:30m:17s. Have a nice day! +Wed Jul 24 19:03:10 UTC 2024 +Elapsed time: 02h:35m:05s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 2d2cf63d51..68d6cb2f68 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: -552b40ba9030e83e8f1c6245970ad5b13769e707 +2fd1d2b2ddf1951557092cdf259c8fa1cfad9099 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 81950993462af14cd53a3b5d7280014fc60d7abf FV3 (remotes/origin/cherry_pick_omga) - 57ca82d862410971889f0f0badad5a8fca89b280 FV3/atmos_cubed_sphere (remotes/origin/cherry_pick_omga) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,272 +35,272 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240614 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_196495 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_820335 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:56] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:55, 02:07](3166 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 16:00] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [05:50, 02:36](1882 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [44:33, 02:44](1903 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [44:33, 02:32](1040 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [05:51, 01:45](1856 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 16:02] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [05:50, 01:28](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:50] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [17:01, 03:00](1909 MB) - -PASS -- COMPILE 's2swa_intel' [11:24, 10:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:54, 01:22](3196 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:54, 02:15](3200 MB) -PASS -- TEST 'cpld_restart_p8_intel' [01:57, 02:24](3127 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:54, 01:43](3217 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [55:02, 01:19](3146 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:54, 02:02](3428 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:54, 01:47](3186 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:55, 01:33](3141 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:54, 01:51](3196 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:54, 01:59](3176 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:23, 11:00] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:38, 01:38](3210 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:32, 16:37] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:29, 02:05](1925 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:16, 03:12](1968 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [59:13, 03:18](1083 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:30, 03:14](1893 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:31, 15:31] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:30, 00:31](1917 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:49] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [36:44, 02:53](1961 MB) + +PASS -- COMPILE 's2swa_intel' [11:24, 10:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [30:37, 01:45](3240 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [30:37, 01:39](3241 MB) +PASS -- TEST 'cpld_restart_p8_intel' [21:27, 02:02](3178 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [30:37, 01:18](3264 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [14:46, 01:39](3194 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [30:37, 01:29](3476 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [30:37, 01:35](3236 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [30:38, 01:28](3185 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:37, 01:42](3242 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [30:37, 02:05](3223 MB) PASS -- COMPILE 's2sw_intel' [11:24, 10:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:54, 01:56](1890 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:54, 02:10](1956 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:53] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:54, 02:09](1948 MB) - -PASS -- COMPILE 's2s_intel' [10:25, 10:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:53, 01:29](2927 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [11:53, 01:20](2931 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:25, 00:51](2326 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:33, 18:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [03:45, 01:34](3196 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:29, 15:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [06:49, 01:12](1892 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [46:05, 01:34](1050 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [45:44, 01:53](1865 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:32] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [11:43, 01:09](1918 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 10:14] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [58:46, 00:44](630 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [57:30, 01:18](1525 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [56:09, 00:49](1531 MB) -PASS -- TEST 'control_latlon_intel' [55:38, 01:07](1534 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [54:38, 01:03](1532 MB) -PASS -- TEST 'control_c48_intel' [54:37, 01:15](1609 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [54:33, 01:17](734 MB) -PASS -- TEST 'control_c192_intel' [54:00, 00:51](1644 MB) -PASS -- TEST 'control_c384_intel' [53:49, 02:06](1954 MB) -PASS -- TEST 'control_c384gdas_intel' [53:00, 03:01](1149 MB) -PASS -- TEST 'control_stochy_intel' [49:39, 00:38](587 MB) -PASS -- TEST 'control_stochy_restart_intel' [40:02, 01:15](392 MB) -PASS -- TEST 'control_lndp_intel' [47:35, 00:43](586 MB) -PASS -- TEST 'control_iovr4_intel' [46:44, 00:37](582 MB) -PASS -- TEST 'control_iovr5_intel' [46:38, 00:23](581 MB) -PASS -- TEST 'control_p8_intel' [46:16, 01:49](1828 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [46:16, 02:13](1829 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [46:16, 02:11](1831 MB) -PASS -- TEST 'control_restart_p8_intel' [35:03, 01:18](977 MB) -PASS -- TEST 'control_noqr_p8_intel' [45:37, 01:23](1823 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [34:57, 02:16](981 MB) -PASS -- TEST 'control_decomp_p8_intel' [45:36, 02:18](1826 MB) -PASS -- TEST 'control_2threads_p8_intel' [44:55, 02:17](1925 MB) -PASS -- TEST 'control_p8_lndp_intel' [42:24, 01:12](1829 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [42:03, 02:11](1882 MB) -PASS -- TEST 'control_p8_mynn_intel' [42:02, 01:53](1834 MB) -PASS -- TEST 'merra2_thompson_intel' [41:42, 02:31](1837 MB) -PASS -- TEST 'regional_control_intel' [40:30, 00:18](878 MB) -PASS -- TEST 'regional_restart_intel' [33:37, 00:14](872 MB) -PASS -- TEST 'regional_decomp_intel' [40:18, 01:08](876 MB) -PASS -- TEST 'regional_2threads_intel' [40:03, 00:54](964 MB) -PASS -- TEST 'regional_noquilt_intel' [40:00, 00:19](1193 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [39:22, 00:16](875 MB) -PASS -- TEST 'regional_wofs_intel' [39:16, 00:46](1602 MB) - -PASS -- COMPILE 'ifi_intel' [09:23, 08:31] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [02:30, 00:28](884 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [02:30, 01:00](883 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [02:31, 00:47](967 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:31] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [01:19, 01:40](970 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [01:20, 01:23](1148 MB) -PASS -- TEST 'rap_decomp_intel' [01:19, 02:13](972 MB) -PASS -- TEST 'rap_2threads_intel' [01:19, 02:10](1054 MB) -PASS -- TEST 'rap_restart_intel' [39:09, 02:32](839 MB) -PASS -- TEST 'rap_sfcdiff_intel' [01:19, 02:12](969 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [01:19, 02:12](969 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [38:02, 02:25](836 MB) -PASS -- TEST 'hrrr_control_intel' [01:19, 03:13](960 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [01:19, 03:09](964 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [01:20, 03:00](1044 MB) -PASS -- TEST 'hrrr_control_restart_intel' [35:31, 00:50](794 MB) -PASS -- TEST 'rrfs_v1beta_intel' [01:19, 02:19](964 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [01:19, 00:22](1930 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [35:18, 00:44](1920 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:51] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [01:33, 01:04](928 MB) -PASS -- TEST 'control_ras_intel' [01:33, 01:05](623 MB) - -PASS -- COMPILE 'wam_intel' [09:22, 08:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [01:32, 01:12](1628 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:29, 16:08] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [35:06, 02:34](1828 MB) -PASS -- TEST 'regional_control_faster_intel' [35:02, 00:15](873 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [20:34, 05:47] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:27, 01:10](1553 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [34:05, 01:22](1557 MB) -PASS -- TEST 'control_stochy_debug_intel' [32:37, 00:27](764 MB) -PASS -- TEST 'control_lndp_debug_intel' [32:37, 01:10](759 MB) -PASS -- TEST 'control_csawmg_debug_intel' [32:14, 00:28](1075 MB) -PASS -- TEST 'control_ras_debug_intel' [31:53, 00:48](769 MB) -PASS -- TEST 'control_diag_debug_intel' [31:48, 01:09](1615 MB) -PASS -- TEST 'control_debug_p8_intel' [31:34, 00:53](1856 MB) -PASS -- TEST 'regional_debug_intel' [30:48, 01:08](939 MB) -PASS -- TEST 'rap_control_debug_intel' [30:36, 01:06](1146 MB) -PASS -- TEST 'hrrr_control_debug_intel' [30:25, 01:13](1139 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [30:09, 01:11](1152 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [30:08, 01:05](1149 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [29:38, 00:24](1146 MB) -PASS -- TEST 'rap_diag_debug_intel' [28:49, 01:22](1228 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [28:40, 01:10](1146 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [28:35, 01:02](1151 MB) -PASS -- TEST 'rap_lndp_debug_intel' [28:07, 00:55](1152 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [28:07, 01:16](1146 MB) -PASS -- TEST 'rap_noah_debug_intel' [28:06, 01:03](1141 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [27:34, 01:08](1141 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [27:21, 00:37](1141 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [27:06, 00:58](1137 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [26:52, 01:08](1147 MB) -PASS -- TEST 'rap_flake_debug_intel' [26:44, 00:52](1151 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [26:27, 02:23](1149 MB) - -PASS -- COMPILE 'wam_debug_intel' [20:33, 03:49] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [26:21, 01:01](1655 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:40, 08:53] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [25:42, 01:29](1013 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [25:27, 02:13](851 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:15, 03:04](845 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [23:07, 02:20](908 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:06, 02:32](902 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [22:54, 02:28](845 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:56, 01:45](744 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:37, 01:15](726 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [57:13, 12:45] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:19, 00:57](1057 MB) -PASS -- TEST 'conus13km_2threads_intel' [38:47, 00:43](1040 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [38:46, 00:24](941 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [52:10, 09:01] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:21, 01:09](872 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [46:03, 03:57] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:30, 00:56](1025 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:30, 01:02](1025 MB) -PASS -- TEST 'conus13km_debug_intel' [12:32, 01:15](1128 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:30, 01:09](821 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:31, 00:21](1098 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:30, 00:38](1184 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [46:03, 03:47] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:29, 00:57](1039 MB) - -PASS -- COMPILE 'hafsw_intel' [54:11, 10:33] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:11, 02:16](670 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:11, 01:05](1017 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:09, 01:43](718 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [07:09, 01:30](747 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [07:10, 01:36](915 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:09, 01:42](439 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:02, 01:52](463 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:02, 01:22](338 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [04:04, 03:02](404 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:00, 01:07](477 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:59, 00:49](474 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:01, 00:49](535 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:00, 00:52](367 MB) -PASS -- TEST 'gnv1_nested_intel' [03:29, 03:33](1668 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [47:04, 04:10] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:28, 01:01](627 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [54:11, 17:02] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [58:13, 00:49](580 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [58:07, 01:43](753 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [38:54, 10:14] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:22, 01:24](752 MB) - -PASS -- COMPILE 'hafs_all_intel' [37:53, 09:35] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:23, 02:02](710 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:23, 01:57](698 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [07:21, 00:23](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [30:46, 09:01] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:23, 01:10](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:54, 00:18](752 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:23, 00:28](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:23, 00:56](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:23, 01:12](648 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:23, 00:57](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:23, 01:04](765 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:23, 01:11](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 01:28](649 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:24, 01:24](635 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:23, 00:51](753 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:23, 01:03](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:23, 00:54](2020 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 09:16] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [01:33, 01:12](752 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 01:04] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [13:15, 00:37](267 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [13:15, 00:24](409 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:41, 00:58](411 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:24, 09:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [56:28, 01:18](1883 MB) - -PASS -- COMPILE 'atml_intel' [11:24, 10:58] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [56:23, 02:37](1862 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [55:52, 02:48](1862 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [37:11, 00:57](992 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:21, 04:32] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [55:00, 02:10](1894 MB) - -PASS -- COMPILE 'atmw_intel' [37:51, 09:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [30:32, 02:24](1859 MB) - -PASS -- COMPILE 'atmaero_intel' [36:50, 09:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [30:31, 01:49](3089 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [30:31, 02:09](2972 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [30:31, 02:17](2988 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [31:47, 03:50] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [35:33, 01:58](4524 MB) +PASS -- TEST 'cpld_control_noaero_p8_intel' [30:37, 00:58](1936 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [30:37, 02:13](1996 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [31:37, 02:18](1992 MB) + +PASS -- COMPILE 's2s_intel' [10:25, 09:58] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [31:36, 01:00](2941 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [31:36, 01:25](2940 MB) +PASS -- TEST 'cpld_restart_c48_intel' [27:10, 00:41](2338 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:31, 14:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [26:31, 01:36](3242 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:32, 16:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:30, 01:46](1935 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [59:45, 01:52](1108 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [58:00, 00:57](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:33] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:26, 00:58](1979 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:24, 10:15] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [18:35, 00:26](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [17:15, 01:11](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [16:48, 00:26](1577 MB) +PASS -- TEST 'control_latlon_intel' [16:21, 00:40](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:23, 00:30](1567 MB) +PASS -- TEST 'control_c48_intel' [13:43, 00:55](1612 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:22, 01:09](733 MB) +PASS -- TEST 'control_c192_intel' [13:22, 01:15](1691 MB) +PASS -- TEST 'control_c384_intel' [13:21, 01:53](2011 MB) +PASS -- TEST 'control_c384gdas_intel' [11:23, 02:51](1196 MB) +PASS -- TEST 'control_stochy_intel' [10:38, 00:26](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [56:57, 00:15](434 MB) +PASS -- TEST 'control_lndp_intel' [10:24, 00:22](630 MB) +PASS -- TEST 'control_iovr4_intel' [09:25, 00:39](624 MB) +PASS -- TEST 'control_iovr5_intel' [05:32, 00:27](624 MB) +PASS -- TEST 'control_p8_intel' [05:30, 02:09](1863 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 02:16](1862 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:22, 02:44](1871 MB) +PASS -- TEST 'control_restart_p8_intel' [52:30, 02:00](1020 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:20, 01:23](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [52:30, 01:52](1024 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:40, 01:41](1858 MB) +PASS -- TEST 'control_2threads_p8_intel' [01:20, 01:25](1958 MB) +PASS -- TEST 'control_p8_lndp_intel' [01:19, 00:39](1864 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [00:20, 02:07](1932 MB) +PASS -- TEST 'control_p8_mynn_intel' [57:59, 02:25](1875 MB) +PASS -- TEST 'merra2_thompson_intel' [57:13, 02:44](1873 MB) +PASS -- TEST 'regional_control_intel' [57:20, 01:09](875 MB) +PASS -- TEST 'regional_restart_intel' [50:29, 00:28](873 MB) +PASS -- TEST 'regional_decomp_intel' [57:03, 00:28](877 MB) +PASS -- TEST 'regional_2threads_intel' [57:00, 01:03](1002 MB) +PASS -- TEST 'regional_noquilt_intel' [56:47, 00:31](1196 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [56:45, 00:37](871 MB) +PASS -- TEST 'regional_wofs_intel' [56:10, 00:26](1603 MB) + +PASS -- COMPILE 'ifi_intel' [09:22, 08:28] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [22:14, 00:44](873 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [22:14, 00:40](876 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [22:15, 00:31](1000 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 09:36] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [21:02, 01:57](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:03, 01:22](1190 MB) +PASS -- TEST 'rap_decomp_intel' [21:02, 01:56](1010 MB) +PASS -- TEST 'rap_2threads_intel' [21:02, 02:44](1095 MB) +PASS -- TEST 'rap_restart_intel' [54:59, 03:00](890 MB) +PASS -- TEST 'rap_sfcdiff_intel' [21:02, 02:13](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [21:02, 01:47](1007 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [54:53, 02:24](891 MB) +PASS -- TEST 'hrrr_control_intel' [21:02, 02:15](1001 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [21:02, 02:30](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [21:03, 03:04](1090 MB) +PASS -- TEST 'hrrr_control_restart_intel' [54:41, 00:23](842 MB) +PASS -- TEST 'rrfs_v1beta_intel' [53:21, 02:42](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [52:30, 00:22](1969 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [52:23, 00:42](1957 MB) + +PASS -- COMPILE 'csawmg_intel' [09:21, 08:55] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [21:15, 01:13](969 MB) +PASS -- TEST 'control_ras_intel' [21:15, 00:41](659 MB) + +PASS -- COMPILE 'wam_intel' [09:21, 08:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [21:15, 01:13](1665 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:26, 12:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [52:02, 02:23](1864 MB) +PASS -- TEST 'regional_control_faster_intel' [51:52, 01:05](870 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:21, 05:47] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [51:53, 00:33](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [50:19, 00:37](1612 MB) +PASS -- TEST 'control_stochy_debug_intel' [49:37, 00:59](814 MB) +PASS -- TEST 'control_lndp_debug_intel' [49:10, 00:34](813 MB) +PASS -- TEST 'control_csawmg_debug_intel' [48:54, 00:20](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [48:41, 00:57](828 MB) +PASS -- TEST 'control_diag_debug_intel' [48:03, 00:35](1678 MB) +PASS -- TEST 'control_debug_p8_intel' [47:56, 01:06](1912 MB) +PASS -- TEST 'regional_debug_intel' [47:16, 00:40](930 MB) +PASS -- TEST 'rap_control_debug_intel' [46:25, 00:30](1197 MB) +PASS -- TEST 'hrrr_control_debug_intel' [46:07, 00:25](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [45:49, 01:02](1198 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [45:01, 00:38](1196 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [44:55, 01:15](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [44:26, 01:14](1283 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:20, 00:45](1201 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [44:07, 00:48](1206 MB) +PASS -- TEST 'rap_lndp_debug_intel' [43:43, 01:06](1197 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:41, 01:04](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [43:05, 00:55](1194 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [42:59, 00:28](1192 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [42:01, 00:41](1199 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [42:04, 00:59](1190 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [41:54, 00:59](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [41:47, 00:18](1200 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [41:08, 02:38](1209 MB) + +PASS -- COMPILE 'wam_debug_intel' [57:16, 03:47] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [28:13, 01:06](1704 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:41, 08:56] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [41:04, 00:56](1057 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [40:58, 01:58](887 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [38:52, 03:25](891 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [38:44, 02:10](951 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [38:33, 02:01](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [37:27, 03:04](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:27, 02:24](798 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:28, 00:18](770 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [04:19, 11:51] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [20:10, 01:08](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [13:57, 00:19](1083 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [11:30, 01:03](978 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [59:17, 08:57] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [22:58, 01:26](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [53:10, 03:47] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [28:04, 00:39](1073 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [28:04, 00:57](1069 MB) +PASS -- TEST 'conus13km_debug_intel' [28:04, 00:40](1183 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [28:04, 00:56](866 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [28:05, 01:03](1147 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:04, 00:36](1251 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [53:10, 03:52] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:04, 00:44](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [01:16, 10:26] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [19:48, 01:24](709 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [19:48, 00:48](1060 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:46, 02:06](761 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:46, 02:15](794 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:47, 02:05](814 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [19:46, 00:48](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:47, 02:16](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [19:47, 01:17](388 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:50, 02:21](456 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:46, 01:00](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [19:46, 01:20](517 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:48, 01:03](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:47, 01:16](419 MB) +PASS -- TEST 'gnv1_nested_intel' [19:45, 03:08](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [54:12, 04:12] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [26:03, 01:04](661 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [02:23, 13:40] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:09, 01:17](690 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:04, 01:43](799 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [57:12, 10:10] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:02, 01:28](794 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:56, 09:45] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [19:54, 01:41](758 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:54, 01:59](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:52, 00:57](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:24, 09:17] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [17:48, 00:26](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:16, 00:19](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [16:52, 00:35](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:58, 00:40](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [10:35, 00:53](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:05, 00:47](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:38, 00:17](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:35, 01:05](650 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [04:30, 01:07](687 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [03:53, 01:04](672 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:46, 00:33](767 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:29, 00:29](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:25, 01:00](2035 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 09:13] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:30, 00:16](767 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:14, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [25:50, 00:29](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [25:50, 01:11](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [52:46, 00:48](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:28, 09:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [02:09, 01:06](1930 MB) + +PASS -- COMPILE 'atml_intel' [23:37, 10:35] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [01:15, 02:06](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [00:41, 01:58](1894 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [40:06, 00:52](1043 MB) + +PASS -- COMPILE 'atml_debug_intel' [16:30, 04:46] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [59:28, 02:13](1934 MB) + +PASS -- COMPILE 'atmw_intel' [28:42, 09:37] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [51:27, 02:19](1904 MB) + +PASS -- COMPILE 'atmaero_intel' [29:43, 09:15] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [50:15, 02:11](3132 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [50:15, 01:58](3011 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [50:07, 01:37](3025 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [24:39, 03:50] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [55:15, 01:39](4544 MB) SYNOPSIS: -Starting Date/Time: 20240701 18:37:11 -Ending Date/Time: 20240701 20:52:17 -Total Time: 02h:15m:32s +Starting Date/Time: 20240726 02:17:38 +Ending Date/Time: 20240726 04:39:45 +Total Time: 02h:22m:34s Compiles Completed: 38/38 Tests Completed: 179/179 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 301236ca75..f6cc28edc6 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: -ec399e628231e03101314fdb378214c340cf96cc +45bcf84d30cfb2cc46913130f6e8615814b3c9e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,354 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_70873 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_37591 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [25:18, 21:53] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:50, 05:31](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:20, 23:50] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:59, 14:42](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:06, 15:50](1957 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 07:53](1081 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:36, 16:25](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:17, 23:56] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:52, 14:22](1918 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [27:32, 11:57] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [37:34, 21:25] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:26, 06:02](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:29, 06:10](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:14, 03:51](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:24, 06:15](3253 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:14, 04:11](3184 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:08, 05:54](3730 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:08, 06:17](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:02, 05:06](3539 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:13, 06:15](3235 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c192_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_c192_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:40, 10:29](4519 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:43, 06:57](4665 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:49, 05:46](3210 MB) - -PASS -- COMPILE 's2sw_intel' [30:20, 19:56] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:33, 04:58](1925 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:47, 04:56](1992 MB) - -PASS -- COMPILE 's2swa_debug_intel' [27:33, 11:36] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:15, 08:10](3303 MB) - -PASS -- COMPILE 's2sw_debug_intel' [27:33, 11:08] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:39, 05:51](1955 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [31:34, 15:43] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:25, 04:52](1987 MB) - -PASS -- COMPILE 's2s_intel' [19:16, 16:00] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [03:25, 06:47](2941 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [19:13, 02:21](2947 MB) -PASS -- TEST 'cpld_restart_c48_intel' [39:21, 01:38](2343 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:32, 25:55] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:07, 06:07](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:25, 22:11] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:40, 14:36](1943 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:09, 07:48](1110 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:40, 16:41](1907 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [01:27, 11:10] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:33, 23:42](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [03:23, 15:14] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:37, 03:24](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:25](1571 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 02:28](1571 MB) -PASS -- TEST 'control_latlon_intel' [04:15, 02:24](1563 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 02:26](1562 MB) -PASS -- TEST 'control_c48_intel' [08:19, 06:05](1619 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:43, 05:17](734 MB) -PASS -- TEST 'control_c192_intel' [11:59, 08:44](1687 MB) -PASS -- TEST 'control_c384_intel' [14:08, 08:45](2001 MB) -PASS -- TEST 'control_c384gdas_intel' [12:54, 07:07](1197 MB) -PASS -- TEST 'control_stochy_intel' [02:34, 01:26](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:36, 00:53](435 MB) -PASS -- TEST 'control_lndp_intel' [02:34, 01:22](626 MB) -PASS -- TEST 'control_iovr4_intel' [03:38, 02:09](621 MB) -PASS -- TEST 'control_iovr5_intel' [03:38, 02:08](622 MB) -PASS -- TEST 'control_p8_intel' [05:21, 03:09](1868 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:28, 03:10](1857 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:28, 03:01](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [04:18, 02:14](1007 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:31, 03:10](1858 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 01:58](1020 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:12, 03:08](1865 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:05](1956 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:14, 05:00](1863 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:17, 04:01](1926 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:35, 03:09](1873 MB) -PASS -- TEST 'merra2_thompson_intel' [05:25, 03:26](1870 MB) -PASS -- TEST 'regional_control_intel' [06:55, 04:58](869 MB) -PASS -- TEST 'regional_restart_intel' [04:54, 02:57](876 MB) -PASS -- TEST 'regional_decomp_intel' [06:48, 05:10](872 MB) -PASS -- TEST 'regional_noquilt_intel' [06:53, 04:55](1189 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:45, 04:56](872 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:56, 05:02](872 MB) -PASS -- TEST 'regional_wofs_intel' [07:59, 05:41](1604 MB) - -PASS -- COMPILE 'rrfs_intel' [59:23, 13:03] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:10, 06:09](1012 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 03:41](1193 MB) -PASS -- TEST 'rap_decomp_intel' [08:10, 06:25](1005 MB) -PASS -- TEST 'rap_2threads_intel' [08:10, 05:39](1097 MB) -PASS -- TEST 'rap_restart_intel' [05:05, 03:13](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:08, 06:06](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:08, 06:22](1008 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 04:35](881 MB) -PASS -- TEST 'hrrr_control_intel' [05:00, 03:14](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:00, 03:18](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:00, 02:48](1081 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:39, 01:47](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:06, 06:00](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:51, 07:21](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:47, 07:07](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [12:21, 11:06] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:51, 06:26](963 MB) -PASS -- TEST 'control_ras_intel' [04:28, 02:52](657 MB) - -PASS -- COMPILE 'wam_intel' [11:21, 10:46] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:53, 09:56](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:21, 17:24] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:17, 03:03](1852 MB) -PASS -- TEST 'regional_control_faster_intel' [06:48, 04:46](872 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:19, 12:29] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 02:35](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:59, 02:30](1613 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:32, 02:53](810 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:30, 02:37](810 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:53, 04:33](1122 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 02:41](817 MB) -PASS -- TEST 'control_diag_debug_intel' [05:11, 02:39](1667 MB) -PASS -- TEST 'control_debug_p8_intel' [04:49, 03:12](1908 MB) -PASS -- TEST 'regional_debug_intel' [17:49, 16:27](930 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 04:49](1195 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:34, 04:41](1183 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:37, 04:44](1196 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:39](1196 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:33, 04:43](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:16, 04:53](1274 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:32, 04:45](1192 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:35, 04:57](1199 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:35, 04:42](1192 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:42, 04:41](1194 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:36, 04:36](1192 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:37, 04:41](1194 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:29, 07:34](1192 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:35, 04:37](1186 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:34, 05:47](1194 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:33, 04:38](1189 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:10, 07:52](1195 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:12, 06:38] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:09, 12:16](1701 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:20, 11:07] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:34, 03:31](1056 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 05:06](886 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:06, 02:45](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:53, 04:45](949 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:05, 02:26](939 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:58, 02:53](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:58, 03:52](797 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:45, 01:30](778 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:20, 15:09] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:41, 01:52](1088 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:36, 00:57](1087 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:07](976 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:18, 11:08] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:03, 03:37](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:17, 07:03] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:34, 04:37](1068 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 04:33](1069 MB) -PASS -- TEST 'conus13km_debug_intel' [16:06, 13:20](1154 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:01, 13:24](837 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 07:42](1153 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 13:37](1222 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:17, 06:52] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 04:47](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [19:19, 18:05] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:38, 04:37](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:35, 05:05](1068 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:25](774 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:49, 11:00](792 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:08, 12:11](815 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 04:40](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:57, 05:49](491 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:08, 02:17](394 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:38, 06:12](461 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:21](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:41, 03:06](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:21, 03:52](589 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:19](427 MB) -PASS -- TEST 'gnv1_nested_intel' [07:34, 04:07](1718 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:17, 08:16] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:30, 12:11](626 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [28:16, 27:09] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:30, 07:12](629 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:57, 07:12](689 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:15, 19:06] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:36, 05:24](678 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:20, 15:45] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:39, 05:37](756 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:36, 05:40](739 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:18, 16:17](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:17, 08:37] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:34, 02:30](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:43, 01:34](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:35, 02:22](646 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:34, 02:24](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:35, 02:23](648 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:33, 02:27](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:29](751 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:34, 02:20](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:53, 05:36](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:55, 05:36](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:28](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:46, 03:55](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:47, 03:53](2021 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:55] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:12](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:17, 08:34] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:36, 02:29](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:16, 02:46] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:12, 01:16](312 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:11, 01:05](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:47](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:13, 12:58] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:59, 04:05](1913 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:13, 12:11] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:43, 03:47](1899 MB) - -PASS -- COMPILE 'atml_intel' [16:13, 15:13] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:52, 06:51](1886 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:52, 06:40](1884 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:01, 03:57](1037 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:12, 10:03] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:34, 06:19](1920 MB) - -PASS -- COMPILE 'atmw_intel' [15:15, 14:09] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:27, 02:09](1895 MB) - -PASS -- COMPILE 'atmaero_intel' [13:19, 12:20] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:54, 04:12](3121 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:19](3000 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:25, 04:22](3014 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:18, 08:14] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:48, 21:48](4536 MB) +PASS -- COMPILE 's2swa_32bit_intel' [31:29, 21:46] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:29, 05:41](3200 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [33:28, 23:51] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [31:29, 14:44](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:05, 15:54](1950 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:20, 08:11](1081 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:21, 16:34](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [33:29, 24:00] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [28:10, 14:24](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:25, 12:32] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [30:26, 21:33] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:04, 06:19](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:45, 06:15](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:03, 04:17](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:42, 06:23](3258 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:07, 04:13](3185 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:16, 06:06](3731 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:20, 06:16](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:04, 05:19](3539 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:33, 06:20](3237 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [22:51, 10:00](3895 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:40, 06:55](3622 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:25, 10:29](4522 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:12, 07:09](4666 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:01, 06:05](3215 MB) + +PASS -- COMPILE 's2sw_intel' [29:28, 19:51] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:33, 04:54](1927 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:42, 05:04](1986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [21:24, 12:10] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:04, 08:35](3302 MB) + +PASS -- COMPILE 's2sw_debug_intel' [21:26, 11:18] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:41, 05:51](1952 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [25:25, 15:59] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:48, 05:05](1988 MB) + +PASS -- COMPILE 's2s_intel' [25:24, 16:07] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [51:03, 06:51](2947 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [46:07, 02:27](2948 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:32, 01:38](2339 MB) + +PASS -- COMPILE 's2swa_faster_intel' [29:17, 26:35] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:53, 06:31](3234 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:39, 24:59] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:47, 15:01](1939 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:48, 08:06](1115 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:37, 16:39](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [00:52, 13:42] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:36, 23:57](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [01:25, 17:00] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [08:32, 03:25](671 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:01, 02:25](1566 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:11, 02:28](1568 MB) +PASS -- TEST 'control_latlon_intel' [05:00, 02:27](1563 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:05, 02:28](1569 MB) +PASS -- TEST 'control_c48_intel' [08:00, 06:08](1619 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:18](734 MB) +PASS -- TEST 'control_c192_intel' [12:35, 08:42](1682 MB) +PASS -- TEST 'control_c384_intel' [15:38, 08:46](2003 MB) +PASS -- TEST 'control_c384gdas_intel' [15:47, 07:12](1197 MB) +PASS -- TEST 'control_stochy_intel' [03:33, 01:29](622 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:33, 00:56](441 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 01:23](621 MB) +PASS -- TEST 'control_iovr4_intel' [04:38, 02:09](619 MB) +PASS -- TEST 'control_iovr5_intel' [03:34, 02:07](621 MB) +PASS -- TEST 'control_p8_intel' [05:27, 03:15](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 03:07](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:21, 03:18](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [05:17, 02:05](1001 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:16, 03:15](1862 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:16, 02:15](1017 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:08, 03:14](1853 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:05, 03:02](1946 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:04](1867 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:20, 03:59](1916 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:29, 03:17](1870 MB) +PASS -- TEST 'merra2_thompson_intel' [06:23, 03:34](1868 MB) +PASS -- TEST 'regional_control_intel' [06:58, 05:01](870 MB) +PASS -- TEST 'regional_restart_intel' [04:58, 03:14](875 MB) +PASS -- TEST 'regional_decomp_intel' [06:55, 05:19](872 MB) +PASS -- TEST 'regional_noquilt_intel' [08:59, 05:06](1196 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:53, 05:05](878 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:49, 05:14](871 MB) +PASS -- TEST 'regional_wofs_intel' [08:54, 05:41](1603 MB) + +PASS -- COMPILE 'rrfs_intel' [59:02, 14:42] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [13:21, 06:10](1014 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:03, 03:57](1197 MB) +PASS -- TEST 'rap_decomp_intel' [13:21, 06:24](1006 MB) +PASS -- TEST 'rap_2threads_intel' [12:34, 05:41](1100 MB) +PASS -- TEST 'rap_restart_intel' [05:11, 03:14](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:23, 06:08](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:23, 06:24](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:06, 04:38](881 MB) +PASS -- TEST 'hrrr_control_intel' [08:21, 03:25](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:21, 03:28](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [11:31, 02:50](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:44, 01:48](835 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:24, 06:02](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:08, 07:35](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:08, 07:19](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [52:38, 12:22] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:17, 06:59](962 MB) +PASS -- TEST 'control_ras_intel' [04:47, 02:55](656 MB) + +PASS -- COMPILE 'wam_intel' [51:40, 12:09] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:08, 10:07](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [57:33, 19:01] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:27, 03:09](1871 MB) +PASS -- TEST 'regional_control_faster_intel' [06:51, 04:54](869 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [50:58, 14:21] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:47, 02:36](1612 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:51, 02:31](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:54, 03:02](813 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:53, 02:48](809 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:47, 04:44](1121 MB) +PASS -- TEST 'control_ras_debug_intel' [06:55, 02:51](817 MB) +PASS -- TEST 'control_diag_debug_intel' [10:29, 02:38](1677 MB) +PASS -- TEST 'control_debug_p8_intel' [05:56, 03:23](1905 MB) +PASS -- TEST 'regional_debug_intel' [18:52, 16:35](940 MB) +PASS -- TEST 'rap_control_debug_intel' [06:37, 04:42](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [26:34, 04:36](1190 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [26:37, 04:50](1191 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:36, 04:40](1195 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:32, 04:41](1192 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:58, 04:53](1276 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:32, 04:55](1194 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:30, 04:46](1200 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:39, 04:43](1191 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:39, 04:44](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:30, 04:43](1191 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:31, 04:40](1192 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:32, 07:48](1191 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:35, 04:39](1188 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:41, 05:57](1193 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:38, 04:41](1192 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 08:10](1190 MB) + +PASS -- COMPILE 'wam_debug_intel' [44:57, 08:03] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:47, 12:48](1701 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:35, 12:42] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:23, 03:41](1061 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:21, 05:13](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:33, 02:59](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:25, 04:48](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:30, 02:27](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:24, 02:58](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:09, 03:54](795 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 01:36](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:37, 16:13] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:05, 01:55](1090 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:12, 01:03](1086 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:34, 01:09](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:56, 11:52] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:55, 03:38](911 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:56, 08:00] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:36, 04:33](1066 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:35, 04:33](1066 MB) +PASS -- TEST 'conus13km_debug_intel' [16:00, 13:17](1154 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:03, 13:40](836 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:37, 07:58](1151 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 13:51](1220 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:46, 07:50] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:33, 04:39](1094 MB) + +PASS -- COMPILE 'hafsw_intel' [19:48, 18:57] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:29, 04:37](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:52, 05:14](1065 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:57, 06:31](775 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:36, 11:08](801 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:48, 12:18](815 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:19, 04:46](475 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:43, 05:47](488 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:05, 02:19](394 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:39, 06:21](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:59, 03:23](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:06, 03:08](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 03:54](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:30, 01:16](429 MB) +PASS -- TEST 'gnv1_nested_intel' [07:27, 04:07](1720 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:38, 09:24] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:32, 12:26](633 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [29:40, 27:33] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:15, 07:11](633 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:32, 07:20](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [22:20, 20:02] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:37, 05:30](680 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:15, 16:03] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:19, 05:40](756 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:38, 05:43](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:07, 16:18](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:14, 09:02] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:42, 02:29](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:34](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:21, 02:23](652 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 02:24](648 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:33, 02:25](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:21, 02:30](770 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 02:30](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:39, 02:21](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:27, 05:43](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 05:40](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:30](770 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:37, 03:54](2035 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:35, 03:55](2034 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 06:37] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:41, 05:12](739 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:56] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:30](770 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 02:57] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:38, 01:15](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:35, 01:13](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:48](457 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:14, 13:50] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:42, 04:04](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:13, 12:47] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:43, 03:56](1900 MB) + +PASS -- COMPILE 'atml_intel' [18:15, 15:43] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:47, 07:10](1888 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:45, 07:28](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:01, 04:17](1038 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:19, 10:17] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:48, 06:06](1936 MB) + +PASS -- COMPILE 'atmw_intel' [16:21, 14:24] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:23](1893 MB) + +PASS -- COMPILE 'atmaero_intel' [14:14, 12:42] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:38, 04:20](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:24, 04:20](2994 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:18, 04:21](3009 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:19, 08:07] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:57, 21:52](4535 MB) SYNOPSIS: -Starting Date/Time: 20240722 21:35:07 -Ending Date/Time: 20240723 00:11:51 -Total Time: 02h:37m:47s +Starting Date/Time: 20240725 11:13:10 +Ending Date/Time: 20240725 13:43:58 +Total Time: 02h:31m:54s Compiles Completed: 41/41 -Tests Completed: 181/183 -Failed Tests: -* TEST cpld_control_c192_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/work/zshrader/rt-2354/tests/logs/log_derecho/run_cpld_control_c192_p8_intel.log -* TEST cpld_restart_c192_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/work/zshrader/rt-2354/tests/logs/log_derecho/run_cpld_restart_c192_p8_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -ec399e628231e03101314fdb378214c340cf96cc - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_56330 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_intel' [23:16, 21:55] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_c192_p8_intel' [12:38, 09:39](3892 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:17, 06:39](3629 MB) - -SYNOPSIS: -Starting Date/Time: 20240723 10:34:25 -Ending Date/Time: 20240723 11:22:06 -Total Time: 00h:47m:51s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Tests Completed: 183/183 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index fa74099679..03dce4aae7 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -ec399e628231e03101314fdb378214c340cf96cc +45bcf84d30cfb2cc46913130f6e8615814b3c9e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,285 +35,285 @@ 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-20240722 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_14217 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_109327 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [41:12, 40:46] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:04, 08:00](3197 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [42:15, 41:14] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 14:01](1924 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:57, 14:44](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:46, 06:59](1078 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:44, 15:02](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:15, 41:26] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:56, 13:51](1912 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [37:15, 36:46] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:33, 24:39](1948 MB) - -PASS -- COMPILE 's2swa_intel' [41:12, 40:48] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:28, 08:41](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:35, 08:49](3223 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:03, 05:15](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:27, 08:53](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:04, 05:12](3180 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:41, 06:47](3462 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:18, 08:38](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:51, 07:40](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:45, 08:47](3226 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:45, 10:44](3441 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 07:19](3612 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:06, 13:52](4205 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:34, 09:49](4363 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:52, 07:49](3207 MB) - -PASS -- COMPILE 's2sw_intel' [38:15, 37:51] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:40, 05:43](1938 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:53, 06:06](1996 MB) - -PASS -- COMPILE 's2swa_debug_intel' [37:15, 36:15] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:50, 10:45](3279 MB) - -PASS -- COMPILE 's2sw_debug_intel' [35:12, 34:15] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:53, 06:00](1958 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [37:15, 36:25] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:50, 05:18](1999 MB) - -PASS -- COMPILE 's2s_intel' [34:12, 33:52] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:45, 06:31](2925 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:36, 02:05](2930 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:46, 01:29](2325 MB) - -PASS -- COMPILE 's2swa_faster_intel' [40:16, 40:02] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:00, 08:26](3228 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [35:14, 34:18] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:46, 15:44](1935 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:51, 08:07](1108 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:39, 18:12](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [25:12, 24:39] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:02, 27:01](1962 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [25:12, 24:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:36, 04:03](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:30, 03:07](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:26, 03:20](1569 MB) -PASS -- TEST 'control_latlon_intel' [07:13, 03:40](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:24, 03:37](1572 MB) -PASS -- TEST 'control_c48_intel' [10:36, 06:31](1596 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:16, 05:40](720 MB) -PASS -- TEST 'control_c192_intel' [15:15, 10:06](1681 MB) -PASS -- TEST 'control_c384_intel' [23:46, 18:14](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [18:27, 14:15](1178 MB) -PASS -- TEST 'control_stochy_intel' [05:33, 02:08](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:36, 01:28](426 MB) -PASS -- TEST 'control_lndp_intel' [04:34, 01:59](622 MB) -PASS -- TEST 'control_iovr4_intel' [05:40, 02:53](620 MB) -PASS -- TEST 'control_iovr5_intel' [05:40, 02:37](620 MB) -PASS -- TEST 'control_p8_intel' [06:31, 03:41](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:44, 04:02](1858 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:31, 03:28](1866 MB) -PASS -- TEST 'control_restart_p8_intel' [03:11, 01:49](1014 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:21, 03:28](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:50](1017 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:18, 03:26](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:18, 03:08](1950 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:23](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:54](1919 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:31, 03:40](1867 MB) -PASS -- TEST 'merra2_thompson_intel' [05:29, 03:50](1865 MB) -PASS -- TEST 'regional_control_intel' [06:52, 05:19](859 MB) -PASS -- TEST 'regional_restart_intel' [03:47, 02:51](861 MB) -PASS -- TEST 'regional_decomp_intel' [06:51, 05:29](860 MB) -PASS -- TEST 'regional_2threads_intel' [04:46, 03:11](1007 MB) -PASS -- TEST 'regional_noquilt_intel' [06:56, 05:08](1176 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 05:10](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:46, 05:17](867 MB) -PASS -- TEST 'regional_wofs_intel' [09:17, 06:51](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [24:12, 23:57] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:30, 06:46](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:15, 04:04](1185 MB) -PASS -- TEST 'rap_decomp_intel' [09:31, 07:08](1009 MB) -PASS -- TEST 'rap_2threads_intel' [08:38, 06:07](1101 MB) -PASS -- TEST 'rap_restart_intel' [06:14, 03:38](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:37, 06:59](1006 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:30, 07:09](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:19, 05:27](880 MB) -PASS -- TEST 'hrrr_control_intel' [05:22, 03:52](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:22, 03:59](1005 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:22, 03:10](1085 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:25](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:31, 06:57](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:54, 08:11](1962 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:52](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [23:12, 22:18] -PASS -- TEST 'control_csawmg_intel' [10:55, 06:39](964 MB) -PASS -- TEST 'control_ras_intel' [04:45, 03:29](657 MB) - -PASS -- COMPILE 'wam_intel' [21:11, 20:38] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:12, 11:47](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [29:11, 28:34] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:01, 03:13](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [06:38, 05:05](866 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [24:13, 23:09] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:13, 03:01](1597 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:09, 03:02](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:54, 03:21](801 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:33, 02:51](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:51, 04:30](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [04:07, 02:52](805 MB) -PASS -- TEST 'control_diag_debug_intel' [04:28, 03:01](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [04:42, 03:25](1892 MB) -PASS -- TEST 'regional_debug_intel' [17:47, 16:33](910 MB) -PASS -- TEST 'rap_control_debug_intel' [06:37, 05:10](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:37, 05:04](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:29, 05:43](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:36, 05:24](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 05:31](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:38, 05:45](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:37, 05:39](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:33, 06:01](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:36, 05:40](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:38, 05:52](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:37, 05:42](1180 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:51, 05:22](1181 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:36, 08:17](1180 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:46, 05:03](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:42, 05:59](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:36, 05:10](1182 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:21, 08:42](1185 MB) - -PASS -- COMPILE 'wam_debug_intel' [17:11, 16:58] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:11, 13:39](1685 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [19:12, 18:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:21, 04:04](1046 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:11, 05:54](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:05, 03:39](880 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:16, 05:22](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 02:56](935 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:06, 03:39](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:34, 04:29](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:01](763 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:15, 24:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:49, 02:15](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:58, 01:29](1082 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:01, 01:23](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:11, 19:59] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:20, 04:16](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:12, 15:23] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 04:57](1058 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:27, 04:51](1061 MB) -PASS -- TEST 'conus13km_debug_intel' [17:10, 14:36](1139 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:59, 14:32](819 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:09, 08:28](1126 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 14:20](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [16:12, 15:14] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 05:09](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [25:11, 24:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:25, 05:59](708 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:50, 05:09](1056 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:47, 08:19](758 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:29, 12:18](788 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:50, 13:32](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:27, 06:34](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:47, 07:53](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:35, 03:16](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:18, 09:09](437 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:00, 04:27](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:21, 04:43](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:26, 04:51](577 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:18, 01:48](403 MB) -PASS -- TEST 'gnv1_nested_intel' [11:57, 06:11](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [20:14, 19:52] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:21, 13:23](599 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [33:16, 32:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:29, 07:44](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:29, 07:49](786 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [29:12, 28:09] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:43, 06:11](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [28:15, 27:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:18, 06:17](742 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:28, 06:17](727 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:33, 20:02](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [24:14, 23:28] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:34](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:33, 01:36](748 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:29, 02:30](635 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:41, 02:28](635 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:32](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:41, 02:35](760 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:36](761 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:28](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:24, 06:06](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:27, 06:13](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:39, 02:34](747 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:39, 04:39](2014 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:37, 04:41](2014 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [19:15, 19:04] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:33](742 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [24:14, 23:51] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:41, 02:34](761 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [08:15, 07:40] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:59, 02:31](317 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:00, 01:50](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:57, 01:13](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:11, 26:01] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:33, 04:13](1924 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [25:11, 24:47] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:46, 04:01](1913 MB) - -PASS -- COMPILE 'atml_intel' [26:11, 25:37] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:48, 07:29](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:48, 07:12](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:57, 04:00](1045 MB) - -PASS -- COMPILE 'atml_debug_intel' [21:17, 20:32] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:39, 06:34](1933 MB) - -PASS -- COMPILE 'atmw_intel' [20:11, 19:39] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:06, 02:29](1897 MB) - -PASS -- COMPILE 'atmaero_intel' [18:11, 17:54] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:27, 06:24](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:27, 06:30](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:20, 07:01](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:11, 12:40] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:40, 18:31](4484 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:15, 18:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:27, 07:05](3197 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:15, 23:02] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [32:18, 13:46](1925 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [40:13, 14:50](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [31:20, 07:07](1063 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:30, 14:46](1897 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:18, 26:17] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [30:42, 13:10](1915 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:22] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [38:55, 24:00](1948 MB) + +PASS -- COMPILE 's2swa_intel' [18:15, 18:01] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [22:05, 07:38](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:13, 07:39](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [37:48, 04:48](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [22:05, 07:44](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [37:48, 04:46](3180 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [24:11, 06:17](3464 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [22:05, 07:40](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [22:57, 06:43](3169 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [25:03, 07:53](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [30:00, 10:25](3448 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [35:50, 07:13](3606 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [38:28, 12:48](4207 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [34:43, 08:58](4359 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [20:54, 07:28](3206 MB) + +PASS -- COMPILE 's2sw_intel' [22:15, 21:10] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [21:18, 05:03](1939 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:33, 05:20](1997 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:24] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [23:54, 09:25](3277 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:12, 13:18] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [20:44, 05:56](1958 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:14, 16:01] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [21:32, 05:12](1998 MB) + +PASS -- COMPILE 's2s_intel' [16:14, 15:41] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [22:13, 06:32](2927 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [17:11, 01:57](2931 MB) +PASS -- TEST 'cpld_restart_c48_intel' [37:10, 01:09](2325 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:18, 24:23] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [39:51, 07:23](3227 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:18, 22:59] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:33, 15:09](1934 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 07:34](1109 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:12, 17:21](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:17, 12:02] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:18, 26:41](1960 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:15, 14:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [38:38, 03:38](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [34:52, 03:10](1566 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:51, 03:04](1570 MB) +PASS -- TEST 'control_latlon_intel' [34:45, 03:01](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [35:02, 02:56](1572 MB) +PASS -- TEST 'control_c48_intel' [38:15, 06:30](1596 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [36:47, 05:44](719 MB) +PASS -- TEST 'control_c192_intel' [39:50, 09:59](1683 MB) +PASS -- TEST 'control_c384_intel' [48:08, 18:10](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [46:06, 14:22](1181 MB) +PASS -- TEST 'control_stochy_intel' [31:33, 01:51](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:28, 01:12](426 MB) +PASS -- TEST 'control_lndp_intel' [29:45, 01:48](622 MB) +PASS -- TEST 'control_iovr4_intel' [28:35, 02:32](620 MB) +PASS -- TEST 'control_iovr5_intel' [28:35, 02:35](620 MB) +PASS -- TEST 'control_p8_intel' [30:02, 03:30](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [30:19, 03:30](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [30:04, 03:12](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [02:57, 01:39](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [29:01, 03:20](1858 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:57, 01:38](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [28:59, 03:24](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [28:05, 02:54](1949 MB) +PASS -- TEST 'control_p8_lndp_intel' [15:41, 05:12](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:02, 04:03](1920 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:01, 03:14](1868 MB) +PASS -- TEST 'merra2_thompson_intel' [12:04, 03:30](1866 MB) +PASS -- TEST 'regional_control_intel' [06:38, 04:48](860 MB) +PASS -- TEST 'regional_restart_intel' [05:34, 02:38](848 MB) +PASS -- TEST 'regional_decomp_intel' [11:35, 05:04](860 MB) +PASS -- TEST 'regional_2threads_intel' [08:34, 02:59](1006 MB) +PASS -- TEST 'regional_noquilt_intel' [08:41, 04:44](1184 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:45, 04:53](858 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 04:53](859 MB) +PASS -- TEST 'regional_wofs_intel' [09:38, 06:16](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [13:15, 12:43] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [25:05, 06:46](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:14, 04:01](1186 MB) +PASS -- TEST 'rap_decomp_intel' [24:05, 06:59](1009 MB) +PASS -- TEST 'rap_2threads_intel' [23:10, 06:09](1096 MB) +PASS -- TEST 'rap_restart_intel' [06:56, 03:29](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [24:09, 06:45](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [24:58, 07:08](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:00, 04:51](880 MB) +PASS -- TEST 'hrrr_control_intel' [21:04, 03:55](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:52, 03:58](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:51, 03:04](1080 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:31, 02:07](835 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:32](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:36, 08:06](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:45](1953 MB) + +PASS -- COMPILE 'csawmg_intel' [13:12, 12:11] +PASS -- TEST 'control_csawmg_intel' [07:36, 06:37](964 MB) +PASS -- TEST 'control_ras_intel' [04:28, 03:19](657 MB) + +PASS -- COMPILE 'wam_intel' [12:12, 11:50] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:57, 11:35](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [23:13, 21:43] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:03, 03:08](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [05:33, 04:34](859 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 12:16] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:51](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:46, 02:48](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:08](799 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:47](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:34, 04:30](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [03:28, 02:53](805 MB) +PASS -- TEST 'control_diag_debug_intel' [03:41, 02:58](1656 MB) +PASS -- TEST 'control_debug_p8_intel' [04:35, 03:09](1893 MB) +PASS -- TEST 'regional_debug_intel' [18:05, 16:14](901 MB) +PASS -- TEST 'rap_control_debug_intel' [05:31, 05:03](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:57](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:33, 04:57](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:10, 05:17](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:05, 05:07](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:54, 05:15](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:47, 05:21](1183 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:08, 05:04](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:28, 05:07](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:54, 05:03](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:40, 04:55](1179 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:38, 04:59](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:31, 07:53](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:26, 04:55](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:29, 05:51](1186 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:28, 05:08](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:56, 08:34](1184 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:12, 08:22] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:05, 13:26](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 13:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:51](1048 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:54, 05:54](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:48, 03:25](880 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:50, 05:16](939 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:57, 02:58](935 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:51, 03:43](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:56, 04:22](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:33, 01:43](763 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:13, 16:06] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:25, 02:42](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:55, 01:21](1076 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:56, 01:36](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 11:42] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:00, 05:20](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 07:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:30, 05:29](1059 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 05:28](1059 MB) +PASS -- TEST 'conus13km_debug_intel' [16:12, 14:09](1140 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:12, 14:28](819 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:05, 08:22](1126 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 14:05](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 08:04] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:31, 04:57](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [15:17, 14:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:19, 05:25](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:35, 04:32](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:46, 07:38](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:18, 11:48](783 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:34, 12:49](797 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:14, 05:19](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:50, 06:45](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:08, 02:55](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:44, 08:07](433 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:17, 03:51](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:27, 03:33](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:05, 04:45](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:41, 01:42](400 MB) +PASS -- TEST 'gnv1_nested_intel' [09:00, 05:48](1714 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:14, 09:26] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:40, 12:59](600 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [22:15, 21:29] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:17, 07:45](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:18, 07:49](787 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 14:10] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:15, 06:08](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 13:26] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:22, 06:19](740 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:11, 06:18](726 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:19, 20:07](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:13, 13:42] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:28, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:35](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:25, 02:25](638 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:28, 02:29](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:28, 02:32](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:26, 02:43](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:26, 02:29](640 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:03, 06:05](691 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:02, 06:12](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 04:39](2028 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:29, 04:40](2028 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 07:24] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:30, 05:27](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:12, 11:52] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:26, 02:38](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:14, 02:36] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:01, 01:56](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:54, 01:37](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:47, 01:02](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:14, 12:56] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:33, 04:06](1926 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:14, 12:00] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:51, 04:08](1913 MB) + +PASS -- COMPILE 'atml_intel' [14:14, 13:31] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:49, 08:28](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:49, 08:12](1893 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:47, 03:41](1044 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:13, 09:04] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:39, 06:10](1931 MB) + +PASS -- COMPILE 'atmw_intel' [14:12, 13:30] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:03, 02:18](1899 MB) + +PASS -- COMPILE 'atmaero_intel' [13:12, 12:15] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:26, 06:56](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:26, 06:37](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:17, 06:37](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:12, 08:01] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:34, 18:12](4487 MB) SYNOPSIS: -Starting Date/Time: 20240722 18:29:44 -Ending Date/Time: 20240722 20:48:48 -Total Time: 02h:20m:27s +Starting Date/Time: 20240724 21:15:42 +Ending Date/Time: 20240724 23:27:23 +Total Time: 02h:12m:55s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 3e1f1d26cd..354808eb20 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,15 +1,15 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -ec399e628231e03101314fdb378214c340cf96cc +45bcf84d30cfb2cc46913130f6e8615814b3c9e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -24,384 +24,388 @@ 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2238840 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3718900 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:16, 06:05](3277 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:12, 16:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:03, 17:32](1956 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:13, 18:08](2132 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:08, 08:23](1228 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 19:26](1861 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:39, 17:11](1951 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:16] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:25](1891 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 13:20] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:10, 05:54](3310 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:18, 06:21](3318 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:26, 03:31](3241 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:11, 06:02](3347 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:26, 03:34](3251 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:11, 05:37](3598 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:09, 06:00](3313 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:04, 05:00](3188 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:17, 05:55](3322 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:03, 10:19](3487 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:47, 06:41](3606 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:26, 10:10](4260 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:10, 06:29](4362 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:09, 05:26](3296 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 12:52] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:58, 05:04](1961 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:05, 04:26](2038 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:19] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:03, 08:39](3333 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:56] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 06:02](1976 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 12:03] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:01, 04:25](2040 MB) - -PASS -- COMPILE 's2s_intel' [12:12, 12:02] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:41, 09:04](3089 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:45](3062 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:45, 01:34](2499 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:15, 17:18] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:17, 05:36](3328 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:14, 16:48] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:02, 17:29](1987 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:22](1270 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:08, 19:56](1895 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:14, 05:06] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 24:58](1919 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:24, 03:21](687 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 02:54](1575 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:44, 02:58](1583 MB) -PASS -- TEST 'control_latlon_intel' [03:42, 02:55](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 02:59](1578 MB) -PASS -- TEST 'control_c48_intel' [08:45, 07:32](1734 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 06:26](840 MB) -PASS -- TEST 'control_c192_intel' [12:02, 10:34](1729 MB) -PASS -- TEST 'control_c384_intel' [14:04, 10:35](1995 MB) -PASS -- TEST 'control_c384gdas_intel' [11:59, 08:00](1379 MB) -PASS -- TEST 'control_stochy_intel' [02:26, 01:41](631 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:06](489 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:36](636 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:28](636 MB) -PASS -- TEST 'control_iovr5_intel' [03:25, 02:26](632 MB) -PASS -- TEST 'control_p8_intel' [04:55, 03:08](1872 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:01, 03:11](1875 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 03:00](1874 MB) -PASS -- TEST 'control_restart_p8_intel' [02:49, 01:47](1095 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:51, 03:04](1863 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:52, 01:44](1136 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:49, 03:10](1869 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:48, 02:57](1979 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:26](1877 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 04:06](1937 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:55, 03:06](1891 MB) -PASS -- TEST 'merra2_thompson_intel' [04:52, 03:25](1880 MB) -PASS -- TEST 'regional_control_intel' [06:37, 05:20](1082 MB) -PASS -- TEST 'regional_restart_intel' [04:38, 02:55](1078 MB) -PASS -- TEST 'regional_decomp_intel' [06:36, 05:41](1075 MB) -PASS -- TEST 'regional_2threads_intel' [04:39, 03:29](1074 MB) -PASS -- TEST 'regional_noquilt_intel' [06:39, 05:16](1378 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 05:20](1082 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:35, 05:20](1082 MB) -PASS -- TEST 'regional_wofs_intel' [07:35, 06:52](1896 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 11:07] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:43, 07:45](1093 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:07, 04:16](1286 MB) -PASS -- TEST 'rap_decomp_intel' [08:38, 08:07](1014 MB) -PASS -- TEST 'rap_2threads_intel' [08:37, 07:19](1164 MB) -PASS -- TEST 'rap_restart_intel' [04:48, 04:04](1088 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:42, 07:45](1088 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:39, 08:09](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 05:53](1117 MB) -PASS -- TEST 'hrrr_control_intel' [04:42, 04:00](1024 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:38, 04:10](983 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:39](1095 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:12](953 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:48, 07:35](1080 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:14](1973 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:08](2044 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:53] -PASS -- TEST 'control_csawmg_intel' [07:36, 06:10](1006 MB) -PASS -- TEST 'control_ras_intel' [04:22, 03:16](732 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:13] -PASS -- TEST 'control_csawmg_gnu' [09:44, 08:25](750 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:41] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:47, 11:00](1649 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:13, 14:43] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:50, 02:49](1890 MB) -PASS -- TEST 'regional_control_faster_intel' [05:40, 04:52](1078 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 06:01] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:56, 02:43](1594 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:56, 02:35](1594 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:28, 03:04](793 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:28, 02:52](788 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:50, 04:23](1117 MB) -PASS -- TEST 'control_ras_debug_intel' [03:28, 03:00](803 MB) -PASS -- TEST 'control_diag_debug_intel' [07:00, 02:48](1649 MB) -PASS -- TEST 'control_debug_p8_intel' [06:52, 03:04](1885 MB) -PASS -- TEST 'regional_debug_intel' [18:48, 17:52](1077 MB) -PASS -- TEST 'rap_control_debug_intel' [06:29, 05:07](1181 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:32, 04:54](1179 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 05:05](1186 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:32, 05:05](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:29, 05:08](1183 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:46, 05:21](1267 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 05:19](1184 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 05:13](1183 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:25, 05:08](1178 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:56](1181 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:24, 05:04](1183 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:59](1190 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:07](1186 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 05:01](1182 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 06:13](1183 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 05:05](1180 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:44, 08:54](1189 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:42] -PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 02:20](705 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:12, 04:10] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:49, 13:44](1656 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 03:54](1143 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:35](1018 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:40, 03:25](980 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 06:09](1050 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:36, 03:12](941 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:34, 03:37](927 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:40, 04:52](1024 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 01:52](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:12, 14:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:59, 02:06](1186 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:44, 00:55](1104 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:50, 01:17](1089 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:43] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:10](971 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:36] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 05:11](1056 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:55](1062 MB) -PASS -- TEST 'conus13km_debug_intel' [15:56, 14:52](1214 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 15:11](903 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:19](1117 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:33](1259 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:54] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:13](1100 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 12:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:17, 05:08](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:35, 05:47](1101 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:29, 06:54](811 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:17, 13:33](844 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:44, 15:20](868 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:00, 05:33](484 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:28, 06:49](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:47, 02:44](362 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:08, 07:18](469 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:43](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:49, 03:33](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:54, 04:10](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:29, 01:17](387 MB) -PASS -- TEST 'gnv1_nested_intel' [09:38, 04:08](1704 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:40] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:54, 13:02](553 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:12, 16:48] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:03, 08:43](652 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:07, 08:54](701 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:07, 06:27](674 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 11:47] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:19, 06:30](813 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:15, 06:35](792 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:58, 15:54](1200 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:52] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:44](1147 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:39](1108 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:34](1010 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:37](1011 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:38](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:39](1157 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:40](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:35](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:16](1067 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:24, 06:19](1051 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:44](1132 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:52](2488 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:55](2493 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:26] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:17](1054 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:30] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:39](1153 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:13, 01:07] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:48](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:50](312 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:33](310 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:33] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:11, 03:40](1966 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 10:57] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:14, 03:37](1939 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 12:28] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:06, 04:24](1837 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:02, 04:30](1851 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:27](1074 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 05:09] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:01, 05:48](1866 MB) - -PASS -- COMPILE 'atmw_intel' [12:14, 11:39] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:55](1902 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 11:22] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:20, 04:11](3182 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:15, 04:55](3080 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:47, 05:18](3083 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:54] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:09, 21:26](4438 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:45] -PASS -- TEST 'control_c48_gnu' [12:43, 11:16](1523 MB) -PASS -- TEST 'control_stochy_gnu' [04:31, 03:28](491 MB) -PASS -- TEST 'control_ras_gnu' [06:25, 04:45](496 MB) -PASS -- TEST 'control_p8_gnu' [06:01, 04:46](1449 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:41](1437 MB) -PASS -- TEST 'control_flake_gnu' [11:26, 10:23](531 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:12, 04:14] -PASS -- TEST 'rap_control_gnu' [11:35, 10:53](840 MB) -PASS -- TEST 'rap_decomp_gnu' [12:36, 11:08](842 MB) -PASS -- TEST 'rap_2threads_gnu' [10:40, 09:49](918 MB) -PASS -- TEST 'rap_restart_gnu' [07:57, 05:37](566 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:44, 10:50](803 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:34, 11:02](837 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:41, 08:12](567 MB) -PASS -- TEST 'hrrr_control_gnu' [06:42, 05:37](804 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:37, 05:37](794 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:37, 05:04](913 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:37, 05:37](835 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [08:33, 02:55](550 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:33, 02:55](644 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:35](801 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:36] -PASS -- TEST 'control_diag_debug_gnu' [02:50, 01:40](1254 MB) -PASS -- TEST 'regional_debug_gnu' [11:42, 10:17](723 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:25, 02:42](801 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:35](804 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:26, 02:42](807 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:28, 02:39](805 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:45, 02:50](892 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 04:12](803 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:39](805 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:24, 02:39](801 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:33](440 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:23, 01:47](429 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:43, 01:48](1421 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:25, 02:45](811 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:25, 03:02](811 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:24](819 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:35] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:14] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:35, 09:26](696 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:36, 04:58](703 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:43, 08:38](751 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [11:36, 04:37](731 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:29, 05:06](697 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:40, 07:07](542 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:27, 02:33](525 MB) -PASS -- TEST 'conus13km_control_gnu' [09:03, 03:16](868 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:49, 06:25](866 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:49, 01:49](540 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 10:59] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](719 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:47] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [07:25, 02:36](700 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [07:25, 02:34](699 MB) -PASS -- TEST 'conus13km_debug_gnu' [11:55, 07:00](863 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [11:48, 07:10](565 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [12:44, 07:25](864 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:45, 07:09](931 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:48] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:25, 02:39](718 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:49] - -PASS -- COMPILE 's2s_gnu' [16:11, 15:55] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:08, 07:16](1533 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:26] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:12, 16:04] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:57, 20:29](1438 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:10] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:54, 12:53](1446 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:46] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:19, 03:03](682 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:20, 05:40](3300 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:43] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:06, 17:25](1969 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:37, 18:21](2133 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:26, 08:25](1243 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:15, 19:34](1858 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:27] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:45, 17:03](1953 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:11] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:11, 22:44](1902 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 13:54] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:18, 06:16](3313 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:27, 06:14](3315 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:35, 03:40](3235 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:16, 06:05](3326 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:37, 03:38](3249 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:10, 05:35](3609 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:10, 05:56](3315 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:14, 04:49](3193 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:23, 06:00](3327 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:20, 10:36](3572 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:25, 06:39](3606 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:16, 10:08](4276 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:14, 06:29](4350 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:15, 05:30](3301 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 13:01] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:06, 04:53](1984 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:13, 04:38](2032 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:11] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:28, 08:48](3330 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:48] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:01, 05:52](1980 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 12:18] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:12, 04:23](2028 MB) + +PASS -- COMPILE 's2s_intel' [13:12, 12:23] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:52, 09:07](3075 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:50, 02:41](3074 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:45, 01:33](2492 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 17:40] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:21, 05:42](3323 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 16:23] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:14, 17:50](2000 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:35, 08:40](1255 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:15, 19:56](1910 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:53] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:12, 25:09](1921 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 12:05] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:29, 03:25](686 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:59, 02:53](1578 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:59, 03:07](1588 MB) +PASS -- TEST 'control_latlon_intel' [05:51, 02:54](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:00, 02:57](1581 MB) +PASS -- TEST 'control_c48_intel' [08:56, 07:28](1742 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 06:27](852 MB) +PASS -- TEST 'control_c192_intel' [14:30, 10:41](1718 MB) +PASS -- TEST 'control_c384_intel' [14:43, 10:38](1993 MB) +PASS -- TEST 'control_c384gdas_intel' [13:57, 08:10](1377 MB) +PASS -- TEST 'control_stochy_intel' [04:29, 01:39](634 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:30, 00:59](486 MB) +PASS -- TEST 'control_lndp_intel' [03:27, 01:35](639 MB) +PASS -- TEST 'control_iovr4_intel' [04:31, 02:28](634 MB) +PASS -- TEST 'control_iovr5_intel' [04:30, 02:29](637 MB) +PASS -- TEST 'control_p8_intel' [06:15, 03:07](1871 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:11, 03:09](1875 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:58, 03:10](1881 MB) +PASS -- TEST 'control_restart_p8_intel' [02:50, 01:47](1117 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:52, 03:03](1868 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:45](1141 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:47, 03:10](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:52, 02:56](1962 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:50, 05:30](1873 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:56, 04:07](1926 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:02, 03:07](1880 MB) +PASS -- TEST 'merra2_thompson_intel' [04:57, 03:27](1889 MB) +PASS -- TEST 'regional_control_intel' [06:39, 05:24](1082 MB) +PASS -- TEST 'regional_restart_intel' [03:52, 02:58](1083 MB) +PASS -- TEST 'regional_decomp_intel' [06:39, 05:42](1066 MB) +PASS -- TEST 'regional_2threads_intel' [04:40, 03:29](1072 MB) +PASS -- TEST 'regional_noquilt_intel' [06:42, 05:16](1377 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:20](1090 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:23](1082 MB) +PASS -- TEST 'regional_wofs_intel' [07:40, 06:52](1898 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 11:22] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:44, 07:45](1086 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:20, 04:15](1285 MB) +PASS -- TEST 'rap_decomp_intel' [09:43, 08:08](1022 MB) +PASS -- TEST 'rap_2threads_intel' [08:40, 07:18](1168 MB) +PASS -- TEST 'rap_restart_intel' [05:46, 04:06](1086 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:44, 07:45](1087 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:41, 08:08](1019 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:48, 05:56](1112 MB) +PASS -- TEST 'hrrr_control_intel' [05:04, 04:00](1019 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:42, 04:08](1014 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:42](1093 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:36, 02:10](981 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:47, 07:37](1064 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:28](1969 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:31, 09:09](2049 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:57] +PASS -- TEST 'control_csawmg_intel' [07:41, 06:10](1007 MB) +PASS -- TEST 'control_ras_intel' [04:26, 03:18](731 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:33] +PASS -- TEST 'control_csawmg_gnu' [09:41, 08:23](746 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:33] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:01, 11:10](1642 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 14:59] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:03, 02:51](1874 MB) +PASS -- TEST 'regional_control_faster_intel' [05:49, 04:52](1078 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:21] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:56, 02:39](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:52, 02:46](1589 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:27, 03:13](788 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:49](792 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:42, 04:23](1111 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:54](803 MB) +PASS -- TEST 'control_diag_debug_intel' [03:51, 02:50](1656 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 03:09](1885 MB) +PASS -- TEST 'regional_debug_intel' [18:41, 17:45](1075 MB) +PASS -- TEST 'rap_control_debug_intel' [06:27, 05:04](1184 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:27, 04:54](1175 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:57](1186 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 05:09](1179 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:59](1176 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:44, 05:21](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 05:13](1182 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 05:05](1181 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:02](1187 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:08](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:25, 05:00](1180 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 05:09](1183 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 08:15](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:56](1182 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:27, 06:04](1181 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:28, 04:58](1181 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:46, 08:53](1195 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:55] +PASS -- TEST 'control_csawmg_debug_gnu' [03:41, 02:22](712 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:12, 03:50] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:56, 13:57](1668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:09, 04:00](1153 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:28](1024 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:24](976 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 06:06](1082 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:36, 03:10](947 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:37, 03:36](915 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:43, 04:54](1018 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:29, 01:57](901 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 14:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:04, 02:08](1198 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:52, 00:59](1103 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:18](1095 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:42] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:13](970 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:08] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 04:59](1055 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:27, 04:55](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [15:54, 14:52](1188 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:47](919 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:50, 08:26](1121 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:51, 14:40](1257 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:45] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 05:09](1095 MB) + +PASS -- COMPILE 'hafsw_intel' [13:15, 12:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:22, 05:20](721 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:26](1094 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:42, 07:07](812 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:21, 13:41](844 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:35, 15:25](867 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:10, 05:33](490 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:30, 07:03](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:47, 02:41](361 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:52, 07:28](453 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:50, 03:52](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:53, 03:37](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:15](569 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:14](385 MB) +PASS -- TEST 'gnv1_nested_intel' [06:35, 04:07](1724 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:43] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:15](549 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:12, 16:47] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:04, 08:48](626 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:11, 08:51](721 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:51] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:20, 06:36](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 11:37] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:24, 06:36](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:23, 06:34](798 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:03, 16:18](1201 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:37] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:22, 02:49](1145 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:41](1099 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:20, 02:41](1015 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:51](1001 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:20, 02:38](1011 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:22, 02:40](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:43](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:58](1006 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:40, 06:10](1058 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:28, 06:13](1035 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:46](1142 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:22, 03:59](2503 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 04:27](2493 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:44] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:23](1054 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:42] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:21, 02:41](1149 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 01:06] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:32, 00:47](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:51](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:34](318 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:25] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:18, 03:47](1981 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:12, 03:38](1948 MB) + +PASS -- COMPILE 'atml_intel' [13:12, 12:58] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:21](1845 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:07, 04:31](1846 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:26](1086 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:12, 05:00] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:01, 05:51](1855 MB) + +PASS -- COMPILE 'atmw_intel' [12:13, 12:00] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:51](1922 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 11:29] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:02, 04:11](3177 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:01, 04:59](3077 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:47, 05:21](3078 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:13, 04:02] ( 884 warnings 6 remarks ) +FAILED: TEST TIMED OUT -- TEST 'regional_atmaq_debug_intel' [, ]( MB) + +PASS -- COMPILE 'atm_gnu' [05:12, 04:52] +PASS -- TEST 'control_c48_gnu' [12:44, 11:15](1519 MB) +PASS -- TEST 'control_stochy_gnu' [05:24, 03:19](481 MB) +PASS -- TEST 'control_ras_gnu' [06:25, 04:47](485 MB) +PASS -- TEST 'control_p8_gnu' [06:58, 04:47](1444 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:42](1455 MB) +PASS -- TEST 'control_flake_gnu' [11:27, 10:29](525 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:23] +PASS -- TEST 'rap_control_gnu' [11:33, 10:49](838 MB) +PASS -- TEST 'rap_decomp_gnu' [12:37, 11:05](834 MB) +PASS -- TEST 'rap_2threads_gnu' [10:46, 09:56](917 MB) +PASS -- TEST 'rap_restart_gnu' [06:43, 05:31](563 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:39, 10:50](801 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:35, 11:03](826 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:45, 08:08](570 MB) +PASS -- TEST 'hrrr_control_gnu' [06:47, 05:39](797 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:39, 05:38](784 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:38, 05:12](909 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:40, 05:38](833 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:33, 02:58](545 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:37, 02:51](639 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:46, 10:48](795 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:55] +PASS -- TEST 'control_diag_debug_gnu' [03:00, 01:39](1251 MB) +PASS -- TEST 'regional_debug_gnu' [11:40, 10:42](719 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:41](799 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:26, 02:34](800 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:24, 02:40](805 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:23, 02:42](800 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:47, 02:54](886 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 04:09](800 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:41](797 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:25, 02:37](796 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:26, 01:39](433 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:25, 01:46](426 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:46, 01:55](1430 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:26, 02:42](807 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:25, 02:57](801 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:42, 04:25](814 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:45] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:20] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:33, 09:22](692 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 05:02](691 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:42, 08:38](744 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:32](738 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 05:05](688 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:43, 06:55](540 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 02:42](520 MB) +PASS -- TEST 'conus13km_control_gnu' [05:11, 03:16](859 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:52, 05:49](866 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:48, 01:51](542 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 11:02] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:48, 05:44](714 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:48] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:30, 02:37](692 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:28, 02:38](690 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:01, 07:07](873 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:51, 07:17](560 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:45, 08:00](875 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:45, 07:01](929 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 07:48] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:27, 02:37](718 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 16:48] + +PASS -- COMPILE 's2s_gnu' [17:12, 16:25] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:16, 07:31](1525 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:21] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:12, 16:07] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:03, 19:20](1439 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:12] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:56, 13:05](1436 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:14, 15:37] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:23, 03:06](681 MB) SYNOPSIS: -Starting Date/Time: 20240723 00:42:52 -Ending Date/Time: 20240723 02:20:57 -Total Time: 01h:39m:21s +Starting Date/Time: 20240724 21:18:58 +Ending Date/Time: 20240724 23:09:38 +Total Time: 01h:51m:29s Compiles Completed: 57/57 -Tests Completed: 245/245 +Tests Completed: 244/245 +Failed Tests: +* TEST regional_atmaq_debug_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3718900/regional_atmaq_debug_intel/err NOTES: -A file 'test_changes.list' was generated but is empty. +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: SUCCESS +Result: FAILURE ====END OF HERA REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 8a915a55f8..388c0dc873 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: -ec399e628231e03101314fdb378214c340cf96cc +17a524e83223725150b6c1bec3ac9e55ac6876a8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,444 +35,378 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1318349 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_859761 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:11, 10:40] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:12, 08:10](2139 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:39] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:17, 13:28](1990 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:37, 13:56](2288 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:33, 06:29](1303 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:59, 14:51](1924 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:35, 12:57](2003 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:11] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:19, 20:32](1977 MB) - -PASS -- COMPILE 's2swa_intel' [11:11, 10:46] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:03, 08:07](2194 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:15, 07:56](2190 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:17, 04:17](1994 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:00, 08:04](2208 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:19, 04:23](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:59, 09:09](2550 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:59, 08:30](2185 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:10, 06:24](2089 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:20, 08:21](2194 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:05, 16:03](2982 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:44, 05:47](2934 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:38, 09:44](3807 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:07, 05:50](3640 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:07, 05:20](2159 MB) - -PASS -- COMPILE 's2sw_intel' [11:11, 11:04] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:53, 07:05](2036 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:09, 04:31](2082 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:11] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:09, 07:22](2220 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:00] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:10, 05:10](2068 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:11, 08:41] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:05, 04:01](2077 MB) - -PASS -- COMPILE 's2s_intel' [09:11, 08:44] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:45, 07:01](3108 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:49, 02:08](3079 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:13](2517 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 18:06] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:21, 07:42](2200 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:57] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:01, 13:51](2046 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:15, 06:45](1377 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:04, 15:26](1964 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:47] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:09, 22:33](2026 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:19, 02:54](718 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:36, 02:22](1610 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:38, 02:32](1620 MB) -PASS -- TEST 'control_latlon_intel' [03:29, 02:26](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:35, 02:26](1604 MB) -PASS -- TEST 'control_c48_intel' [07:36, 06:50](1739 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:28, 05:48](846 MB) -PASS -- TEST 'control_c192_intel' [09:48, 08:56](1760 MB) -PASS -- TEST 'control_c384_intel' [10:29, 08:57](2040 MB) -PASS -- TEST 'control_c384gdas_intel' [09:15, 06:56](1525 MB) -PASS -- TEST 'control_stochy_intel' [02:19, 01:23](674 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:36, 00:50](534 MB) -PASS -- TEST 'control_lndp_intel' [02:19, 01:21](667 MB) -PASS -- TEST 'control_iovr4_intel' [02:19, 02:03](666 MB) -PASS -- TEST 'control_iovr5_intel' [02:21, 02:06](666 MB) -PASS -- TEST 'control_p8_intel' [03:58, 02:36](1898 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:58, 02:35](1904 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:00, 02:43](1901 MB) -PASS -- TEST 'control_restart_p8_intel' [02:48, 01:30](1161 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:47, 02:35](1890 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:02, 01:31](1180 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:48, 02:39](1901 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:44, 02:25](1995 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:35, 04:27](1913 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:55, 03:31](1975 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:55, 02:38](1902 MB) -PASS -- TEST 'merra2_thompson_intel' [04:04, 02:53](1919 MB) -PASS -- TEST 'regional_control_intel' [05:34, 04:40](1199 MB) -PASS -- TEST 'regional_restart_intel' [03:33, 02:38](1179 MB) -PASS -- TEST 'regional_decomp_intel' [05:28, 04:56](1199 MB) -PASS -- TEST 'regional_2threads_intel' [03:29, 03:03](1164 MB) -PASS -- TEST 'regional_noquilt_intel' [05:37, 04:31](1526 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:34, 04:41](1197 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:33, 04:45](1195 MB) -PASS -- TEST 'regional_wofs_intel' [06:31, 05:37](2089 MB) - -PASS -- COMPILE 'rrfs_intel' [08:11, 08:04] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:45, 06:40](1225 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:53, 03:26](1408 MB) -PASS -- TEST 'rap_decomp_intel' [07:45, 06:56](1160 MB) -PASS -- TEST 'rap_2threads_intel' [07:45, 06:10](1376 MB) -PASS -- TEST 'rap_restart_intel' [05:09, 03:29](1160 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:45, 06:39](1213 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:45, 06:53](1162 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:07, 05:00](1199 MB) -PASS -- TEST 'hrrr_control_intel' [04:45, 03:25](1070 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:46, 03:31](1048 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:45, 03:10](1119 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:32, 01:51](1023 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:02, 06:27](1215 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:24, 07:34](2015 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 07:25](2167 MB) - -PASS -- COMPILE 'csawmg_intel' [08:16, 07:16] -PASS -- TEST 'control_csawmg_intel' [06:36, 05:27](1048 MB) -PASS -- TEST 'control_ras_intel' [03:19, 02:49](856 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:12] -PASS -- TEST 'control_csawmg_gnu' [07:43, 06:48](1071 MB) - -PASS -- COMPILE 'wam_intel' [08:16, 07:15] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:42, 10:18](1670 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 13:48] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:55, 02:20](1906 MB) -PASS -- TEST 'regional_control_faster_intel' [05:31, 04:16](1202 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:51] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:59, 08:20](2131 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 21:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:01, 13:17](2000 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:18, 13:57](2324 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:16, 06:31](1314 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:45, 15:02](1921 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:10, 17:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:27, 13:03](1991 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:57] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:10, 20:32](1979 MB) + +PASS -- COMPILE 's2swa_intel' [12:10, 11:19] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:57, 07:41](2190 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:01, 07:47](2183 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:13, 04:20](1960 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:57, 07:51](2204 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:12, 05:19](1749 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:50, 09:08](2551 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:53, 08:19](2172 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:58, 07:20](2098 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:02, 08:30](2195 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:36, 14:53](2996 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:09, 06:53](2932 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:37, 10:48](3809 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:24, 06:41](3651 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:52, 05:54](2152 MB) + +PASS -- COMPILE 's2sw_intel' [13:10, 12:50] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:47, 07:22](2021 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:50, 04:34](2081 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:57] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:00, 07:10](2216 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:18] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:51, 04:49](2059 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:27] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:47, 04:08](2091 MB) + +PASS -- COMPILE 's2s_intel' [10:10, 09:12] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:34, 07:01](3107 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:37, 02:06](3076 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:35, 01:19](2518 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:10, 17:24] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:57, 08:15](2194 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 16:44] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:47, 14:21](2046 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:53, 07:22](1391 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:56, 16:21](1971 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:19] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:53, 23:05](2022 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:10, 09:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:19, 02:55](710 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:26](1611 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:36, 02:32](1612 MB) +PASS -- TEST 'control_latlon_intel' [03:27, 02:28](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:30](1614 MB) +PASS -- TEST 'control_c48_intel' [07:36, 07:00](1740 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:25, 05:49](845 MB) +PASS -- TEST 'control_c192_intel' [09:41, 09:04](1772 MB) +PASS -- TEST 'control_c384_intel' [11:22, 09:38](2044 MB) +PASS -- TEST 'control_c384gdas_intel' [09:43, 07:19](1527 MB) +PASS -- TEST 'control_stochy_intel' [02:24, 01:27](667 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:26, 00:54](549 MB) +PASS -- TEST 'control_lndp_intel' [02:24, 01:21](677 MB) +PASS -- TEST 'control_iovr4_intel' [02:26, 02:05](674 MB) +PASS -- TEST 'control_iovr5_intel' [03:19, 02:39](670 MB) +PASS -- TEST 'control_p8_intel' [04:48, 03:23](1913 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:57, 03:08](1912 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:49, 03:23](1900 MB) +PASS -- TEST 'control_restart_p8_intel' [04:46, 02:18](1156 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:40, 03:23](1901 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:43, 02:29](1201 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:43, 02:44](1885 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:35, 02:29](1997 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:28, 04:33](1907 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:46, 03:34](1974 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:46, 02:38](1908 MB) +PASS -- TEST 'merra2_thompson_intel' [03:52, 02:58](1916 MB) +PASS -- TEST 'regional_control_intel' [05:26, 04:44](1202 MB) +PASS -- TEST 'regional_restart_intel' [04:24, 03:10](1176 MB) +PASS -- TEST 'regional_decomp_intel' [05:26, 04:56](1187 MB) +PASS -- TEST 'regional_2threads_intel' [03:29, 03:07](1155 MB) +PASS -- TEST 'regional_noquilt_intel' [05:31, 04:30](1516 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:29, 04:39](1196 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 04:42](1201 MB) +PASS -- TEST 'regional_wofs_intel' [07:24, 05:43](2077 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 07:50] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:49, 06:44](1199 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 03:46](1412 MB) +PASS -- TEST 'rap_decomp_intel' [07:43, 06:58](1130 MB) +PASS -- TEST 'rap_2threads_intel' [07:43, 06:13](1372 MB) +PASS -- TEST 'rap_restart_intel' [04:59, 03:31](1141 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:48, 06:41](1223 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:52, 07:01](1157 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 05:04](1186 MB) +PASS -- TEST 'hrrr_control_intel' [06:42, 03:28](1072 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:42, 03:33](1050 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:42, 03:16](1124 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:27, 01:54](1020 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:54, 06:34](1200 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 08:12](2013 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:21, 07:45](2180 MB) + +PASS -- COMPILE 'csawmg_intel' [08:10, 07:51] +PASS -- TEST 'control_csawmg_intel' [08:29, 06:04](1046 MB) +PASS -- TEST 'control_ras_intel' [05:17, 02:52](839 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:10, 04:09] +PASS -- TEST 'control_csawmg_gnu' [08:38, 07:30](1071 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 07:06] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:33, 09:46](1681 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 14:49] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:45, 03:45](1905 MB) +PASS -- TEST 'regional_control_faster_intel' [07:25, 05:20](1203 MB) PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:18] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:33, 02:18](1628 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:36, 02:15](1640 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:21, 02:36](843 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:20](833 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:30, 04:31](1166 MB) -PASS -- TEST 'control_ras_debug_intel' [03:21, 02:18](850 MB) -PASS -- TEST 'control_diag_debug_intel' [03:38, 02:15](1692 MB) -PASS -- TEST 'control_debug_p8_intel' [04:38, 03:15](1924 MB) -PASS -- TEST 'regional_debug_intel' [15:31, 14:58](1158 MB) -PASS -- TEST 'rap_control_debug_intel' [04:20, 04:04](1231 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:22, 04:02](1223 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:22, 04:02](1235 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:19, 04:04](1233 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:19, 03:59](1231 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:32, 04:10](1305 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:19, 04:03](1240 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 04:11](1233 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:19, 04:03](1234 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:20, 04:01](1229 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:20, 04:05](1231 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:20, 04:04](1236 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:25, 06:39](1220 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 03:58](1219 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 04:53](1232 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:20, 04:03](1233 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:59, 07:04](1235 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:15, 04:41] -PASS -- TEST 'control_csawmg_debug_gnu' [03:38, 02:15](1056 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:10, 02:54] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 07:07] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:52, 03:14](1278 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:44, 05:24](1133 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:02, 02:52](1021 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:48, 05:09](1271 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:41, 02:37](1033 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:42, 03:07](995 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:46, 04:01](1098 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:25, 01:35](956 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:48, 01:42](1301 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:40, 00:43](1218 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:37, 01:05](1168 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:23] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:36, 03:49](1098 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 03:02] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 04:09](1108 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:20, 04:04](1115 MB) -PASS -- TEST 'conus13km_debug_intel' [13:42, 12:14](1366 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:38, 12:18](1019 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:36, 07:16](1253 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:37, 12:12](1423 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:55] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:27, 04:10](1164 MB) - -PASS -- COMPILE 'hafsw_intel' [10:10, 09:32] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:07, 05:24](878 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:24, 05:09](1276 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:18, 06:23](950 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 14:03](985 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:12, 15:07](1006 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:00, 05:24](611 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:25, 06:50](627 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:52, 02:32](438 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:16, 07:22](540 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:50, 03:52](626 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:38](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:58, 04:48](678 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:28, 01:04](453 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:21] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:51, 11:23](647 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:16] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:58, 16:18](731 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:06, 16:47](815 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 09:35] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 09:59](823 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:10, 09:58] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:15, 05:22](951 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:09, 05:30](933 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:52, 16:23](1338 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:39] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:12](1137 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:19](1102 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:04](1012 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:16, 02:11](1012 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:10](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:16, 02:07](1146 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 02:09](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:16, 02:04](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:04, 04:55](1153 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:59, 04:52](1155 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:11](1161 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:06](2442 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:17, 03:10](2433 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:10, 02:48] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:17, 05:10](1075 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:39] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:13](1151 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:46] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:50](338 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:27, 00:48](584 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:30](585 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:14, 08:01] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:00, 03:18](2027 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 07:20] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:57, 03:05](1993 MB) - -PASS -- COMPILE 'atml_intel' [09:12, 08:58] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:10, 05:40](1897 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 05:41](1906 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:55, 02:59](1149 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:21] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:04, 05:14](1936 MB) - -PASS -- COMPILE 'atmw_intel' [10:11, 09:32] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:54, 01:37](1951 MB) - -PASS -- COMPILE 'atmaero_intel' [08:11, 08:02] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:47, 03:44](2030 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:51, 04:14](1814 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:49, 04:19](1814 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:11, 03:07] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:40, 16:35](4597 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 05:45] -PASS -- TEST 'control_c48_gnu' [10:38, 09:23](1572 MB) -PASS -- TEST 'control_stochy_gnu' [03:22, 02:20](729 MB) -PASS -- TEST 'control_ras_gnu' [04:18, 03:46](734 MB) -PASS -- TEST 'control_p8_gnu' [04:54, 03:50](1712 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:44, 03:43](1718 MB) -PASS -- TEST 'control_flake_gnu' [05:21, 04:27](807 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 05:21] -PASS -- TEST 'rap_control_gnu' [08:42, 07:41](1085 MB) -PASS -- TEST 'rap_decomp_gnu' [08:42, 07:58](1083 MB) -PASS -- TEST 'rap_2threads_gnu' [08:41, 07:10](1127 MB) -PASS -- TEST 'rap_restart_gnu' [04:58, 03:56](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:54, 07:39](1087 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 07:54](1088 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:00, 05:43](884 MB) -PASS -- TEST 'hrrr_control_gnu' [04:42, 04:00](1075 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:41, 04:02](1137 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:37, 03:35](1043 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:42, 03:55](1072 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:24, 02:06](881 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:24, 02:00](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:59, 07:36](1081 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:15, 09:52] -PASS -- TEST 'control_diag_debug_gnu' [02:38, 01:16](1632 MB) -PASS -- TEST 'regional_debug_gnu' [07:30, 06:42](1120 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:19, 02:02](1103 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:25, 01:54](1096 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:22, 01:55](1103 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:02](1103 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:29, 02:03](1275 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:22, 03:04](1106 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 02:00](1109 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:19, 01:54](1100 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:25](731 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:18, 01:21](728 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:32, 01:23](1755 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:21, 01:56](1106 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:14](1106 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:56, 03:23](1110 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:37] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_gnu' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:30] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:35, 07:15](964 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:04, 03:57](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:50, 06:41](972 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:43, 03:31](892 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:39, 03:56](952 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:01, 05:25](860 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:26, 01:57](856 MB) -PASS -- TEST 'conus13km_control_gnu' [03:45, 02:39](1267 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:42, 01:03](1177 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:41, 01:26](931 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 12:00] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:35, 04:24](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:11, 09:24] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:21, 01:58](976 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:21, 01:54](969 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:41, 05:38](1284 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:38, 05:40](962 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:31, 03:23](1195 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:33, 05:38](1352 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 07:02] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:22, 02:09](1008 MB) - -PASS -- COMPILE 's2swa_gnu' [19:11, 18:41] - -PASS -- COMPILE 's2s_gnu' [17:11, 16:39] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:05, 04:49](3126 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:55] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:15] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:18, 25:50](3035 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 05:07] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:53, 11:55](3067 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 16:03] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:16, 02:16](764 MB) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:28, 02:17](1648 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:31, 02:24](1635 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:38](840 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:21](840 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:23, 04:24](1160 MB) +PASS -- TEST 'control_ras_debug_intel' [03:17, 02:22](839 MB) +PASS -- TEST 'control_diag_debug_intel' [03:29, 02:28](1701 MB) +PASS -- TEST 'control_debug_p8_intel' [04:28, 03:13](1936 MB) +PASS -- TEST 'regional_debug_intel' [17:24, 15:50](1150 MB) +PASS -- TEST 'rap_control_debug_intel' [05:19, 04:33](1231 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:21, 04:14](1225 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 04:20](1239 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 04:29](1231 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 04:28](1229 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:25, 04:24](1319 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:16](1234 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:17, 04:25](1231 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:26](1243 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 04:13](1230 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:17, 04:04](1235 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 04:19](1227 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:46](1232 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:17, 04:12](1228 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 05:11](1227 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:18, 04:20](1226 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 07:31](1232 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:55] +PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 02:55](1055 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 03:18] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 07:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:16](1275 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:30, 06:19](1171 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:56, 02:53](1042 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:46, 06:05](1289 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:35, 02:39](1043 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:34, 02:59](1001 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:49, 04:49](1116 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 01:37](947 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:37, 01:45](1299 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:28, 00:44](1214 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:05](1151 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:33, 03:44](1084 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:18] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 04:35](1111 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 04:27](1116 MB) +PASS -- TEST 'conus13km_debug_intel' [12:31, 11:55](1353 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 12:14](1015 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:27, 07:17](1257 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:34, 12:14](1423 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:53] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:19, 04:20](1171 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 09:41] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:06, 05:21](861 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:24, 05:37](1278 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 07:05](943 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:04, 14:22](987 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:10, 15:18](1002 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:46, 06:05](603 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:17, 08:23](628 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:39, 03:17](444 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:53, 08:54](557 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:44, 04:22](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:37, 04:10](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:45, 04:57](671 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:31](460 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:51] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:42, 11:52](656 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:11, 14:42] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:50, 15:24](752 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 16:03](850 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 10:04] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:55, 09:42](919 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:10, 10:46] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:05, 05:43](947 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:03, 05:44](910 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:44, 16:27](1344 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:10] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:09](1138 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:18](1105 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:05](1025 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:08](1019 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 02:11](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:11](1167 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:13](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:14, 02:07](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:57, 04:56](1169 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:48, 04:53](1160 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:10](1148 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:16, 03:00](2462 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:04](2457 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 03:07] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 05:09](1080 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:41] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:11](1161 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:48] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:27, 00:51](340 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 00:46](559 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:32](561 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:10, 08:23] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:45, 03:40](2025 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 07:40] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:52, 03:09](1996 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 08:54] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:54, 05:51](1899 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:51, 05:47](1907 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:34, 03:04](1144 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 04:31] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:49, 05:47](1925 MB) + +PASS -- COMPILE 'atmw_intel' [10:10, 09:43] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:49, 01:39](1940 MB) + +PASS -- COMPILE 'atmaero_intel' [08:10, 07:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:46, 03:46](2034 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:45, 04:15](1815 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:37, 04:28](1821 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:21] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:24, 17:11](4607 MB) + +PASS -- COMPILE 'atm_gnu' [07:10, 05:32] +PASS -- TEST 'control_c48_gnu' [10:32, 09:26](1570 MB) +PASS -- TEST 'control_stochy_gnu' [03:19, 02:22](731 MB) +PASS -- TEST 'control_ras_gnu' [04:17, 03:52](733 MB) +PASS -- TEST 'control_p8_gnu' [04:43, 03:55](1734 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:36, 03:46](1758 MB) +PASS -- TEST 'control_flake_gnu' [05:19, 04:38](809 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:36] +PASS -- TEST 'rap_control_gnu' [09:31, 08:10](1101 MB) +PASS -- TEST 'rap_decomp_gnu' [09:30, 08:10](1086 MB) +PASS -- TEST 'rap_2threads_gnu' [08:49, 07:13](1124 MB) +PASS -- TEST 'rap_restart_gnu' [05:54, 04:17](888 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:45, 08:35](1085 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:31, 08:28](1082 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:43, 06:14](885 MB) +PASS -- TEST 'hrrr_control_gnu' [05:34, 04:13](1071 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:31, 04:12](1138 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:43, 03:46](1046 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:31, 04:13](1071 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:24, 02:17](879 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:17, 02:12](935 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:50, 08:08](1079 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 08:36] +PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:18](1625 MB) +PASS -- TEST 'regional_debug_gnu' [07:26, 07:03](1118 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:17, 02:05](1102 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 02:07](1092 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 02:05](1099 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:09](1100 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:23](1275 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 03:24](1100 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:16, 02:04](1101 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 02:04](1100 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:17, 01:13](730 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:17, 01:23](727 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:26, 01:28](1707 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:17, 02:09](1101 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:26](1108 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:47, 03:31](1102 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:10, 04:15] +PASS -- TEST 'control_wam_debug_gnu' [06:29, 05:25](1576 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:34] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:32, 07:26](962 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:44, 04:01](952 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:43, 06:52](995 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:36, 03:32](898 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 04:02](952 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:52, 05:47](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:19, 02:08](856 MB) +PASS -- TEST 'conus13km_control_gnu' [03:37, 02:37](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:27, 01:11](1178 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:28, 01:27](933 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:10, 12:11] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:42](990 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 06:56] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 02:13](981 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 02:10](976 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:29, 06:03](1287 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 06:11](961 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:25, 03:43](1195 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:30, 05:47](1354 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:11, 09:53] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:18, 02:06](1005 MB) + +PASS -- COMPILE 's2swa_gnu' [19:11, 18:32] + +PASS -- COMPILE 's2s_gnu' [15:11, 14:42] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:00, 04:57](3081 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:55] + +PASS -- COMPILE 's2sw_pdlib_gnu' [21:10, 16:36] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:48, 25:54](3056 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [11:10, 06:18] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:44, 12:14](2914 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [18:10, 15:42] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:15, 02:17](768 MB) SYNOPSIS: -Starting Date/Time: 20240722 22:35:45 -Ending Date/Time: 20240723 00:04:32 -Total Time: 01h:29m:44s +Starting Date/Time: 20240725 12:51:06 +Ending Date/Time: 20240725 14:24:28 +Total Time: 01h:33m:55s Compiles Completed: 57/57 -Tests Completed: 243/244 -Failed Tests: -* TEST control_wam_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2354/tests/logs/log_hercules/run_control_wam_debug_gnu.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF HERCULES REGRESSION TESTING LOG==== -====START OF HERCULES REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -ec399e628231e03101314fdb378214c340cf96cc - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3970037 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:54] -PASS -- TEST 'control_wam_debug_gnu' [06:27, 05:17](1569 MB) - -SYNOPSIS: -Starting Date/Time: 20240723 05:32:03 -Ending Date/Time: 20240723 05:42:56 -Total Time: 00h:10m:54s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 244/244 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index dd22fbd906..fe95ec28af 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -ec399e628231e03101314fdb378214c340cf96cc +45bcf84d30cfb2cc46913130f6e8615814b3c9e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,254 +35,254 @@ 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: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1587621 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_647373 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [41:15, 40:03] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:46, 07:34](2007 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:17, 48:44] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:59, 21:35](1897 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:23, 23:36](2010 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:45, 11:05](1115 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:34, 24:37](1855 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:17, 49:39] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:55, 21:07](1890 MB) - -PASS -- COMPILE 's2swa_intel' [41:15, 40:34] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:33, 08:04](2056 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:44, 07:58](2051 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:41, 05:17](1717 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:33, 08:13](2062 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:54, 04:59](1738 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:42, 08:05](2319 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:15, 08:06](2026 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:20, 06:55](2006 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:45, 07:57](2063 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:36, 07:25](2036 MB) - -PASS -- COMPILE 's2sw_intel' [39:14, 38:12] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 06:37](1863 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:57, 06:29](1981 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:43] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [14:47, 11:07](2035 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:19] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:16, 07:49](1936 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:15, 34:44] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:46, 06:14](1957 MB) - -PASS -- COMPILE 's2s_intel' [36:13, 35:04] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:27, 12:25](3075 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:04, 03:55](3060 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:03, 02:28](2483 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:20, 33:36] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:08, 07:56](2046 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:21, 48:39] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:41, 22:07](1921 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:45, 11:11](1129 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:39, 25:02](1889 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:21] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:51, 32:50](1898 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:15, 37:50] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [05:38, 04:33](650 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:24, 03:55](1550 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:30, 04:05](1560 MB) -PASS -- TEST 'control_latlon_intel' [05:20, 03:55](1552 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:30, 04:12](1559 MB) -PASS -- TEST 'control_c48_intel' [13:37, 11:48](1735 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:54, 09:13](853 MB) -PASS -- TEST 'control_c192_intel' [16:44, 14:26](1685 MB) -PASS -- TEST 'control_c384_intel' [20:44, 17:57](1829 MB) -PASS -- TEST 'control_c384gdas_intel' [19:55, 13:24](1015 MB) -PASS -- TEST 'control_stochy_intel' [03:37, 02:19](606 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:31, 01:21](441 MB) -PASS -- TEST 'control_lndp_intel' [03:38, 02:14](603 MB) -PASS -- TEST 'control_iovr4_intel' [04:42, 03:27](599 MB) -PASS -- TEST 'control_iovr5_intel' [04:41, 03:27](603 MB) -PASS -- TEST 'control_p8_intel' [06:47, 04:30](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:56, 04:37](1852 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:05, 04:28](1844 MB) -PASS -- TEST 'control_restart_p8_intel' [05:11, 02:58](1057 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:49, 04:30](1841 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 03:03](1074 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:49, 04:37](1837 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:49, 04:25](1940 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:27, 07:39](1855 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:26, 05:49](1910 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:02, 04:37](1842 MB) -PASS -- TEST 'merra2_thompson_intel' [07:20, 04:57](1853 MB) -PASS -- TEST 'regional_control_intel' [09:18, 08:08](1016 MB) -PASS -- TEST 'regional_restart_intel' [05:47, 04:28](1013 MB) -PASS -- TEST 'regional_decomp_intel' [10:19, 08:30](1017 MB) -PASS -- TEST 'regional_2threads_intel' [07:21, 05:32](1009 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:27, 08:13](1024 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [12:52, 07:55](1018 MB) - -PASS -- COMPILE 'rrfs_intel' [36:16, 35:05] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [12:05, 10:10](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 05:44](1217 MB) -PASS -- TEST 'rap_decomp_intel' [12:05, 10:53](984 MB) -PASS -- TEST 'rap_2threads_intel' [11:32, 09:40](1090 MB) -PASS -- TEST 'rap_restart_intel' [07:31, 05:18](995 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:13, 10:10](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:13, 10:53](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:32, 07:54](992 MB) -PASS -- TEST 'hrrr_control_intel' [07:04, 05:25](990 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:06, 05:40](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:39, 04:54](1066 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:49](912 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:42, 09:58](991 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:36, 12:42](1929 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:36, 12:18](1927 MB) - -PASS -- COMPILE 'csawmg_intel' [33:16, 32:25] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:51, 08:58](966 MB) -PASS -- TEST 'control_ras_intel' [05:30, 04:30](661 MB) - -PASS -- COMPILE 'wam_intel' [33:14, 32:37] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [16:04, 14:31](1619 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [53:17, 52:41] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:28, 04:28](1837 MB) -PASS -- TEST 'regional_control_faster_intel' [08:43, 07:35](1020 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:17] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 03:34](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:03, 03:31](1573 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:33, 03:55](776 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:33](787 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:05, 05:58](1100 MB) -PASS -- TEST 'control_ras_debug_intel' [04:32, 03:37](783 MB) -PASS -- TEST 'control_diag_debug_intel' [05:03, 03:31](1636 MB) -PASS -- TEST 'control_debug_p8_intel' [06:06, 04:20](1875 MB) -PASS -- TEST 'regional_debug_intel' [23:59, 22:56](1046 MB) -PASS -- TEST 'rap_control_debug_intel' [07:35, 06:27](1162 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:37, 06:16](1158 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:38, 06:28](1162 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:37, 06:25](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:35, 06:25](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:49, 06:48](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:35, 06:28](1162 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 06:29](1163 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:35, 06:24](1164 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:11](1163 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:08](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 06:10](1162 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:32, 10:10](1160 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 06:05](1160 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:31, 07:34](1167 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:32, 06:21](1158 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:36, 10:44](1167 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:41] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:08, 16:50](1651 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:14, 30:14] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:44, 05:19](1086 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:11, 08:26](905 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:18, 04:29](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:10, 07:58](942 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:18, 04:05](910 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:18, 04:43](862 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:07, 06:24](898 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 02:27](852 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:15, 48:39] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:16, 03:04](1112 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:00, 01:23](1053 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:39](1029 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:14, 30:54] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:03, 05:39](910 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:13, 04:45] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 06:13](1040 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 06:02](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [20:14, 18:37](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:12, 18:51](872 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:05, 10:51](1102 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:07, 18:42](1226 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:37] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:39, 06:15](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [39:15, 38:11] ( 1 warnings 1427 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:25, 07:07](710 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:34, 06:45](1083 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:03, 09:32](769 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:29, 16:35](799 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:43, 18:17](819 MB) -PASS -- TEST 'gnv1_nested_intel' [11:08, 07:12](1671 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:15, 33:20] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:36, 08:49](777 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:38, 08:55](750 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:27] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:42](1060 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:33, 02:16](1029 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:42](932 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:48](921 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:50](923 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:39](1066 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:44](1046 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:28, 03:42](924 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:01, 08:02](896 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:49, 08:01](841 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:44](1064 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 05:09](2398 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:29, 05:11](2355 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:36] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:29, 08:03](1007 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:09] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 03:41](1068 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:54] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:44, 01:44](233 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:35, 01:25](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 01:05](252 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:16, 33:50] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:35, 05:32](1910 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:16, 33:32] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:35, 05:35](1896 MB) - -PASS -- COMPILE 'atml_intel' [38:17, 37:19] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:56, 09:19](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:52, 09:02](1863 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:04, 05:06](1073 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:12, 05:45] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:53, 08:15](1886 MB) - -PASS -- COMPILE 'atmw_intel' [36:18, 35:11] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:32, 03:02](1868 MB) - -PASS -- COMPILE 'atmaero_intel' [34:14, 33:02] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:37, 06:01](1942 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:36, 06:22](1724 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 06:38](1741 MB) +PASS -- COMPILE 's2swa_32bit_intel' [35:15, 34:16] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:59, 07:39](2009 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:16, 47:55] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:02, 21:39](1884 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:47, 23:31](2018 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:19, 11:41](1117 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:33, 24:48](1859 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:16, 48:53] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:47, 21:22](1885 MB) + +PASS -- COMPILE 's2swa_intel' [34:15, 33:31] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:30, 07:58](2054 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:51, 08:02](2053 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:41, 04:51](1719 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:27, 08:05](2063 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:55, 04:56](1736 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:25, 08:26](2317 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:21, 08:10](2057 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:46, 07:38](2004 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:50, 07:53](2056 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [19:35, 07:35](2012 MB) + +PASS -- COMPILE 's2sw_intel' [39:16, 38:54] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:24, 06:21](1869 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:40, 06:31](1947 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:14, 05:44] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:39, 11:05](2078 MB) + +PASS -- COMPILE 's2sw_debug_intel' [17:15, 05:30] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:24, 07:41](1938 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [42:17, 34:50] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:55, 06:35](1975 MB) + +PASS -- COMPILE 's2s_intel' [35:18, 34:51] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:08, 12:28](3072 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:06, 04:02](3059 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:01, 02:25](2483 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:27, 34:16] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:09, 07:37](2053 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [47:18, 46:56] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:36, 23:21](1923 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:49, 11:19](1138 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:35, 24:53](1887 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:32] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:52, 32:50](1944 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:16, 37:45] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [05:36, 04:31](652 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:13, 03:58](1548 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:18, 04:09](1558 MB) +PASS -- TEST 'control_latlon_intel' [05:08, 03:56](1545 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:17, 04:04](1544 MB) +PASS -- TEST 'control_c48_intel' [13:33, 11:45](1736 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:52, 10:12](852 MB) +PASS -- TEST 'control_c192_intel' [17:03, 14:39](1682 MB) +PASS -- TEST 'control_c384_intel' [22:29, 19:56](1819 MB) +PASS -- TEST 'control_c384gdas_intel' [20:46, 13:25](1024 MB) +PASS -- TEST 'control_stochy_intel' [03:31, 02:15](605 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:19](440 MB) +PASS -- TEST 'control_lndp_intel' [03:32, 02:09](606 MB) +PASS -- TEST 'control_iovr4_intel' [04:36, 03:23](606 MB) +PASS -- TEST 'control_iovr5_intel' [04:35, 03:18](601 MB) +PASS -- TEST 'control_p8_intel' [06:34, 04:41](1838 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:45, 04:38](1848 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:53, 04:28](1844 MB) +PASS -- TEST 'control_restart_p8_intel' [04:01, 02:52](1057 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:37, 04:31](1843 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:03, 02:49](1074 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:38, 04:38](1830 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:38, 04:24](1945 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:16, 07:37](1853 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:01, 05:48](1907 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:49, 04:36](1852 MB) +PASS -- TEST 'merra2_thompson_intel' [07:08, 05:02](1849 MB) +PASS -- TEST 'regional_control_intel' [09:05, 07:45](1010 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 04:48](1013 MB) +PASS -- TEST 'regional_decomp_intel' [10:05, 08:18](1013 MB) +PASS -- TEST 'regional_2threads_intel' [07:07, 05:10](1012 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:14, 07:49](1021 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:49, 07:54](1016 MB) + +PASS -- COMPILE 'rrfs_intel' [36:16, 35:31] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [12:07, 10:11](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:29, 05:41](1217 MB) +PASS -- TEST 'rap_decomp_intel' [12:11, 10:38](986 MB) +PASS -- TEST 'rap_2threads_intel' [11:35, 09:44](1083 MB) +PASS -- TEST 'rap_restart_intel' [07:18, 05:21](991 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:34, 10:08](997 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:10, 10:44](988 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:17, 07:39](995 MB) +PASS -- TEST 'hrrr_control_intel' [07:23, 05:15](986 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:26, 05:23](981 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:38, 04:50](1059 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:52](917 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:40, 09:58](985 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:41, 12:28](1943 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:42, 12:15](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [33:16, 32:26] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:49, 08:51](959 MB) +PASS -- TEST 'control_ras_intel' [06:36, 05:12](665 MB) + +PASS -- COMPILE 'wam_intel' [33:16, 32:25] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [16:05, 14:22](1631 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [54:20, 53:18] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:33, 04:30](1829 MB) +PASS -- TEST 'regional_control_faster_intel' [08:48, 07:41](1007 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 08:32] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:54, 03:22](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:59, 03:20](1576 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:31, 03:52](773 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:32, 03:29](777 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:50, 05:48](1093 MB) +PASS -- TEST 'control_ras_debug_intel' [04:31, 03:30](785 MB) +PASS -- TEST 'control_diag_debug_intel' [04:57, 03:31](1635 MB) +PASS -- TEST 'control_debug_p8_intel' [06:05, 04:13](1870 MB) +PASS -- TEST 'regional_debug_intel' [23:57, 23:01](1049 MB) +PASS -- TEST 'rap_control_debug_intel' [07:33, 06:12](1160 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:35, 06:08](1159 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 06:12](1161 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 06:13](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:11](1161 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:40, 06:31](1244 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:30, 06:17](1163 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:27, 06:16](1168 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:32, 06:23](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:10](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:23, 06:03](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 06:10](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 10:06](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 06:06](1155 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 07:30](1160 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:15](1158 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:27, 10:44](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:12, 04:31] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:04, 16:55](1651 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:14, 30:36] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:35, 05:49](1076 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:11, 08:53](902 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:26, 04:37](872 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:45, 08:26](952 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [15:20, 04:26](907 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:00, 04:54](860 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:25, 06:21](904 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 02:27](847 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:15, 48:56] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:10, 02:57](1110 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:01, 01:30](1046 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:53, 02:03](1022 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:14, 31:14] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:56, 05:46](901 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:48] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 06:06](1045 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:33, 06:08](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [24:03, 18:42](1155 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:03, 18:54](865 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:56, 10:47](1100 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:57, 18:40](1219 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:12, 04:46] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:36, 06:19](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [41:18, 38:51] ( 1 warnings 1427 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:24, 07:09](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:47](1091 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:34, 09:33](771 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:28, 16:30](805 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:45, 18:23](814 MB) +PASS -- TEST 'gnv1_nested_intel' [11:46, 07:14](1676 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:20, 34:13] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:54, 08:58](769 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:59, 09:03](755 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:12, 08:29] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 03:37](1063 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 02:13](1020 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:43](929 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:42](921 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:46](929 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:44](1079 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 03:39](1050 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 03:45](926 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:30, 08:11](889 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:29, 08:18](848 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:42](1070 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:26, 05:12](2418 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:25, 05:25](2406 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:31] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:28, 08:07](1016 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:14, 08:23] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 03:42](1068 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:56] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:41, 01:45](232 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:34, 01:27](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:30, 00:51](255 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:18, 34:27] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:27, 05:15](1912 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:16, 33:22] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:47, 05:21](1885 MB) + +PASS -- COMPILE 'atml_intel' [38:18, 37:44] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:46, 10:02](1863 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [17:48, 08:47](1844 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:57, 05:34](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:13, 06:34] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:46, 08:06](1887 MB) + +PASS -- COMPILE 'atmw_intel' [35:17, 34:19] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:32, 02:59](1857 MB) + +PASS -- COMPILE 'atmaero_intel' [34:16, 33:27] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:27, 06:34](1942 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:22, 06:48](1720 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:12, 06:52](1745 MB) SYNOPSIS: -Starting Date/Time: 20240723 05:48:30 -Ending Date/Time: 20240723 09:45:37 -Total Time: 03h:57m:43s +Starting Date/Time: 20240724 20:55:35 +Ending Date/Time: 20240725 00:58:45 +Total Time: 04h:03m:47s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 13807a10e1..3660c9ea7e 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: -ec399e628231e03101314fdb378214c340cf96cc +17a524e83223725150b6c1bec3ac9e55ac6876a8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,287 +35,352 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3439478 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_566496 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:35, 14:21](2084 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 18:07](1965 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:04, 19:08](2126 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:59, 09:03](1206 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:46, 20:19](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:12, 20:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:44, 17:45](1963 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:11] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:40, 27:12](1942 MB) - -PASS -- COMPILE 's2swa_intel' [17:12, 16:38] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:27, 14:24](2148 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:34, 14:43](2132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:40, 07:57](1819 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:37, 13:56](2157 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:40, 07:51](1715 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:29, 13:06](2428 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:27, 14:15](2129 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:25, 12:07](2045 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:35, 14:33](2136 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:38, 15:55](2725 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:00, 08:52](2732 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:30, 11:30](3657 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:00, 07:09](3503 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:21, 05:52](2118 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 15:04] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:11, 13:25](1984 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:26, 04:40](2046 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 08:00] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:25, 08:50](2180 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:11] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:03, 06:09](2007 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:39] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:25, 04:41](2052 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 14:37] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:02, 09:42](3107 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:18](3086 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:57, 02:01](2521 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:11, 22:50] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:37, 14:28](2138 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:37] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:07, 18:12](1992 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:23, 09:00](1247 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:13, 20:23](1920 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:57] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:10, 28:49](1977 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:39] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:49, 14:22](2079 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 23:01] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:51, 18:01](1956 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:12, 18:59](2129 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 08:59](1218 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:48, 20:19](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 23:57] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:46, 17:46](1952 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 08:00] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:59, 27:16](1941 MB) + +PASS -- COMPILE 's2swa_intel' [17:11, 16:43] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:34, 14:37](2137 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:40, 14:22](2132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:39, 07:57](1813 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:40, 14:17](2168 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:33, 08:01](1713 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:31, 13:16](2426 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:34, 14:16](2137 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:34, 12:28](2051 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_ciceC_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [22:31, 16:16](2720 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:06, 08:41](2730 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:39, 12:20](3655 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:17, 07:06](3502 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:25, 05:48](2114 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 16:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:13, 13:54](1976 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:40](2048 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 07:44] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:27, 08:55](2168 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:14] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:06, 06:11](2011 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:32] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:27, 04:36](2050 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 13:29] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:58, 09:46](3107 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:59, 03:11](3069 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:01, 02:07](2517 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:11, 26:03] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:32, 14:44](2149 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:14] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 18:11](1997 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:19, 08:59](1260 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:10, 20:24](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 07:07] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:09, 28:49](1982 MB) PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:24, 03:38](696 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:34, 03:02](1590 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:50, 03:09](1595 MB) -PASS -- TEST 'control_latlon_intel' [03:42, 03:04](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:51, 03:06](1589 MB) -PASS -- TEST 'control_c48_intel' [10:50, 09:13](1739 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:35, 07:56](860 MB) -PASS -- TEST 'control_c192_intel' [11:49, 11:09](1734 MB) -PASS -- TEST 'control_c384_intel' [14:54, 12:16](2011 MB) -PASS -- TEST 'control_c384gdas_intel' [12:41, 09:31](1357 MB) -PASS -- TEST 'control_stochy_intel' [02:22, 01:48](644 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:51, 01:03](476 MB) -PASS -- TEST 'control_lndp_intel' [02:22, 01:42](649 MB) -PASS -- TEST 'control_iovr4_intel' [03:30, 02:42](636 MB) -PASS -- TEST 'control_iovr5_intel' [03:28, 02:36](642 MB) -PASS -- TEST 'control_p8_intel' [05:09, 03:26](1890 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:11, 03:27](1883 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:25, 03:18](1890 MB) -PASS -- TEST 'control_restart_p8_intel' [03:07, 01:57](1094 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:10, 03:22](1872 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 01:55](1123 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:15, 03:26](1878 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:37](1972 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:53, 05:48](1882 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:47](1949 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:20, 03:28](1892 MB) -PASS -- TEST 'merra2_thompson_intel' [05:35, 03:44](1898 MB) -PASS -- TEST 'regional_control_intel' [07:38, 06:23](1088 MB) -PASS -- TEST 'regional_restart_intel' [04:37, 03:34](1086 MB) -PASS -- TEST 'regional_decomp_intel' [07:38, 06:46](1088 MB) -PASS -- TEST 'regional_2threads_intel' [05:37, 04:39](1080 MB) -PASS -- TEST 'regional_noquilt_intel' [07:38, 06:17](1385 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 06:18](1083 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 06:24](1087 MB) -PASS -- TEST 'regional_wofs_intel' [08:34, 07:37](1909 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 12:17] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:03, 08:12](1062 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 05:08](1298 MB) -PASS -- TEST 'rap_decomp_intel' [10:03, 08:30](1022 MB) -PASS -- TEST 'rap_2threads_intel' [10:25, 08:15](1168 MB) -PASS -- TEST 'rap_restart_intel' [06:34, 04:16](1055 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:24, 08:09](1051 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:23, 08:29](1028 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 06:09](1071 MB) -PASS -- TEST 'hrrr_control_intel' [06:25, 04:15](1026 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:21, 04:21](1022 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:22, 04:06](1098 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:51, 02:19](959 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:18, 08:03](1045 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 09:38](1992 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:25](2025 MB) - -PASS -- COMPILE 'csawmg_intel' [12:12, 11:45] -PASS -- TEST 'control_csawmg_intel' [07:33, 06:32](1021 MB) -PASS -- TEST 'control_ras_intel' [04:21, 03:25](716 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 11:31] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:45, 12:11](1666 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:25] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:25, 03:12](1891 MB) -PASS -- TEST 'regional_control_faster_intel' [06:37, 06:06](1090 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:00] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:45](1627 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:46](1607 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:25, 03:00](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:43](819 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:43, 04:20](1140 MB) -PASS -- TEST 'control_ras_debug_intel' [03:24, 02:46](820 MB) -PASS -- TEST 'control_diag_debug_intel' [03:49, 02:42](1675 MB) -PASS -- TEST 'control_debug_p8_intel' [04:48, 03:07](1907 MB) -PASS -- TEST 'regional_debug_intel' [18:45, 17:34](1094 MB) -PASS -- TEST 'rap_control_debug_intel' [05:27, 04:53](1209 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:49](1195 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:54](1211 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:49](1204 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:57](1212 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:42, 05:09](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:03](1209 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 04:59](1212 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:19](1212 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:57](1206 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:49](1205 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:26, 05:01](1209 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 07:48](1203 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:27, 04:47](1206 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 06:06](1205 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:54](1212 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 08:18](1210 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 05:04] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:43, 13:29](1691 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:00, 04:47](1165 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 07:00](999 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:41, 03:43](936 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:15, 07:04](1076 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:38, 03:36](950 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:40, 03:49](902 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:27, 05:13](980 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:58](877 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:12, 18:23] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:50, 02:39](1195 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:41, 01:12](1129 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:27](1084 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:28](973 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:16] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:56](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 04:44](1088 MB) -PASS -- TEST 'conus13km_debug_intel' [14:49, 14:11](1248 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 14:30](947 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:19](1177 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:36, 14:33](1305 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:16] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 05:00](1143 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 14:05] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:15, 06:01](756 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:29, 06:19](1139 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 07:34](833 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:12, 24:18](872 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:25, 28:47](887 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:04, 07:01](515 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:32, 08:22](524 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:26](380 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:35, 09:30](486 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:45](543 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:03, 04:24](548 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:06, 05:45](597 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:35](411 MB) -PASS -- TEST 'gnv1_nested_intel' [07:12, 04:15](1727 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 06:05] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:58, 13:17](596 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:11, 22:32] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:06, 12:50](675 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:05, 12:41](736 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:14, 08:45](719 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 13:21] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:21, 07:27](846 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 07:22](819 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:28](1205 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:34] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:56](1155 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:58](1102 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:19, 02:48](1020 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:52](1006 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:52](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:58](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:58](1144 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:54](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:07, 06:27](1029 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:08, 06:29](997 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:54](1142 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 04:17](2441 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:24](2375 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 05:45] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:30](1079 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 09:28] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:56](1138 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:20] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 01:01](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:56](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:35](319 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 12:02] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:09, 04:03](1975 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 11:46] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:07, 03:50](1965 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 13:15] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:34, 04:50](1876 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:50](1873 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:42](1075 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 06:29] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:27, 05:51](1903 MB) - -PASS -- COMPILE 'atmw_intel' [13:11, 12:26] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 02:12](1918 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 11:34] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:15, 04:31](1993 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:09, 05:14](1782 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 05:18](1786 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 05:14] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:04, 21:02](4556 MB) +PASS -- TEST 'control_flake_intel' [04:26, 03:38](690 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:40, 03:04](1588 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:51, 03:09](1602 MB) +PASS -- TEST 'control_latlon_intel' [03:37, 03:04](1585 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:46, 03:07](1593 MB) +PASS -- TEST 'control_c48_intel' [10:47, 09:10](1741 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:55](859 MB) +PASS -- TEST 'control_c192_intel' [11:52, 11:09](1737 MB) +PASS -- TEST 'control_c384_intel' [14:43, 12:11](2012 MB) +PASS -- TEST 'control_c384gdas_intel' [12:31, 09:24](1357 MB) +PASS -- TEST 'control_stochy_intel' [02:34, 01:47](643 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:00, 01:03](480 MB) +PASS -- TEST 'control_lndp_intel' [02:27, 01:44](646 MB) +PASS -- TEST 'control_iovr4_intel' [03:23, 02:43](641 MB) +PASS -- TEST 'control_iovr5_intel' [03:27, 02:40](641 MB) +PASS -- TEST 'control_p8_intel' [05:14, 03:31](1891 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:11, 03:33](1890 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 03:21](1883 MB) +PASS -- TEST 'control_restart_p8_intel' [03:18, 02:02](1098 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:32, 03:19](1874 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:24, 01:54](1125 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:06, 03:25](1876 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:02, 03:42](1945 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:39, 05:49](1886 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:24, 04:51](1952 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:18, 03:30](1887 MB) +PASS -- TEST 'merra2_thompson_intel' [06:32, 03:46](1895 MB) +PASS -- TEST 'regional_control_intel' [07:37, 06:15](1083 MB) +PASS -- TEST 'regional_restart_intel' [04:39, 03:27](1083 MB) +PASS -- TEST 'regional_decomp_intel' [07:32, 06:38](1087 MB) +PASS -- TEST 'regional_2threads_intel' [05:47, 04:35](1071 MB) +PASS -- TEST 'regional_noquilt_intel' [07:52, 06:15](1383 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 06:11](1085 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:39, 06:22](1093 MB) +PASS -- TEST 'regional_wofs_intel' [08:38, 07:31](1905 MB) + +PASS -- COMPILE 'rrfs_intel' [13:10, 12:42] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:21, 08:13](1062 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:51, 05:11](1309 MB) +PASS -- TEST 'rap_decomp_intel' [10:23, 08:28](1028 MB) +PASS -- TEST 'rap_2threads_intel' [10:28, 08:14](1163 MB) +PASS -- TEST 'rap_restart_intel' [06:38, 04:17](1049 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:15, 08:11](1056 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:01, 08:28](1028 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:51, 06:09](1075 MB) +PASS -- TEST 'hrrr_control_intel' [06:08, 04:15](1031 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:00, 04:19](1025 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:14, 04:05](1099 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:54, 02:20](951 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:30, 08:04](1044 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:39](1990 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:23](2022 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:40] +PASS -- TEST 'control_csawmg_intel' [07:35, 06:27](1022 MB) +PASS -- TEST 'control_ras_intel' [04:26, 03:30](717 MB) + +PASS -- COMPILE 'wam_intel' [12:10, 11:20] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:42, 12:14](1664 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:42] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:17, 03:14](1896 MB) +PASS -- TEST 'regional_control_faster_intel' [06:37, 06:02](1087 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 08:06] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:45, 02:44](1622 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:48, 02:39](1624 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:26, 03:06](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:46](822 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:39, 04:23](1131 MB) +PASS -- TEST 'control_ras_debug_intel' [03:26, 02:52](826 MB) +PASS -- TEST 'control_diag_debug_intel' [06:45, 02:46](1674 MB) +PASS -- TEST 'control_debug_p8_intel' [06:45, 03:26](1919 MB) +PASS -- TEST 'regional_debug_intel' [18:41, 17:47](1103 MB) +PASS -- TEST 'rap_control_debug_intel' [05:27, 04:55](1203 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:28, 04:53](1208 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:28, 04:56](1206 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:53](1207 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:27, 04:53](1209 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:36, 05:10](1296 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1211 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:55](1205 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:52](1209 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:59](1213 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:20, 04:51](1206 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 05:05](1205 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:27, 07:50](1204 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 04:47](1199 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 06:06](1213 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:54](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:33, 08:22](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 05:07] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:45, 13:25](1688 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 04:51](1168 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:01, 06:59](1002 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:14, 03:42](933 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 07:07](1080 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:08, 03:37](951 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:05, 03:52](901 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:28, 05:13](975 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:07, 02:00](880 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 17:53] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:57, 02:36](1181 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:11](1128 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:43, 01:28](1077 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:06] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:27](975 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 05:26] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1091 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:32, 04:47](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [14:55, 14:05](1239 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:48, 14:26](944 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:22](1172 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 14:13](1310 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:17] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 04:58](1136 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 13:31] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:18, 05:56](762 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:32, 06:18](1139 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:33, 07:25](831 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:13, 24:39](871 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:34, 28:44](892 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:05, 06:57](516 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 08:18](527 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:56, 03:24](381 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:25, 09:25](487 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 04:39](542 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:53, 04:24](537 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 05:38](597 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:34](407 MB) +PASS -- TEST 'gnv1_nested_intel' [07:16, 04:14](1730 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:47] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:07, 13:20](594 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:11, 22:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:20, 13:05](657 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:09, 12:41](736 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:33] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:20, 08:53](717 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 13:06] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:16, 07:18](830 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 07:21](813 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:19](1197 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:12, 10:25] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:22, 02:55](1141 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:55](1110 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:49](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:52](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:53](1008 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 03:00](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:58](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:50](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:08, 06:29](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:11, 06:25](1007 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:56](1151 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:23, 04:20](2386 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 04:16](2399 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:32] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:27](1086 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:31] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:56](1152 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:25] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 01:02](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:56](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:35](322 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 12:13] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:11, 04:06](1980 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 11:53] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:10, 04:01](1960 MB) + +PASS -- COMPILE 'atml_intel' [14:11, 13:19] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:31, 04:49](1872 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:35, 04:47](1872 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:58, 02:45](1089 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 06:09] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:39, 05:51](1912 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 11:58] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:19, 02:05](1918 MB) + +PASS -- COMPILE 'atmaero_intel' [12:10, 11:57] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:11, 04:29](1997 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:23, 05:15](1775 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:19, 05:18](1784 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 05:13] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:00, 20:50](4547 MB) SYNOPSIS: -Starting Date/Time: 20240722 22:32:52 -Ending Date/Time: 20240723 00:04:05 -Total Time: 01h:32m:05s +Starting Date/Time: 20240725 23:06:11 +Ending Date/Time: 20240726 00:38:27 +Total Time: 01h:33m:08s Compiles Completed: 41/41 -Tests Completed: 185/185 +Tests Completed: 184/185 +Failed Tests: +* TEST cpld_control_ciceC_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2352/tests/logs/log_orion/run_cpld_control_ciceC_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ORION REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +17a524e83223725150b6c1bec3ac9e55ac6876a8 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1109443 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf + +PASS -- COMPILE 's2swa_intel' [15:11, 14:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:23, 14:20](2148 MB) + +SYNOPSIS: +Starting Date/Time: 20240726 08:41:12 +Ending Date/Time: 20240726 09:12:46 +Total Time: 00h:31m:47s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 4cafa4b74d..33c1c66350 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: -ec399e628231e03101314fdb378214c340cf96cc +45bcf84d30cfb2cc46913130f6e8615814b3c9e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop-63-g927261d) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,239 +35,239 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_192846 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255709 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:37, 19:25] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [48:10, 01:17](3099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:41, 25:19] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [43:05, 01:59](1824 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:55, 01:35](1853 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [24:00, 01:46](987 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:06, 01:35](1805 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [35:54, 35:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [32:52, 01:08](1821 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:40] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [03:28, 01:55](1848 MB) - -PASS -- COMPILE 's2swa_intel' [20:34, 20:17] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [48:12, 01:24](3136 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [48:12, 01:45](3128 MB) -PASS -- TEST 'cpld_restart_p8_intel' [39:44, 01:06](3064 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [48:12, 01:25](3152 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [39:43, 01:45](3085 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [48:12, 01:51](3367 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [48:12, 01:31](3127 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [48:13, 01:29](3073 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:12, 01:37](3132 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [48:21, 04:38](4128 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:41, 04:45](4270 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [48:12, 01:37](3113 MB) - -PASS -- COMPILE 's2sw_intel' [23:40, 23:07] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [45:06, 01:46](1829 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [45:06, 01:57](1895 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 12:02] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:19, 01:06](1895 MB) - -PASS -- COMPILE 's2s_intel' [34:51, 33:50] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [33:54, 00:59](2924 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [33:54, 01:25](2920 MB) -PASS -- TEST 'cpld_restart_c48_intel' [29:50, 01:20](2324 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:35, 20:36] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [47:11, 01:57](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:41, 22:57] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [45:05, 00:50](1837 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:32, 01:36](1009 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:33, 01:44](1809 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [19:35, 18:56] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:52, 01:42](1859 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [29:49, 29:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [26:29, 00:25](570 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [26:29, 00:31](1468 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:29, 00:25](1481 MB) -PASS -- TEST 'control_latlon_intel' [26:29, 00:23](1476 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [26:29, 00:33](1477 MB) -PASS -- TEST 'control_c48_intel' [26:28, 01:08](1592 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [26:28, 00:50](713 MB) -PASS -- TEST 'control_c192_intel' [26:29, 00:44](1587 MB) -PASS -- TEST 'control_c384_intel' [26:33, 01:22](1907 MB) -PASS -- TEST 'control_c384gdas_intel' [26:33, 01:54](1087 MB) -PASS -- TEST 'control_stochy_intel' [26:29, 00:25](531 MB) -PASS -- TEST 'control_stochy_restart_intel' [23:59, 01:04](334 MB) -PASS -- TEST 'control_lndp_intel' [26:29, 00:30](526 MB) -PASS -- TEST 'control_iovr4_intel' [26:29, 00:42](525 MB) -PASS -- TEST 'control_iovr5_intel' [25:48, 00:45](525 MB) -PASS -- TEST 'control_p8_intel' [23:59, 01:58](1763 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [23:43, 02:00](1772 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [23:02, 02:05](1770 MB) -PASS -- TEST 'control_restart_p8_intel' [18:34, 01:02](919 MB) -PASS -- TEST 'control_noqr_p8_intel' [23:02, 02:06](1757 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [17:21, 01:05](922 MB) -PASS -- TEST 'control_decomp_p8_intel' [22:56, 01:59](1757 MB) -PASS -- TEST 'control_2threads_p8_intel' [22:55, 01:07](1863 MB) -PASS -- TEST 'control_p8_lndp_intel' [22:40, 01:10](1776 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [22:35, 02:02](1823 MB) -PASS -- TEST 'control_p8_mynn_intel' [22:33, 01:48](1784 MB) -PASS -- TEST 'merra2_thompson_intel' [22:29, 01:54](1773 MB) -PASS -- TEST 'regional_control_intel' [22:09, 01:06](854 MB) -PASS -- TEST 'regional_restart_intel' [15:21, 00:19](852 MB) -PASS -- TEST 'regional_decomp_intel' [22:04, 00:51](852 MB) -PASS -- TEST 'regional_2threads_intel' [21:49, 00:59](900 MB) -PASS -- TEST 'regional_noquilt_intel' [21:29, 00:16](1178 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [20:53, 01:24](850 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [20:53, 01:17](853 MB) -PASS -- TEST 'regional_wofs_intel' [20:39, 00:36](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [30:53, 30:02] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [17:09, 01:40](910 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:56, 01:13](1088 MB) -PASS -- TEST 'rap_decomp_intel' [16:47, 01:24](916 MB) -PASS -- TEST 'rap_2threads_intel' [16:45, 01:46](999 MB) -PASS -- TEST 'rap_restart_intel' [08:10, 01:25](783 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:14, 02:11](908 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [16:05, 01:46](910 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:44, 01:52](780 MB) -PASS -- TEST 'hrrr_control_intel' [15:49, 01:01](903 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [15:47, 00:58](907 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [15:44, 01:24](987 MB) -PASS -- TEST 'hrrr_control_restart_intel' [10:43, 01:08](739 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:35, 01:19](905 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:22, 01:02](1865 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:05, 01:10](1854 MB) - -PASS -- COMPILE 'csawmg_intel' [19:37, 19:08] -PASS -- TEST 'control_csawmg_intel' [28:32, 00:23](875 MB) -PASS -- TEST 'control_ras_intel' [28:32, 00:57](562 MB) - -PASS -- COMPILE 'wam_intel' [18:33, 18:01] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [28:37, 00:52](1561 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:37, 20:21] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [19:42, 02:05](1771 MB) -PASS -- TEST 'regional_control_faster_intel' [18:33, 00:23](850 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [20:36, 19:52] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [18:19, 01:17](1505 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:06, 01:21](1497 MB) -PASS -- TEST 'control_stochy_debug_intel' [17:26, 00:52](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [17:21, 01:04](704 MB) -PASS -- TEST 'control_csawmg_debug_intel' [15:05, 00:31](1013 MB) -PASS -- TEST 'control_ras_debug_intel' [14:42, 01:00](709 MB) -PASS -- TEST 'control_diag_debug_intel' [14:09, 01:16](1565 MB) -PASS -- TEST 'control_debug_p8_intel' [14:08, 00:55](1792 MB) -PASS -- TEST 'regional_debug_intel' [14:01, 00:16](898 MB) -PASS -- TEST 'rap_control_debug_intel' [13:50, 00:43](1087 MB) -PASS -- TEST 'hrrr_control_debug_intel' [13:22, 00:53](1079 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [13:19, 00:47](1084 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [13:17, 00:45](1085 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:16, 00:46](1087 MB) -PASS -- TEST 'rap_diag_debug_intel' [12:55, 00:42](1170 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:55, 00:42](1088 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:54, 00:42](1091 MB) -PASS -- TEST 'rap_lndp_debug_intel' [12:54, 00:48](1091 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:38, 00:56](1086 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:43, 00:48](1081 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:42, 00:45](1083 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:38, 00:40](1084 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:34, 00:48](1081 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:14, 00:55](1093 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:19, 00:42](1088 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:18, 02:04](1089 MB) - -PASS -- COMPILE 'wam_debug_intel' [17:30, 16:27] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [09:09, 00:17](1597 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:32, 14:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [28:34, 01:26](957 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [28:33, 01:27](788 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [28:33, 01:58](790 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [28:33, 01:54](858 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [28:34, 01:34](844 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:33, 01:50](789 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:18, 01:32](687 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:45, 00:15](669 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:38, 17:31] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:22, 01:04](1004 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:21, 00:53](1007 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:44, 00:42](882 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:32, 14:16] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 01:21](813 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:40, 18:03] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:01, 00:54](962 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:46, 01:06](956 MB) -PASS -- TEST 'conus13km_debug_intel' [06:46, 01:20](1052 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [06:45, 01:14](724 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [06:44, 00:26](1055 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [06:37, 01:07](1123 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:32, 13:58] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:34, 00:57](995 MB) - -PASS -- COMPILE 'hafsw_intel' [18:45, 18:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:20, 02:04](620 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:20, 00:38](968 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:18, 01:37](661 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [06:02, 01:21](698 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:45, 02:07](710 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 01:06](390 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:30, 02:17](407 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:18, 01:35](286 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:01, 02:14](374 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:10, 01:34](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:10, 00:49](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:09, 00:46](494 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:43, 00:29](316 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [17:43, 17:18] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:38, 01:17](520 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:35, 16:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [01:58, 01:46](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:15, 01:35](709 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [22:42, 21:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [01:02, 01:49](712 MB) - -PASS -- COMPILE 'hafs_all_intel' [27:48, 27:25] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [56:41, 02:05](662 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:41, 02:02](647 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [56:39, 00:26](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:37, 18:24] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [58:42, 00:48](1829 MB) - -PASS -- COMPILE 'atml_intel' [14:30, 13:40] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [08:25, 07:22] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:28, 09:57] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [00:29, 01:24](3024 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [00:27, 01:58](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [00:11, 01:55](2922 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:32, 10:24] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [58:24, 01:05](4440 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:29, 11:31] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:58, 01:50](3100 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [31:53, 28:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [54:34, 01:43](1821 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [33:25, 01:20](1842 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [33:04, 01:44](975 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:35, 01:19](1795 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:30, 11:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [10:56, 00:44](1816 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:37, 18:57] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [03:50, 02:05](1842 MB) + +PASS -- COMPILE 's2swa_intel' [14:29, 11:09] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:58, 01:42](3134 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:58, 01:58](3132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [00:26, 01:31](3068 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:58, 01:56](3156 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [00:26, 01:33](3085 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:58, 01:34](3368 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:58, 01:17](3128 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:59, 01:42](3079 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:58, 01:55](3136 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [12:07, 03:53](4131 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [50:41, 05:04](4268 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:58, 01:26](3120 MB) + +PASS -- COMPILE 's2sw_intel' [14:30, 10:48] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:56, 01:30](1832 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:56, 01:35](1897 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [20:36, 17:15] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:50, 01:42](1896 MB) + +PASS -- COMPILE 's2s_intel' [26:41, 22:58] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [59:44, 00:48](2920 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [59:44, 01:09](2923 MB) +PASS -- TEST 'cpld_restart_c48_intel' [49:30, 01:20](2320 MB) + +PASS -- COMPILE 's2swa_faster_intel' [32:54, 29:32] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [53:31, 02:01](3133 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [26:43, 23:32] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [59:43, 01:41](1838 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:08, 01:20](1009 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:37, 01:29](1802 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:34, 14:29] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:25, 01:31](1862 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [24:39, 21:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [47:18, 00:32](570 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [47:18, 00:38](1469 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [47:18, 00:44](1476 MB) +PASS -- TEST 'control_latlon_intel' [47:18, 00:41](1470 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [47:18, 00:52](1474 MB) +PASS -- TEST 'control_c48_intel' [47:17, 01:27](1593 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [45:26, 01:18](714 MB) +PASS -- TEST 'control_c192_intel' [44:25, 01:00](1589 MB) +PASS -- TEST 'control_c384_intel' [42:13, 01:20](1912 MB) +PASS -- TEST 'control_c384gdas_intel' [41:52, 02:04](1087 MB) +PASS -- TEST 'control_stochy_intel' [40:28, 00:21](527 MB) +PASS -- TEST 'control_stochy_restart_intel' [38:00, 01:00](331 MB) +PASS -- TEST 'control_lndp_intel' [40:23, 00:28](528 MB) +PASS -- TEST 'control_iovr4_intel' [40:21, 00:41](526 MB) +PASS -- TEST 'control_iovr5_intel' [40:17, 00:40](523 MB) +PASS -- TEST 'control_p8_intel' [39:45, 01:28](1773 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [39:33, 02:00](1770 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [38:58, 01:27](1772 MB) +PASS -- TEST 'control_restart_p8_intel' [33:36, 01:55](919 MB) +PASS -- TEST 'control_noqr_p8_intel' [38:58, 01:25](1769 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [33:35, 01:00](922 MB) +PASS -- TEST 'control_decomp_p8_intel' [38:57, 01:19](1767 MB) +PASS -- TEST 'control_2threads_p8_intel' [38:00, 01:41](1863 MB) +PASS -- TEST 'control_p8_lndp_intel' [36:54, 01:11](1774 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [36:50, 01:53](1832 MB) +PASS -- TEST 'control_p8_mynn_intel' [36:45, 01:25](1778 MB) +PASS -- TEST 'merra2_thompson_intel' [36:43, 01:16](1777 MB) +PASS -- TEST 'regional_control_intel' [36:28, 01:06](853 MB) +PASS -- TEST 'regional_restart_intel' [29:44, 01:02](850 MB) +PASS -- TEST 'regional_decomp_intel' [36:10, 00:51](862 MB) +PASS -- TEST 'regional_2threads_intel' [36:09, 00:49](908 MB) +PASS -- TEST 'regional_noquilt_intel' [35:33, 00:17](1181 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [35:32, 01:18](852 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [35:32, 01:11](852 MB) +PASS -- TEST 'regional_wofs_intel' [35:27, 00:43](1585 MB) + +PASS -- COMPILE 'rrfs_intel' [22:45, 20:06] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [49:10, 01:57](910 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:11, 01:02](1092 MB) +PASS -- TEST 'rap_decomp_intel' [49:10, 01:36](913 MB) +PASS -- TEST 'rap_2threads_intel' [49:10, 01:39](997 MB) +PASS -- TEST 'rap_restart_intel' [35:21, 01:15](781 MB) +PASS -- TEST 'rap_sfcdiff_intel' [49:10, 02:09](913 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:10, 01:39](909 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [35:21, 01:40](783 MB) +PASS -- TEST 'hrrr_control_intel' [49:10, 01:35](909 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [49:10, 01:32](902 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [49:11, 01:24](988 MB) +PASS -- TEST 'hrrr_control_restart_intel' [35:20, 01:01](741 MB) +PASS -- TEST 'rrfs_v1beta_intel' [49:10, 01:58](902 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [49:10, 00:51](1870 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [49:10, 01:12](1859 MB) + +PASS -- COMPILE 'csawmg_intel' [15:36, 12:41] +PASS -- TEST 'control_csawmg_intel' [55:19, 00:51](871 MB) +PASS -- TEST 'control_ras_intel' [55:19, 00:59](561 MB) + +PASS -- COMPILE 'wam_intel' [14:34, 13:11] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [51:15, 01:01](1568 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:45, 20:29] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [35:18, 02:03](1772 MB) +PASS -- TEST 'regional_control_faster_intel' [33:32, 00:19](853 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [20:44, 17:54] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [32:55, 01:07](1500 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [32:07, 01:21](1501 MB) +PASS -- TEST 'control_stochy_debug_intel' [31:44, 00:46](702 MB) +PASS -- TEST 'control_lndp_debug_intel' [31:34, 01:09](703 MB) +PASS -- TEST 'control_csawmg_debug_intel' [31:30, 00:25](1014 MB) +PASS -- TEST 'control_ras_debug_intel' [31:26, 01:02](712 MB) +PASS -- TEST 'control_diag_debug_intel' [31:17, 01:15](1560 MB) +PASS -- TEST 'control_debug_p8_intel' [31:03, 00:49](1803 MB) +PASS -- TEST 'regional_debug_intel' [30:30, 00:17](895 MB) +PASS -- TEST 'rap_control_debug_intel' [30:14, 00:37](1086 MB) +PASS -- TEST 'hrrr_control_debug_intel' [30:11, 00:50](1078 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [30:06, 00:46](1087 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [29:56, 00:44](1086 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [29:56, 00:45](1087 MB) +PASS -- TEST 'rap_diag_debug_intel' [29:31, 01:28](1172 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [29:30, 00:25](1093 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [29:12, 00:27](1091 MB) +PASS -- TEST 'rap_lndp_debug_intel' [29:11, 00:32](1090 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [29:08, 00:39](1088 MB) +PASS -- TEST 'rap_noah_debug_intel' [28:54, 00:47](1083 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [28:47, 00:58](1086 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [28:03, 01:16](1083 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [27:54, 00:39](1080 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [27:52, 00:56](1086 MB) +PASS -- TEST 'rap_flake_debug_intel' [27:46, 00:50](1090 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:08, 02:02](1089 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:29, 06:02] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [50:14, 01:13](1590 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:32, 12:41] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:06, 01:16](967 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [27:03, 02:06](789 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:45, 02:15](788 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:27, 01:43](859 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [26:23, 02:17](844 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:38, 01:33](787 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:39, 01:19](690 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:49, 01:12](672 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:36, 13:26] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [24:39, 00:56](1005 MB) +PASS -- TEST 'conus13km_2threads_intel' [19:42, 01:01](1010 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [19:41, 00:51](880 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:31, 12:09] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [23:51, 01:25](816 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:35, 13:07] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:41, 01:04](963 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [23:33, 01:03](958 MB) +PASS -- TEST 'conus13km_debug_intel' [23:33, 00:47](1051 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [23:24, 00:43](725 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:23, 00:44](1051 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:38, 01:05](1122 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:21, 05:31] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [22:02, 00:46](996 MB) + +PASS -- COMPILE 'hafsw_intel' [17:39, 16:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [17:04, 01:55](619 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:04, 00:46](975 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:02, 01:55](663 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:57, 02:11](700 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:12, 01:42](714 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:01, 01:42](394 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:30, 01:42](408 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [15:29, 01:22](287 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:28, 02:03](375 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:30, 01:22](418 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:13, 00:50](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [13:17, 01:42](500 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:13, 01:15](317 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [16:33, 11:23] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:51, 01:06](529 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:41, 20:13] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:47, 01:37](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:44, 01:15](711 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:41, 13:51] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:37, 01:18](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:35, 15:04] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [21:27, 01:52](663 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:23, 01:53](648 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:06, 00:34](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:35, 15:28] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [21:07, 00:49](1828 MB) + +PASS -- COMPILE 'atml_intel' [19:43, 18:36] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [18:41, 17:28] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [12:34, 11:58] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [20:52, 01:15](3026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [20:49, 01:59](2905 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [20:36, 01:57](2922 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [17:40, 16:27] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:17, 00:57](4441 MB) SYNOPSIS: -Starting Date/Time: 20240722 17:50:57 -Ending Date/Time: 20240722 19:28:17 -Total Time: 01h:37m:51s +Starting Date/Time: 20240724 20:33:13 +Ending Date/Time: 20240724 22:10:20 +Total Time: 01h:37m:56s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/rt.conf b/tests/rt.conf index 2a644b651d..36679f99e1 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -327,7 +327,7 @@ RUN | atmaero_control_p8_rad_micro | - noaacloud #RUN | regional_atmaq | - jet s4 | baseline | COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud s4 | fv3 | -RUN | regional_atmaq_debug | - jet s4 noaacloud | baseline | +RUN | regional_atmaq_debug | - hera jet s4 noaacloud | baseline | ### GNU TESTS ### ### CCPP PROD tests ### diff --git a/tests/test_changes.list b/tests/test_changes.list index 972378d3ac..47f77b1466 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -3,7 +3,6 @@ cpld_control_gfsv17 intel cpld_control_gfsv17_iau intel cpld_restart_gfsv17 intel cpld_mpi_gfsv17 intel -cpld_control_sfs intel cpld_debug_gfsv17 intel cpld_control_p8 intel cpld_control_p8.v2.sfc intel @@ -32,60 +31,31 @@ cpld_control_pdlib_p8 intel cpld_restart_pdlib_p8 intel cpld_mpi_pdlib_p8 intel cpld_debug_pdlib_p8 intel -control_CubedSphereGrid intel -control_CubedSphereGrid_parallel intel -control_latlon intel -control_wrtGauss_netcdf_parallel intel -control_c48 intel -control_c192 intel -control_c384 intel -control_p8 intel -control_p8.v2.sfc intel -control_p8_ugwpv1 intel -control_restart_p8 intel -control_noqr_p8 intel -control_restart_noqr_p8 intel -control_decomp_p8 intel -control_2threads_p8 intel -control_p8_lndp intel -control_p8_rrtmgp intel -control_p8_mynn intel -merra2_thompson intel -rrfs_v1beta intel -rrfs_v1nssl intel -rrfs_v1nssl_nohailnoccn intel -control_wam intel -control_p8_faster intel -control_CubedSphereGrid_debug intel -control_wrtGauss_netcdf_parallel_debug intel -control_diag_debug intel -control_debug_p8 intel -rrfs_v1beta_debug intel -gnv1_c96_no_nest_debug intel -control_wam_debug intel -gnv1_nested intel -datm_cdeps_lnd_gswp3 intel -datm_cdeps_lnd_era5 intel -datm_cdeps_lnd_era5_rst intel +hafs_regional_atm_ocn intel +hafs_regional_atm_wav intel +hafs_regional_atm_ocn_wav intel +hafs_regional_docn intel +hafs_regional_docn_oisst intel +hafs_regional_datm_cdeps intel +datm_cdeps_control_cfsr intel +datm_cdeps_restart_cfsr intel +datm_cdeps_control_gefs intel +datm_cdeps_iau_gefs intel +datm_cdeps_stochy_gefs intel +datm_cdeps_ciceC_cfsr intel +datm_cdeps_bulk_cfsr intel +datm_cdeps_bulk_gefs intel +datm_cdeps_mx025_cfsr intel +datm_cdeps_mx025_gefs intel +datm_cdeps_multiple_files_cfsr intel +datm_cdeps_3072x1536_cfsr intel +datm_cdeps_gfs intel +datm_cdeps_debug_cfsr intel +datm_cdeps_control_cfsr_faster intel atm_ds2s_docn_pcice intel atm_ds2s_docn_dice intel -control_p8_atmlnd_sbs intel -control_p8_atmlnd intel -control_restart_p8_atmlnd intel -control_p8_atmlnd_debug intel atmwav_control_noaero_p8 intel -atmaero_control_p8 intel -atmaero_control_p8_rad intel -atmaero_control_p8_rad_micro intel -regional_atmaq_debug intel -control_c48 gnu -control_p8 gnu -control_p8_ugwpv1 gnu -rrfs_v1beta gnu -control_diag_debug gnu -rrfs_v1beta_debug gnu -control_debug_p8 gnu -gnv1_c96_no_nest_debug gnu cpld_control_nowave_noaero_p8 gnu cpld_control_pdlib_p8 gnu cpld_debug_pdlib_p8 gnu +datm_cdeps_control_cfsr gnu From b5a1976012b66352f403588f95e639c6827b97d4 Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Tue, 30 Jul 2024 07:17:15 -0400 Subject: [PATCH 07/33] Fix dumpfields=true option by using ESMF_FieldBundleWrite (#2355) * UFSWM - Fix dumpfields=true option in FV3 by using ESMF_FieldBundleWrite * FV3 - Fix dumpfields=true option by using ESMF_FieldBundleWrite * Update rt_utils.sh. Set ECF_HOST on wcoss2 explicitly --- FV3 | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 522 ++++++------ tests/logs/RegressionTests_derecho.log | 542 ++++++------ tests/logs/RegressionTests_gaea.log | 546 ++++++------ tests/logs/RegressionTests_hera.log | 776 ++++++++++-------- tests/logs/RegressionTests_hercules.log | 728 ++++++++-------- tests/logs/RegressionTests_jet.log | 544 ++++++------ tests/logs/RegressionTests_orion.log | 609 ++++++-------- tests/logs/RegressionTests_wcoss2.log | 456 +++++----- tests/rt_utils.sh | 17 +- tests/test_changes.list | 61 -- 14 files changed, 2452 insertions(+), 2453 deletions(-) diff --git a/FV3 b/FV3 index 927261d391..0495c19204 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 +Subproject commit 0495c19204325401ccba2943f99e65ee9190f07d diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 4a8675bfd4..774fbac358 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jul 24 20:10:07 UTC 2024 +Fri Jul 26 20:30:45 UTC 2024 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_2835607/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 287.098363 - 0: The maximum resident set size (KB) = 1449616 + 0: The total amount of wall time = 280.977475 + 0: The maximum resident set size (KB) = 1454304 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_2835607/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 987.462605 - 0: The maximum resident set size (KB) = 1413952 + 0: The total amount of wall time = 966.539273 + 0: The maximum resident set size (KB) = 1439060 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_2835607/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 254.621474 - 0: The maximum resident set size (KB) = 1413152 + 0: The total amount of wall time = 249.254197 + 0: The maximum resident set size (KB) = 1437604 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_2835607/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 249.757061 - 0: The maximum resident set size (KB) = 1432096 + 0: The total amount of wall time = 249.618477 + 0: The maximum resident set size (KB) = 1432416 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_2835607/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 249.818760 - 0: The maximum resident set size (KB) = 1404272 + 0: The total amount of wall time = 252.799465 + 0: The maximum resident set size (KB) = 1431152 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_2835607/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 254.379486 - 0: The maximum resident set size (KB) = 1415716 + 0: The total amount of wall time = 246.985477 + 0: The maximum resident set size (KB) = 1447148 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_2835607/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 252.840901 - 0: The maximum resident set size (KB) = 1413640 + 0: The total amount of wall time = 249.919086 + 0: The maximum resident set size (KB) = 1434244 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 24 21:22:39 UTC 2024 -Elapsed time: 01h:12m:33s. Have a nice day! +Fri Jul 26 21:54:52 UTC 2024 +Elapsed time: 01h:24m:07s. 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 bd5ba9f0c7..a5a3fcd863 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jul 24 19:03:11 UTC 2024 +Fri Jul 26 19:19:32 UTC 2024 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_1901665/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1506640/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 = 1364.396894 - 0: The maximum resident set size (KB) = 1503220 + 0: The total amount of wall time = 1333.999638 + 0: The maximum resident set size (KB) = 1540440 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_1901665/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1506640/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 = 571.646799 - 0: The maximum resident set size (KB) = 1494576 + 0: The total amount of wall time = 724.841272 + 0: The maximum resident set size (KB) = 1538712 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_1901665/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1506640/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 = 430.360696 - 0: The maximum resident set size (KB) = 1506724 + 0: The total amount of wall time = 520.811850 + 0: The maximum resident set size (KB) = 1511524 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 24 20:10:06 UTC 2024 -Elapsed time: 01h:06m:56s. Have a nice day! +Fri Jul 26 20:30:45 UTC 2024 +Elapsed time: 01h:11m:14s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 00f72c583d..b1326ed3c2 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Jul 24 16:28:05 UTC 2024 +Fri Jul 26 16:44:32 UTC 2024 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_3909363/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268113/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 = 1412.442409 - 0: The maximum resident set size (KB) = 740268 + 0: The total amount of wall time = 1470.646865 + 0: The maximum resident set size (KB) = 769104 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_3909363/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268113/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 = 2294.672242 - 0: The maximum resident set size (KB) = 705360 + 0: The total amount of wall time = 2296.345459 + 0: The maximum resident set size (KB) = 731460 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_3909363/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268113/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 = 2170.957201 - 0: The maximum resident set size (KB) = 715832 + 0: The total amount of wall time = 2252.359216 + 0: The maximum resident set size (KB) = 715680 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_3909363/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268113/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 = 2158.899518 - 0: The maximum resident set size (KB) = 704304 + 0: The total amount of wall time = 2288.966852 + 0: The maximum resident set size (KB) = 718224 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 24 19:03:10 UTC 2024 -Elapsed time: 02h:35m:05s. Have a nice day! +Fri Jul 26 19:19:31 UTC 2024 +Elapsed time: 02h:35m:00s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 68d6cb2f68..2d37737fda 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: -2fd1d2b2ddf1951557092cdf259c8fa1cfad9099 +4124fe82547dcec17e208ff919f41db354b212e6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,271 +36,271 @@ 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-20240724 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_820335 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2547232 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:23, 11:00] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:38, 01:38](3210 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:32, 16:37] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:29, 02:05](1925 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:16, 03:12](1968 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [59:13, 03:18](1083 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:30, 03:14](1893 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:31, 15:31] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:30, 00:31](1917 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:49] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [36:44, 02:53](1961 MB) - -PASS -- COMPILE 's2swa_intel' [11:24, 10:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [30:37, 01:45](3240 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [30:37, 01:39](3241 MB) -PASS -- TEST 'cpld_restart_p8_intel' [21:27, 02:02](3178 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [30:37, 01:18](3264 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:46, 01:39](3194 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [30:37, 01:29](3476 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [30:37, 01:35](3236 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [30:38, 01:28](3185 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:37, 01:42](3242 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [30:37, 02:05](3223 MB) - -PASS -- COMPILE 's2sw_intel' [11:24, 10:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [30:37, 00:58](1936 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [30:37, 02:13](1996 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [31:37, 02:18](1992 MB) - -PASS -- COMPILE 's2s_intel' [10:25, 09:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [31:36, 01:00](2941 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [31:36, 01:25](2940 MB) -PASS -- TEST 'cpld_restart_c48_intel' [27:10, 00:41](2338 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:31, 14:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [26:31, 01:36](3242 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:32, 16:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:30, 01:46](1935 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [59:45, 01:52](1108 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [58:00, 00:57](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:33] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:26, 00:58](1979 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:24, 10:15] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [18:35, 00:26](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [17:15, 01:11](1571 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [16:48, 00:26](1577 MB) -PASS -- TEST 'control_latlon_intel' [16:21, 00:40](1567 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:23, 00:30](1567 MB) -PASS -- TEST 'control_c48_intel' [13:43, 00:55](1612 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:22, 01:09](733 MB) -PASS -- TEST 'control_c192_intel' [13:22, 01:15](1691 MB) -PASS -- TEST 'control_c384_intel' [13:21, 01:53](2011 MB) -PASS -- TEST 'control_c384gdas_intel' [11:23, 02:51](1196 MB) -PASS -- TEST 'control_stochy_intel' [10:38, 00:26](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [56:57, 00:15](434 MB) -PASS -- TEST 'control_lndp_intel' [10:24, 00:22](630 MB) -PASS -- TEST 'control_iovr4_intel' [09:25, 00:39](624 MB) -PASS -- TEST 'control_iovr5_intel' [05:32, 00:27](624 MB) -PASS -- TEST 'control_p8_intel' [05:30, 02:09](1863 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 02:16](1862 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:22, 02:44](1871 MB) -PASS -- TEST 'control_restart_p8_intel' [52:30, 02:00](1020 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:20, 01:23](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [52:30, 01:52](1024 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:40, 01:41](1858 MB) -PASS -- TEST 'control_2threads_p8_intel' [01:20, 01:25](1958 MB) -PASS -- TEST 'control_p8_lndp_intel' [01:19, 00:39](1864 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [00:20, 02:07](1932 MB) -PASS -- TEST 'control_p8_mynn_intel' [57:59, 02:25](1875 MB) -PASS -- TEST 'merra2_thompson_intel' [57:13, 02:44](1873 MB) -PASS -- TEST 'regional_control_intel' [57:20, 01:09](875 MB) -PASS -- TEST 'regional_restart_intel' [50:29, 00:28](873 MB) -PASS -- TEST 'regional_decomp_intel' [57:03, 00:28](877 MB) -PASS -- TEST 'regional_2threads_intel' [57:00, 01:03](1002 MB) -PASS -- TEST 'regional_noquilt_intel' [56:47, 00:31](1196 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [56:45, 00:37](871 MB) -PASS -- TEST 'regional_wofs_intel' [56:10, 00:26](1603 MB) - -PASS -- COMPILE 'ifi_intel' [09:22, 08:28] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [22:14, 00:44](873 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [22:14, 00:40](876 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [22:15, 00:31](1000 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:36] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [21:02, 01:57](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:03, 01:22](1190 MB) -PASS -- TEST 'rap_decomp_intel' [21:02, 01:56](1010 MB) -PASS -- TEST 'rap_2threads_intel' [21:02, 02:44](1095 MB) -PASS -- TEST 'rap_restart_intel' [54:59, 03:00](890 MB) -PASS -- TEST 'rap_sfcdiff_intel' [21:02, 02:13](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [21:02, 01:47](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [54:53, 02:24](891 MB) -PASS -- TEST 'hrrr_control_intel' [21:02, 02:15](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [21:02, 02:30](1005 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [21:03, 03:04](1090 MB) -PASS -- TEST 'hrrr_control_restart_intel' [54:41, 00:23](842 MB) -PASS -- TEST 'rrfs_v1beta_intel' [53:21, 02:42](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [52:30, 00:22](1969 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [52:23, 00:42](1957 MB) - -PASS -- COMPILE 'csawmg_intel' [09:21, 08:55] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [21:15, 01:13](969 MB) -PASS -- TEST 'control_ras_intel' [21:15, 00:41](659 MB) - -PASS -- COMPILE 'wam_intel' [09:21, 08:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [21:15, 01:13](1665 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:26, 12:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [52:02, 02:23](1864 MB) -PASS -- TEST 'regional_control_faster_intel' [51:52, 01:05](870 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:21, 05:47] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [51:53, 00:33](1611 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [50:19, 00:37](1612 MB) -PASS -- TEST 'control_stochy_debug_intel' [49:37, 00:59](814 MB) -PASS -- TEST 'control_lndp_debug_intel' [49:10, 00:34](813 MB) -PASS -- TEST 'control_csawmg_debug_intel' [48:54, 00:20](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [48:41, 00:57](828 MB) -PASS -- TEST 'control_diag_debug_intel' [48:03, 00:35](1678 MB) -PASS -- TEST 'control_debug_p8_intel' [47:56, 01:06](1912 MB) -PASS -- TEST 'regional_debug_intel' [47:16, 00:40](930 MB) -PASS -- TEST 'rap_control_debug_intel' [46:25, 00:30](1197 MB) -PASS -- TEST 'hrrr_control_debug_intel' [46:07, 00:25](1194 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [45:49, 01:02](1198 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [45:01, 00:38](1196 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [44:55, 01:15](1195 MB) -PASS -- TEST 'rap_diag_debug_intel' [44:26, 01:14](1283 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:20, 00:45](1201 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [44:07, 00:48](1206 MB) -PASS -- TEST 'rap_lndp_debug_intel' [43:43, 01:06](1197 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:41, 01:04](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [43:05, 00:55](1194 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [42:59, 00:28](1192 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [42:01, 00:41](1199 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [42:04, 00:59](1190 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [41:54, 00:59](1197 MB) -PASS -- TEST 'rap_flake_debug_intel' [41:47, 00:18](1200 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [41:08, 02:38](1209 MB) - -PASS -- COMPILE 'wam_debug_intel' [57:16, 03:47] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [28:13, 01:06](1704 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:41, 08:56] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [41:04, 00:56](1057 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [40:58, 01:58](887 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [38:52, 03:25](891 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [38:44, 02:10](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [38:33, 02:01](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [37:27, 03:04](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:27, 02:24](798 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:28, 00:18](770 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [04:19, 11:51] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [20:10, 01:08](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [13:57, 00:19](1083 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [11:30, 01:03](978 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [59:17, 08:57] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [22:58, 01:26](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [53:10, 03:47] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [28:04, 00:39](1073 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [28:04, 00:57](1069 MB) -PASS -- TEST 'conus13km_debug_intel' [28:04, 00:40](1183 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [28:04, 00:56](866 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [28:05, 01:03](1147 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:04, 00:36](1251 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [53:10, 03:52] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:04, 00:44](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [01:16, 10:26] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [19:48, 01:24](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [19:48, 00:48](1060 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:46, 02:06](761 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:46, 02:15](794 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:47, 02:05](814 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [19:46, 00:48](480 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:47, 02:16](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [19:47, 01:17](388 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:50, 02:21](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:46, 01:00](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [19:46, 01:20](517 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:48, 01:03](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:47, 01:16](419 MB) -PASS -- TEST 'gnv1_nested_intel' [19:45, 03:08](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [54:12, 04:12] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [26:03, 01:04](661 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [02:23, 13:40] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:09, 01:17](690 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:04, 01:43](799 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [57:12, 10:10] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:02, 01:28](794 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:56, 09:45] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [19:54, 01:41](758 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:54, 01:59](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:52, 00:57](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:24, 09:17] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [17:48, 00:26](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:16, 00:19](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [16:52, 00:35](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:58, 00:40](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [10:35, 00:53](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:05, 00:47](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:38, 00:17](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:35, 01:05](650 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [04:30, 01:07](687 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [03:53, 01:04](672 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:46, 00:33](767 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:29, 00:29](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:25, 01:00](2035 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 09:13] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:30, 00:16](767 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:14, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [25:50, 00:29](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [25:50, 01:11](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [52:46, 00:48](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:28, 09:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [02:09, 01:06](1930 MB) - -PASS -- COMPILE 'atml_intel' [23:37, 10:35] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [01:15, 02:06](1892 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [00:41, 01:58](1894 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [40:06, 00:52](1043 MB) - -PASS -- COMPILE 'atml_debug_intel' [16:30, 04:46] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [59:28, 02:13](1934 MB) - -PASS -- COMPILE 'atmw_intel' [28:42, 09:37] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [51:27, 02:19](1904 MB) - -PASS -- COMPILE 'atmaero_intel' [29:43, 09:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [50:15, 02:11](3132 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [50:15, 01:58](3011 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [50:07, 01:37](3025 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [24:39, 03:50] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [55:15, 01:39](4544 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 11:03] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [32:52, 01:50](3209 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:48] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:47, 01:33](1920 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:26, 03:00](1957 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [59:03, 02:53](1093 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:48, 03:12](1893 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:30, 16:38] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:46, 01:06](1922 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:50] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [39:00, 02:59](1962 MB) + +PASS -- COMPILE 's2swa_intel' [11:25, 10:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [32:52, 01:22](3243 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:52, 02:01](3241 MB) +PASS -- TEST 'cpld_restart_p8_intel' [20:05, 02:18](3176 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [32:52, 02:24](3264 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [14:33, 01:28](3192 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [32:52, 02:00](3480 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [32:52, 01:23](3236 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [32:53, 01:50](3185 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [32:52, 01:41](3241 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [32:52, 02:05](3222 MB) + +PASS -- COMPILE 's2sw_intel' [11:25, 10:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [32:52, 01:42](1935 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:52, 02:18](1996 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [33:53, 02:22](1987 MB) + +PASS -- COMPILE 's2s_intel' [10:25, 09:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [33:51, 00:55](2941 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [33:51, 01:26](2940 MB) +PASS -- TEST 'cpld_restart_c48_intel' [29:24, 00:53](2338 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:31, 15:51] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [27:46, 01:59](3239 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:41] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:46, 01:46](1936 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [58:53, 00:57](1116 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [58:13, 01:54](1912 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:27] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:42, 00:55](1980 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 10:16] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [20:45, 00:43](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [20:11, 00:22](1569 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:42, 01:12](1577 MB) +PASS -- TEST 'control_latlon_intel' [16:00, 00:18](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:35, 00:48](1571 MB) +PASS -- TEST 'control_c48_intel' [13:32, 00:57](1609 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:19, 01:34](733 MB) +PASS -- TEST 'control_c192_intel' [13:00, 01:21](1691 MB) +PASS -- TEST 'control_c384_intel' [12:38, 02:28](1998 MB) +PASS -- TEST 'control_c384gdas_intel' [12:32, 02:38](1197 MB) +PASS -- TEST 'control_stochy_intel' [11:40, 00:35](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [55:57, 01:12](434 MB) +PASS -- TEST 'control_lndp_intel' [10:48, 01:16](628 MB) +PASS -- TEST 'control_iovr4_intel' [08:31, 00:43](623 MB) +PASS -- TEST 'control_iovr5_intel' [06:55, 01:05](625 MB) +PASS -- TEST 'control_p8_intel' [05:44, 02:33](1869 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:35, 02:16](1870 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 02:04](1872 MB) +PASS -- TEST 'control_restart_p8_intel' [51:15, 02:19](1022 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:43, 01:52](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [51:02, 02:05](1025 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:33, 01:51](1857 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:31, 01:51](1951 MB) +PASS -- TEST 'control_p8_lndp_intel' [00:33, 01:07](1869 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [00:27, 02:33](1931 MB) +PASS -- TEST 'control_p8_mynn_intel' [59:35, 01:49](1874 MB) +PASS -- TEST 'merra2_thompson_intel' [57:55, 02:34](1871 MB) +PASS -- TEST 'regional_control_intel' [56:58, 00:18](873 MB) +PASS -- TEST 'regional_restart_intel' [39:54, 00:48](874 MB) +PASS -- TEST 'regional_decomp_intel' [56:23, 00:20](885 MB) +PASS -- TEST 'regional_2threads_intel' [56:21, 00:56](1005 MB) +PASS -- TEST 'regional_noquilt_intel' [55:07, 00:45](1198 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [54:35, 00:22](880 MB) +PASS -- TEST 'regional_wofs_intel' [54:05, 00:43](1602 MB) + +PASS -- COMPILE 'ifi_intel' [09:23, 08:33] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [24:28, 00:20](870 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [24:28, 01:06](876 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [24:29, 00:17](1002 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 09:30] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [23:17, 01:38](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [23:18, 01:33](1189 MB) +PASS -- TEST 'rap_decomp_intel' [23:17, 01:35](1010 MB) +PASS -- TEST 'rap_2threads_intel' [23:17, 02:30](1092 MB) +PASS -- TEST 'rap_restart_intel' [54:04, 02:56](888 MB) +PASS -- TEST 'rap_sfcdiff_intel' [23:17, 03:05](1008 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:17, 02:12](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [54:04, 02:35](886 MB) +PASS -- TEST 'hrrr_control_intel' [23:17, 02:11](1003 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [23:17, 02:21](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [23:18, 02:12](1086 MB) +PASS -- TEST 'hrrr_control_restart_intel' [53:48, 00:57](838 MB) +PASS -- TEST 'rrfs_v1beta_intel' [53:33, 02:34](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [53:14, 01:16](1964 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [51:15, 00:34](1958 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:57] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [23:29, 01:13](970 MB) +PASS -- TEST 'control_ras_intel' [23:29, 00:35](658 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 08:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [23:29, 00:37](1663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [51:05, 02:25](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [51:04, 00:33](865 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:20, 05:41] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [50:53, 00:26](1610 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [50:24, 00:36](1611 MB) +PASS -- TEST 'control_stochy_debug_intel' [49:12, 00:35](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [48:36, 00:27](813 MB) +PASS -- TEST 'control_csawmg_debug_intel' [48:32, 01:02](1125 MB) +PASS -- TEST 'control_ras_debug_intel' [48:10, 01:00](826 MB) +PASS -- TEST 'control_diag_debug_intel' [48:01, 00:50](1677 MB) +PASS -- TEST 'control_debug_p8_intel' [47:36, 00:55](1911 MB) +PASS -- TEST 'regional_debug_intel' [46:59, 00:42](948 MB) +PASS -- TEST 'rap_control_debug_intel' [45:36, 00:56](1196 MB) +PASS -- TEST 'hrrr_control_debug_intel' [45:00, 00:40](1192 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [44:53, 00:27](1199 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [44:53, 00:25](1197 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [44:36, 00:15](1194 MB) +PASS -- TEST 'rap_diag_debug_intel' [44:24, 00:37](1278 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:06, 01:15](1194 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [43:44, 00:34](1203 MB) +PASS -- TEST 'rap_lndp_debug_intel' [43:06, 01:11](1199 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:50, 00:20](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [42:39, 01:14](1192 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [41:39, 01:00](1195 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [41:10, 01:10](1195 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [40:58, 00:54](1192 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [40:44, 00:19](1199 MB) +PASS -- TEST 'rap_flake_debug_intel' [40:41, 01:13](1200 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:38, 02:59](1200 MB) + +PASS -- COMPILE 'wam_debug_intel' [20:35, 03:46] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [40:34, 01:01](1704 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:42, 08:53] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [38:28, 00:53](1060 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [38:03, 02:35](887 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [37:19, 03:58](888 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [37:18, 02:59](951 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [37:05, 02:36](943 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [36:29, 03:51](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [26:58, 01:53](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [28:06, 00:18](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [41:57, 11:48] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [35:43, 00:43](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [29:33, 00:32](1080 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [29:32, 00:23](976 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [03:24, 09:03] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [21:05, 01:36](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [57:17, 03:52] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [26:11, 00:41](1075 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:11, 00:56](1071 MB) +PASS -- TEST 'conus13km_debug_intel' [26:11, 01:00](1183 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:11, 00:57](866 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:12, 00:58](1146 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:11, 01:08](1244 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [58:20, 03:49] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [25:09, 01:11](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [04:21, 10:33] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [18:59, 01:44](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [18:59, 00:48](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:57, 02:07](765 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:22, 02:13](792 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:18, 01:58](850 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:02, 01:25](498 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:42, 01:29](524 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [12:41, 00:59](384 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:37, 03:00](457 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:47, 00:55](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:51, 01:14](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:53, 01:29](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:37, 01:02](418 MB) +PASS -- TEST 'gnv1_nested_intel' [07:17, 03:15](1715 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [57:18, 04:15] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:13, 00:47](629 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [05:23, 13:44] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:35, 01:32](709 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [05:44, 01:48](799 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [00:16, 10:15] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:12, 01:41](797 MB) + +PASS -- COMPILE 'hafs_all_intel' [48:08, 09:44] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [19:03, 02:11](776 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:03, 02:13](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:01, 00:45](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [40:56, 09:13] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [20:06, 00:46](769 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 00:12](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [20:06, 00:28](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [20:06, 00:17](648 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [20:06, 00:52](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [20:06, 00:18](756 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [20:06, 00:54](770 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [20:06, 00:13](651 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:07, 01:26](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:07, 01:34](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [20:06, 00:21](755 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [20:06, 00:28](2036 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [20:06, 00:59](2034 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [25:38, 09:12] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [19:07, 00:17](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [23:56, 00:16](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [23:56, 00:21](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:30, 00:46](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:49, 09:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [50:19, 01:36](1930 MB) + +PASS -- COMPILE 'atml_intel' [34:49, 10:38] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [50:20, 02:14](1896 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [50:20, 02:15](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [40:50, 00:51](1045 MB) + +PASS -- COMPILE 'atml_debug_intel' [29:43, 04:44] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [54:12, 02:45](1932 MB) + +PASS -- COMPILE 'atmw_intel' [31:45, 09:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [49:19, 02:06](1905 MB) + +PASS -- COMPILE 'atmaero_intel' [32:46, 09:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [47:19, 01:47](3131 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [47:19, 01:33](3016 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [47:19, 01:44](3026 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [28:42, 03:48] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [50:27, 02:02](4557 MB) SYNOPSIS: -Starting Date/Time: 20240726 02:17:38 -Ending Date/Time: 20240726 04:39:45 -Total Time: 02h:22m:34s +Starting Date/Time: 20240729 13:15:25 +Ending Date/Time: 20240729 15:38:53 +Total Time: 02h:23m:54s Compiles Completed: 38/38 Tests Completed: 179/179 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index f6cc28edc6..0e6673c834 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: -45bcf84d30cfb2cc46913130f6e8615814b3c9e8 +d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,282 +36,282 @@ 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-20240724 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_37591 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_15902 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [31:29, 21:46] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:29, 05:41](3200 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [33:28, 23:51] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [31:29, 14:44](1914 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:05, 15:54](1950 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:20, 08:11](1081 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:21, 16:34](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [33:29, 24:00] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [28:10, 14:24](1912 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:25, 12:32] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [30:26, 21:33] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:04, 06:19](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:45, 06:15](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [15:03, 04:17](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:42, 06:23](3258 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:07, 04:13](3185 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:16, 06:06](3731 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:20, 06:16](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:04, 05:19](3539 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:33, 06:20](3237 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [22:51, 10:00](3895 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:40, 06:55](3622 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [26:25, 10:29](4522 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:12, 07:09](4666 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:01, 06:05](3215 MB) - -PASS -- COMPILE 's2sw_intel' [29:28, 19:51] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:33, 04:54](1927 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:42, 05:04](1986 MB) - -PASS -- COMPILE 's2swa_debug_intel' [21:24, 12:10] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:04, 08:35](3302 MB) - -PASS -- COMPILE 's2sw_debug_intel' [21:26, 11:18] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:41, 05:51](1952 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [25:25, 15:59] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:48, 05:05](1988 MB) - -PASS -- COMPILE 's2s_intel' [25:24, 16:07] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [51:03, 06:51](2947 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [46:07, 02:27](2948 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:32, 01:38](2339 MB) - -PASS -- COMPILE 's2swa_faster_intel' [29:17, 26:35] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:53, 06:31](3234 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:39, 24:59] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:47, 15:01](1939 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:48, 08:06](1115 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:37, 16:39](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [00:52, 13:42] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:36, 23:57](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [01:25, 17:00] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:32, 03:25](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:01, 02:25](1566 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:11, 02:28](1568 MB) -PASS -- TEST 'control_latlon_intel' [05:00, 02:27](1563 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:05, 02:28](1569 MB) -PASS -- TEST 'control_c48_intel' [08:00, 06:08](1619 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:18](734 MB) -PASS -- TEST 'control_c192_intel' [12:35, 08:42](1682 MB) -PASS -- TEST 'control_c384_intel' [15:38, 08:46](2003 MB) -PASS -- TEST 'control_c384gdas_intel' [15:47, 07:12](1197 MB) -PASS -- TEST 'control_stochy_intel' [03:33, 01:29](622 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:33, 00:56](441 MB) -PASS -- TEST 'control_lndp_intel' [03:33, 01:23](621 MB) -PASS -- TEST 'control_iovr4_intel' [04:38, 02:09](619 MB) -PASS -- TEST 'control_iovr5_intel' [03:34, 02:07](621 MB) -PASS -- TEST 'control_p8_intel' [05:27, 03:15](1868 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 03:07](1861 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:21, 03:18](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [05:17, 02:05](1001 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:16, 03:15](1862 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:16, 02:15](1017 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:08, 03:14](1853 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:05, 03:02](1946 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:04](1867 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:20, 03:59](1916 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:29, 03:17](1870 MB) -PASS -- TEST 'merra2_thompson_intel' [06:23, 03:34](1868 MB) -PASS -- TEST 'regional_control_intel' [06:58, 05:01](870 MB) -PASS -- TEST 'regional_restart_intel' [04:58, 03:14](875 MB) -PASS -- TEST 'regional_decomp_intel' [06:55, 05:19](872 MB) -PASS -- TEST 'regional_noquilt_intel' [08:59, 05:06](1196 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:53, 05:05](878 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:49, 05:14](871 MB) -PASS -- TEST 'regional_wofs_intel' [08:54, 05:41](1603 MB) - -PASS -- COMPILE 'rrfs_intel' [59:02, 14:42] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [13:21, 06:10](1014 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:03, 03:57](1197 MB) -PASS -- TEST 'rap_decomp_intel' [13:21, 06:24](1006 MB) -PASS -- TEST 'rap_2threads_intel' [12:34, 05:41](1100 MB) -PASS -- TEST 'rap_restart_intel' [05:11, 03:14](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:23, 06:08](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:23, 06:24](1002 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:06, 04:38](881 MB) -PASS -- TEST 'hrrr_control_intel' [08:21, 03:25](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:21, 03:28](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [11:31, 02:50](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:44, 01:48](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:24, 06:02](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:08, 07:35](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:08, 07:19](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [52:38, 12:22] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:17, 06:59](962 MB) -PASS -- TEST 'control_ras_intel' [04:47, 02:55](656 MB) - -PASS -- COMPILE 'wam_intel' [51:40, 12:09] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:08, 10:07](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [57:33, 19:01] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:27, 03:09](1871 MB) -PASS -- TEST 'regional_control_faster_intel' [06:51, 04:54](869 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [50:58, 14:21] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:47, 02:36](1612 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:51, 02:31](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:54, 03:02](813 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:53, 02:48](809 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:47, 04:44](1121 MB) -PASS -- TEST 'control_ras_debug_intel' [06:55, 02:51](817 MB) -PASS -- TEST 'control_diag_debug_intel' [10:29, 02:38](1677 MB) -PASS -- TEST 'control_debug_p8_intel' [05:56, 03:23](1905 MB) -PASS -- TEST 'regional_debug_intel' [18:52, 16:35](940 MB) -PASS -- TEST 'rap_control_debug_intel' [06:37, 04:42](1189 MB) -PASS -- TEST 'hrrr_control_debug_intel' [26:34, 04:36](1190 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [26:37, 04:50](1191 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:36, 04:40](1195 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:32, 04:41](1192 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:58, 04:53](1276 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:32, 04:55](1194 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:30, 04:46](1200 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:39, 04:43](1191 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:39, 04:44](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:30, 04:43](1191 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:31, 04:40](1192 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:32, 07:48](1191 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:35, 04:39](1188 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:41, 05:57](1193 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:38, 04:41](1192 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 08:10](1190 MB) - -PASS -- COMPILE 'wam_debug_intel' [44:57, 08:03] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:47, 12:48](1701 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:35, 12:42] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:23, 03:41](1061 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:21, 05:13](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:33, 02:59](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:25, 04:48](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:30, 02:27](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:24, 02:58](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:09, 03:54](795 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 01:36](777 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:37, 16:13] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:05, 01:55](1090 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:12, 01:03](1086 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:34, 01:09](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:56, 11:52] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:55, 03:38](911 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:56, 08:00] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:36, 04:33](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:35, 04:33](1066 MB) -PASS -- TEST 'conus13km_debug_intel' [16:00, 13:17](1154 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:03, 13:40](836 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:37, 07:58](1151 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 13:51](1220 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:46, 07:50] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:33, 04:39](1094 MB) - -PASS -- COMPILE 'hafsw_intel' [19:48, 18:57] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:29, 04:37](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:52, 05:14](1065 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:57, 06:31](775 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:36, 11:08](801 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:48, 12:18](815 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:19, 04:46](475 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:43, 05:47](488 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:05, 02:19](394 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:39, 06:21](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:59, 03:23](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:06, 03:08](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 03:54](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:30, 01:16](429 MB) -PASS -- TEST 'gnv1_nested_intel' [07:27, 04:07](1720 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:38, 09:24] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:32, 12:26](633 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [29:40, 27:33] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:15, 07:11](633 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:32, 07:20](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [22:20, 20:02] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:37, 05:30](680 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:15, 16:03] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:19, 05:40](756 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:38, 05:43](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:07, 16:18](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:14, 09:02] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:42, 02:29](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:34](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:21, 02:23](652 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 02:24](648 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:33, 02:25](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:21, 02:30](770 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 02:30](766 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:39, 02:21](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:27, 05:43](698 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 05:40](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:30](770 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:37, 03:54](2035 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:35, 03:55](2034 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 06:37] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:41, 05:12](739 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:56] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:30](770 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 02:57] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:38, 01:15](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:35, 01:13](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:48](457 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:14, 13:50] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:42, 04:04](1913 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:13, 12:47] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:43, 03:56](1900 MB) - -PASS -- COMPILE 'atml_intel' [18:15, 15:43] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:47, 07:10](1888 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:45, 07:28](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:01, 04:17](1038 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:19, 10:17] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:48, 06:06](1936 MB) - -PASS -- COMPILE 'atmw_intel' [16:21, 14:24] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:23](1893 MB) - -PASS -- COMPILE 'atmaero_intel' [14:14, 12:42] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:38, 04:20](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:24, 04:20](2994 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:18, 04:21](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:19, 08:07] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:57, 21:52](4535 MB) +PASS -- COMPILE 's2swa_32bit_intel' [01:45, 23:26] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:02, 05:35](3200 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [03:45, 25:45] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:04, 14:38](1918 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:23, 15:45](1946 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [17:22, 07:47](1080 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:00, 16:33](1886 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [03:44, 25:23] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:13, 14:31](1917 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [51:41, 14:06] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [00:44, 22:47] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:26, 06:14](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:29, 06:24](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:04, 04:01](3160 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:17, 06:22](3251 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:59, 04:06](3185 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:14, 05:58](3730 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:12, 06:19](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:12, 05:15](3542 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:13, 06:07](3234 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:37, 09:33](3894 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:50, 06:29](3625 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:45, 10:28](4524 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:38, 07:01](4669 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:01, 05:55](3210 MB) + +PASS -- COMPILE 's2sw_intel' [58:43, 21:15] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:33, 04:48](1929 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:43, 04:57](1987 MB) + +PASS -- COMPILE 's2swa_debug_intel' [52:42, 14:36] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:42, 08:15](3301 MB) + +PASS -- COMPILE 's2sw_debug_intel' [51:41, 13:25] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:21, 05:44](1960 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [55:43, 17:30] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:54, 04:58](2001 MB) + +PASS -- COMPILE 's2s_intel' [55:43, 17:40] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [20:16, 06:43](2943 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [15:10, 02:21](2945 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:08, 01:39](2344 MB) + +PASS -- COMPILE 's2swa_faster_intel' [43:28, 26:16] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:02, 06:02](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [39:27, 21:59] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:31, 14:54](1942 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:51, 07:58](1094 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:35, 16:43](1911 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [27:21, 11:16] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:36, 23:37](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [29:24, 15:34] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [15:35, 03:24](667 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [13:58, 02:27](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:12, 02:29](1573 MB) +PASS -- TEST 'control_latlon_intel' [12:55, 02:25](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:58, 02:25](1570 MB) +PASS -- TEST 'control_c48_intel' [20:02, 06:03](1621 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [16:31, 05:14](736 MB) +PASS -- TEST 'control_c192_intel' [15:40, 08:41](1689 MB) +PASS -- TEST 'control_c384_intel' [15:36, 08:44](2003 MB) +PASS -- TEST 'control_c384gdas_intel' [15:26, 07:05](1201 MB) +PASS -- TEST 'control_stochy_intel' [06:37, 01:27](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:33, 00:52](440 MB) +PASS -- TEST 'control_lndp_intel' [05:30, 01:22](625 MB) +PASS -- TEST 'control_iovr4_intel' [06:33, 02:07](625 MB) +PASS -- TEST 'control_iovr5_intel' [05:37, 02:08](626 MB) +PASS -- TEST 'control_p8_intel' [07:16, 03:10](1867 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:27, 03:02](1855 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:16, 03:11](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [04:13, 01:57](1018 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:16, 03:20](1860 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:06, 02:01](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:26, 03:20](1868 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:24, 03:00](1957 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:10, 05:07](1869 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:20, 03:48](1924 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:16, 03:10](1875 MB) +PASS -- TEST 'merra2_thompson_intel' [06:19, 03:31](1867 MB) +PASS -- TEST 'regional_control_intel' [06:55, 05:03](874 MB) +PASS -- TEST 'regional_restart_intel' [07:54, 03:02](874 MB) +PASS -- TEST 'regional_decomp_intel' [06:54, 05:15](876 MB) +PASS -- TEST 'regional_noquilt_intel' [06:55, 04:54](1194 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 04:54](864 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:51, 05:00](883 MB) +PASS -- TEST 'regional_wofs_intel' [07:49, 05:48](1608 MB) + +PASS -- COMPILE 'rrfs_intel' [27:24, 13:20] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [14:09, 06:09](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:48, 03:42](1188 MB) +PASS -- TEST 'rap_decomp_intel' [11:12, 06:23](1006 MB) +PASS -- TEST 'rap_2threads_intel' [11:12, 05:38](1097 MB) +PASS -- TEST 'rap_restart_intel' [05:04, 03:14](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:06, 06:11](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:06, 06:22](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 04:36](882 MB) +PASS -- TEST 'hrrr_control_intel' [06:16, 03:17](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:04, 03:20](1003 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [22:12, 02:52](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:38, 01:46](838 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:07, 06:00](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:42, 07:21](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:42, 07:06](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [23:16, 11:25] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:54, 06:35](963 MB) +PASS -- TEST 'control_ras_intel' [04:33, 02:52](655 MB) + +PASS -- COMPILE 'wam_intel' [21:16, 11:04] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:11, 09:59](1659 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [27:17, 17:32] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:23, 03:04](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [06:56, 04:43](870 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [20:17, 12:53] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:19, 02:34](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:24, 02:31](1604 MB) +PASS -- TEST 'control_stochy_debug_intel' [13:36, 02:53](810 MB) +PASS -- TEST 'control_lndp_debug_intel' [12:33, 02:40](809 MB) +PASS -- TEST 'control_csawmg_debug_intel' [16:19, 04:40](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [14:34, 02:35](820 MB) +PASS -- TEST 'control_diag_debug_intel' [16:53, 02:34](1677 MB) +PASS -- TEST 'control_debug_p8_intel' [18:19, 03:22](1905 MB) +PASS -- TEST 'regional_debug_intel' [25:18, 16:32](941 MB) +PASS -- TEST 'rap_control_debug_intel' [06:40, 04:41](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:26, 04:31](1188 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 04:40](1194 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 04:39](1191 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 04:38](1192 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:03, 05:00](1276 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 04:48](1197 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:30, 04:51](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:34, 04:44](1191 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:28, 04:49](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:32, 04:38](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:33, 04:42](1194 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:31](1188 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:27, 04:36](1187 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:35](1199 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:28, 04:43](1193 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:05, 08:27](1193 MB) + +PASS -- COMPILE 'wam_debug_intel' [14:14, 06:46] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:12, 12:22](1702 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [37:32, 11:09] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:28, 03:41](1055 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:05, 05:59](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:02, 03:16](881 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:07, 05:21](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:54, 03:04](938 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:54, 03:35](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:04, 03:54](795 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 01:34](773 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [39:28, 14:58] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:28, 01:55](1085 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:15, 01:04](1085 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:08, 01:07](976 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:32, 11:21] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:08, 03:39](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [29:29, 07:07] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:32](1067 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 04:26](1066 MB) +PASS -- TEST 'conus13km_debug_intel' [16:42, 13:30](1153 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:42, 13:26](836 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 08:05](1157 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:40, 13:22](1219 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [28:25, 07:02] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 04:53](1095 MB) + +PASS -- COMPILE 'hafsw_intel' [38:31, 18:08] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:31, 04:37](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:13, 05:18](1066 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:01, 06:30](775 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:39, 11:00](796 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:42, 12:06](814 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:12, 04:41](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:39, 05:57](495 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:02, 02:21](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:55, 06:22](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:02, 03:23](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:37, 03:05](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:19, 03:51](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:38, 01:21](431 MB) +PASS -- TEST 'gnv1_nested_intel' [07:21, 04:10](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [28:24, 08:36] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:11, 13:13](634 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [42:33, 26:51] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:12](634 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:41, 07:14](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [33:42, 19:42] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:30, 05:22](679 MB) + +PASS -- COMPILE 'hafs_all_intel' [26:21, 15:54] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:38, 05:38](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:50, 05:39](742 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:28, 16:14](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:20, 08:40] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:47, 02:28](757 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:46, 01:34](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:44, 02:20](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:45, 02:22](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:45, 02:24](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:46, 02:28](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:45, 02:29](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:32, 02:21](649 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:30, 05:38](699 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:22, 05:43](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:33, 02:29](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:56, 03:55](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:53, 03:53](2037 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:18, 06:04] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:26, 05:09](738 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:15, 08:51] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:34, 02:30](756 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [11:14, 02:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:39, 01:13](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:27, 01:07](458 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:43](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:18, 13:22] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:33, 03:53](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:20, 12:19] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:35, 03:49](1909 MB) + +PASS -- COMPILE 'atml_intel' [19:20, 15:20] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:37, 07:06](1883 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:37, 06:58](1896 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:04, 03:55](1038 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:19, 09:54] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:43, 06:20](1938 MB) + +PASS -- COMPILE 'atmw_intel' [15:20, 13:59] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:15](1893 MB) + +PASS -- COMPILE 'atmaero_intel' [13:18, 12:37] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:47, 04:06](3124 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:51, 04:18](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:19, 04:34](3015 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:19, 07:44] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:59, 21:50](4535 MB) SYNOPSIS: -Starting Date/Time: 20240725 11:13:10 -Ending Date/Time: 20240725 13:43:58 -Total Time: 02h:31m:54s +Starting Date/Time: 20240726 14:27:02 +Ending Date/Time: 20240726 17:11:21 +Total Time: 02h:45m:22s Compiles Completed: 41/41 Tests Completed: 183/183 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 03dce4aae7..e3f3fd2bcd 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -45bcf84d30cfb2cc46913130f6e8615814b3c9e8 +d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,284 +36,284 @@ 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-20240724 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_109327 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_205288 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:15, 18:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:27, 07:05](3197 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:15, 23:02] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [32:18, 13:46](1925 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [40:13, 14:50](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [31:20, 07:07](1063 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:30, 14:46](1897 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:18, 26:17] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [30:42, 13:10](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:22] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [38:55, 24:00](1948 MB) - -PASS -- COMPILE 's2swa_intel' [18:15, 18:01] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [22:05, 07:38](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:13, 07:39](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [37:48, 04:48](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [22:05, 07:44](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [37:48, 04:46](3180 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [24:11, 06:17](3464 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [22:05, 07:40](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [22:57, 06:43](3169 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [25:03, 07:53](3226 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [30:00, 10:25](3448 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [35:50, 07:13](3606 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [38:28, 12:48](4207 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [34:43, 08:58](4359 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [20:54, 07:28](3206 MB) - -PASS -- COMPILE 's2sw_intel' [22:15, 21:10] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [21:18, 05:03](1939 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:33, 05:20](1997 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:24] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [23:54, 09:25](3277 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:12, 13:18] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [20:44, 05:56](1958 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:14, 16:01] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [21:32, 05:12](1998 MB) - -PASS -- COMPILE 's2s_intel' [16:14, 15:41] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [22:13, 06:32](2927 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [17:11, 01:57](2931 MB) -PASS -- TEST 'cpld_restart_c48_intel' [37:10, 01:09](2325 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:18, 24:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [39:51, 07:23](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:18, 22:59] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:33, 15:09](1934 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 07:34](1109 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:12, 17:21](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:17, 12:02] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:18, 26:41](1960 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:15, 14:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [38:38, 03:38](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [34:52, 03:10](1566 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:51, 03:04](1570 MB) -PASS -- TEST 'control_latlon_intel' [34:45, 03:01](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [35:02, 02:56](1572 MB) -PASS -- TEST 'control_c48_intel' [38:15, 06:30](1596 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [36:47, 05:44](719 MB) -PASS -- TEST 'control_c192_intel' [39:50, 09:59](1683 MB) -PASS -- TEST 'control_c384_intel' [48:08, 18:10](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [46:06, 14:22](1181 MB) -PASS -- TEST 'control_stochy_intel' [31:33, 01:51](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:28, 01:12](426 MB) -PASS -- TEST 'control_lndp_intel' [29:45, 01:48](622 MB) -PASS -- TEST 'control_iovr4_intel' [28:35, 02:32](620 MB) -PASS -- TEST 'control_iovr5_intel' [28:35, 02:35](620 MB) -PASS -- TEST 'control_p8_intel' [30:02, 03:30](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [30:19, 03:30](1860 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [30:04, 03:12](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [02:57, 01:39](1014 MB) -PASS -- TEST 'control_noqr_p8_intel' [29:01, 03:20](1858 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:57, 01:38](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [28:59, 03:24](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [28:05, 02:54](1949 MB) -PASS -- TEST 'control_p8_lndp_intel' [15:41, 05:12](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:02, 04:03](1920 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:01, 03:14](1868 MB) -PASS -- TEST 'merra2_thompson_intel' [12:04, 03:30](1866 MB) -PASS -- TEST 'regional_control_intel' [06:38, 04:48](860 MB) -PASS -- TEST 'regional_restart_intel' [05:34, 02:38](848 MB) -PASS -- TEST 'regional_decomp_intel' [11:35, 05:04](860 MB) -PASS -- TEST 'regional_2threads_intel' [08:34, 02:59](1006 MB) -PASS -- TEST 'regional_noquilt_intel' [08:41, 04:44](1184 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:45, 04:53](858 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 04:53](859 MB) -PASS -- TEST 'regional_wofs_intel' [09:38, 06:16](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [13:15, 12:43] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [25:05, 06:46](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:14, 04:01](1186 MB) -PASS -- TEST 'rap_decomp_intel' [24:05, 06:59](1009 MB) -PASS -- TEST 'rap_2threads_intel' [23:10, 06:09](1096 MB) -PASS -- TEST 'rap_restart_intel' [06:56, 03:29](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [24:09, 06:45](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [24:58, 07:08](1008 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:00, 04:51](880 MB) -PASS -- TEST 'hrrr_control_intel' [21:04, 03:55](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:52, 03:58](1005 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:51, 03:04](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:31, 02:07](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:32](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:36, 08:06](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:45](1953 MB) - -PASS -- COMPILE 'csawmg_intel' [13:12, 12:11] -PASS -- TEST 'control_csawmg_intel' [07:36, 06:37](964 MB) -PASS -- TEST 'control_ras_intel' [04:28, 03:19](657 MB) - -PASS -- COMPILE 'wam_intel' [12:12, 11:50] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:57, 11:35](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [23:13, 21:43] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:03, 03:08](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [05:33, 04:34](859 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 12:16] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:51](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:46, 02:48](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:08](799 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:47](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:34, 04:30](1109 MB) -PASS -- TEST 'control_ras_debug_intel' [03:28, 02:53](805 MB) -PASS -- TEST 'control_diag_debug_intel' [03:41, 02:58](1656 MB) -PASS -- TEST 'control_debug_p8_intel' [04:35, 03:09](1893 MB) -PASS -- TEST 'regional_debug_intel' [18:05, 16:14](901 MB) -PASS -- TEST 'rap_control_debug_intel' [05:31, 05:03](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:57](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:33, 04:57](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:10, 05:17](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:05, 05:07](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:54, 05:15](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:47, 05:21](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:08, 05:04](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:28, 05:07](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:54, 05:03](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:40, 04:55](1179 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:38, 04:59](1181 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:31, 07:53](1180 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:26, 04:55](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:29, 05:51](1186 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:28, 05:08](1182 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:56, 08:34](1184 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:12, 08:22] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:05, 13:26](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 13:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:51](1048 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:54, 05:54](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:48, 03:25](880 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:50, 05:16](939 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:57, 02:58](935 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:51, 03:43](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:56, 04:22](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:33, 01:43](763 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:13, 16:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:25, 02:42](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:55, 01:21](1076 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:56, 01:36](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 11:42] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:00, 05:20](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 07:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:30, 05:29](1059 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 05:28](1059 MB) -PASS -- TEST 'conus13km_debug_intel' [16:12, 14:09](1140 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:12, 14:28](819 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:05, 08:22](1126 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 14:05](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 08:04] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:31, 04:57](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [15:17, 14:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:19, 05:25](702 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:35, 04:32](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:46, 07:38](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:18, 11:48](783 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:34, 12:49](797 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:14, 05:19](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:50, 06:45](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:08, 02:55](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:44, 08:07](433 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:17, 03:51](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:27, 03:33](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:05, 04:45](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:41, 01:42](400 MB) -PASS -- TEST 'gnv1_nested_intel' [09:00, 05:48](1714 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:14, 09:26] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:40, 12:59](600 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:15, 21:29] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:17, 07:45](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:18, 07:49](787 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 14:10] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:15, 06:08](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 13:26] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:22, 06:19](740 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:11, 06:18](726 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:19, 20:07](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:13, 13:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:28, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:35](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:25, 02:25](638 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:28, 02:29](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:28, 02:32](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:26, 02:43](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:26, 02:29](640 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:03, 06:05](691 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:02, 06:12](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 04:39](2028 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:29, 04:40](2028 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 07:24] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:30, 05:27](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:12, 11:52] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:26, 02:38](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:14, 02:36] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:01, 01:56](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:54, 01:37](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:47, 01:02](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:14, 12:56] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:33, 04:06](1926 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:14, 12:00] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:51, 04:08](1913 MB) - -PASS -- COMPILE 'atml_intel' [14:14, 13:31] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:49, 08:28](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:49, 08:12](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:47, 03:41](1044 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:13, 09:04] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:39, 06:10](1931 MB) - -PASS -- COMPILE 'atmw_intel' [14:12, 13:30] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:03, 02:18](1899 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 12:15] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:26, 06:56](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:26, 06:37](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:17, 06:37](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:12, 08:01] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:34, 18:12](4487 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:17, 19:04] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:37, 07:27](3200 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:13, 23:12] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:45, 14:07](1924 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:40, 14:10](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:51, 06:50](1079 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:49, 15:09](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:13, 22:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:06, 13:40](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:13, 15:45] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:42, 24:57](1947 MB) + +PASS -- COMPILE 's2swa_intel' [18:13, 18:08] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:43, 08:37](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:14, 08:20](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:22, 05:05](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:43, 08:29](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:22, 05:31](3182 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:38, 07:04](3464 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:26, 08:34](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:28, 07:50](3170 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:48, 09:01](3225 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [23:10, 10:37](3450 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:38, 07:19](3609 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:09, 13:09](4208 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:58, 09:20](4359 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:35, 08:28](3208 MB) + +PASS -- COMPILE 's2sw_intel' [18:13, 17:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:17, 05:58](1930 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:40, 06:26](1994 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:16, 13:08] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:10, 10:00](3278 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:13, 15:09] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 06:28](1958 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:17, 19:01] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:12, 05:24](1999 MB) + +PASS -- COMPILE 's2s_intel' [16:13, 16:03] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:46, 06:31](2926 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:44, 02:06](2931 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:40, 01:09](2325 MB) + +PASS -- COMPILE 's2swa_faster_intel' [30:19, 29:13] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:15, 08:00](3228 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [26:18, 25:16] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 15:26](1935 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:20, 07:56](1101 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:53, 17:57](1910 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [19:16, 17:38] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:52, 27:21](1960 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:15, 16:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:48, 03:54](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:06, 03:34](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:14, 03:16](1570 MB) +PASS -- TEST 'control_latlon_intel' [07:55, 03:24](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:15, 03:33](1572 MB) +PASS -- TEST 'control_c48_intel' [11:00, 06:31](1596 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 05:43](719 MB) +PASS -- TEST 'control_c192_intel' [15:11, 10:11](1682 MB) +PASS -- TEST 'control_c384_intel' [23:45, 18:14](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [21:43, 14:42](1179 MB) +PASS -- TEST 'control_stochy_intel' [03:07, 01:55](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:35, 01:20](426 MB) +PASS -- TEST 'control_lndp_intel' [02:56, 01:53](622 MB) +PASS -- TEST 'control_iovr4_intel' [04:20, 02:40](620 MB) +PASS -- TEST 'control_iovr5_intel' [04:20, 02:40](620 MB) +PASS -- TEST 'control_p8_intel' [09:38, 04:01](1860 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:31, 04:04](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:47, 04:02](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [05:22, 01:51](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:43, 03:55](1858 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:59, 02:03](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:43, 03:57](1861 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:43, 03:11](1950 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:31, 05:38](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:43, 04:30](1920 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:04, 03:37](1868 MB) +PASS -- TEST 'merra2_thompson_intel' [06:03, 03:45](1866 MB) +PASS -- TEST 'regional_control_intel' [06:02, 04:54](866 MB) +PASS -- TEST 'regional_restart_intel' [05:16, 02:43](860 MB) +PASS -- TEST 'regional_decomp_intel' [07:31, 05:16](860 MB) +PASS -- TEST 'regional_2threads_intel' [06:00, 03:16](1005 MB) +PASS -- TEST 'regional_noquilt_intel' [08:10, 05:09](1181 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:25, 05:10](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:00, 04:55](866 MB) +PASS -- TEST 'regional_wofs_intel' [07:14, 06:02](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [16:14, 15:25] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:19, 06:56](1007 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:57, 04:10](1181 MB) +PASS -- TEST 'rap_decomp_intel' [10:11, 07:22](1007 MB) +PASS -- TEST 'rap_2threads_intel' [09:49, 06:21](1094 MB) +PASS -- TEST 'rap_restart_intel' [06:51, 03:35](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:59, 06:52](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:06, 07:11](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:39, 05:03](877 MB) +PASS -- TEST 'hrrr_control_intel' [08:02, 04:00](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:42, 03:59](1003 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:42, 03:17](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:32, 01:57](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:47, 06:42](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:15, 08:18](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:57, 07:58](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [15:14, 14:30] +PASS -- TEST 'control_csawmg_intel' [08:18, 06:48](966 MB) +PASS -- TEST 'control_ras_intel' [04:52, 03:24](659 MB) + +PASS -- COMPILE 'wam_intel' [15:16, 14:31] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:02, 12:02](1663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [23:16, 23:01] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:52, 03:44](1858 MB) +PASS -- TEST 'regional_control_faster_intel' [06:32, 05:02](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:12, 13:14] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:11, 03:03](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:16, 02:58](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:59, 03:23](799 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:41, 02:50](797 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:57, 04:36](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [03:54, 02:55](805 MB) +PASS -- TEST 'control_diag_debug_intel' [05:43, 03:11](1656 MB) +PASS -- TEST 'control_debug_p8_intel' [05:33, 03:30](1892 MB) +PASS -- TEST 'regional_debug_intel' [18:37, 16:30](901 MB) +PASS -- TEST 'rap_control_debug_intel' [06:13, 05:03](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:10, 05:02](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 05:05](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 05:06](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:14, 05:27](1183 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:23](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:10](1183 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:20, 05:16](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:58, 05:20](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:58, 05:10](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:00, 05:03](1180 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:10, 05:05](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:56, 08:03](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:08, 05:00](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:15, 06:10](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:21, 05:09](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:00, 08:30](1184 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:14, 09:49] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:26, 13:36](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:12, 15:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:45, 04:02](1050 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:39, 06:15](886 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:52, 03:25](883 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 05:20](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 02:40](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:17, 03:37](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:18, 04:23](784 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:50, 02:09](767 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:15, 23:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:12, 02:31](1096 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:20, 01:20](1080 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:53, 01:51](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:13, 16:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:41](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:11, 10:39] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:56, 05:01](1059 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 04:56](1059 MB) +PASS -- TEST 'conus13km_debug_intel' [16:41, 14:08](1140 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:42](819 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:31, 08:25](1129 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:39, 14:10](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:14, 16:53] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:42, 04:59](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [26:17, 25:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:35, 05:23](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:51, 04:34](1056 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:48, 07:53](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:36, 11:41](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:47, 12:54](801 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:45, 05:25](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:35, 06:47](495 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:37, 02:54](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:27, 08:03](435 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:17, 03:49](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:24, 03:40](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:25, 04:40](577 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:14, 01:43](402 MB) +PASS -- TEST 'gnv1_nested_intel' [09:23, 05:54](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [17:17, 16:42] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 13:06](601 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [33:16, 32:25] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:24, 07:44](613 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:24, 07:48](786 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [26:17, 25:57] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:19, 06:52](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [25:16, 24:19] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:33](737 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:33, 06:19](725 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:34, 20:10](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:17, 15:00] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:31, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:35](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:30, 02:29](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:32, 02:27](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:36](638 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:31, 02:41](750 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:39](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:29, 02:28](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:21, 06:15](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:28, 06:03](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:23, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 04:37](2028 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:36, 04:40](2029 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [12:20, 11:16] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:25](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:15, 14:50] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:27, 02:38](752 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [07:18, 05:53] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:16, 02:20](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:13, 01:32](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:51, 01:14](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 16:46] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:12, 04:18](1923 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:14, 16:10] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:02](1911 MB) + +PASS -- COMPILE 'atml_intel' [17:15, 16:58] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:05, 08:14](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:05, 08:13](1893 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:14, 04:12](1046 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:12, 11:41] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:49, 06:43](1930 MB) + +PASS -- COMPILE 'atmw_intel' [16:13, 15:27] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:12, 03:03](1898 MB) + +PASS -- COMPILE 'atmaero_intel' [16:16, 15:53] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:37, 06:40](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:32, 07:16](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:25, 07:07](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [16:13, 14:51] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:44, 18:18](4486 MB) SYNOPSIS: -Starting Date/Time: 20240724 21:15:42 -Ending Date/Time: 20240724 23:27:23 -Total Time: 02h:12m:55s +Starting Date/Time: 20240726 14:39:28 +Ending Date/Time: 20240726 16:26:22 +Total Time: 01h:48m:17s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 354808eb20..d7f6ca0801 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,15 +1,15 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -45bcf84d30cfb2cc46913130f6e8615814b3c9e8 +d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -25,381 +25,380 @@ 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-20240724 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3718900 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1436054 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:20, 05:40](3300 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:43] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:06, 17:25](1969 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:37, 18:21](2133 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:26, 08:25](1243 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:15, 19:34](1858 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:27] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:45, 17:03](1953 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:11] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:11, 22:44](1902 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 13:54] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:18, 06:16](3313 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:27, 06:14](3315 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:35, 03:40](3235 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:16, 06:05](3326 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:37, 03:38](3249 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:10, 05:35](3609 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:10, 05:56](3315 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:14, 04:49](3193 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:23, 06:00](3327 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:20, 10:36](3572 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:25, 06:39](3606 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:16, 10:08](4276 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:14, 06:29](4350 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:15, 05:30](3301 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 13:01] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:06, 04:53](1984 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:13, 04:38](2032 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:11] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:28, 08:48](3330 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:48] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:01, 05:52](1980 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 12:18] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:12, 04:23](2028 MB) - -PASS -- COMPILE 's2s_intel' [13:12, 12:23] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:52, 09:07](3075 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:50, 02:41](3074 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:45, 01:33](2492 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 17:40] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:21, 05:42](3323 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 16:23] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:14, 17:50](2000 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:35, 08:40](1255 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:15, 19:56](1910 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:53] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:12, 25:09](1921 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 12:05] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:29, 03:25](686 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:59, 02:53](1578 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:59, 03:07](1588 MB) -PASS -- TEST 'control_latlon_intel' [05:51, 02:54](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:00, 02:57](1581 MB) -PASS -- TEST 'control_c48_intel' [08:56, 07:28](1742 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 06:27](852 MB) -PASS -- TEST 'control_c192_intel' [14:30, 10:41](1718 MB) -PASS -- TEST 'control_c384_intel' [14:43, 10:38](1993 MB) -PASS -- TEST 'control_c384gdas_intel' [13:57, 08:10](1377 MB) -PASS -- TEST 'control_stochy_intel' [04:29, 01:39](634 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:30, 00:59](486 MB) -PASS -- TEST 'control_lndp_intel' [03:27, 01:35](639 MB) -PASS -- TEST 'control_iovr4_intel' [04:31, 02:28](634 MB) -PASS -- TEST 'control_iovr5_intel' [04:30, 02:29](637 MB) -PASS -- TEST 'control_p8_intel' [06:15, 03:07](1871 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:11, 03:09](1875 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:58, 03:10](1881 MB) -PASS -- TEST 'control_restart_p8_intel' [02:50, 01:47](1117 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:52, 03:03](1868 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:45](1141 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:47, 03:10](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:52, 02:56](1962 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:50, 05:30](1873 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:56, 04:07](1926 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:02, 03:07](1880 MB) -PASS -- TEST 'merra2_thompson_intel' [04:57, 03:27](1889 MB) -PASS -- TEST 'regional_control_intel' [06:39, 05:24](1082 MB) -PASS -- TEST 'regional_restart_intel' [03:52, 02:58](1083 MB) -PASS -- TEST 'regional_decomp_intel' [06:39, 05:42](1066 MB) -PASS -- TEST 'regional_2threads_intel' [04:40, 03:29](1072 MB) -PASS -- TEST 'regional_noquilt_intel' [06:42, 05:16](1377 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:20](1090 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:23](1082 MB) -PASS -- TEST 'regional_wofs_intel' [07:40, 06:52](1898 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 11:22] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:44, 07:45](1086 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:20, 04:15](1285 MB) -PASS -- TEST 'rap_decomp_intel' [09:43, 08:08](1022 MB) -PASS -- TEST 'rap_2threads_intel' [08:40, 07:18](1168 MB) -PASS -- TEST 'rap_restart_intel' [05:46, 04:06](1086 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:44, 07:45](1087 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:41, 08:08](1019 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:48, 05:56](1112 MB) -PASS -- TEST 'hrrr_control_intel' [05:04, 04:00](1019 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:42, 04:08](1014 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:42](1093 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:36, 02:10](981 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:47, 07:37](1064 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:28](1969 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:31, 09:09](2049 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:57] -PASS -- TEST 'control_csawmg_intel' [07:41, 06:10](1007 MB) -PASS -- TEST 'control_ras_intel' [04:26, 03:18](731 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:33] -PASS -- TEST 'control_csawmg_gnu' [09:41, 08:23](746 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:33] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:01, 11:10](1642 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 14:59] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:03, 02:51](1874 MB) -PASS -- TEST 'regional_control_faster_intel' [05:49, 04:52](1078 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:21] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:56, 02:39](1596 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:52, 02:46](1589 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:27, 03:13](788 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:49](792 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:42, 04:23](1111 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 02:54](803 MB) -PASS -- TEST 'control_diag_debug_intel' [03:51, 02:50](1656 MB) -PASS -- TEST 'control_debug_p8_intel' [04:44, 03:09](1885 MB) -PASS -- TEST 'regional_debug_intel' [18:41, 17:45](1075 MB) -PASS -- TEST 'rap_control_debug_intel' [06:27, 05:04](1184 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:27, 04:54](1175 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:57](1186 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 05:09](1179 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:59](1176 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:44, 05:21](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 05:13](1182 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 05:05](1181 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:02](1187 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:08](1181 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:25, 05:00](1180 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 05:09](1183 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 08:15](1180 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:56](1182 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:27, 06:04](1181 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:28, 04:58](1181 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:46, 08:53](1195 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:55] -PASS -- TEST 'control_csawmg_debug_gnu' [03:41, 02:22](712 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:12, 03:50] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:56, 13:57](1668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:09, 04:00](1153 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:28](1024 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:24](976 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 06:06](1082 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:36, 03:10](947 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:37, 03:36](915 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:43, 04:54](1018 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:29, 01:57](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 14:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:04, 02:08](1198 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:52, 00:59](1103 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:18](1095 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:42] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:13](970 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:08] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 04:59](1055 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:27, 04:55](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [15:54, 14:52](1188 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:47](919 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:50, 08:26](1121 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:51, 14:40](1257 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:45] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 05:09](1095 MB) - -PASS -- COMPILE 'hafsw_intel' [13:15, 12:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:22, 05:20](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:26](1094 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:42, 07:07](812 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:21, 13:41](844 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:35, 15:25](867 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:10, 05:33](490 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:30, 07:03](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:47, 02:41](361 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:52, 07:28](453 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:50, 03:52](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:53, 03:37](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:15](569 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:14](385 MB) -PASS -- TEST 'gnv1_nested_intel' [06:35, 04:07](1724 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:43] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:15](549 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:12, 16:47] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:04, 08:48](626 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:11, 08:51](721 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:20, 06:36](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 11:37] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:24, 06:36](816 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:23, 06:34](798 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:03, 16:18](1201 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:37] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:22, 02:49](1145 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:41](1099 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:20, 02:41](1015 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:51](1001 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:20, 02:38](1011 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:22, 02:40](1138 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:43](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:58](1006 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:40, 06:10](1058 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:28, 06:13](1035 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:46](1142 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:22, 03:59](2503 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 04:27](2493 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:44] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:23](1054 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:42] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:21, 02:41](1149 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 01:06] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:32, 00:47](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:51](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:34](318 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:25] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:18, 03:47](1981 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:24] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:12, 03:38](1948 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 12:58] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:21](1845 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:07, 04:31](1846 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:26](1086 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:12, 05:00] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:01, 05:51](1855 MB) - -PASS -- COMPILE 'atmw_intel' [12:13, 12:00] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:51](1922 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 11:29] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:02, 04:11](3177 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:01, 04:59](3077 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:47, 05:21](3078 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:13, 04:02] ( 884 warnings 6 remarks ) -FAILED: TEST TIMED OUT -- TEST 'regional_atmaq_debug_intel' [, ]( MB) - -PASS -- COMPILE 'atm_gnu' [05:12, 04:52] -PASS -- TEST 'control_c48_gnu' [12:44, 11:15](1519 MB) -PASS -- TEST 'control_stochy_gnu' [05:24, 03:19](481 MB) -PASS -- TEST 'control_ras_gnu' [06:25, 04:47](485 MB) -PASS -- TEST 'control_p8_gnu' [06:58, 04:47](1444 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:42](1455 MB) -PASS -- TEST 'control_flake_gnu' [11:27, 10:29](525 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:23] -PASS -- TEST 'rap_control_gnu' [11:33, 10:49](838 MB) -PASS -- TEST 'rap_decomp_gnu' [12:37, 11:05](834 MB) -PASS -- TEST 'rap_2threads_gnu' [10:46, 09:56](917 MB) -PASS -- TEST 'rap_restart_gnu' [06:43, 05:31](563 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:39, 10:50](801 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:35, 11:03](826 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:45, 08:08](570 MB) -PASS -- TEST 'hrrr_control_gnu' [06:47, 05:39](797 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:39, 05:38](784 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:38, 05:12](909 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:40, 05:38](833 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:33, 02:58](545 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:37, 02:51](639 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:46, 10:48](795 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:55] -PASS -- TEST 'control_diag_debug_gnu' [03:00, 01:39](1251 MB) -PASS -- TEST 'regional_debug_gnu' [11:40, 10:42](719 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:41](799 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:26, 02:34](800 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:24, 02:40](805 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:23, 02:42](800 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:47, 02:54](886 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 04:09](800 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:41](797 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:25, 02:37](796 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:26, 01:39](433 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:25, 01:46](426 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:46, 01:55](1430 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:26, 02:42](807 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:25, 02:57](801 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:42, 04:25](814 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:45] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:20] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:33, 09:22](692 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 05:02](691 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:42, 08:38](744 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:32](738 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 05:05](688 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:43, 06:55](540 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 02:42](520 MB) -PASS -- TEST 'conus13km_control_gnu' [05:11, 03:16](859 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:52, 05:49](866 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:48, 01:51](542 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 11:02] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:48, 05:44](714 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:48] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:30, 02:37](692 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:28, 02:38](690 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:01, 07:07](873 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:51, 07:17](560 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:45, 08:00](875 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:45, 07:01](929 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 07:48] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:27, 02:37](718 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:48] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:25] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:16, 07:31](1525 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:24, 05:49](3301 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:15] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:25, 19:03](1944 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:10, 19:56](2137 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:55, 09:07](1256 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:15, 20:07](1870 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:45] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:47, 17:18](1972 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:33] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:18, 23:01](1941 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 13:39] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:15, 07:19](3362 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:26, 07:21](3333 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:42, 03:43](3260 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:15, 07:22](3374 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:41, 03:52](3292 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:12, 07:11](3619 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:13, 07:22](3319 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:08, 04:46](3225 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:23, 07:37](3321 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:26, 11:43](3522 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [17:50, 10:50](3637 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:09, 11:26](4300 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:31, 07:45](4398 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:25, 05:32](3301 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 13:04] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:57, 04:53](1989 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:02, 04:27](2039 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:30] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:07, 08:30](3409 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:18] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 06:19](2005 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:27] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:02, 04:32](2055 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 12:21] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:45, 09:35](3107 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:43, 02:43](3091 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:43, 01:34](2513 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 18:51] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:59, 07:39](3331 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:31] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:16, 18:45](2020 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:36, 09:31](1274 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:06, 21:02](1925 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:57] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:20, 25:18](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:12, 13:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:34, 03:24](706 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:07, 03:06](1599 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:22, 03:12](1618 MB) +PASS -- TEST 'control_latlon_intel' [06:57, 03:02](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:02, 03:09](1583 MB) +PASS -- TEST 'control_c48_intel' [08:57, 07:36](1758 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:38, 06:26](863 MB) +PASS -- TEST 'control_c192_intel' [13:37, 10:59](1746 MB) +PASS -- TEST 'control_c384_intel' [17:02, 12:15](2008 MB) +PASS -- TEST 'control_c384gdas_intel' [14:05, 08:38](1402 MB) +PASS -- TEST 'control_stochy_intel' [03:27, 01:40](653 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:58, 01:16](501 MB) +PASS -- TEST 'control_lndp_intel' [04:29, 01:36](662 MB) +PASS -- TEST 'control_iovr4_intel' [04:32, 02:33](658 MB) +PASS -- TEST 'control_iovr5_intel' [04:31, 02:31](657 MB) +PASS -- TEST 'control_p8_intel' [07:20, 03:17](1904 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:26, 03:13](1892 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:21, 03:09](1906 MB) +PASS -- TEST 'control_restart_p8_intel' [05:20, 03:00](1139 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:25, 03:16](1894 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:49, 03:37](1155 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:07, 03:39](1894 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:04, 03:21](1987 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:09, 06:02](1901 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:22, 05:07](1940 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:13, 03:46](1906 MB) +PASS -- TEST 'merra2_thompson_intel' [06:15, 04:10](1901 MB) +PASS -- TEST 'regional_control_intel' [08:58, 07:10](1106 MB) +PASS -- TEST 'regional_restart_intel' [04:57, 03:34](1098 MB) +PASS -- TEST 'regional_decomp_intel' [08:51, 08:03](1109 MB) +PASS -- TEST 'regional_2threads_intel' [08:50, 07:17](1104 MB) +PASS -- TEST 'regional_noquilt_intel' [09:36, 07:46](1397 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:14, 08:29](1108 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:49, 08:09](1104 MB) +PASS -- TEST 'regional_wofs_intel' [10:48, 09:28](1914 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 11:41] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:01, 08:43](1116 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:14, 05:56](1296 MB) +PASS -- TEST 'rap_decomp_intel' [10:57, 09:22](1037 MB) +PASS -- TEST 'rap_2threads_intel' [10:49, 09:07](1189 MB) +PASS -- TEST 'rap_restart_intel' [06:07, 04:29](1111 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:57, 09:27](1107 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:57, 09:48](1041 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:07, 07:06](1136 MB) +PASS -- TEST 'hrrr_control_intel' [06:04, 05:01](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:52, 05:16](1039 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:47, 05:28](1116 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:54, 02:47](1009 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:56, 08:42](1102 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:35, 10:30](1982 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:34, 09:38](2073 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:30] +PASS -- TEST 'control_csawmg_intel' [09:02, 06:44](1018 MB) +PASS -- TEST 'control_ras_intel' [05:32, 03:59](745 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:14] +PASS -- TEST 'control_csawmg_gnu' [10:40, 09:36](750 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:43] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:07, 13:36](1676 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:12, 16:22] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:17, 03:47](1899 MB) +PASS -- TEST 'regional_control_faster_intel' [08:04, 06:37](1098 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:03] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:57, 03:12](1625 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:57, 03:18](1623 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:23](839 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:28, 03:03](831 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:46, 04:47](1150 MB) +PASS -- TEST 'control_ras_debug_intel' [04:31, 03:19](843 MB) +PASS -- TEST 'control_diag_debug_intel' [05:00, 03:15](1688 MB) +PASS -- TEST 'control_debug_p8_intel' [04:45, 03:21](1915 MB) +PASS -- TEST 'regional_debug_intel' [19:43, 18:21](1111 MB) +PASS -- TEST 'rap_control_debug_intel' [06:27, 05:13](1221 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:50](1214 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:59](1227 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:56](1215 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:28, 04:58](1223 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:12, 05:29](1302 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:32, 05:11](1218 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:30, 05:11](1225 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:29, 05:02](1225 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 05:02](1226 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:27, 04:52](1213 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 06:09](1224 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 09:00](1219 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 05:30](1213 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 06:42](1227 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:25, 05:19](1222 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 09:47](1217 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:11, 06:03] +PASS -- TEST 'control_csawmg_debug_gnu' [05:48, 02:29](719 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:13, 05:17] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:52, 14:12](1683 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:14, 11:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:06, 04:59](1171 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 07:30](1052 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 04:30](991 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:33, 07:10](1091 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 04:20](969 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 04:45](924 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:51](1042 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 01:54](933 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 15:37] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:53, 03:15](1213 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:53](1123 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:15](1122 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 11:11] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:39, 05:19](984 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:05] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 06:03](1099 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 06:08](1104 MB) +PASS -- TEST 'conus13km_debug_intel' [17:48, 16:14](1241 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:45, 16:25](957 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:32](1182 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 14:47](1323 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:13, 04:33] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:03](1140 MB) + +PASS -- COMPILE 'hafsw_intel' [15:16, 14:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:25, 05:02](744 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 05:53](1118 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:28, 06:56](835 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:18, 13:32](872 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:37, 15:05](877 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:00, 05:28](502 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:40](521 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 02:42](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:16, 07:37](477 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:40](533 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:32](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:54, 04:05](599 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:14](406 MB) +PASS -- TEST 'gnv1_nested_intel' [06:30, 04:07](1759 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:13, 05:02] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:56, 13:13](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:18, 19:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:51](645 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:04, 08:58](745 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:16, 15:34] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:02, 06:33](734 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:12, 13:49] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:26](847 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:32](821 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:58, 16:13](1208 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:12] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:55](1147 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:41](1111 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:36](1024 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:40](1024 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:38](1046 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:22, 02:41](1149 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:43](1172 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:34](1027 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:28, 06:40](1074 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:17, 06:28](1056 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:41](1164 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:53](2466 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:56](2523 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 04:11] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:21](1100 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:48] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:38](1142 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 03:54] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:45](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:55](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:33](324 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:21] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:00, 03:48](1990 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:12, 13:12] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 03:41](1942 MB) + +PASS -- COMPILE 'atml_intel' [14:12, 13:49] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:25](1852 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:02, 04:28](1869 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:30](1104 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 07:05] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:00, 05:54](1892 MB) + +PASS -- COMPILE 'atmw_intel' [14:13, 13:41] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:58](1909 MB) + +PASS -- COMPILE 'atmaero_intel' [13:13, 12:38] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:03, 04:11](3214 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 05:00](3104 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:54](3116 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:41] ( 884 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [05:12, 04:48] +PASS -- TEST 'control_c48_gnu' [15:40, 11:09](1537 MB) +PASS -- TEST 'control_stochy_gnu' [05:22, 03:24](505 MB) +PASS -- TEST 'control_ras_gnu' [06:23, 04:46](507 MB) +PASS -- TEST 'control_p8_gnu' [05:55, 04:49](1458 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:50, 04:44](1459 MB) +PASS -- TEST 'control_flake_gnu' [11:25, 10:30](545 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:12, 04:26] +PASS -- TEST 'rap_control_gnu' [11:38, 10:52](852 MB) +PASS -- TEST 'rap_decomp_gnu' [11:38, 10:54](849 MB) +PASS -- TEST 'rap_2threads_gnu' [12:34, 09:52](929 MB) +PASS -- TEST 'rap_restart_gnu' [07:42, 05:26](577 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 10:44](818 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 10:57](814 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:45, 07:56](581 MB) +PASS -- TEST 'hrrr_control_gnu' [07:37, 05:38](811 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:35, 05:29](798 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:40, 05:02](919 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:36](847 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:31, 02:53](563 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:29, 02:50](657 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:42, 10:25](810 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:11, 08:40] +PASS -- TEST 'control_diag_debug_gnu' [03:49, 01:44](1276 MB) +PASS -- TEST 'regional_debug_gnu' [11:40, 10:11](734 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:42](822 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:37](821 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:27, 02:39](828 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:25, 02:42](827 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:46, 02:52](905 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:11](822 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:40](823 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:40](822 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:42](456 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:49](453 MB) +PASS -- TEST 'control_debug_p8_gnu' [04:40, 01:47](1438 MB) +PASS -- TEST 'rap_flake_debug_gnu' [05:26, 02:39](823 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [05:25, 02:54](824 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:38, 04:20](828 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:36] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 05:33] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:34, 09:19](708 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 04:56](707 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:28](756 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:30](745 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:33, 05:10](705 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:38, 06:52](553 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [06:27, 02:29](541 MB) +PASS -- TEST 'conus13km_control_gnu' [06:59, 03:11](876 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:45, 05:51](880 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:44, 01:48](554 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:11, 11:49] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:39, 05:51](726 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 08:41] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:25, 02:36](715 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:24, 02:35](715 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:50, 06:59](892 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:46, 06:59](577 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:43, 07:46](892 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:58](960 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 08:35] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:40](739 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 17:49] + +PASS -- COMPILE 's2s_gnu' [18:12, 17:10] +FAILED: TEST TIMED OUT -- TEST 'cpld_control_nowave_noaero_p8_gnu' [, ]( MB) PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:21] -PASS -- COMPILE 's2sw_pdlib_gnu' [16:12, 16:07] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:03, 19:20](1439 MB) +PASS -- COMPILE 's2sw_pdlib_gnu' [17:13, 16:04] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:58, 21:09](1447 MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:12] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:56, 13:05](1436 MB) +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:07] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:56, 12:44](1473 MB) -PASS -- COMPILE 'datm_cdeps_gnu' [16:14, 15:37] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:23, 03:06](681 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:24] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 02:54](690 MB) SYNOPSIS: -Starting Date/Time: 20240724 21:18:58 -Ending Date/Time: 20240724 23:09:38 -Total Time: 01h:51m:29s +Starting Date/Time: 20240726 18:33:36 +Ending Date/Time: 20240726 20:24:37 +Total Time: 01h:51m:18s Compiles Completed: 57/57 -Tests Completed: 244/245 +Tests Completed: 243/244 Failed Tests: -* TEST regional_atmaq_debug_intel: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3718900/regional_atmaq_debug_intel/err +* TEST cpld_control_nowave_noaero_p8_gnu: FAILED: TEST TIMED OUT +-- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1436054/cpld_control_nowave_noaero_p8_gnu/err NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -409,3 +408,54 @@ If you are using this log as a pull request verification, please commit 'test_ch Result: FAILURE ====END OF HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3626519 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2s_gnu' [17:12, 16:33] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:08, 07:18](1521 MB) + +SYNOPSIS: +Starting Date/Time: 20240729 06:07:25 +Ending Date/Time: 20240729 06:35:11 +Total Time: 00h:27m:56s +Compiles Completed: 1/1 +Tests Completed: 1/1 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF HERA REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 388c0dc873..a3d52df0cc 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: -17a524e83223725150b6c1bec3ac9e55ac6876a8 +d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,375 +36,375 @@ 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-20240724 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_859761 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1943568 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:51] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:59, 08:20](2131 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 21:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:01, 13:17](2000 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:18, 13:57](2324 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:16, 06:31](1314 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:45, 15:02](1921 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:10, 17:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:27, 13:03](1991 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:57] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:10, 20:32](1979 MB) - -PASS -- COMPILE 's2swa_intel' [12:10, 11:19] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:57, 07:41](2190 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:01, 07:47](2183 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:13, 04:20](1960 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:57, 07:51](2204 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:12, 05:19](1749 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:50, 09:08](2551 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:53, 08:19](2172 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:58, 07:20](2098 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:02, 08:30](2195 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:36, 14:53](2996 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:09, 06:53](2932 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:37, 10:48](3809 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:24, 06:41](3651 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:52, 05:54](2152 MB) - -PASS -- COMPILE 's2sw_intel' [13:10, 12:50] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:47, 07:22](2021 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:50, 04:34](2081 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:57] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:00, 07:10](2216 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:18] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:51, 04:49](2059 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:27] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:47, 04:08](2091 MB) - -PASS -- COMPILE 's2s_intel' [10:10, 09:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:34, 07:01](3107 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:37, 02:06](3076 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:35, 01:19](2518 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:10, 17:24] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:57, 08:15](2194 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 16:44] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:47, 14:21](2046 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:53, 07:22](1391 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:56, 16:21](1971 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:19] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:53, 23:05](2022 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:10, 09:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:19, 02:55](710 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:26](1611 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:36, 02:32](1612 MB) -PASS -- TEST 'control_latlon_intel' [03:27, 02:28](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:30](1614 MB) -PASS -- TEST 'control_c48_intel' [07:36, 07:00](1740 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:25, 05:49](845 MB) -PASS -- TEST 'control_c192_intel' [09:41, 09:04](1772 MB) -PASS -- TEST 'control_c384_intel' [11:22, 09:38](2044 MB) -PASS -- TEST 'control_c384gdas_intel' [09:43, 07:19](1527 MB) -PASS -- TEST 'control_stochy_intel' [02:24, 01:27](667 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:26, 00:54](549 MB) -PASS -- TEST 'control_lndp_intel' [02:24, 01:21](677 MB) -PASS -- TEST 'control_iovr4_intel' [02:26, 02:05](674 MB) -PASS -- TEST 'control_iovr5_intel' [03:19, 02:39](670 MB) -PASS -- TEST 'control_p8_intel' [04:48, 03:23](1913 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:57, 03:08](1912 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:49, 03:23](1900 MB) -PASS -- TEST 'control_restart_p8_intel' [04:46, 02:18](1156 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:40, 03:23](1901 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:43, 02:29](1201 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:43, 02:44](1885 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:35, 02:29](1997 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:28, 04:33](1907 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:46, 03:34](1974 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:46, 02:38](1908 MB) -PASS -- TEST 'merra2_thompson_intel' [03:52, 02:58](1916 MB) -PASS -- TEST 'regional_control_intel' [05:26, 04:44](1202 MB) -PASS -- TEST 'regional_restart_intel' [04:24, 03:10](1176 MB) -PASS -- TEST 'regional_decomp_intel' [05:26, 04:56](1187 MB) -PASS -- TEST 'regional_2threads_intel' [03:29, 03:07](1155 MB) -PASS -- TEST 'regional_noquilt_intel' [05:31, 04:30](1516 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:29, 04:39](1196 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 04:42](1201 MB) -PASS -- TEST 'regional_wofs_intel' [07:24, 05:43](2077 MB) - -PASS -- COMPILE 'rrfs_intel' [08:10, 07:50] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:49, 06:44](1199 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 03:46](1412 MB) -PASS -- TEST 'rap_decomp_intel' [07:43, 06:58](1130 MB) -PASS -- TEST 'rap_2threads_intel' [07:43, 06:13](1372 MB) -PASS -- TEST 'rap_restart_intel' [04:59, 03:31](1141 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:48, 06:41](1223 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:52, 07:01](1157 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 05:04](1186 MB) -PASS -- TEST 'hrrr_control_intel' [06:42, 03:28](1072 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:42, 03:33](1050 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:42, 03:16](1124 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:27, 01:54](1020 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:54, 06:34](1200 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 08:12](2013 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:21, 07:45](2180 MB) - -PASS -- COMPILE 'csawmg_intel' [08:10, 07:51] -PASS -- TEST 'control_csawmg_intel' [08:29, 06:04](1046 MB) -PASS -- TEST 'control_ras_intel' [05:17, 02:52](839 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 04:09] -PASS -- TEST 'control_csawmg_gnu' [08:38, 07:30](1071 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 07:06] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:33, 09:46](1681 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 14:49] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:45, 03:45](1905 MB) -PASS -- TEST 'regional_control_faster_intel' [07:25, 05:20](1203 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:18] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:28, 02:17](1648 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:31, 02:24](1635 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:38](840 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:21](840 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:23, 04:24](1160 MB) -PASS -- TEST 'control_ras_debug_intel' [03:17, 02:22](839 MB) -PASS -- TEST 'control_diag_debug_intel' [03:29, 02:28](1701 MB) -PASS -- TEST 'control_debug_p8_intel' [04:28, 03:13](1936 MB) -PASS -- TEST 'regional_debug_intel' [17:24, 15:50](1150 MB) -PASS -- TEST 'rap_control_debug_intel' [05:19, 04:33](1231 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:21, 04:14](1225 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 04:20](1239 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 04:29](1231 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 04:28](1229 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:25, 04:24](1319 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:16](1234 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:17, 04:25](1231 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:26](1243 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 04:13](1230 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:17, 04:04](1235 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 04:19](1227 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:46](1232 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:17, 04:12](1228 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 05:11](1227 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:18, 04:20](1226 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 07:31](1232 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:55] -PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 02:55](1055 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 03:18] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 07:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:16](1275 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:30, 06:19](1171 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:56, 02:53](1042 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:46, 06:05](1289 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:35, 02:39](1043 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:34, 02:59](1001 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:49, 04:49](1116 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 01:37](947 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:37, 01:45](1299 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:28, 00:44](1214 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:05](1151 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:33, 03:44](1084 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:18] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 04:35](1111 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 04:27](1116 MB) -PASS -- TEST 'conus13km_debug_intel' [12:31, 11:55](1353 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 12:14](1015 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:27, 07:17](1257 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:34, 12:14](1423 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:53] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:19, 04:20](1171 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 09:41] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:06, 05:21](861 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:24, 05:37](1278 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 07:05](943 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:04, 14:22](987 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:10, 15:18](1002 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:46, 06:05](603 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:17, 08:23](628 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:39, 03:17](444 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:53, 08:54](557 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:44, 04:22](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:37, 04:10](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:45, 04:57](671 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:31](460 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:51] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:42, 11:52](656 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:11, 14:42] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:50, 15:24](752 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 16:03](850 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 10:04] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:55, 09:42](919 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:10, 10:46] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:05, 05:43](947 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:03, 05:44](910 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:44, 16:27](1344 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:10] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:09](1138 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:18](1105 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:05](1025 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:08](1019 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 02:11](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:11](1167 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:13](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:14, 02:07](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:57, 04:56](1169 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:48, 04:53](1160 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:10](1148 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:16, 03:00](2462 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:04](2457 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 03:07] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 05:09](1080 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:41] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:11](1161 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:48] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:27, 00:51](340 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 00:46](559 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:32](561 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:10, 08:23] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:45, 03:40](2025 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 07:40] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:52, 03:09](1996 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 08:54] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:54, 05:51](1899 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:51, 05:47](1907 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:34, 03:04](1144 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 04:31] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:49, 05:47](1925 MB) - -PASS -- COMPILE 'atmw_intel' [10:10, 09:43] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:49, 01:39](1940 MB) - -PASS -- COMPILE 'atmaero_intel' [08:10, 07:34] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:46, 03:46](2034 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:45, 04:15](1815 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:37, 04:28](1821 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:21] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:24, 17:11](4607 MB) - -PASS -- COMPILE 'atm_gnu' [07:10, 05:32] -PASS -- TEST 'control_c48_gnu' [10:32, 09:26](1570 MB) -PASS -- TEST 'control_stochy_gnu' [03:19, 02:22](731 MB) -PASS -- TEST 'control_ras_gnu' [04:17, 03:52](733 MB) -PASS -- TEST 'control_p8_gnu' [04:43, 03:55](1734 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:36, 03:46](1758 MB) -PASS -- TEST 'control_flake_gnu' [05:19, 04:38](809 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:36] -PASS -- TEST 'rap_control_gnu' [09:31, 08:10](1101 MB) -PASS -- TEST 'rap_decomp_gnu' [09:30, 08:10](1086 MB) -PASS -- TEST 'rap_2threads_gnu' [08:49, 07:13](1124 MB) -PASS -- TEST 'rap_restart_gnu' [05:54, 04:17](888 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:45, 08:35](1085 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:31, 08:28](1082 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:43, 06:14](885 MB) -PASS -- TEST 'hrrr_control_gnu' [05:34, 04:13](1071 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:31, 04:12](1138 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:43, 03:46](1046 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:31, 04:13](1071 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:24, 02:17](879 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:17, 02:12](935 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:50, 08:08](1079 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 08:36] -PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:18](1625 MB) -PASS -- TEST 'regional_debug_gnu' [07:26, 07:03](1118 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:17, 02:05](1102 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 02:07](1092 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 02:05](1099 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:09](1100 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:23](1275 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 03:24](1100 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:16, 02:04](1101 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 02:04](1100 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:17, 01:13](730 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:17, 01:23](727 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:26, 01:28](1707 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:17, 02:09](1101 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:26](1108 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:47, 03:31](1102 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:10, 04:15] -PASS -- TEST 'control_wam_debug_gnu' [06:29, 05:25](1576 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:34] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:32, 07:26](962 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:44, 04:01](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:43, 06:52](995 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:36, 03:32](898 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 04:02](952 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:52, 05:47](860 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:19, 02:08](856 MB) -PASS -- TEST 'conus13km_control_gnu' [03:37, 02:37](1269 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:27, 01:11](1178 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:28, 01:27](933 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:10, 12:11] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:42](990 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 06:56] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 02:13](981 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 02:10](976 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:29, 06:03](1287 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 06:11](961 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:25, 03:43](1195 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:30, 05:47](1354 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:11, 09:53] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:18, 02:06](1005 MB) - -PASS -- COMPILE 's2swa_gnu' [19:11, 18:32] - -PASS -- COMPILE 's2s_gnu' [15:11, 14:42] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:00, 04:57](3081 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:55] - -PASS -- COMPILE 's2sw_pdlib_gnu' [21:10, 16:36] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:48, 25:54](3056 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [11:10, 06:18] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:44, 12:14](2914 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [18:10, 15:42] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:15, 02:17](768 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:19, 12:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:25, 09:11](2138 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 19:26] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:32, 14:02](2004 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:14, 14:31](2313 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:06, 07:20](1318 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:32, 14:57](1922 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:56, 13:08](1994 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:13] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:21, 21:11](1984 MB) + +PASS -- COMPILE 's2swa_intel' [13:18, 12:52] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:10, 08:59](2188 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:36, 09:10](2179 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:37, 04:38](1970 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:54, 08:46](2223 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:17, 04:34](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:15, 10:18](2544 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:58, 09:00](2180 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:25, 07:27](2093 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:31, 08:44](2195 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:44, 16:24](2967 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:35, 07:37](2932 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:08, 10:30](3807 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:49, 06:16](3648 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:30, 06:14](2162 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 12:28] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:05, 08:02](2018 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:17, 05:05](2086 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:28] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:39, 08:09](2218 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:56] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:54, 06:16](2066 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:11, 10:01] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:22, 05:38](2088 MB) + +PASS -- COMPILE 's2s_intel' [10:11, 10:02] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:55, 07:41](3106 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:21, 02:56](3089 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:13, 01:41](2512 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:35] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:58, 07:43](2183 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:55] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:11, 14:55](2037 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:34, 07:33](1405 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:29, 16:10](1973 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:12, 06:59] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:32, 22:42](2016 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:12, 10:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:50, 03:43](707 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:58, 02:30](1622 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:11, 02:57](1611 MB) +PASS -- TEST 'control_latlon_intel' [03:57, 02:42](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:07, 02:31](1608 MB) +PASS -- TEST 'control_c48_intel' [09:14, 07:00](1730 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:37, 05:55](859 MB) +PASS -- TEST 'control_c192_intel' [10:16, 09:05](1759 MB) +PASS -- TEST 'control_c384_intel' [12:20, 09:52](2036 MB) +PASS -- TEST 'control_c384gdas_intel' [14:21, 10:03](1521 MB) +PASS -- TEST 'control_stochy_intel' [02:23, 01:55](668 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:34, 01:27](539 MB) +PASS -- TEST 'control_lndp_intel' [02:21, 01:34](667 MB) +PASS -- TEST 'control_iovr4_intel' [03:27, 02:34](661 MB) +PASS -- TEST 'control_iovr5_intel' [05:31, 02:54](665 MB) +PASS -- TEST 'control_p8_intel' [06:05, 03:30](1917 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:38, 04:01](1918 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 03:23](1915 MB) +PASS -- TEST 'control_restart_p8_intel' [03:57, 02:20](1149 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:40, 03:24](1897 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:15, 02:05](1200 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:43, 03:34](1897 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:43, 03:02](1995 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:43, 05:27](1906 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:08, 04:20](1987 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:57, 03:43](1922 MB) +PASS -- TEST 'merra2_thompson_intel' [07:26, 03:53](1921 MB) +PASS -- TEST 'regional_control_intel' [06:57, 05:25](1202 MB) +PASS -- TEST 'regional_restart_intel' [04:46, 03:29](1177 MB) +PASS -- TEST 'regional_decomp_intel' [07:34, 05:34](1192 MB) +PASS -- TEST 'regional_2threads_intel' [03:41, 03:11](1155 MB) +PASS -- TEST 'regional_noquilt_intel' [07:34, 06:11](1525 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:43, 04:46](1201 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 04:41](1209 MB) +PASS -- TEST 'regional_wofs_intel' [08:26, 07:47](2093 MB) + +PASS -- COMPILE 'rrfs_intel' [14:15, 09:53] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:05, 06:54](1215 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:06, 03:42](1419 MB) +PASS -- TEST 'rap_decomp_intel' [07:42, 07:02](1166 MB) +PASS -- TEST 'rap_2threads_intel' [07:40, 06:13](1359 MB) +PASS -- TEST 'rap_restart_intel' [06:07, 04:20](1144 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:50, 06:37](1192 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:47, 07:01](1149 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:05, 04:58](1200 MB) +PASS -- TEST 'hrrr_control_intel' [05:21, 03:55](1076 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:51, 03:43](1045 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 03:45](1116 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:23, 02:05](1039 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:19, 07:03](1207 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:37, 07:40](2014 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:28, 07:38](2189 MB) + +PASS -- COMPILE 'csawmg_intel' [10:22, 09:17] +PASS -- TEST 'control_csawmg_intel' [08:35, 06:55](1053 MB) +PASS -- TEST 'control_ras_intel' [05:47, 03:06](846 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:14, 04:50] +PASS -- TEST 'control_csawmg_gnu' [10:30, 08:37](1070 MB) + +PASS -- COMPILE 'wam_intel' [07:16, 07:05] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:05, 10:28](1674 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:10, 13:39] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:20, 02:24](1903 MB) +PASS -- TEST 'regional_control_faster_intel' [06:36, 05:34](1201 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:55] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:20](1638 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:13, 02:15](1643 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:57, 03:01](842 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:41, 02:23](844 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:27, 04:05](1157 MB) +PASS -- TEST 'control_ras_debug_intel' [03:20, 02:23](853 MB) +PASS -- TEST 'control_diag_debug_intel' [04:35, 03:13](1712 MB) +PASS -- TEST 'control_debug_p8_intel' [03:39, 03:07](1931 MB) +PASS -- TEST 'regional_debug_intel' [17:28, 16:27](1162 MB) +PASS -- TEST 'rap_control_debug_intel' [04:23, 04:05](1236 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:13](1218 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:38, 04:09](1231 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:21, 04:16](1228 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:27, 04:13](1224 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:51, 04:24](1319 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 04:15](1223 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 04:15](1231 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:30, 04:20](1229 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:35, 04:17](1235 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:27, 04:31](1227 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 05:07](1225 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:38, 06:47](1222 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:13](1228 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:33](1231 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:28, 04:24](1225 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:00, 07:35](1228 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 04:24] +PASS -- TEST 'control_csawmg_debug_gnu' [04:00, 03:03](1053 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 03:06] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:15, 07:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:02, 03:44](1266 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:50, 07:16](1178 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:33](1058 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:21, 06:06](1291 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:26, 02:55](1044 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:40, 04:33](1003 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:00, 05:39](1149 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:25, 01:57](972 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:12, 12:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:10, 01:51](1316 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:06, 01:13](1217 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:43](1166 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:12, 07:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:53, 03:41](1089 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:03] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:45, 04:10](1109 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:38, 03:58](1119 MB) +PASS -- TEST 'conus13km_debug_intel' [16:56, 13:25](1349 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 13:36](1002 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:35, 08:49](1254 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 12:44](1417 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:12, 06:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:46, 04:44](1171 MB) + +PASS -- COMPILE 'hafsw_intel' [13:14, 12:21] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:25, 05:28](872 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:37, 05:14](1284 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:37, 06:34](957 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:17, 14:11](974 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:32, 15:31](988 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:23, 05:35](613 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:57, 08:00](628 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:21, 03:34](439 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:53, 07:38](546 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:59, 03:58](623 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:06, 03:39](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:59, 04:50](684 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:08](458 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 06:27] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:19, 13:51](655 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:12, 15:22] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:09, 16:45](733 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:18, 16:24](812 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:18, 09:56] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:22, 09:35](828 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:14, 09:50] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [17:31, 05:48](949 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:12, 05:47](912 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:04, 16:30](1335 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:04] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [11:26, 02:23](1146 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:24, 01:33](1118 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [11:19, 02:16](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [12:20, 03:07](1021 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:18, 03:04](1023 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:20, 02:33](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:19, 02:21](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [10:18, 03:16](1025 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:45, 05:50](1167 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:41, 05:01](1154 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:14, 03:06](1129 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:27, 03:18](2458 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [09:31, 04:21](2390 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:13, 04:06] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:17, 06:05](1083 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:04] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:21, 03:01](1148 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:47, 01:01](331 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:28, 01:54](576 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:32, 00:32](562 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:12, 08:05] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:31, 03:51](2028 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:12, 08:05] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:27, 04:09](1998 MB) + +PASS -- COMPILE 'atml_intel' [09:12, 08:56] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:50, 05:42](1913 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:23, 05:54](1900 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 03:22](1156 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:12, 04:13] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:13, 05:57](1939 MB) + +PASS -- COMPILE 'atmw_intel' [10:25, 09:29] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:02, 01:41](1963 MB) + +PASS -- COMPILE 'atmaero_intel' [08:11, 07:44] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:06, 04:23](2020 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:00, 04:48](1811 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:03, 04:52](1831 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:59] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:08, 16:44](4556 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 04:45] +PASS -- TEST 'control_c48_gnu' [10:48, 09:21](1572 MB) +PASS -- TEST 'control_stochy_gnu' [04:39, 02:50](732 MB) +PASS -- TEST 'control_ras_gnu' [05:21, 04:24](734 MB) +PASS -- TEST 'control_p8_gnu' [07:03, 05:38](1715 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:56, 04:56](1730 MB) +PASS -- TEST 'control_flake_gnu' [06:45, 05:17](807 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:14, 04:42] +PASS -- TEST 'rap_control_gnu' [10:39, 09:12](1087 MB) +PASS -- TEST 'rap_decomp_gnu' [10:35, 09:02](1083 MB) +PASS -- TEST 'rap_2threads_gnu' [10:00, 07:27](1153 MB) +PASS -- TEST 'rap_restart_gnu' [06:00, 04:34](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:02, 08:11](1093 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:46, 08:22](1087 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:02, 06:00](883 MB) +PASS -- TEST 'hrrr_control_gnu' [06:22, 04:18](1073 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:01, 05:36](1134 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:56, 03:57](1041 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:41, 05:36](1069 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 02:39](879 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:33, 02:06](936 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [10:29, 08:36](1083 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:21] +PASS -- TEST 'control_diag_debug_gnu' [03:03, 01:39](1629 MB) +PASS -- TEST 'regional_debug_gnu' [08:37, 07:45](1126 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:24, 02:56](1105 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:27, 02:40](1097 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:25, 02:24](1099 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:32, 02:05](1100 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:39, 02:55](1278 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 03:39](1102 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:38](1102 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:28, 02:45](1096 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:56](729 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:22, 01:46](727 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:42, 02:29](1727 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:20, 03:11](1104 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:25, 03:16](1105 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:11, 04:12](1108 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 03:43] +PASS -- TEST 'control_wam_debug_gnu' [06:52, 05:14](1587 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:56] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:36, 08:06](963 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:49, 04:03](952 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:05, 06:54](997 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:07, 03:39](895 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:39, 04:09](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:42, 05:58](861 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:48, 02:07](856 MB) +PASS -- TEST 'conus13km_control_gnu' [05:04, 03:33](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:55, 01:48](1175 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:56, 01:39](925 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:16, 13:18] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:52, 04:54](990 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:16, 10:45] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:26, 02:26](981 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:34, 03:04](974 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:48, 07:20](1291 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:50, 07:37](964 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:34, 04:13](1203 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:32, 05:49](1355 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:23, 11:17] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:21](1006 MB) + +PASS -- COMPILE 's2swa_gnu' [20:12, 19:27] + +PASS -- COMPILE 's2s_gnu' [18:14, 17:30] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:50, 06:08](2739 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [11:13, 10:20] + +PASS -- COMPILE 's2sw_pdlib_gnu' [19:13, 18:56] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:13, 26:50](3038 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:12, 09:51] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:09, 12:48](3045 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [19:13, 18:13] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:20, 02:21](769 MB) SYNOPSIS: -Starting Date/Time: 20240725 12:51:06 -Ending Date/Time: 20240725 14:24:28 -Total Time: 01h:33m:55s +Starting Date/Time: 20240726 15:31:11 +Ending Date/Time: 20240726 17:19:53 +Total Time: 01h:52m:57s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index fe95ec28af..ce6f0fc6da 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -45bcf84d30cfb2cc46913130f6e8615814b3c9e8 +ba4c3ee47280b777133ba3f3e60f271d70738c34 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,255 +36,333 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_647373 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3152011 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [35:15, 34:16] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:59, 07:39](2009 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:16, 47:55] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:02, 21:39](1884 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:47, 23:31](2018 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:19, 11:41](1117 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:33, 24:48](1859 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:16, 48:53] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:47, 21:22](1885 MB) - -PASS -- COMPILE 's2swa_intel' [34:15, 33:31] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:30, 07:58](2054 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:51, 08:02](2053 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:41, 04:51](1719 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:27, 08:05](2063 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:55, 04:56](1736 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:25, 08:26](2317 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:21, 08:10](2057 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:46, 07:38](2004 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:50, 07:53](2056 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [19:35, 07:35](2012 MB) - -PASS -- COMPILE 's2sw_intel' [39:16, 38:54] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:24, 06:21](1869 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:40, 06:31](1947 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:14, 05:44] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:39, 11:05](2078 MB) - -PASS -- COMPILE 's2sw_debug_intel' [17:15, 05:30] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:24, 07:41](1938 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [42:17, 34:50] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:55, 06:35](1975 MB) - -PASS -- COMPILE 's2s_intel' [35:18, 34:51] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:08, 12:28](3072 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:06, 04:02](3059 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:01, 02:25](2483 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:27, 34:16] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:09, 07:37](2053 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:18, 46:56] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:36, 23:21](1923 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:49, 11:19](1138 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:35, 24:53](1887 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:32] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:52, 32:50](1944 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:16, 37:45] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [05:36, 04:31](652 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:13, 03:58](1548 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:18, 04:09](1558 MB) -PASS -- TEST 'control_latlon_intel' [05:08, 03:56](1545 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:17, 04:04](1544 MB) -PASS -- TEST 'control_c48_intel' [13:33, 11:45](1736 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:52, 10:12](852 MB) -PASS -- TEST 'control_c192_intel' [17:03, 14:39](1682 MB) -PASS -- TEST 'control_c384_intel' [22:29, 19:56](1819 MB) -PASS -- TEST 'control_c384gdas_intel' [20:46, 13:25](1024 MB) -PASS -- TEST 'control_stochy_intel' [03:31, 02:15](605 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:19](440 MB) -PASS -- TEST 'control_lndp_intel' [03:32, 02:09](606 MB) -PASS -- TEST 'control_iovr4_intel' [04:36, 03:23](606 MB) -PASS -- TEST 'control_iovr5_intel' [04:35, 03:18](601 MB) -PASS -- TEST 'control_p8_intel' [06:34, 04:41](1838 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:45, 04:38](1848 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:53, 04:28](1844 MB) -PASS -- TEST 'control_restart_p8_intel' [04:01, 02:52](1057 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:37, 04:31](1843 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:03, 02:49](1074 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:38, 04:38](1830 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:38, 04:24](1945 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:16, 07:37](1853 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:01, 05:48](1907 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:49, 04:36](1852 MB) -PASS -- TEST 'merra2_thompson_intel' [07:08, 05:02](1849 MB) -PASS -- TEST 'regional_control_intel' [09:05, 07:45](1010 MB) -PASS -- TEST 'regional_restart_intel' [05:40, 04:48](1013 MB) -PASS -- TEST 'regional_decomp_intel' [10:05, 08:18](1013 MB) -PASS -- TEST 'regional_2threads_intel' [07:07, 05:10](1012 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:14, 07:49](1021 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:49, 07:54](1016 MB) - -PASS -- COMPILE 'rrfs_intel' [36:16, 35:31] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [12:07, 10:11](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:29, 05:41](1217 MB) -PASS -- TEST 'rap_decomp_intel' [12:11, 10:38](986 MB) -PASS -- TEST 'rap_2threads_intel' [11:35, 09:44](1083 MB) -PASS -- TEST 'rap_restart_intel' [07:18, 05:21](991 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:34, 10:08](997 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:10, 10:44](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:17, 07:39](995 MB) -PASS -- TEST 'hrrr_control_intel' [07:23, 05:15](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:26, 05:23](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:38, 04:50](1059 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:52](917 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:40, 09:58](985 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:41, 12:28](1943 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:42, 12:15](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [33:16, 32:26] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:49, 08:51](959 MB) -PASS -- TEST 'control_ras_intel' [06:36, 05:12](665 MB) - -PASS -- COMPILE 'wam_intel' [33:16, 32:25] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [16:05, 14:22](1631 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [54:20, 53:18] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:33, 04:30](1829 MB) -PASS -- TEST 'regional_control_faster_intel' [08:48, 07:41](1007 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 08:32] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:54, 03:22](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:59, 03:20](1576 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:31, 03:52](773 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 03:29](777 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:50, 05:48](1093 MB) -PASS -- TEST 'control_ras_debug_intel' [04:31, 03:30](785 MB) -PASS -- TEST 'control_diag_debug_intel' [04:57, 03:31](1635 MB) -PASS -- TEST 'control_debug_p8_intel' [06:05, 04:13](1870 MB) -PASS -- TEST 'regional_debug_intel' [23:57, 23:01](1049 MB) -PASS -- TEST 'rap_control_debug_intel' [07:33, 06:12](1160 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:35, 06:08](1159 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 06:12](1161 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 06:13](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:11](1161 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:40, 06:31](1244 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:30, 06:17](1163 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:27, 06:16](1168 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:32, 06:23](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:10](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:23, 06:03](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 06:10](1165 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 10:06](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 06:06](1155 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 07:30](1160 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:15](1158 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:27, 10:44](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:12, 04:31] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:04, 16:55](1651 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:14, 30:36] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:35, 05:49](1076 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:11, 08:53](902 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:26, 04:37](872 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:45, 08:26](952 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [15:20, 04:26](907 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:00, 04:54](860 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:25, 06:21](904 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 02:27](847 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:15, 48:56] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:10, 02:57](1110 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:01, 01:30](1046 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:53, 02:03](1022 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:14, 31:14] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:56, 05:46](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:48] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 06:06](1045 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:33, 06:08](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [24:03, 18:42](1155 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:03, 18:54](865 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:56, 10:47](1100 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:57, 18:40](1219 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:12, 04:46] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:36, 06:19](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [41:18, 38:51] ( 1 warnings 1427 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:24, 07:09](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:47](1091 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:34, 09:33](771 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:28, 16:30](805 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:45, 18:23](814 MB) -PASS -- TEST 'gnv1_nested_intel' [11:46, 07:14](1676 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:20, 34:13] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:54, 08:58](769 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:59, 09:03](755 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:12, 08:29] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 03:37](1063 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 02:13](1020 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:43](929 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:42](921 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:46](929 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:44](1079 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 03:39](1050 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 03:45](926 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:30, 08:11](889 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:29, 08:18](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:42](1070 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:26, 05:12](2418 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:25, 05:25](2406 MB) +PASS -- COMPILE 's2swa_32bit_intel' [41:14, 40:29] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [51:03, 49:32](2004 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:15, 47:50] ( 1 warnings 1427 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intel' [, ]( MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:00, 24:30](1853 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:15, 49:38] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [09:28, 21:24](1881 MB) + +PASS -- COMPILE 's2swa_intel' [41:14, 40:50] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:23, 07:57](2060 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [50:34, 49:38](2050 MB) +PASS -- TEST 'cpld_restart_p8_intel' [51:29, 05:09](1720 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:19, 08:00](2080 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_qr_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:23, 07:43](2322 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:16, 08:11](2050 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [51:40, 51:05](1974 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [50:25, 48:31](2048 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:33, 07:49](2039 MB) + +PASS -- COMPILE 's2sw_intel' [39:14, 38:40] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 06:45](1905 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [51:57, 50:41](1953 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:47] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:40, 11:04](2081 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:46] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [50:49, 50:01](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:13, 34:21] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:43, 06:20](1947 MB) + +PASS -- COMPILE 's2s_intel' [35:13, 34:51] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:10, 12:43](3062 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:09, 03:54](3053 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:03, 02:32](2466 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:16, 12:08] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:04, 07:40](2050 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 48:28] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:42, 21:46](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:50, 11:24](1127 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:16, 24:56](1878 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:13] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:32, 32:58](1938 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:13, 37:27] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [05:36, 04:30](646 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 04:02](1553 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:20, 04:09](1552 MB) +PASS -- TEST 'control_latlon_intel' [05:11, 03:57](1552 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 04:04](1558 MB) +PASS -- TEST 'control_c48_intel' [13:28, 11:47](1733 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:49, 10:17](857 MB) +PASS -- TEST 'control_c192_intel' [16:32, 14:25](1690 MB) +PASS -- TEST 'control_c384_intel' [20:30, 17:50](1821 MB) +PASS -- TEST 'control_c384gdas_intel' [45:04, 43:04](1024 MB) +PASS -- TEST 'control_stochy_intel' [03:33, 02:17](605 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:20](435 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 02:13](605 MB) +PASS -- TEST 'control_iovr4_intel' [04:35, 03:25](603 MB) +PASS -- TEST 'control_iovr5_intel' [04:36, 03:25](601 MB) +PASS -- TEST 'control_p8_intel' [06:36, 04:43](1842 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:48, 04:41](1828 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 04:31](1849 MB) +PASS -- TEST 'control_restart_p8_intel' [04:08, 02:49](1063 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:38, 04:31](1838 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [55:41, 55:04](1078 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:38, 04:47](1830 MB) +PASS -- TEST 'control_2threads_p8_intel' [53:52, 53:09](1932 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:18, 07:46](1844 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:59, 05:49](1917 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:52, 04:41](1848 MB) +PASS -- TEST 'merra2_thompson_intel' [53:32, 51:46](1855 MB) +PASS -- TEST 'regional_control_intel' [09:08, 07:54](1015 MB) +PASS -- TEST 'regional_restart_intel' [05:45, 04:22](1014 MB) +PASS -- TEST 'regional_decomp_intel' [10:08, 08:24](1018 MB) +PASS -- TEST 'regional_2threads_intel' [07:08, 06:08](1005 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [50:33, 50:24](1022 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [50:31, 49:36](1012 MB) + +PASS -- COMPILE 'rrfs_intel' [35:13, 35:09] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [12:06, 10:10](993 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:31, 05:46](1223 MB) +PASS -- TEST 'rap_decomp_intel' [12:04, 10:42](988 MB) +PASS -- TEST 'rap_2threads_intel' [11:33, 09:44](1087 MB) +PASS -- TEST 'rap_restart_intel' [07:29, 05:18](991 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:34, 10:05](994 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:06, 10:47](985 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:25, 07:34](1002 MB) +PASS -- TEST 'hrrr_control_intel' [53:20, 52:08](993 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [53:14, 52:06](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [53:47, 52:45](1066 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:31, 02:49](915 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:40, 10:01](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [46:01, 45:28](1943 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:37, 12:11](1938 MB) + +PASS -- COMPILE 'csawmg_intel' [32:13, 32:09] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:49, 08:53](960 MB) +PASS -- TEST 'control_ras_intel' [05:30, 04:30](664 MB) + +PASS -- COMPILE 'wam_intel' [33:14, 32:27] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [16:01, 14:27](1623 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [53:18, 52:54] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:36, 04:12](1842 MB) +PASS -- TEST 'regional_control_faster_intel' [08:48, 07:21](1017 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:12, 07:17] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:53, 03:24](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:58, 03:20](1570 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:30, 03:53](774 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:31, 03:29](774 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:50, 05:59](1094 MB) +PASS -- TEST 'control_ras_debug_intel' [04:30, 03:32](785 MB) +PASS -- TEST 'control_diag_debug_intel' [04:54, 03:28](1634 MB) +PASS -- TEST 'control_debug_p8_intel' [06:01, 04:09](1868 MB) +PASS -- TEST 'regional_debug_intel' [24:00, 22:52](1039 MB) +PASS -- TEST 'rap_control_debug_intel' [07:32, 06:15](1161 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:34, 06:09](1153 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 06:09](1164 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 06:12](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 06:14](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:45, 06:42](1236 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 06:18](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 06:24](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:24, 06:14](1166 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:13](1158 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:27, 06:04](1163 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 06:11](1164 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 10:08](1163 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 06:11](1156 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 07:31](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:28, 06:11](1159 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:31, 10:42](1177 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:35] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:00, 16:53](1651 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:16, 30:08] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 05:17](1078 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:01, 08:23](904 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:04, 04:24](875 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:19, 07:58](937 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:39, 04:05](908 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:03, 04:42](865 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:21, 06:26](908 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 02:27](850 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [39:15, 38:32] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:04, 02:58](1104 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:54, 01:24](1048 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:52, 01:38](1023 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:12, 30:52] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:55, 05:31](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:37] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:32, 06:13](1042 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 06:02](1047 MB) +PASS -- TEST 'conus13km_debug_intel' [20:03, 18:39](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:03, 18:55](866 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:55, 10:45](1105 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:57, 18:40](1221 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:31] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 06:16](1083 MB) + +PASS -- COMPILE 'hafsw_intel' [39:14, 38:25] ( 1 warnings 1427 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:29, 07:08](711 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:39, 07:12](1081 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:51, 09:38](769 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:33, 16:27](796 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:53, 18:21](801 MB) +PASS -- TEST 'gnv1_nested_intel' [10:48, 07:24](1680 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:14, 33:24] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:24, 08:51](772 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:25, 08:52](763 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:33] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 03:40](1056 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:12](1044 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:36](938 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 03:38](922 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:38](931 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 03:36](1067 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:38](1067 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 03:36](934 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:23, 08:11](883 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:25, 08:19](840 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1070 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:34, 05:59](2408 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:33, 05:11](2397 MB) PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:31] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:28, 08:07](1016 MB) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:01](1024 MB) -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:14, 08:23] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 03:42](1068 MB) +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:25] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 03:49](1060 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:56] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:41, 01:45](232 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:34, 01:27](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:30, 00:51](255 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:52] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 02:30](235 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 01:54](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:54](253 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:18, 34:27] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:27, 05:15](1912 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:13, 33:52] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:26, 05:24](1909 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:16, 33:22] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:47, 05:21](1885 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [33:13, 33:09] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:45, 05:16](1899 MB) -PASS -- COMPILE 'atml_intel' [38:18, 37:44] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:46, 10:02](1863 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [17:48, 08:47](1844 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:57, 05:34](1075 MB) +PASS -- COMPILE 'atml_intel' [42:17, 41:35] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:50, 08:36](1861 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:50, 08:35](1859 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:53, 05:00](1072 MB) -PASS -- COMPILE 'atml_debug_intel' [07:13, 06:34] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:46, 08:06](1887 MB) +PASS -- COMPILE 'atml_debug_intel' [06:10, 06:01] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:38, 08:06](1888 MB) -PASS -- COMPILE 'atmw_intel' [35:17, 34:19] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:32, 02:59](1857 MB) +PASS -- COMPILE 'atmw_intel' [34:14, 33:28] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:25, 02:54](1868 MB) -PASS -- COMPILE 'atmaero_intel' [34:16, 33:27] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:27, 06:34](1942 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:22, 06:48](1720 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:12, 06:52](1745 MB) +PASS -- COMPILE 'atmaero_intel' [34:14, 33:27] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:30, 05:49](1944 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:26, 06:27](1722 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:11, 06:31](1741 MB) SYNOPSIS: -Starting Date/Time: 20240724 20:55:35 -Ending Date/Time: 20240725 00:58:45 -Total Time: 04h:03m:47s +Starting Date/Time: 20240729 06:22:57 +Ending Date/Time: 20240729 15:24:17 +Total Time: 09h:01m:51s Compiles Completed: 36/36 -Tests Completed: 164/164 +Tests Completed: 160/164 +Failed Tests: +* TEST cpld_control_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_control_gfsv17_intel.log +* TEST cpld_control_gfsv17_iau_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_control_gfsv17_iau_intel.log +* TEST cpld_restart_gfsv17_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_gfsv17_intel.log +* TEST cpld_restart_qr_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_qr_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +9fc184af0952396d9793dade5f7d4b699b781120 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2040239 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:06, 49:05] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:30, 21:46](1879 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:26, 22:34](2009 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 11:21](1090 MB) + +PASS -- COMPILE 's2swa_intel' [40:45, 40:44] ( 1381 remarks ) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:43, 08:16](2067 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 05:53](1724 MB) + +SYNOPSIS: +Starting Date/Time: 20240729 15:56:33 +Ending Date/Time: 20240729 17:53:36 +Total Time: 01h:57m:17s +Compiles Completed: 2/2 +Tests Completed: 5/5 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 3660c9ea7e..770122e795 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: -17a524e83223725150b6c1bec3ac9e55ac6876a8 +d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,351 +36,286 @@ 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-20240724 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_566496 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3184996 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:39] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:49, 14:22](2079 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 23:01] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:51, 18:01](1956 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:12, 18:59](2129 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 08:59](1218 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:48, 20:19](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 23:57] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:46, 17:46](1952 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 08:00] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:59, 27:16](1941 MB) - -PASS -- COMPILE 's2swa_intel' [17:11, 16:43] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:34, 14:37](2137 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:40, 14:22](2132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:39, 07:57](1813 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:40, 14:17](2168 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:33, 08:01](1713 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:31, 13:16](2426 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:34, 14:16](2137 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:34, 12:28](2051 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_ciceC_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [22:31, 16:16](2720 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:06, 08:41](2730 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:39, 12:20](3655 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:17, 07:06](3502 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:25, 05:48](2114 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 16:02] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:13, 13:54](1976 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:40](2048 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 07:44] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:27, 08:55](2168 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:14] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:06, 06:11](2011 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:32] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:27, 04:36](2050 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 13:29] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:58, 09:46](3107 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:59, 03:11](3069 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:01, 02:07](2517 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:11, 26:03] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:32, 14:44](2149 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:14] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 18:11](1997 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:19, 08:59](1260 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:10, 20:24](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 07:07] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:09, 28:49](1982 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:26, 03:38](690 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:40, 03:04](1588 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:51, 03:09](1602 MB) -PASS -- TEST 'control_latlon_intel' [03:37, 03:04](1585 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:46, 03:07](1593 MB) -PASS -- TEST 'control_c48_intel' [10:47, 09:10](1741 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:55](859 MB) -PASS -- TEST 'control_c192_intel' [11:52, 11:09](1737 MB) -PASS -- TEST 'control_c384_intel' [14:43, 12:11](2012 MB) -PASS -- TEST 'control_c384gdas_intel' [12:31, 09:24](1357 MB) -PASS -- TEST 'control_stochy_intel' [02:34, 01:47](643 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:00, 01:03](480 MB) -PASS -- TEST 'control_lndp_intel' [02:27, 01:44](646 MB) -PASS -- TEST 'control_iovr4_intel' [03:23, 02:43](641 MB) -PASS -- TEST 'control_iovr5_intel' [03:27, 02:40](641 MB) -PASS -- TEST 'control_p8_intel' [05:14, 03:31](1891 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:11, 03:33](1890 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 03:21](1883 MB) -PASS -- TEST 'control_restart_p8_intel' [03:18, 02:02](1098 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:32, 03:19](1874 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:24, 01:54](1125 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:06, 03:25](1876 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:02, 03:42](1945 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:39, 05:49](1886 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:24, 04:51](1952 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:18, 03:30](1887 MB) -PASS -- TEST 'merra2_thompson_intel' [06:32, 03:46](1895 MB) -PASS -- TEST 'regional_control_intel' [07:37, 06:15](1083 MB) -PASS -- TEST 'regional_restart_intel' [04:39, 03:27](1083 MB) -PASS -- TEST 'regional_decomp_intel' [07:32, 06:38](1087 MB) -PASS -- TEST 'regional_2threads_intel' [05:47, 04:35](1071 MB) -PASS -- TEST 'regional_noquilt_intel' [07:52, 06:15](1383 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 06:11](1085 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:39, 06:22](1093 MB) -PASS -- TEST 'regional_wofs_intel' [08:38, 07:31](1905 MB) - -PASS -- COMPILE 'rrfs_intel' [13:10, 12:42] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:21, 08:13](1062 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:51, 05:11](1309 MB) -PASS -- TEST 'rap_decomp_intel' [10:23, 08:28](1028 MB) -PASS -- TEST 'rap_2threads_intel' [10:28, 08:14](1163 MB) -PASS -- TEST 'rap_restart_intel' [06:38, 04:17](1049 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:15, 08:11](1056 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:01, 08:28](1028 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:51, 06:09](1075 MB) -PASS -- TEST 'hrrr_control_intel' [06:08, 04:15](1031 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:00, 04:19](1025 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:14, 04:05](1099 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:54, 02:20](951 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:30, 08:04](1044 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:39](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:23](2022 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:40] -PASS -- TEST 'control_csawmg_intel' [07:35, 06:27](1022 MB) -PASS -- TEST 'control_ras_intel' [04:26, 03:30](717 MB) - -PASS -- COMPILE 'wam_intel' [12:10, 11:20] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:42, 12:14](1664 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:42] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:17, 03:14](1896 MB) -PASS -- TEST 'regional_control_faster_intel' [06:37, 06:02](1087 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 08:06] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:45, 02:44](1622 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:48, 02:39](1624 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:26, 03:06](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:46](822 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:39, 04:23](1131 MB) -PASS -- TEST 'control_ras_debug_intel' [03:26, 02:52](826 MB) -PASS -- TEST 'control_diag_debug_intel' [06:45, 02:46](1674 MB) -PASS -- TEST 'control_debug_p8_intel' [06:45, 03:26](1919 MB) -PASS -- TEST 'regional_debug_intel' [18:41, 17:47](1103 MB) -PASS -- TEST 'rap_control_debug_intel' [05:27, 04:55](1203 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:28, 04:53](1208 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:28, 04:56](1206 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:53](1207 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:27, 04:53](1209 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:36, 05:10](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1211 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:55](1205 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:52](1209 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:59](1213 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:20, 04:51](1206 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 05:05](1205 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:27, 07:50](1204 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 04:47](1199 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 06:06](1213 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:54](1205 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:33, 08:22](1211 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 05:07] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:45, 13:25](1688 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 04:51](1168 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:01, 06:59](1002 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:14, 03:42](933 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 07:07](1080 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:08, 03:37](951 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:05, 03:52](901 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:28, 05:13](975 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:07, 02:00](880 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 17:53] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:57, 02:36](1181 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:11](1128 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:43, 01:28](1077 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:27](975 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 05:26] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1091 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:32, 04:47](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [14:55, 14:05](1239 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:48, 14:26](944 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:22](1172 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 14:13](1310 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:17] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 04:58](1136 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 13:31] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:18, 05:56](762 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:32, 06:18](1139 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:33, 07:25](831 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:13, 24:39](871 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:34, 28:44](892 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:05, 06:57](516 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 08:18](527 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:56, 03:24](381 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:25, 09:25](487 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 04:39](542 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:53, 04:24](537 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 05:38](597 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:34](407 MB) -PASS -- TEST 'gnv1_nested_intel' [07:16, 04:14](1730 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:47] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:07, 13:20](594 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:11, 22:52] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:20, 13:05](657 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:09, 12:41](736 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:33] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:20, 08:53](717 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 13:06] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:16, 07:18](830 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 07:21](813 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:19](1197 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:12, 10:25] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:22, 02:55](1141 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:55](1110 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:49](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:52](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:53](1008 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 03:00](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:58](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:50](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:08, 06:29](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:11, 06:25](1007 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:56](1151 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:23, 04:20](2386 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 04:16](2399 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:32] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:27](1086 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:31] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:56](1152 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:25] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 01:02](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:56](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:35](322 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 12:13] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:11, 04:06](1980 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 11:53] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:10, 04:01](1960 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 13:19] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:31, 04:49](1872 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:35, 04:47](1872 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:58, 02:45](1089 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 06:09] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:39, 05:51](1912 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 11:58] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:19, 02:05](1918 MB) - -PASS -- COMPILE 'atmaero_intel' [12:10, 11:57] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:11, 04:29](1997 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:23, 05:15](1775 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:19, 05:18](1784 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:11, 16:02] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:45, 14:29](2084 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:43, 18:03](1962 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:15, 19:01](2143 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:49](1217 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:48, 20:24](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:42] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:42, 17:42](1958 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:24] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:35, 26:49](1940 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 16:01] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:44, 14:19](2148 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:45, 14:19](2150 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:43, 07:45](1817 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:44, 14:18](2161 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:43, 07:50](1714 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:38, 13:11](2440 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:38, 14:06](2137 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:40, 12:00](2044 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:45, 14:30](2139 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:34, 16:15](2714 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:33, 08:40](2731 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:06, 11:23](3655 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:04, 06:57](3502 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:32, 05:50](2117 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 15:13] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:24, 13:37](1979 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:34, 04:45](2049 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:22] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:12, 08:34](2168 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:40] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:09, 06:06](2011 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:13, 04:42](2040 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 12:52] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:57, 10:02](3108 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:34](3082 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:51, 02:04](2513 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:11, 24:52] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:37, 14:51](2143 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:35] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:12, 18:07](1997 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:21, 08:58](1259 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:15, 20:19](1913 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 07:08] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:08, 29:01](1982 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:28, 03:37](688 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:39, 03:03](1590 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:50, 03:09](1588 MB) +PASS -- TEST 'control_latlon_intel' [03:40, 03:04](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:49, 03:06](1587 MB) +PASS -- TEST 'control_c48_intel' [10:46, 09:11](1740 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:54](860 MB) +PASS -- TEST 'control_c192_intel' [12:00, 11:06](1732 MB) +PASS -- TEST 'control_c384_intel' [13:47, 12:10](2008 MB) +PASS -- TEST 'control_c384gdas_intel' [12:23, 09:20](1359 MB) +PASS -- TEST 'control_stochy_intel' [02:24, 01:47](644 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:57, 01:04](483 MB) +PASS -- TEST 'control_lndp_intel' [02:24, 01:41](652 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:39](644 MB) +PASS -- TEST 'control_iovr5_intel' [03:25, 02:39](642 MB) +PASS -- TEST 'control_p8_intel' [05:12, 03:25](1880 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:12, 03:24](1890 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:24, 03:14](1888 MB) +PASS -- TEST 'control_restart_p8_intel' [03:08, 01:57](1100 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:17, 03:19](1874 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 01:55](1137 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:17, 03:26](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:16, 03:32](1966 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:46](1891 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:45](1950 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:26, 03:23](1893 MB) +PASS -- TEST 'merra2_thompson_intel' [05:40, 03:44](1897 MB) +PASS -- TEST 'regional_control_intel' [07:36, 06:14](1088 MB) +PASS -- TEST 'regional_restart_intel' [06:38, 03:43](1084 MB) +PASS -- TEST 'regional_decomp_intel' [07:36, 06:35](1076 MB) +PASS -- TEST 'regional_2threads_intel' [05:31, 04:35](1093 MB) +PASS -- TEST 'regional_noquilt_intel' [07:40, 06:13](1380 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:40, 06:09](1089 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 06:15](1089 MB) +PASS -- TEST 'regional_wofs_intel' [09:02, 07:56](1908 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:17] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:25, 08:37](1063 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 05:01](1306 MB) +PASS -- TEST 'rap_decomp_intel' [10:00, 08:44](1031 MB) +PASS -- TEST 'rap_2threads_intel' [09:52, 08:30](1170 MB) +PASS -- TEST 'rap_restart_intel' [06:29, 04:17](1047 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:05, 08:13](1052 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:57, 08:33](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:28, 06:09](1070 MB) +PASS -- TEST 'hrrr_control_intel' [06:15, 04:15](1034 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:19](1021 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 04:03](1096 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:23](951 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:20, 08:13](1047 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 09:46](1992 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:29, 09:30](2025 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:38] +PASS -- TEST 'control_csawmg_intel' [08:38, 06:39](1023 MB) +PASS -- TEST 'control_ras_intel' [05:23, 03:35](721 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 11:35] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:45, 12:11](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:11, 19:53] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:36, 03:24](1882 MB) +PASS -- TEST 'regional_control_faster_intel' [07:44, 06:11](1084 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:18] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:44](1615 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:55, 02:37](1614 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:10](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:47](819 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:14](1138 MB) +PASS -- TEST 'control_ras_debug_intel' [03:26, 02:47](824 MB) +PASS -- TEST 'control_diag_debug_intel' [03:52, 02:47](1676 MB) +PASS -- TEST 'control_debug_p8_intel' [03:52, 03:06](1912 MB) +PASS -- TEST 'regional_debug_intel' [18:50, 17:25](1109 MB) +PASS -- TEST 'rap_control_debug_intel' [05:26, 04:49](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:46](1201 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:29, 04:47](1206 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:29, 04:51](1209 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 04:57](1213 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:34, 06:12](1296 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 05:30](1205 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:50](1203 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:25, 05:10](1212 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:33](1207 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:28, 05:18](1207 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:42, 05:32](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:42, 08:02](1200 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:30, 04:48](1195 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:58](1216 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:21, 04:51](1204 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:21, 08:24](1212 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 05:26] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:46, 13:31](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:20] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:41](1167 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:19, 06:56](996 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:41](934 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:58, 07:06](1079 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 03:35](957 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:28, 03:49](906 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [29:21, 05:13](982 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:55, 02:00](888 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:11, 18:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:52, 02:39](1177 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:51, 01:11](1135 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:42, 01:28](1087 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:28](982 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:15] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:49](1090 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:43](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [15:48, 14:10](1240 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:48, 14:27](945 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:27](1182 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 14:25](1306 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 05:07] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:57](1142 MB) + +PASS -- COMPILE 'hafsw_intel' [14:12, 13:16] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:17, 06:00](764 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:36, 06:14](1141 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:26](841 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:11, 24:45](867 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [32:16, 28:36](894 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:04, 06:59](512 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:28, 08:19](525 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:54, 03:23](379 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:17, 09:26](485 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:51, 04:39](536 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:51, 04:25](535 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:50, 05:37](602 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:33, 01:32](417 MB) +PASS -- TEST 'gnv1_nested_intel' [20:10, 04:16](1728 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:44] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:55, 13:08](598 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:13, 22:38] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:14, 13:01](761 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [34:59, 12:55](734 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 13:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:58, 08:45](728 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:16, 13:03] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [34:20, 07:16](841 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:12, 07:17](812 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [42:58, 16:25](1206 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:08] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [24:20, 02:56](1156 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:23, 01:54](1118 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [28:19, 02:48](1026 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [28:21, 02:52](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [28:19, 02:52](1027 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [27:21, 02:57](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:22, 02:56](1157 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [28:19, 02:48](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [33:10, 06:26](1027 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [34:05, 06:24](1007 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [28:18, 02:55](1134 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 04:19](2444 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [29:20, 04:19](2388 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:39] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [31:20, 06:30](1081 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:30] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [28:18, 02:56](1159 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:24] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [26:34, 01:02](250 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [25:26, 00:56](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:28, 00:36](318 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 12:22] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [27:10, 04:02](1980 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:13, 12:31] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [26:09, 03:50](1965 MB) + +PASS -- COMPILE 'atml_intel' [14:11, 13:42] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [27:31, 04:44](1877 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [27:32, 04:45](1874 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:50, 02:37](1080 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 06:56] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [26:24, 05:52](1901 MB) + +PASS -- COMPILE 'atmw_intel' [13:12, 12:41] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:17, 02:03](1920 MB) + +PASS -- COMPILE 'atmaero_intel' [13:12, 12:03] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [21:13, 04:29](1997 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [18:13, 05:14](1782 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [17:59, 05:18](1783 MB) PASS -- COMPILE 'atmaq_debug_intel' [06:11, 05:13] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:00, 20:50](4547 MB) +PASS -- TEST 'regional_atmaq_debug_intel' [31:56, 20:52](4551 MB) SYNOPSIS: -Starting Date/Time: 20240725 23:06:11 -Ending Date/Time: 20240726 00:38:27 -Total Time: 01h:33m:08s +Starting Date/Time: 20240729 07:28:02 +Ending Date/Time: 20240729 09:28:56 +Total Time: 02h:01m:46s Compiles Completed: 41/41 -Tests Completed: 184/185 -Failed Tests: -* TEST cpld_control_ciceC_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2352/tests/logs/log_orion/run_cpld_control_ciceC_p8_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ORION REGRESSION TESTING LOG==== -====START OF ORION REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -17a524e83223725150b6c1bec3ac9e55ac6876a8 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1109443 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 's2swa_intel' [15:11, 14:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:23, 14:20](2148 MB) - -SYNOPSIS: -Starting Date/Time: 20240726 08:41:12 -Ending Date/Time: 20240726 09:12:46 -Total Time: 00h:31m:47s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 185/185 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 33c1c66350..cb60b28f68 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: -45bcf84d30cfb2cc46913130f6e8615814b3c9e8 +4124fe82547dcec17e208ff919f41db354b212e6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop-63-g927261d) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,238 +36,238 @@ 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-20240724 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255709 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_18190 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:29, 11:31] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:58, 01:50](3100 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [31:53, 28:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [54:34, 01:43](1821 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [33:25, 01:20](1842 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [33:04, 01:44](975 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:35, 01:19](1795 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:30, 11:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [10:56, 00:44](1816 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:37, 18:57] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [03:50, 02:05](1842 MB) - -PASS -- COMPILE 's2swa_intel' [14:29, 11:09] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:58, 01:42](3134 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:58, 01:58](3132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [00:26, 01:31](3068 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:58, 01:56](3156 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [00:26, 01:33](3085 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:58, 01:34](3368 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:58, 01:17](3128 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:59, 01:42](3079 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:58, 01:55](3136 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [12:07, 03:53](4131 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [50:41, 05:04](4268 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:58, 01:26](3120 MB) - -PASS -- COMPILE 's2sw_intel' [14:30, 10:48] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:56, 01:30](1832 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:56, 01:35](1897 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [20:36, 17:15] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:50, 01:42](1896 MB) - -PASS -- COMPILE 's2s_intel' [26:41, 22:58] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [59:44, 00:48](2920 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [59:44, 01:09](2923 MB) -PASS -- TEST 'cpld_restart_c48_intel' [49:30, 01:20](2320 MB) - -PASS -- COMPILE 's2swa_faster_intel' [32:54, 29:32] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [53:31, 02:01](3133 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:43, 23:32] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [59:43, 01:41](1838 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:08, 01:20](1009 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:37, 01:29](1802 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:34, 14:29] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:25, 01:31](1862 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [24:39, 21:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [47:18, 00:32](570 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [47:18, 00:38](1469 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [47:18, 00:44](1476 MB) -PASS -- TEST 'control_latlon_intel' [47:18, 00:41](1470 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [47:18, 00:52](1474 MB) -PASS -- TEST 'control_c48_intel' [47:17, 01:27](1593 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [45:26, 01:18](714 MB) -PASS -- TEST 'control_c192_intel' [44:25, 01:00](1589 MB) -PASS -- TEST 'control_c384_intel' [42:13, 01:20](1912 MB) -PASS -- TEST 'control_c384gdas_intel' [41:52, 02:04](1087 MB) -PASS -- TEST 'control_stochy_intel' [40:28, 00:21](527 MB) -PASS -- TEST 'control_stochy_restart_intel' [38:00, 01:00](331 MB) -PASS -- TEST 'control_lndp_intel' [40:23, 00:28](528 MB) -PASS -- TEST 'control_iovr4_intel' [40:21, 00:41](526 MB) -PASS -- TEST 'control_iovr5_intel' [40:17, 00:40](523 MB) -PASS -- TEST 'control_p8_intel' [39:45, 01:28](1773 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [39:33, 02:00](1770 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [38:58, 01:27](1772 MB) -PASS -- TEST 'control_restart_p8_intel' [33:36, 01:55](919 MB) -PASS -- TEST 'control_noqr_p8_intel' [38:58, 01:25](1769 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [33:35, 01:00](922 MB) -PASS -- TEST 'control_decomp_p8_intel' [38:57, 01:19](1767 MB) -PASS -- TEST 'control_2threads_p8_intel' [38:00, 01:41](1863 MB) -PASS -- TEST 'control_p8_lndp_intel' [36:54, 01:11](1774 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [36:50, 01:53](1832 MB) -PASS -- TEST 'control_p8_mynn_intel' [36:45, 01:25](1778 MB) -PASS -- TEST 'merra2_thompson_intel' [36:43, 01:16](1777 MB) -PASS -- TEST 'regional_control_intel' [36:28, 01:06](853 MB) -PASS -- TEST 'regional_restart_intel' [29:44, 01:02](850 MB) -PASS -- TEST 'regional_decomp_intel' [36:10, 00:51](862 MB) -PASS -- TEST 'regional_2threads_intel' [36:09, 00:49](908 MB) -PASS -- TEST 'regional_noquilt_intel' [35:33, 00:17](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [35:32, 01:18](852 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [35:32, 01:11](852 MB) -PASS -- TEST 'regional_wofs_intel' [35:27, 00:43](1585 MB) - -PASS -- COMPILE 'rrfs_intel' [22:45, 20:06] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [49:10, 01:57](910 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:11, 01:02](1092 MB) -PASS -- TEST 'rap_decomp_intel' [49:10, 01:36](913 MB) -PASS -- TEST 'rap_2threads_intel' [49:10, 01:39](997 MB) -PASS -- TEST 'rap_restart_intel' [35:21, 01:15](781 MB) -PASS -- TEST 'rap_sfcdiff_intel' [49:10, 02:09](913 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:10, 01:39](909 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [35:21, 01:40](783 MB) -PASS -- TEST 'hrrr_control_intel' [49:10, 01:35](909 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [49:10, 01:32](902 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [49:11, 01:24](988 MB) -PASS -- TEST 'hrrr_control_restart_intel' [35:20, 01:01](741 MB) -PASS -- TEST 'rrfs_v1beta_intel' [49:10, 01:58](902 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [49:10, 00:51](1870 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [49:10, 01:12](1859 MB) - -PASS -- COMPILE 'csawmg_intel' [15:36, 12:41] -PASS -- TEST 'control_csawmg_intel' [55:19, 00:51](871 MB) -PASS -- TEST 'control_ras_intel' [55:19, 00:59](561 MB) - -PASS -- COMPILE 'wam_intel' [14:34, 13:11] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [51:15, 01:01](1568 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:45, 20:29] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [35:18, 02:03](1772 MB) -PASS -- TEST 'regional_control_faster_intel' [33:32, 00:19](853 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [20:44, 17:54] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [32:55, 01:07](1500 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [32:07, 01:21](1501 MB) -PASS -- TEST 'control_stochy_debug_intel' [31:44, 00:46](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [31:34, 01:09](703 MB) -PASS -- TEST 'control_csawmg_debug_intel' [31:30, 00:25](1014 MB) -PASS -- TEST 'control_ras_debug_intel' [31:26, 01:02](712 MB) -PASS -- TEST 'control_diag_debug_intel' [31:17, 01:15](1560 MB) -PASS -- TEST 'control_debug_p8_intel' [31:03, 00:49](1803 MB) -PASS -- TEST 'regional_debug_intel' [30:30, 00:17](895 MB) -PASS -- TEST 'rap_control_debug_intel' [30:14, 00:37](1086 MB) -PASS -- TEST 'hrrr_control_debug_intel' [30:11, 00:50](1078 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [30:06, 00:46](1087 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [29:56, 00:44](1086 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [29:56, 00:45](1087 MB) -PASS -- TEST 'rap_diag_debug_intel' [29:31, 01:28](1172 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [29:30, 00:25](1093 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [29:12, 00:27](1091 MB) -PASS -- TEST 'rap_lndp_debug_intel' [29:11, 00:32](1090 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [29:08, 00:39](1088 MB) -PASS -- TEST 'rap_noah_debug_intel' [28:54, 00:47](1083 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [28:47, 00:58](1086 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [28:03, 01:16](1083 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [27:54, 00:39](1080 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [27:52, 00:56](1086 MB) -PASS -- TEST 'rap_flake_debug_intel' [27:46, 00:50](1090 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:08, 02:02](1089 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:29, 06:02] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [50:14, 01:13](1590 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:32, 12:41] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:06, 01:16](967 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [27:03, 02:06](789 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:45, 02:15](788 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:27, 01:43](859 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [26:23, 02:17](844 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:38, 01:33](787 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:39, 01:19](690 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:49, 01:12](672 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:36, 13:26] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [24:39, 00:56](1005 MB) -PASS -- TEST 'conus13km_2threads_intel' [19:42, 01:01](1010 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [19:41, 00:51](880 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:31, 12:09] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [23:51, 01:25](816 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:35, 13:07] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:41, 01:04](963 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [23:33, 01:03](958 MB) -PASS -- TEST 'conus13km_debug_intel' [23:33, 00:47](1051 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [23:24, 00:43](725 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:23, 00:44](1051 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:38, 01:05](1122 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:21, 05:31] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [22:02, 00:46](996 MB) - -PASS -- COMPILE 'hafsw_intel' [17:39, 16:44] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [17:04, 01:55](619 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:04, 00:46](975 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:02, 01:55](663 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:57, 02:11](700 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:12, 01:42](714 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:01, 01:42](394 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:30, 01:42](408 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [15:29, 01:22](287 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:28, 02:03](375 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:30, 01:22](418 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:13, 00:50](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [13:17, 01:42](500 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:13, 01:15](317 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [16:33, 11:23] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:51, 01:06](529 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:41, 20:13] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:47, 01:37](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:44, 01:15](711 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:41, 13:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:37, 01:18](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:35, 15:04] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [21:27, 01:52](663 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:23, 01:53](648 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:06, 00:34](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:35, 15:28] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [21:07, 00:49](1828 MB) - -PASS -- COMPILE 'atml_intel' [19:43, 18:36] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [18:41, 17:28] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [12:34, 11:58] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [20:52, 01:15](3026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [20:49, 01:59](2905 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [20:36, 01:57](2922 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [17:40, 16:27] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:17, 00:57](4441 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:28, 11:23] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [31:39, 01:31](3102 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:46, 27:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:20, 01:59](1823 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [58:03, 02:28](1853 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [58:03, 01:59](981 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:21, 01:58](1793 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:42, 22:24] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:24, 01:08](1819 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:32, 16:07] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:36, 02:00](1843 MB) + +PASS -- COMPILE 's2swa_intel' [11:30, 11:12] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [32:36, 01:36](3133 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:36, 01:56](3133 MB) +PASS -- TEST 'cpld_restart_p8_intel' [24:15, 01:09](3065 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [32:36, 01:36](3151 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [24:15, 01:42](3084 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [32:36, 01:05](3372 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [32:36, 01:33](3126 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [32:37, 01:34](3076 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [32:36, 01:57](3134 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [32:45, 04:36](4127 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:25, 05:43](4268 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [32:36, 01:58](3115 MB) + +PASS -- COMPILE 's2sw_intel' [11:28, 11:07] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [32:38, 00:54](1835 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:38, 01:04](1891 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:28, 10:35] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:38, 01:07](1893 MB) + +PASS -- COMPILE 's2s_intel' [11:28, 10:26] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [32:37, 01:06](2928 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [32:37, 01:30](2918 MB) +PASS -- TEST 'cpld_restart_c48_intel' [28:28, 01:04](2326 MB) + +PASS -- COMPILE 's2swa_faster_intel' [40:59, 40:29] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [03:01, 02:24](3130 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:42, 22:39] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:43, 01:05](1834 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [01:13, 01:24](1008 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [01:14, 01:39](1808 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:31, 15:37] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [16:07, 01:30](1865 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:24, 10:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [21:13, 00:20](572 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [21:12, 00:29](1469 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:12, 00:27](1478 MB) +PASS -- TEST 'control_latlon_intel' [21:13, 00:19](1469 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:13, 00:31](1472 MB) +PASS -- TEST 'control_c48_intel' [21:11, 01:06](1593 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [21:11, 00:53](715 MB) +PASS -- TEST 'control_c192_intel' [21:12, 00:27](1588 MB) +PASS -- TEST 'control_c384_intel' [21:16, 01:22](1910 MB) +PASS -- TEST 'control_c384gdas_intel' [21:17, 02:02](1088 MB) +PASS -- TEST 'control_stochy_intel' [21:12, 00:24](530 MB) +PASS -- TEST 'control_stochy_restart_intel' [18:43, 01:03](332 MB) +PASS -- TEST 'control_lndp_intel' [21:13, 00:30](527 MB) +PASS -- TEST 'control_iovr4_intel' [21:12, 00:44](524 MB) +PASS -- TEST 'control_iovr5_intel' [21:12, 00:42](525 MB) +PASS -- TEST 'control_p8_intel' [21:12, 01:40](1765 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [21:13, 01:50](1772 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [21:12, 01:51](1775 MB) +PASS -- TEST 'control_restart_p8_intel' [15:55, 01:09](915 MB) +PASS -- TEST 'control_noqr_p8_intel' [21:12, 01:41](1761 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [15:55, 01:10](922 MB) +PASS -- TEST 'control_decomp_p8_intel' [21:13, 01:34](1761 MB) +PASS -- TEST 'control_2threads_p8_intel' [21:13, 01:06](1858 MB) +PASS -- TEST 'control_p8_lndp_intel' [21:13, 01:08](1770 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [21:13, 02:01](1823 MB) +PASS -- TEST 'control_p8_mynn_intel' [21:13, 01:42](1776 MB) +PASS -- TEST 'merra2_thompson_intel' [21:13, 01:39](1772 MB) +PASS -- TEST 'regional_control_intel' [21:12, 00:15](851 MB) +PASS -- TEST 'regional_restart_intel' [15:20, 00:33](837 MB) +PASS -- TEST 'regional_decomp_intel' [18:26, 00:51](847 MB) +PASS -- TEST 'regional_2threads_intel' [17:48, 00:50](903 MB) +PASS -- TEST 'regional_noquilt_intel' [17:39, 00:19](1169 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [17:39, 01:18](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [17:23, 01:08](853 MB) +PASS -- TEST 'regional_wofs_intel' [17:19, 00:48](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [24:45, 24:18] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [07:52, 02:03](912 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:53, 01:03](1092 MB) +PASS -- TEST 'rap_decomp_intel' [06:30, 02:01](912 MB) +PASS -- TEST 'rap_2threads_intel' [06:12, 01:44](996 MB) +PASS -- TEST 'rap_restart_intel' [58:30, 01:28](784 MB) +PASS -- TEST 'rap_sfcdiff_intel' [05:44, 02:19](914 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:44, 02:02](910 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [56:07, 01:39](782 MB) +PASS -- TEST 'hrrr_control_intel' [05:29, 01:27](907 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:07, 01:02](908 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:53, 01:14](986 MB) +PASS -- TEST 'hrrr_control_restart_intel' [00:00, 01:18](735 MB) +PASS -- TEST 'rrfs_v1beta_intel' [04:13, 01:29](907 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [04:13, 01:16](1871 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [04:07, 01:31](1860 MB) + +PASS -- COMPILE 'csawmg_intel' [13:27, 13:11] +PASS -- TEST 'control_csawmg_intel' [17:17, 00:25](872 MB) +PASS -- TEST 'control_ras_intel' [17:13, 00:51](566 MB) + +PASS -- COMPILE 'wam_intel' [38:05, 37:46] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [53:33, 00:55](1568 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:36, 18:47] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:58, 02:03](1773 MB) +PASS -- TEST 'regional_control_faster_intel' [07:57, 00:21](848 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 06:02] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:04, 01:16](1504 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:04, 01:22](1498 MB) +PASS -- TEST 'control_stochy_debug_intel' [15:04, 00:51](702 MB) +PASS -- TEST 'control_lndp_debug_intel' [15:04, 01:09](700 MB) +PASS -- TEST 'control_csawmg_debug_intel' [15:04, 00:22](1015 MB) +PASS -- TEST 'control_ras_debug_intel' [14:35, 00:59](710 MB) +PASS -- TEST 'control_diag_debug_intel' [14:24, 01:16](1565 MB) +PASS -- TEST 'control_debug_p8_intel' [14:14, 00:51](1805 MB) +PASS -- TEST 'regional_debug_intel' [13:07, 00:12](893 MB) +PASS -- TEST 'rap_control_debug_intel' [13:05, 00:45](1088 MB) +PASS -- TEST 'hrrr_control_debug_intel' [12:44, 00:49](1079 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [12:25, 00:49](1085 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [12:25, 00:45](1087 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:58, 00:39](1087 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:47, 00:35](1167 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:28, 00:37](1086 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:50, 00:35](1092 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:47, 00:38](1087 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:22, 00:42](1084 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:22, 00:46](1084 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:10, 00:39](1086 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:08, 00:28](1084 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:04, 00:47](1080 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:02, 00:36](1092 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:35, 00:41](1092 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:33, 01:54](1093 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:21, 06:25] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [09:33, 00:26](1592 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:34, 13:52] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:51, 01:16](955 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:48, 02:18](791 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:41, 02:09](786 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:31, 02:02](853 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [02:27, 02:23](843 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [02:20, 01:51](786 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [55:19, 01:26](688 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [58:02, 00:28](670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:41, 19:36] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [58:26, 01:25](1006 MB) +PASS -- TEST 'conus13km_2threads_intel' [54:07, 00:52](1008 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [54:06, 00:41](886 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [21:49, 21:12] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [54:29, 01:16](814 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [23:54, 22:50] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [52:11, 00:55](961 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [52:11, 01:05](960 MB) +PASS -- TEST 'conus13km_debug_intel' [52:11, 01:05](1055 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [52:11, 00:53](726 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [52:12, 00:18](1051 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [52:11, 01:00](1121 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [26:56, 25:58] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [48:07, 00:47](994 MB) + +PASS -- COMPILE 'hafsw_intel' [25:45, 25:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [48:08, 01:59](613 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [48:08, 01:12](969 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [48:06, 01:49](662 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [48:06, 01:27](697 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:07, 01:23](713 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [48:06, 00:59](391 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [48:07, 02:16](403 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [48:07, 01:43](287 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [48:10, 02:20](374 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [48:06, 01:33](418 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [48:06, 00:49](418 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [48:08, 00:50](491 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [48:07, 00:25](313 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:27, 09:57] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:33, 01:17](525 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:45, 19:47] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [47:09, 00:48](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [47:09, 01:39](710 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [23:48, 22:36] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [42:04, 00:48](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:34, 13:52] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [48:34, 02:11](660 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [48:34, 02:10](650 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [48:32, 00:25](881 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 10:44] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [46:46, 00:46](1827 MB) + +PASS -- COMPILE 'atml_intel' [16:32, 15:52] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [10:25, 09:56] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [17:31, 17:01] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [36:02, 01:21](3024 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [36:02, 01:49](2906 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:02, 01:47](2923 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:29, 06:25] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [44:43, 01:14](4438 MB) SYNOPSIS: -Starting Date/Time: 20240724 20:33:13 -Ending Date/Time: 20240724 22:10:20 -Total Time: 01h:37m:56s +Starting Date/Time: 20240729 13:15:36 +Ending Date/Time: 20240729 14:41:50 +Total Time: 01h:26m:50s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index a8aba0860d..c82ee2d1b8 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -622,16 +622,13 @@ ecflow_run() { # Make sure ECF_HOST and ECF_PORT are set/ready on systems that have an # explicit ecflow node if [[ ${MACHINE_ID} == wcoss2 || ${MACHINE_ID} == acorn ]]; then - readarray -t ECFHOSTLIST < "${ECF_HOSTFILE}" - for ECF_HOST in "${ECFHOSTLIST[@]}" - do - if ssh -q "${ECF_HOST}" "exit"; then - export ECF_HOST - break - else - ECF_HOST='' - fi - done + if [[ "${HOST::1}" == "a" ]]; then + ECF_HOST=aecflow01 + elif [[ "${HOST::1}" == "c" ]]; then + ECF_HOST=cdecflow01 + elif [[ "${HOST::1}" == "d" ]]; then + ECF_HOST=ddecflow01 + fi elif [[ ${MACHINE_ID} == hera || ${MACHINE_ID} == jet ]]; then module load ecflow fi diff --git a/tests/test_changes.list b/tests/test_changes.list index 47f77b1466..e69de29bb2 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,61 +0,0 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_control_c192_p8 intel -cpld_restart_c192_p8 intel -cpld_bmark_p8 intel -cpld_restart_bmark_p8 intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_noaero_p8_agrid intel -cpld_control_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -hafs_regional_atm_ocn intel -hafs_regional_atm_wav intel -hafs_regional_atm_ocn_wav intel -hafs_regional_docn intel -hafs_regional_docn_oisst intel -hafs_regional_datm_cdeps intel -datm_cdeps_control_cfsr intel -datm_cdeps_restart_cfsr intel -datm_cdeps_control_gefs intel -datm_cdeps_iau_gefs intel -datm_cdeps_stochy_gefs intel -datm_cdeps_ciceC_cfsr intel -datm_cdeps_bulk_cfsr intel -datm_cdeps_bulk_gefs intel -datm_cdeps_mx025_cfsr intel -datm_cdeps_mx025_gefs intel -datm_cdeps_multiple_files_cfsr intel -datm_cdeps_3072x1536_cfsr intel -datm_cdeps_gfs intel -datm_cdeps_debug_cfsr intel -datm_cdeps_control_cfsr_faster intel -atm_ds2s_docn_pcice intel -atm_ds2s_docn_dice intel -atmwav_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu -cpld_debug_pdlib_p8 gnu -datm_cdeps_control_cfsr gnu From 9e82655af3646b5b3d5e25e92c9f4a8fde31136d Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 30 Jul 2024 22:13:03 +0000 Subject: [PATCH 08/33] Some more changes. Almost building. --- CMakeLists.txt | 11 ++++------- FV3 | 2 +- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3898c6fd18..5387962ed1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -196,9 +196,6 @@ endif() if(FV3) add_subdirectory(FV3) endif() -if (MPAS) - add_subdirectory(FV3) -endif() ############################################################################### ### AQM @@ -306,15 +303,15 @@ if(STOCH_PHYS) endif() if(FV3) - add_dependencies(ufs ufsatm) + add_dependencies(ufs ufsatm_fv3) list(APPEND _ufs_defs_private FRONT_FV3=fv3atm_cap_mod) - list(APPEND _ufs_libs_public ufsatm) + list(APPEND _ufs_libs_public ufsatm_fv3) endif() if(MPAS) - add_dependencies(ufs ufsatm) + add_dependencies(ufs ufsatm_mpas) list(APPEND _ufs_defs_private FRONT_MPAS=mpasatm_cap_mod) - list(APPEND _ufs_libs_public ufsatm) + list(APPEND _ufs_libs_public ufsatm_mpas) endif() if(MOM6) diff --git a/FV3 b/FV3 index 1301e07acd..587ea55925 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1301e07acdbedc306e0c0ca96649c35c785ef44b +Subproject commit 587ea55925d09bef2b4e8aed296b70ad8e97d2c8 From ee4f19a0a630fc2245a313bfe20302b5a6b555aa Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Thu, 1 Aug 2024 10:15:05 -0400 Subject: [PATCH 09/33] Add omega calculation and change LSM diag option to RTs (#2373) * UFSWM - Adds pass_full_omega_to_physics_in_non_hydrostatic_model parameter in the global_control.nml.IN namelist and sets it to true for non-hydrostatic runs. An additional field (omga) has been added to the diag_tables. --- tests/bl_date.conf | 2 +- tests/default_vars.sh | 7 + tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 571 +++++++------ tests/logs/RegressionTests_derecho.log | 615 +++++++------- tests/logs/RegressionTests_gaea.log | 619 +++++++------- tests/logs/RegressionTests_hera.log | 757 +++++++++--------- tests/logs/RegressionTests_hercules.log | 728 ++++++++--------- tests/logs/RegressionTests_jet.log | 564 ++++++------- tests/logs/RegressionTests_orion.log | 619 +++++++------- tests/logs/RegressionTests_wcoss2.log | 524 ++++++------ tests/parm/diag_table/diag_table_cpld.IN | 1 + tests/parm/diag_table/diag_table_template | 1 + tests/parm/diag_table/diag_table_thompson | 1 + tests/parm/diag_table/diag_table_wam | 5 +- tests/parm/global_control.nml.IN | 1 + tests/test_changes.list | 77 ++ tests/tests/cpld_control_gfsv17 | 2 +- tests/tests/cpld_control_gfsv17_iau | 2 +- tests/tests/cpld_control_sfs | 2 +- tests/tests/cpld_debug_gfsv17 | 2 +- tests/tests/cpld_mpi_gfsv17 | 2 +- tests/tests/cpld_restart_gfsv17 | 2 +- tests/tests/gnv1_nested | 2 +- 26 files changed, 2787 insertions(+), 2421 deletions(-) diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 5448183396..2fc1026343 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240724 +export BL_DATE=20240730 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index ef44dfe4a9..78a89ec8e6 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -764,6 +764,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.false. export MAX_OUTPUT_FIELDS=310 +export UPDATE_FULL_OMEGA=.false. # Stochastic physics export STOCHINI=.false. @@ -1101,6 +1102,12 @@ export NY_GLB=320 export NPZ=127 export NPZP=128 +# Use updated omega calculations if +# hydrostatic is set to false +if [[ "${HYDROSTATIC}" == .false. ]]; then + export UPDATE_FULL_OMEGA=.true. +fi + # default resources export DOMAINS_STACK_SIZE=8000000 export INPES=${INPES_cpl_dflt} diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 774fbac358..b52438f989 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Jul 26 20:30:45 UTC 2024 +Wed Jul 31 16:54:12 UTC 2024 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_2494518/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 280.977475 - 0: The maximum resident set size (KB) = 1454304 + 0: The total amount of wall time = 279.178521 + 0: The maximum resident set size (KB) = 1452196 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_2494518/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 966.539273 - 0: The maximum resident set size (KB) = 1439060 + 0: The total amount of wall time = 980.789299 + 0: The maximum resident set size (KB) = 1438832 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_2494518/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 249.254197 - 0: The maximum resident set size (KB) = 1437604 + 0: The total amount of wall time = 250.532991 + 0: The maximum resident set size (KB) = 1435764 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_2494518/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 249.618477 - 0: The maximum resident set size (KB) = 1432416 + 0: The total amount of wall time = 252.858828 + 0: The maximum resident set size (KB) = 1423936 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_2494518/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 252.799465 - 0: The maximum resident set size (KB) = 1431152 + 0: The total amount of wall time = 250.469720 + 0: The maximum resident set size (KB) = 1435444 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_2494518/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 246.985477 - 0: The maximum resident set size (KB) = 1447148 + 0: The total amount of wall time = 251.094450 + 0: The maximum resident set size (KB) = 1435512 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_2494518/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 249.919086 - 0: The maximum resident set size (KB) = 1434244 + 0: The total amount of wall time = 250.907119 + 0: The maximum resident set size (KB) = 1424508 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jul 26 21:54:52 UTC 2024 -Elapsed time: 01h:24m:07s. Have a nice day! +Wed Jul 31 18:06:20 UTC 2024 +Elapsed time: 01h:12m:08s. 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 a5a3fcd863..b2c3bea61e 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 @@ -Fri Jul 26 19:19:32 UTC 2024 +Wed Jul 31 15:34:20 UTC 2024 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_1506640/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3296517/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 = 1333.999638 - 0: The maximum resident set size (KB) = 1540440 + 0: The total amount of wall time = 1598.613826 + 0: The maximum resident set size (KB) = 1535936 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_1506640/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3296517/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 = 724.841272 - 0: The maximum resident set size (KB) = 1538712 + 0: The total amount of wall time = 726.442492 + 0: The maximum resident set size (KB) = 1538112 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_1506640/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3296517/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 = 520.811850 - 0: The maximum resident set size (KB) = 1511524 + 0: The total amount of wall time = 465.781642 + 0: The maximum resident set size (KB) = 1538556 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jul 26 20:30:45 UTC 2024 -Elapsed time: 01h:11m:14s. Have a nice day! +Wed Jul 31 16:54:12 UTC 2024 +Elapsed time: 01h:19m:53s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index b1326ed3c2..3e72d37929 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Jul 26 16:44:32 UTC 2024 +Wed Jul 31 13:03:37 UTC 2024 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_268113/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/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 = 1470.646865 - 0: The maximum resident set size (KB) = 769104 + 0: The total amount of wall time = 1465.693547 + 0: The maximum resident set size (KB) = 757880 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_268113/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/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 = 2296.345459 - 0: The maximum resident set size (KB) = 731460 + 0: The total amount of wall time = 2169.422270 + 0: The maximum resident set size (KB) = 729460 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_268113/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/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 = 2252.359216 - 0: The maximum resident set size (KB) = 715680 + 0: The total amount of wall time = 2264.677203 + 0: The maximum resident set size (KB) = 730040 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_268113/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/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 = 2288.966852 - 0: The maximum resident set size (KB) = 718224 + 0: The total amount of wall time = 2181.123987 + 0: The maximum resident set size (KB) = 735016 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jul 26 19:19:31 UTC 2024 -Elapsed time: 02h:35m:00s. Have a nice day! +Wed Jul 31 15:34:18 UTC 2024 +Elapsed time: 02h:30m:42s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 2d37737fda..fb5048da8d 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: -4124fe82547dcec17e208ff919f41db354b212e6 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,274 +35,345 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2547232 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1128655 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 11:03] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [32:52, 01:50](3209 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 11:09] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [56:47, 02:34](3214 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:48] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:47, 01:33](1920 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:26, 03:00](1957 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [59:03, 02:53](1093 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:48, 03:12](1893 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:27] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [50:41, 03:03](1922 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:40, 02:47](1967 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [23:57, 03:15](1091 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [50:42, 03:29](1898 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:30, 16:38] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:46, 01:06](1922 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:30, 16:18] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [51:41, 01:24](1918 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:50] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [39:00, 02:59](1962 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:53] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [02:53, 02:50](1962 MB) -PASS -- COMPILE 's2swa_intel' [11:25, 10:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [32:52, 01:22](3243 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:52, 02:01](3241 MB) -PASS -- TEST 'cpld_restart_p8_intel' [20:05, 02:18](3176 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [32:52, 02:24](3264 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:33, 01:28](3192 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [32:52, 02:00](3480 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [32:52, 01:23](3236 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [32:53, 01:50](3185 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [32:52, 01:41](3241 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [32:52, 02:05](3222 MB) +PASS -- COMPILE 's2swa_intel' [11:26, 11:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [56:45, 01:31](3244 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [56:45, 01:32](3241 MB) +PASS -- TEST 'cpld_restart_p8_intel' [40:39, 01:11](3176 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [56:45, 01:57](3265 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [42:56, 01:51](3191 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [56:45, 01:15](3475 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [56:45, 01:11](3235 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [56:46, 01:41](3185 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [56:45, 01:41](3243 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [56:45, 01:54](3223 MB) -PASS -- COMPILE 's2sw_intel' [11:25, 10:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [32:52, 01:42](1935 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:52, 02:18](1996 MB) +PASS -- COMPILE 's2sw_intel' [11:25, 10:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [56:46, 01:55](1933 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [56:46, 02:13](2004 MB) -PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [33:53, 02:22](1987 MB) +PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:47, 01:28](1994 MB) -PASS -- COMPILE 's2s_intel' [10:25, 09:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [33:51, 00:55](2941 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [33:51, 01:26](2940 MB) -PASS -- TEST 'cpld_restart_c48_intel' [29:24, 00:53](2338 MB) +PASS -- COMPILE 's2s_intel' [10:24, 09:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [57:46, 00:57](2948 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [57:46, 01:28](2945 MB) +PASS -- TEST 'cpld_restart_c48_intel' [53:21, 01:41](2360 MB) -PASS -- COMPILE 's2swa_faster_intel' [16:31, 15:51] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [27:46, 01:59](3239 MB) +PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:02] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [52:42, 01:51](3237 MB) -PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:41] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:46, 01:46](1936 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [58:53, 00:57](1116 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [58:13, 01:54](1912 MB) +PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:51] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [51:40, 01:27](1938 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:55, 01:08](1102 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:29, 01:00](1910 MB) -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:27] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:42, 00:55](1980 MB) +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:31] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:35, 00:59](1981 MB) PASS -- COMPILE 'atm_dyn32_intel' [11:25, 10:16] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [20:45, 00:43](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [20:11, 00:22](1569 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:42, 01:12](1577 MB) -PASS -- TEST 'control_latlon_intel' [16:00, 00:18](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:35, 00:48](1571 MB) -PASS -- TEST 'control_c48_intel' [13:32, 00:57](1609 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:19, 01:34](733 MB) -PASS -- TEST 'control_c192_intel' [13:00, 01:21](1691 MB) -PASS -- TEST 'control_c384_intel' [12:38, 02:28](1998 MB) -PASS -- TEST 'control_c384gdas_intel' [12:32, 02:38](1197 MB) -PASS -- TEST 'control_stochy_intel' [11:40, 00:35](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [55:57, 01:12](434 MB) -PASS -- TEST 'control_lndp_intel' [10:48, 01:16](628 MB) -PASS -- TEST 'control_iovr4_intel' [08:31, 00:43](623 MB) -PASS -- TEST 'control_iovr5_intel' [06:55, 01:05](625 MB) -PASS -- TEST 'control_p8_intel' [05:44, 02:33](1869 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:35, 02:16](1870 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 02:04](1872 MB) -PASS -- TEST 'control_restart_p8_intel' [51:15, 02:19](1022 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:43, 01:52](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [51:02, 02:05](1025 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:33, 01:51](1857 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:31, 01:51](1951 MB) -PASS -- TEST 'control_p8_lndp_intel' [00:33, 01:07](1869 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [00:27, 02:33](1931 MB) -PASS -- TEST 'control_p8_mynn_intel' [59:35, 01:49](1874 MB) -PASS -- TEST 'merra2_thompson_intel' [57:55, 02:34](1871 MB) -PASS -- TEST 'regional_control_intel' [56:58, 00:18](873 MB) -PASS -- TEST 'regional_restart_intel' [39:54, 00:48](874 MB) -PASS -- TEST 'regional_decomp_intel' [56:23, 00:20](885 MB) -PASS -- TEST 'regional_2threads_intel' [56:21, 00:56](1005 MB) -PASS -- TEST 'regional_noquilt_intel' [55:07, 00:45](1198 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [54:35, 00:22](880 MB) -PASS -- TEST 'regional_wofs_intel' [54:05, 00:43](1602 MB) - -PASS -- COMPILE 'ifi_intel' [09:23, 08:33] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [24:28, 00:20](870 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [24:28, 01:06](876 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [24:29, 00:17](1002 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:30] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [23:17, 01:38](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [23:18, 01:33](1189 MB) -PASS -- TEST 'rap_decomp_intel' [23:17, 01:35](1010 MB) -PASS -- TEST 'rap_2threads_intel' [23:17, 02:30](1092 MB) -PASS -- TEST 'rap_restart_intel' [54:04, 02:56](888 MB) -PASS -- TEST 'rap_sfcdiff_intel' [23:17, 03:05](1008 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:17, 02:12](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [54:04, 02:35](886 MB) -PASS -- TEST 'hrrr_control_intel' [23:17, 02:11](1003 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [23:17, 02:21](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [23:18, 02:12](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [53:48, 00:57](838 MB) -PASS -- TEST 'rrfs_v1beta_intel' [53:33, 02:34](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [53:14, 01:16](1964 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [51:15, 00:34](1958 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:57] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [23:29, 01:13](970 MB) -PASS -- TEST 'control_ras_intel' [23:29, 00:35](658 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 08:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [23:29, 00:37](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [51:05, 02:25](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [51:04, 00:33](865 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:20, 05:41] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [50:53, 00:26](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [50:24, 00:36](1611 MB) -PASS -- TEST 'control_stochy_debug_intel' [49:12, 00:35](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [48:36, 00:27](813 MB) -PASS -- TEST 'control_csawmg_debug_intel' [48:32, 01:02](1125 MB) -PASS -- TEST 'control_ras_debug_intel' [48:10, 01:00](826 MB) -PASS -- TEST 'control_diag_debug_intel' [48:01, 00:50](1677 MB) -PASS -- TEST 'control_debug_p8_intel' [47:36, 00:55](1911 MB) -PASS -- TEST 'regional_debug_intel' [46:59, 00:42](948 MB) -PASS -- TEST 'rap_control_debug_intel' [45:36, 00:56](1196 MB) -PASS -- TEST 'hrrr_control_debug_intel' [45:00, 00:40](1192 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [44:53, 00:27](1199 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [44:53, 00:25](1197 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [44:36, 00:15](1194 MB) -PASS -- TEST 'rap_diag_debug_intel' [44:24, 00:37](1278 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:06, 01:15](1194 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [43:44, 00:34](1203 MB) -PASS -- TEST 'rap_lndp_debug_intel' [43:06, 01:11](1199 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:50, 00:20](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [42:39, 01:14](1192 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [41:39, 01:00](1195 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [41:10, 01:10](1195 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [40:58, 00:54](1192 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [40:44, 00:19](1199 MB) -PASS -- TEST 'rap_flake_debug_intel' [40:41, 01:13](1200 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:38, 02:59](1200 MB) - -PASS -- COMPILE 'wam_debug_intel' [20:35, 03:46] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [40:34, 01:01](1704 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:42, 08:53] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [38:28, 00:53](1060 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [38:03, 02:35](887 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [37:19, 03:58](888 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [37:18, 02:59](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [37:05, 02:36](943 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [36:29, 03:51](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [26:58, 01:53](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [28:06, 00:18](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [41:57, 11:48] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [35:43, 00:43](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [29:33, 00:32](1080 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [29:32, 00:23](976 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [03:24, 09:03] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [21:05, 01:36](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [57:17, 03:52] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [26:11, 00:41](1075 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:11, 00:56](1071 MB) -PASS -- TEST 'conus13km_debug_intel' [26:11, 01:00](1183 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:11, 00:57](866 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:12, 00:58](1146 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:11, 01:08](1244 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [58:20, 03:49] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [25:09, 01:11](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [04:21, 10:33] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [18:59, 01:44](708 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [18:59, 00:48](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:57, 02:07](765 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:22, 02:13](792 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:18, 01:58](850 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:02, 01:25](498 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:42, 01:29](524 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [12:41, 00:59](384 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:37, 03:00](457 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:47, 00:55](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:51, 01:14](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:53, 01:29](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:37, 01:02](418 MB) -PASS -- TEST 'gnv1_nested_intel' [07:17, 03:15](1715 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [57:18, 04:15] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:13, 00:47](629 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [05:23, 13:44] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:35, 01:32](709 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [05:44, 01:48](799 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [00:16, 10:15] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:12, 01:41](797 MB) - -PASS -- COMPILE 'hafs_all_intel' [48:08, 09:44] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [19:03, 02:11](776 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:03, 02:13](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:01, 00:45](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [40:56, 09:13] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [20:06, 00:46](769 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 00:12](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [20:06, 00:28](647 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [20:06, 00:17](648 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [20:06, 00:52](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [20:06, 00:18](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [20:06, 00:54](770 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [20:06, 00:13](651 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:07, 01:26](696 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:07, 01:34](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [20:06, 00:21](755 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [20:06, 00:28](2036 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [20:06, 00:59](2034 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [25:38, 09:12] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [19:07, 00:17](769 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [23:56, 00:16](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [23:56, 00:21](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:30, 00:46](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:49, 09:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [50:19, 01:36](1930 MB) - -PASS -- COMPILE 'atml_intel' [34:49, 10:38] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [50:20, 02:14](1896 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [50:20, 02:15](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [40:50, 00:51](1045 MB) - -PASS -- COMPILE 'atml_debug_intel' [29:43, 04:44] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [54:12, 02:45](1932 MB) - -PASS -- COMPILE 'atmw_intel' [31:45, 09:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [49:19, 02:06](1905 MB) - -PASS -- COMPILE 'atmaero_intel' [32:46, 09:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [47:19, 01:47](3131 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [47:19, 01:33](3016 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [47:19, 01:44](3026 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [28:42, 03:48] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [50:27, 02:02](4557 MB) +PASS -- TEST 'control_flake_intel' [44:37, 00:29](670 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [43:01, 01:07](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [43:00, 00:38](1579 MB) +PASS -- TEST 'control_latlon_intel' [42:34, 01:02](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:19, 01:12](1575 MB) +PASS -- TEST 'control_c48_intel' [40:18, 00:41](1612 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [39:22, 00:55](733 MB) +PASS -- TEST 'control_c192_intel' [39:18, 01:05](1692 MB) +PASS -- TEST 'control_c384_intel' [38:11, 02:17](2001 MB) +PASS -- TEST 'control_c384gdas_intel' [37:53, 02:46](1190 MB) +PASS -- TEST 'control_stochy_intel' [37:37, 00:34](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [21:54, 00:38](434 MB) +PASS -- TEST 'control_lndp_intel' [35:34, 01:13](630 MB) +PASS -- TEST 'control_iovr4_intel' [33:25, 00:42](624 MB) +PASS -- TEST 'control_iovr5_intel' [31:50, 00:46](624 MB) +PASS -- TEST 'control_p8_intel' [30:45, 02:16](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [30:32, 02:37](1869 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [29:52, 02:16](1871 MB) +PASS -- TEST 'control_restart_p8_intel' [16:48, 02:08](1020 MB) +PASS -- TEST 'control_noqr_p8_intel' [29:43, 01:46](1861 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [16:48, 02:13](1024 MB) +PASS -- TEST 'control_decomp_p8_intel' [29:42, 01:38](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [28:49, 01:59](1960 MB) +PASS -- TEST 'control_p8_lndp_intel' [28:42, 00:23](1873 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [28:12, 02:36](1923 MB) +PASS -- TEST 'control_p8_mynn_intel' [26:49, 02:05](1882 MB) +PASS -- TEST 'merra2_thompson_intel' [26:29, 02:19](1871 MB) +PASS -- TEST 'regional_control_intel' [25:51, 00:13](871 MB) +PASS -- TEST 'regional_restart_intel' [20:02, 00:42](880 MB) +PASS -- TEST 'regional_decomp_intel' [24:52, 00:49](881 MB) +PASS -- TEST 'regional_2threads_intel' [24:41, 01:09](1004 MB) +PASS -- TEST 'regional_noquilt_intel' [23:29, 01:07](1195 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [23:06, 00:38](872 MB) +PASS -- TEST 'regional_wofs_intel' [22:29, 00:39](1603 MB) + +PASS -- COMPILE 'ifi_intel' [09:21, 08:36] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [48:11, 01:09](873 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [48:11, 00:14](873 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [48:12, 00:40](1001 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 09:40] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [46:23, 02:12](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [46:24, 01:23](1193 MB) +PASS -- TEST 'rap_decomp_intel' [46:23, 02:24](1010 MB) +PASS -- TEST 'rap_2threads_intel' [46:23, 01:50](1095 MB) +PASS -- TEST 'rap_restart_intel' [21:43, 02:44](890 MB) +PASS -- TEST 'rap_sfcdiff_intel' [46:23, 03:09](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [46:23, 01:59](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [20:55, 02:48](892 MB) +PASS -- TEST 'hrrr_control_intel' [46:23, 02:43](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [46:23, 02:10](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [46:24, 02:51](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [20:26, 00:39](838 MB) +PASS -- TEST 'rrfs_v1beta_intel' [19:29, 02:54](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [19:10, 01:21](1969 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:39, 00:48](1959 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:59] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [47:25, 00:54](969 MB) +PASS -- TEST 'control_ras_intel' [47:25, 00:26](658 MB) + +PASS -- COMPILE 'wam_intel' [09:22, 08:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [47:24, 00:40](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:43] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [18:06, 02:05](1868 MB) +PASS -- TEST 'regional_control_faster_intel' [16:47, 01:09](868 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [32:49, 05:44] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [16:20, 00:49](1615 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:20, 00:57](1617 MB) +PASS -- TEST 'control_stochy_debug_intel' [16:02, 00:39](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [16:06, 00:20](813 MB) +PASS -- TEST 'control_csawmg_debug_intel' [15:53, 01:02](1126 MB) +PASS -- TEST 'control_ras_debug_intel' [15:50, 01:05](820 MB) +PASS -- TEST 'control_diag_debug_intel' [14:42, 00:51](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [14:19, 00:40](1906 MB) +PASS -- TEST 'regional_debug_intel' [13:49, 00:37](948 MB) +PASS -- TEST 'rap_control_debug_intel' [13:44, 00:58](1199 MB) +PASS -- TEST 'hrrr_control_debug_intel' [13:30, 01:08](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [13:07, 00:45](1198 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [12:36, 01:10](1197 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:37, 00:49](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:16, 01:30](1277 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:35, 00:37](1195 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:34, 00:57](1203 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:34, 01:04](1198 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:34, 01:08](1196 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:04, 00:26](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:48, 00:36](1195 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:29, 00:51](1196 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:51, 00:50](1191 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 01:05](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:23, 00:35](1203 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:13, 02:44](1200 MB) + +PASS -- COMPILE 'wam_debug_intel' [55:12, 03:53] ( 840 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [59:19, 08:56] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [52:22, 00:57](1054 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [52:21, 01:55](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [52:21, 03:27](886 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [52:21, 02:38](953 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [52:22, 01:56](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [52:21, 03:16](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:09, 02:30](797 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [17:24, 01:14](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [02:18, 11:59] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [48:20, 01:17](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [16:43, 00:47](1081 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [16:42, 00:37](976 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [57:12, 09:04] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [51:00, 00:46](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [51:08, 04:03] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [56:16, 00:56](1075 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [56:16, 00:50](1071 MB) +PASS -- TEST 'conus13km_debug_intel' [56:16, 00:29](1163 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [56:16, 00:47](855 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [56:17, 01:15](1147 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [56:16, 00:43](1251 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:08, 03:44] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [56:16, 00:48](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [57:12, 10:33] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [49:13, 01:55](706 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:13, 00:58](1055 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [49:11, 01:21](760 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [49:11, 01:54](791 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [49:12, 01:35](813 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [49:11, 00:52](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [49:12, 01:31](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [49:12, 01:05](388 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [49:15, 02:34](448 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [49:11, 01:37](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [49:11, 01:21](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [49:13, 01:39](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [49:12, 00:51](417 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [50:05, 04:10] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [56:18, 01:11](689 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [57:13, 13:46] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [44:06, 01:22](625 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [43:36, 01:08](802 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [29:44, 10:18] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [50:09, 01:07](795 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:23, 09:34] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [40:16, 01:40](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [39:47, 01:37](740 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:43, 00:15](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:24, 09:36] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [35:22, 00:34](771 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:40, 00:21](744 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [35:24, 00:13](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [33:52, 01:10](649 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [33:47, 00:17](650 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [32:13, 00:32](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [31:43, 00:41](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [30:16, 01:12](651 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [29:42, 01:20](691 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:37, 01:19](670 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [27:37, 00:37](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [27:02, 00:37](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [24:34, 00:39](2036 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:24, 09:17] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [24:04, 00:54](771 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:14, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [54:01, 00:42](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [54:01, 00:14](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [50:29, 00:41](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:42, 09:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [23:43, 01:39](1925 MB) + +PASS -- COMPILE 'atml_intel' [49:03, 10:49] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [03:18, 02:11](1894 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [03:18, 02:06](1896 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [54:53, 00:53](1044 MB) + +PASS -- COMPILE 'atml_debug_intel' [41:57, 04:37] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:03, 02:01](1938 MB) + +PASS -- COMPILE 'atmw_intel' [46:00, 09:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 02:33](1904 MB) + +PASS -- COMPILE 'atmaero_intel' [44:59, 09:18] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:10, 01:49](3132 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [04:10, 02:11](3016 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [04:10, 02:09](3025 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [38:54, 03:50] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [09:29, 01:54](4564 MB) SYNOPSIS: -Starting Date/Time: 20240729 13:15:25 -Ending Date/Time: 20240729 15:38:53 -Total Time: 02h:23m:54s +Starting Date/Time: 20240731 13:51:30 +Ending Date/Time: 20240731 16:18:19 +Total Time: 02h:27m:14s Compiles Completed: 38/38 -Tests Completed: 179/179 +Tests Completed: 177/179 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_acorn/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_acorn/run_gnv1_nested_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ACORN REGRESSION TESTING LOG==== +====START OF ACORN REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1769361 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-l) - USE CONFIG FILE: rt.test +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [04:16, 03:51] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [03:14, 00:46](1702 MB) + +PASS -- COMPILE 'hafsw_intel' [11:24, 10:36] ( 2 warnings 8 remarks ) +PASS -- TEST 'gnv1_nested_intel' [56:06, 03:33](1710 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 16:52:30 +Ending Date/Time: 20240731 17:15:35 +Total Time: 00h:23m:11s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 0e6673c834..e49fb23fde 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: -d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,285 +35,356 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_15902 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_118977 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [01:45, 23:26] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:02, 05:35](3200 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [03:45, 25:45] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:04, 14:38](1918 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:23, 15:45](1946 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:22, 07:47](1080 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:00, 16:33](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [03:44, 25:23] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:13, 14:31](1917 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [51:41, 14:06] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [00:44, 22:47] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:26, 06:14](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:29, 06:24](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:04, 04:01](3160 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:17, 06:22](3251 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:59, 04:06](3185 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:14, 05:58](3730 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:12, 06:19](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:12, 05:15](3542 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:13, 06:07](3234 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:37, 09:33](3894 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:50, 06:29](3625 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:45, 10:28](4524 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:38, 07:01](4669 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:01, 05:55](3210 MB) - -PASS -- COMPILE 's2sw_intel' [58:43, 21:15] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:33, 04:48](1929 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:43, 04:57](1987 MB) - -PASS -- COMPILE 's2swa_debug_intel' [52:42, 14:36] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:42, 08:15](3301 MB) - -PASS -- COMPILE 's2sw_debug_intel' [51:41, 13:25] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:21, 05:44](1960 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [55:43, 17:30] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:54, 04:58](2001 MB) - -PASS -- COMPILE 's2s_intel' [55:43, 17:40] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [20:16, 06:43](2943 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [15:10, 02:21](2945 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:08, 01:39](2344 MB) - -PASS -- COMPILE 's2swa_faster_intel' [43:28, 26:16] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:02, 06:02](3230 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [39:27, 21:59] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:31, 14:54](1942 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:51, 07:58](1094 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:35, 16:43](1911 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [27:21, 11:16] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:36, 23:37](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [29:24, 15:34] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [15:35, 03:24](667 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [13:58, 02:27](1571 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:12, 02:29](1573 MB) -PASS -- TEST 'control_latlon_intel' [12:55, 02:25](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:58, 02:25](1570 MB) -PASS -- TEST 'control_c48_intel' [20:02, 06:03](1621 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [16:31, 05:14](736 MB) -PASS -- TEST 'control_c192_intel' [15:40, 08:41](1689 MB) -PASS -- TEST 'control_c384_intel' [15:36, 08:44](2003 MB) -PASS -- TEST 'control_c384gdas_intel' [15:26, 07:05](1201 MB) -PASS -- TEST 'control_stochy_intel' [06:37, 01:27](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:33, 00:52](440 MB) -PASS -- TEST 'control_lndp_intel' [05:30, 01:22](625 MB) -PASS -- TEST 'control_iovr4_intel' [06:33, 02:07](625 MB) -PASS -- TEST 'control_iovr5_intel' [05:37, 02:08](626 MB) -PASS -- TEST 'control_p8_intel' [07:16, 03:10](1867 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:27, 03:02](1855 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:16, 03:11](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [04:13, 01:57](1018 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:16, 03:20](1860 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:06, 02:01](1019 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:26, 03:20](1868 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:24, 03:00](1957 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:10, 05:07](1869 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:20, 03:48](1924 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:16, 03:10](1875 MB) -PASS -- TEST 'merra2_thompson_intel' [06:19, 03:31](1867 MB) -PASS -- TEST 'regional_control_intel' [06:55, 05:03](874 MB) -PASS -- TEST 'regional_restart_intel' [07:54, 03:02](874 MB) -PASS -- TEST 'regional_decomp_intel' [06:54, 05:15](876 MB) -PASS -- TEST 'regional_noquilt_intel' [06:55, 04:54](1194 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 04:54](864 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:51, 05:00](883 MB) -PASS -- TEST 'regional_wofs_intel' [07:49, 05:48](1608 MB) - -PASS -- COMPILE 'rrfs_intel' [27:24, 13:20] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [14:09, 06:09](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:48, 03:42](1188 MB) -PASS -- TEST 'rap_decomp_intel' [11:12, 06:23](1006 MB) -PASS -- TEST 'rap_2threads_intel' [11:12, 05:38](1097 MB) -PASS -- TEST 'rap_restart_intel' [05:04, 03:14](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:06, 06:11](1006 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:06, 06:22](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 04:36](882 MB) -PASS -- TEST 'hrrr_control_intel' [06:16, 03:17](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:04, 03:20](1003 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [22:12, 02:52](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:38, 01:46](838 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:07, 06:00](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:42, 07:21](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:42, 07:06](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [23:16, 11:25] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:54, 06:35](963 MB) -PASS -- TEST 'control_ras_intel' [04:33, 02:52](655 MB) - -PASS -- COMPILE 'wam_intel' [21:16, 11:04] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:11, 09:59](1659 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [27:17, 17:32] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:23, 03:04](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [06:56, 04:43](870 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [20:17, 12:53] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:19, 02:34](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:24, 02:31](1604 MB) -PASS -- TEST 'control_stochy_debug_intel' [13:36, 02:53](810 MB) -PASS -- TEST 'control_lndp_debug_intel' [12:33, 02:40](809 MB) -PASS -- TEST 'control_csawmg_debug_intel' [16:19, 04:40](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [14:34, 02:35](820 MB) -PASS -- TEST 'control_diag_debug_intel' [16:53, 02:34](1677 MB) -PASS -- TEST 'control_debug_p8_intel' [18:19, 03:22](1905 MB) -PASS -- TEST 'regional_debug_intel' [25:18, 16:32](941 MB) -PASS -- TEST 'rap_control_debug_intel' [06:40, 04:41](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:26, 04:31](1188 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 04:40](1194 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 04:39](1191 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 04:38](1192 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:03, 05:00](1276 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 04:48](1197 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:30, 04:51](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:34, 04:44](1191 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:28, 04:49](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:32, 04:38](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:33, 04:42](1194 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:31](1188 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:27, 04:36](1187 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:35](1199 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:28, 04:43](1193 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:05, 08:27](1193 MB) - -PASS -- COMPILE 'wam_debug_intel' [14:14, 06:46] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:12, 12:22](1702 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [37:32, 11:09] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:28, 03:41](1055 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:05, 05:59](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:02, 03:16](881 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:07, 05:21](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:54, 03:04](938 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:54, 03:35](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:04, 03:54](795 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 01:34](773 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [39:28, 14:58] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:28, 01:55](1085 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:15, 01:04](1085 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:08, 01:07](976 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:32, 11:21] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:08, 03:39](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [29:29, 07:07] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:32](1067 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 04:26](1066 MB) -PASS -- TEST 'conus13km_debug_intel' [16:42, 13:30](1153 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:42, 13:26](836 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 08:05](1157 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:40, 13:22](1219 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [28:25, 07:02] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 04:53](1095 MB) - -PASS -- COMPILE 'hafsw_intel' [38:31, 18:08] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:31, 04:37](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:13, 05:18](1066 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:01, 06:30](775 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:39, 11:00](796 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:42, 12:06](814 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:12, 04:41](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:39, 05:57](495 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:02, 02:21](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:55, 06:22](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:02, 03:23](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:37, 03:05](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:19, 03:51](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:38, 01:21](431 MB) -PASS -- TEST 'gnv1_nested_intel' [07:21, 04:10](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [28:24, 08:36] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:11, 13:13](634 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [42:33, 26:51] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:12](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:41, 07:14](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [33:42, 19:42] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:30, 05:22](679 MB) - -PASS -- COMPILE 'hafs_all_intel' [26:21, 15:54] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:38, 05:38](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:50, 05:39](742 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:28, 16:14](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:20, 08:40] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:47, 02:28](757 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:46, 01:34](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:44, 02:20](647 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:45, 02:22](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:45, 02:24](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:46, 02:28](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:45, 02:29](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:32, 02:21](649 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:30, 05:38](699 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:22, 05:43](679 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:33, 02:29](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:56, 03:55](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:53, 03:53](2037 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:18, 06:04] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:26, 05:09](738 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:15, 08:51] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:34, 02:30](756 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [11:14, 02:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:39, 01:13](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:27, 01:07](458 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:43](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:18, 13:22] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:33, 03:53](1913 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:20, 12:19] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:35, 03:49](1909 MB) - -PASS -- COMPILE 'atml_intel' [19:20, 15:20] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:37, 07:06](1883 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:37, 06:58](1896 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:04, 03:55](1038 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:19, 09:54] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:43, 06:20](1938 MB) - -PASS -- COMPILE 'atmw_intel' [15:20, 13:59] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:15](1893 MB) - -PASS -- COMPILE 'atmaero_intel' [13:18, 12:37] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:47, 04:06](3124 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:51, 04:18](2996 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:19, 04:34](3015 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:19, 07:44] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:59, 21:50](4535 MB) +PASS -- COMPILE 's2swa_32bit_intel' [49:21, 21:52] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:32, 05:56](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [52:23, 24:30] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:21, 14:33](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:44, 16:01](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:32, 08:06](1081 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:03, 16:33](1889 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:23, 23:59] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:17, 14:22](1911 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [39:20, 12:21] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [49:30, 21:41] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:11, 08:17](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:38, 07:40](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:23, 04:07](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:51, 07:41](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:54, 04:00](3188 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:23, 06:32](3726 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:11, 07:49](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:13, 05:32](3536 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:36, 07:53](3236 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:29, 11:52](3812 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:53, 06:43](3626 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [33:46, 12:50](4522 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:01, 07:21](4671 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:10, 05:57](3210 MB) + +PASS -- COMPILE 's2sw_intel' [47:29, 20:30] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:44, 04:54](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:54, 05:08](1992 MB) + +PASS -- COMPILE 's2swa_debug_intel' [39:26, 12:06] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:18, 08:22](3300 MB) + +PASS -- COMPILE 's2sw_debug_intel' [38:28, 11:28] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 05:55](1964 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [43:26, 16:06] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:03, 04:50](1991 MB) + +PASS -- COMPILE 's2s_intel' [44:22, 16:27] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:11, 06:51](2953 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:09, 02:32](2951 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:07, 01:44](2370 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:15, 26:13] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:19, 06:26](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:21, 22:29] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:37, 14:53](1943 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [22:42, 09:03](1118 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [10:02, 16:58](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:13, 11:15] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:40, 23:47](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:14, 15:30] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:40, 03:29](673 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:23, 02:37](1569 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:37, 02:35](1567 MB) +PASS -- TEST 'control_latlon_intel' [05:23, 02:30](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:26, 02:31](1574 MB) +PASS -- TEST 'control_c48_intel' [34:17, 06:09](1620 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [33:36, 05:26](734 MB) +PASS -- TEST 'control_c192_intel' [12:11, 09:08](1695 MB) +PASS -- TEST 'control_c384_intel' [19:09, 09:07](2016 MB) +PASS -- TEST 'control_c384gdas_intel' [17:13, 07:34](1200 MB) +PASS -- TEST 'control_stochy_intel' [03:40, 01:29](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:06](439 MB) +PASS -- TEST 'control_lndp_intel' [03:42, 01:27](624 MB) +PASS -- TEST 'control_iovr4_intel' [03:51, 02:10](624 MB) +PASS -- TEST 'control_iovr5_intel' [03:45, 02:12](622 MB) +PASS -- TEST 'control_p8_intel' [05:37, 03:23](1873 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:36, 03:15](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 03:19](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [05:24, 02:11](1017 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:00, 03:12](1864 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [08:41, 02:03](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:00, 03:22](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:52, 03:02](1955 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:05](1869 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:11, 04:05](1925 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:24, 03:22](1877 MB) +PASS -- TEST 'merra2_thompson_intel' [07:01, 03:41](1869 MB) +PASS -- TEST 'regional_control_intel' [08:17, 05:13](875 MB) +PASS -- TEST 'regional_restart_intel' [04:59, 03:15](872 MB) +PASS -- TEST 'regional_decomp_intel' [08:06, 05:35](876 MB) +PASS -- TEST 'regional_noquilt_intel' [07:03, 05:08](1197 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 05:03](880 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:48, 05:06](873 MB) +PASS -- TEST 'regional_wofs_intel' [08:51, 05:57](1607 MB) + +PASS -- COMPILE 'rrfs_intel' [15:19, 13:19] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:35, 06:47](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:08, 04:12](1191 MB) +PASS -- TEST 'rap_decomp_intel' [09:35, 07:00](1005 MB) +PASS -- TEST 'rap_2threads_intel' [09:34, 06:20](1096 MB) +PASS -- TEST 'rap_restart_intel' [05:16, 03:15](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:36, 06:50](1004 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:36, 07:05](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:16, 04:54](879 MB) +PASS -- TEST 'hrrr_control_intel' [07:13, 03:41](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:13, 03:28](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:42, 02:57](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:48, 01:48](836 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:43, 06:42](998 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:15, 08:02](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:14, 07:50](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [14:13, 11:30] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:08, 06:48](962 MB) +PASS -- TEST 'control_ras_intel' [08:41, 02:56](655 MB) + +PASS -- COMPILE 'wam_intel' [12:19, 11:01] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [32:06, 11:11](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:21, 17:17] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:43, 03:05](1872 MB) +PASS -- TEST 'regional_control_faster_intel' [07:02, 04:59](879 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:20, 12:51] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:17, 02:40](1613 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:44, 02:33](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:35, 02:53](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [22:37, 02:45](808 MB) +PASS -- TEST 'control_csawmg_debug_intel' [23:57, 04:49](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [21:03, 02:48](818 MB) +PASS -- TEST 'control_diag_debug_intel' [22:46, 02:43](1671 MB) +PASS -- TEST 'control_debug_p8_intel' [21:34, 03:25](1906 MB) +PASS -- TEST 'regional_debug_intel' [21:54, 16:56](929 MB) +PASS -- TEST 'rap_control_debug_intel' [23:13, 05:01](1195 MB) +PASS -- TEST 'hrrr_control_debug_intel' [23:11, 05:03](1188 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [21:11, 04:38](1196 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [21:09, 04:41](1192 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [20:00, 04:51](1192 MB) +PASS -- TEST 'rap_diag_debug_intel' [20:46, 05:05](1279 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [19:05, 04:48](1197 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [19:02, 05:01](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [18:06, 04:58](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [18:06, 05:07](1192 MB) +PASS -- TEST 'rap_noah_debug_intel' [16:18, 04:36](1192 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [16:01, 05:01](1192 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [19:04, 07:44](1189 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [16:20, 04:46](1188 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [16:06, 05:37](1192 MB) +PASS -- TEST 'rap_flake_debug_intel' [14:11, 04:42](1191 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:38, 08:02](1194 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:13, 07:01] ( 844 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:13, 11:19] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [28:36, 03:32](1055 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:25, 06:09](880 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:30, 02:52](883 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:07, 05:15](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:12, 03:16](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:24, 02:59](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:59, 04:01](791 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 01:40](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:00, 15:24] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [13:13, 01:52](1085 MB) +PASS -- TEST 'conus13km_2threads_intel' [09:11, 01:03](1082 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [47:10, 01:10](973 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [04:55, 11:23] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:53, 03:41](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [34:04, 07:18] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:29, 04:42](1068 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:49, 04:52](1067 MB) +PASS -- TEST 'conus13km_debug_intel' [38:37, 14:01](1172 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:41, 13:40](840 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:20, 08:01](1151 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [37:21, 13:15](1220 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:02, 06:58] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:38, 04:49](1099 MB) + +PASS -- COMPILE 'hafsw_intel' [46:17, 18:38] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:44, 06:43](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:15, 05:45](1072 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:41, 09:14](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [24:59, 12:19](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:23, 13:32](811 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:13, 08:37](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:29, 10:30](493 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:30, 04:14](390 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:30, 09:50](457 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:20, 04:07](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:46, 04:16](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:43, 05:35](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:33, 01:22](430 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [35:05, 08:30] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:23, 12:58](632 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [51:07, 27:22] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:33, 08:54](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:30, 09:43](686 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [42:14, 19:24] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:33, 07:03](677 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:05, 16:13] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:43, 09:56](754 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:56, 09:08](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:51, 19:38](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [30:13, 08:44] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [30:48, 03:06](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:37](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [31:13, 02:56](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [29:50, 02:32](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [29:53, 02:45](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:53, 02:47](766 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:55, 02:39](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [29:50, 02:43](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [30:09, 06:05](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [31:13, 05:52](683 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [29:37, 02:43](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [31:40, 04:10](2033 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [30:02, 04:28](2032 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [29:28, 06:10] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [33:01, 05:21](753 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [27:22, 08:46] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [29:54, 02:41](755 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [32:22, 02:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:13, 01:24](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:47, 01:17](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:45, 01:03](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [43:27, 14:29] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:40, 05:02](1922 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [41:23, 12:40] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:57, 06:02](1900 MB) + +PASS -- COMPILE 'atml_intel' [43:19, 16:01] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:53, 09:01](1890 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:50, 09:40](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:20, 05:22](1039 MB) + +PASS -- COMPILE 'atml_debug_intel' [37:24, 10:05] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:51, 07:08](1938 MB) + +PASS -- COMPILE 'atmw_intel' [41:26, 14:23] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:28, 03:25](1891 MB) + +PASS -- COMPILE 'atmaero_intel' [32:25, 12:51] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:56, 06:39](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:26, 06:41](2994 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:17, 06:47](3007 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [25:23, 08:28] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:46, 22:51](4516 MB) SYNOPSIS: -Starting Date/Time: 20240726 14:27:02 -Ending Date/Time: 20240726 17:11:21 -Total Time: 02h:45m:22s +Starting Date/Time: 20240731 08:43:44 +Ending Date/Time: 20240731 20:26:26 +Total Time: 11h:43m:35s Compiles Completed: 41/41 -Tests Completed: 183/183 +Tests Completed: 181/183 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2373/tests/logs/log_derecho/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2373/tests/logs/log_derecho/run_gnv1_nested_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_30140 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [07:12, 06:23] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [13:52, 12:24](1698 MB) + +PASS -- COMPILE 'hafsw_intel' [18:14, 17:33] ( 6 warnings 9 remarks ) +PASS -- TEST 'gnv1_nested_intel' [07:19, 04:04](1712 MB) + +SYNOPSIS: +Starting Date/Time: 20240801 06:59:02 +Ending Date/Time: 20240801 07:26:00 +Total Time: 00h:27m:11s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index e3f3fd2bcd..67bdbf63d9 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,287 +35,358 @@ 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-20240724 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_205288 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_40274 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:17, 19:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:37, 07:27](3200 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:13, 23:12] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:45, 14:07](1924 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:40, 14:10](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:51, 06:50](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:49, 15:09](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:13, 22:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:06, 13:40](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:13, 15:45] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:42, 24:57](1947 MB) - -PASS -- COMPILE 's2swa_intel' [18:13, 18:08] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:43, 08:37](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:14, 08:20](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:22, 05:05](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:43, 08:29](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:22, 05:31](3182 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:38, 07:04](3464 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:26, 08:34](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:28, 07:50](3170 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:48, 09:01](3225 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [23:10, 10:37](3450 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:38, 07:19](3609 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:09, 13:09](4208 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:58, 09:20](4359 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:35, 08:28](3208 MB) - -PASS -- COMPILE 's2sw_intel' [18:13, 17:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:17, 05:58](1930 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:40, 06:26](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:16, 13:08] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:10, 10:00](3278 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:13, 15:09] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 06:28](1958 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:17, 19:01] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:12, 05:24](1999 MB) - -PASS -- COMPILE 's2s_intel' [16:13, 16:03] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:46, 06:31](2926 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:44, 02:06](2931 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:40, 01:09](2325 MB) - -PASS -- COMPILE 's2swa_faster_intel' [30:19, 29:13] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:15, 08:00](3228 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:18, 25:16] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 15:26](1935 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:20, 07:56](1101 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:53, 17:57](1910 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [19:16, 17:38] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:52, 27:21](1960 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:15, 16:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:48, 03:54](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:06, 03:34](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:14, 03:16](1570 MB) -PASS -- TEST 'control_latlon_intel' [07:55, 03:24](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:15, 03:33](1572 MB) -PASS -- TEST 'control_c48_intel' [11:00, 06:31](1596 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 05:43](719 MB) -PASS -- TEST 'control_c192_intel' [15:11, 10:11](1682 MB) -PASS -- TEST 'control_c384_intel' [23:45, 18:14](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [21:43, 14:42](1179 MB) -PASS -- TEST 'control_stochy_intel' [03:07, 01:55](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:35, 01:20](426 MB) -PASS -- TEST 'control_lndp_intel' [02:56, 01:53](622 MB) -PASS -- TEST 'control_iovr4_intel' [04:20, 02:40](620 MB) -PASS -- TEST 'control_iovr5_intel' [04:20, 02:40](620 MB) -PASS -- TEST 'control_p8_intel' [09:38, 04:01](1860 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:31, 04:04](1860 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:47, 04:02](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [05:22, 01:51](1014 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:43, 03:55](1858 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:59, 02:03](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:43, 03:57](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:43, 03:11](1950 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:31, 05:38](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:43, 04:30](1920 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:04, 03:37](1868 MB) -PASS -- TEST 'merra2_thompson_intel' [06:03, 03:45](1866 MB) -PASS -- TEST 'regional_control_intel' [06:02, 04:54](866 MB) -PASS -- TEST 'regional_restart_intel' [05:16, 02:43](860 MB) -PASS -- TEST 'regional_decomp_intel' [07:31, 05:16](860 MB) -PASS -- TEST 'regional_2threads_intel' [06:00, 03:16](1005 MB) -PASS -- TEST 'regional_noquilt_intel' [08:10, 05:09](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:25, 05:10](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:00, 04:55](866 MB) -PASS -- TEST 'regional_wofs_intel' [07:14, 06:02](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [16:14, 15:25] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:19, 06:56](1007 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:57, 04:10](1181 MB) -PASS -- TEST 'rap_decomp_intel' [10:11, 07:22](1007 MB) -PASS -- TEST 'rap_2threads_intel' [09:49, 06:21](1094 MB) -PASS -- TEST 'rap_restart_intel' [06:51, 03:35](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:59, 06:52](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:06, 07:11](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:39, 05:03](877 MB) -PASS -- TEST 'hrrr_control_intel' [08:02, 04:00](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:42, 03:59](1003 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:42, 03:17](1084 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:32, 01:57](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:47, 06:42](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:15, 08:18](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:57, 07:58](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [15:14, 14:30] -PASS -- TEST 'control_csawmg_intel' [08:18, 06:48](966 MB) -PASS -- TEST 'control_ras_intel' [04:52, 03:24](659 MB) - -PASS -- COMPILE 'wam_intel' [15:16, 14:31] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:02, 12:02](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [23:16, 23:01] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:52, 03:44](1858 MB) -PASS -- TEST 'regional_control_faster_intel' [06:32, 05:02](856 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:12, 13:14] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:11, 03:03](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:16, 02:58](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:59, 03:23](799 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:41, 02:50](797 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:57, 04:36](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [03:54, 02:55](805 MB) -PASS -- TEST 'control_diag_debug_intel' [05:43, 03:11](1656 MB) -PASS -- TEST 'control_debug_p8_intel' [05:33, 03:30](1892 MB) -PASS -- TEST 'regional_debug_intel' [18:37, 16:30](901 MB) -PASS -- TEST 'rap_control_debug_intel' [06:13, 05:03](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:10, 05:02](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 05:05](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 05:06](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:14, 05:27](1183 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:23](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:10](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:20, 05:16](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:58, 05:20](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:58, 05:10](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:00, 05:03](1180 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:10, 05:05](1181 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:56, 08:03](1180 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:08, 05:00](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:15, 06:10](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:21, 05:09](1182 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:00, 08:30](1184 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:14, 09:49] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:26, 13:36](1685 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:12, 15:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:45, 04:02](1050 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:39, 06:15](886 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:52, 03:25](883 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 05:20](942 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 02:40](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:17, 03:37](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:18, 04:23](784 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:50, 02:09](767 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:15, 23:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:12, 02:31](1096 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:20, 01:20](1080 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:53, 01:51](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:13, 16:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:41](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:11, 10:39] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:56, 05:01](1059 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 04:56](1059 MB) -PASS -- TEST 'conus13km_debug_intel' [16:41, 14:08](1140 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:42](819 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:31, 08:25](1129 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:39, 14:10](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:14, 16:53] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:42, 04:59](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [26:17, 25:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:35, 05:23](708 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:51, 04:34](1056 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:48, 07:53](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:36, 11:41](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:47, 12:54](801 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:45, 05:25](480 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:35, 06:47](495 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:37, 02:54](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:27, 08:03](435 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:17, 03:49](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:24, 03:40](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:25, 04:40](577 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:14, 01:43](402 MB) -PASS -- TEST 'gnv1_nested_intel' [09:23, 05:54](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [17:17, 16:42] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 13:06](601 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [33:16, 32:25] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:24, 07:44](613 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:24, 07:48](786 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [26:17, 25:57] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:19, 06:52](785 MB) - -PASS -- COMPILE 'hafs_all_intel' [25:16, 24:19] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:33](737 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:33, 06:19](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:34, 20:10](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:17, 15:00] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:31, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:35](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:30, 02:29](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:32, 02:27](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:36](638 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:31, 02:41](750 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:39](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:29, 02:28](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:21, 06:15](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:28, 06:03](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:23, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 04:37](2028 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:36, 04:40](2029 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [12:20, 11:16] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:25](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:15, 14:50] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:27, 02:38](752 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [07:18, 05:53] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:16, 02:20](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:13, 01:32](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:51, 01:14](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 16:46] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:12, 04:18](1923 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:14, 16:10] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:02](1911 MB) - -PASS -- COMPILE 'atml_intel' [17:15, 16:58] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:05, 08:14](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:05, 08:13](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:14, 04:12](1046 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:12, 11:41] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:49, 06:43](1930 MB) - -PASS -- COMPILE 'atmw_intel' [16:13, 15:27] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:12, 03:03](1898 MB) - -PASS -- COMPILE 'atmaero_intel' [16:16, 15:53] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:37, 06:40](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:32, 07:16](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:25, 07:07](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [16:13, 14:51] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:44, 18:18](4486 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:11, 19:00] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:27, 08:10](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 25:34] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:32, 13:56](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:35, 15:40](1952 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:27, 07:32](1077 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:26, 15:03](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:12, 22:23] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:47, 13:41](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:15, 13:15] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:26, 24:16](1936 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 18:18] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:18, 08:07](3229 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:24, 08:00](3229 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:32, 05:03](3159 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:26, 08:50](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:42, 05:17](3182 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:24, 06:58](3465 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:14, 08:42](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:12, 08:18](3170 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:34, 08:23](3227 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:32, 10:28](3448 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:28, 07:17](3614 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:01, 13:01](4213 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:02, 09:01](4369 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:14, 08:39](3221 MB) + +PASS -- COMPILE 's2sw_intel' [19:11, 18:11] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:24, 05:17](1938 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:34, 05:49](1996 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:17] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:46, 09:53](3276 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:40] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:47, 05:58](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 16:04] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:33, 05:03](1989 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 16:07] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:23, 06:29](2929 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:32, 01:56](2938 MB) +PASS -- TEST 'cpld_restart_c48_intel' [08:21, 01:08](2351 MB) + +PASS -- COMPILE 's2swa_faster_intel' [29:15, 28:13] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:45, 08:39](3229 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:15, 23:57] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:57, 15:04](1937 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:18, 07:46](1096 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:20, 17:29](1912 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:20, 15:09] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:19, 26:49](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:11, 15:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:41, 03:54](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:45, 04:04](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:26, 03:32](1567 MB) +PASS -- TEST 'control_latlon_intel' [05:21, 03:28](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:28](1569 MB) +PASS -- TEST 'control_c48_intel' [08:38, 06:30](1601 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:10, 05:49](720 MB) +PASS -- TEST 'control_c192_intel' [12:51, 10:29](1683 MB) +PASS -- TEST 'control_c384_intel' [20:40, 18:44](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [17:42, 14:56](1178 MB) +PASS -- TEST 'control_stochy_intel' [02:40, 02:07](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:12](425 MB) +PASS -- TEST 'control_lndp_intel' [02:40, 01:55](623 MB) +PASS -- TEST 'control_iovr4_intel' [03:46, 02:48](620 MB) +PASS -- TEST 'control_iovr5_intel' [03:46, 02:42](620 MB) +PASS -- TEST 'control_p8_intel' [05:51, 03:44](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:09, 04:15](1867 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:46, 03:38](1868 MB) +PASS -- TEST 'control_restart_p8_intel' [03:05, 01:51](1013 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:44](1861 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:05, 01:42](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:48, 04:12](1859 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:58, 02:48](1947 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:46, 05:31](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:08, 04:11](1921 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:10, 03:31](1866 MB) +PASS -- TEST 'merra2_thompson_intel' [05:08, 03:44](1865 MB) +PASS -- TEST 'regional_control_intel' [05:41, 04:51](848 MB) +PASS -- TEST 'regional_restart_intel' [05:00, 02:52](860 MB) +PASS -- TEST 'regional_decomp_intel' [05:39, 05:01](867 MB) +PASS -- TEST 'regional_2threads_intel' [03:46, 03:00](998 MB) +PASS -- TEST 'regional_noquilt_intel' [05:45, 04:41](1182 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:16, 05:06](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 04:51](858 MB) +PASS -- TEST 'regional_wofs_intel' [07:44, 06:08](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 14:19] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:01, 06:56](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:58, 04:04](1187 MB) +PASS -- TEST 'rap_decomp_intel' [07:55, 07:06](1007 MB) +PASS -- TEST 'rap_2threads_intel' [07:54, 06:16](1100 MB) +PASS -- TEST 'rap_restart_intel' [05:58, 03:45](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:58, 07:00](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:58, 07:08](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:07, 05:12](878 MB) +PASS -- TEST 'hrrr_control_intel' [05:05, 04:06](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:51, 03:51](1003 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:51, 03:23](1083 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:34, 01:58](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:00, 06:35](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:37, 08:22](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:50](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [16:13, 15:48] +PASS -- TEST 'control_csawmg_intel' [07:33, 06:47](966 MB) +PASS -- TEST 'control_ras_intel' [04:28, 03:25](659 MB) + +PASS -- COMPILE 'wam_intel' [14:13, 13:56] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:37, 11:29](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:13, 20:32] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:35, 03:21](1867 MB) +PASS -- TEST 'regional_control_faster_intel' [05:57, 04:39](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:12, 15:07] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:53, 02:59](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:54, 02:51](1598 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:30, 03:09](801 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:53](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:40, 04:18](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [03:33, 02:55](805 MB) +PASS -- TEST 'control_diag_debug_intel' [04:44, 03:00](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [04:37, 03:16](1894 MB) +PASS -- TEST 'regional_debug_intel' [17:43, 16:17](902 MB) +PASS -- TEST 'rap_control_debug_intel' [06:37, 05:09](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:10, 04:58](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 05:10](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:31, 05:14](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 05:01](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:38, 05:29](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 05:16](1183 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 05:14](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:32, 05:09](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 05:19](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:38, 05:24](1181 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 05:12](1180 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:44, 08:15](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:44, 05:28](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:32, 06:37](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:31, 05:32](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:58, 08:50](1184 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:14, 11:03] ( 839 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:14, 13:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:06, 04:04](1049 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:49, 05:58](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:58, 03:39](883 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:59, 05:27](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:24, 02:51](937 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:55, 03:53](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:53, 04:09](782 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 01:43](766 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:14, 19:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:25, 02:25](1096 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:02, 01:08](1079 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:27, 01:20](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 13:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:59, 04:24](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:15, 09:44] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:30, 04:54](1060 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 05:01](1059 MB) +PASS -- TEST 'conus13km_debug_intel' [16:24, 14:20](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:16, 14:37](817 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:09, 08:16](1129 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:10, 14:17](1210 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:14, 08:13] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:58](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [18:11, 18:03] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:32, 05:18](705 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:41, 04:34](1057 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 07:42](756 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:18, 11:50](784 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:58, 13:09](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:14, 05:27](481 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:34, 06:56](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:20, 02:56](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:48, 08:00](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 03:54](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:09, 04:07](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:03, 05:11](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:43, 02:39](403 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:11, 10:35] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:01, 13:04](598 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:12, 23:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:15, 08:20](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:28, 08:26](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:14, 17:52] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:18, 06:30](782 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:14, 16:17] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:27](733 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:58, 06:29](727 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:46, 20:05](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:11, 14:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:29, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:27, 01:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:26, 02:27](638 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:32, 02:28](638 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:29](638 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:23, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:27, 02:29](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:06, 06:03](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:57, 05:57](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:37](749 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:29, 04:39](2029 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:26, 04:40](2028 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 08:52] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:27](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:17, 12:37] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:25, 02:37](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:17] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:57, 01:46](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:51, 01:16](457 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:43, 00:59](457 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:15, 14:23] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:36, 04:06](1922 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:12, 14:37] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:28, 04:03](1910 MB) + +PASS -- COMPILE 'atml_intel' [18:12, 16:24] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:32, 08:13](1894 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:30, 08:39](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:45, 04:59](1042 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:14, 12:42] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:29, 06:21](1929 MB) + +PASS -- COMPILE 'atmw_intel' [15:13, 14:34] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:46, 02:48](1898 MB) + +PASS -- COMPILE 'atmaero_intel' [14:13, 13:16] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:13, 06:34](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:16, 07:08](3006 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:06, 07:22](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:12, 09:31] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:38, 18:14](4487 MB) SYNOPSIS: -Starting Date/Time: 20240726 14:39:28 -Ending Date/Time: 20240726 16:26:22 -Total Time: 01h:48m:17s +Starting Date/Time: 20240730 19:35:54 +Ending Date/Time: 20240730 21:08:49 +Total Time: 01h:33m:52s Compiles Completed: 41/41 -Tests Completed: 185/185 +Tests Completed: 183/185 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2373/ufs-weather-model/tests/logs/log_gaea/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2373/ufs-weather-model/tests/logs/log_gaea/run_gnv1_nested_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF GAEA REGRESSION TESTING LOG==== +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_179250 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [10:11, 09:39] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:17, 13:48](1687 MB) + +PASS -- COMPILE 'hafsw_intel' [17:15, 16:25] ( 1 warnings 9 remarks ) +PASS -- TEST 'gnv1_nested_intel' [09:05, 05:40](1717 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 13:43:20 +Ending Date/Time: 20240731 14:11:13 +Total Time: 00h:28m:13s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index d7f6ca0801..f3c2f5166e 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -24,381 +24,383 @@ 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1436054 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2625282 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:24, 05:49](3301 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:15] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:25, 19:03](1944 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:10, 19:56](2137 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:55, 09:07](1256 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:15, 20:07](1870 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:45] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:47, 17:18](1972 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:33] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:18, 23:01](1941 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 13:39] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:15, 07:19](3362 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:26, 07:21](3333 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:42, 03:43](3260 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:15, 07:22](3374 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:41, 03:52](3292 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:12, 07:11](3619 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:13, 07:22](3319 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:08, 04:46](3225 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:23, 07:37](3321 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:26, 11:43](3522 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [17:50, 10:50](3637 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:09, 11:26](4300 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:31, 07:45](4398 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:25, 05:32](3301 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 13:04] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:57, 04:53](1989 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:02, 04:27](2039 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:30] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:07, 08:30](3409 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:18] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 06:19](2005 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:27] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:02, 04:32](2055 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 12:21] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:45, 09:35](3107 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:43, 02:43](3091 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:43, 01:34](2513 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 18:51] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:59, 07:39](3331 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:31] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:16, 18:45](2020 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:36, 09:31](1274 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:06, 21:02](1925 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:57] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:20, 25:18](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:12, 13:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:34, 03:24](706 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:07, 03:06](1599 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:22, 03:12](1618 MB) -PASS -- TEST 'control_latlon_intel' [06:57, 03:02](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:02, 03:09](1583 MB) -PASS -- TEST 'control_c48_intel' [08:57, 07:36](1758 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:38, 06:26](863 MB) -PASS -- TEST 'control_c192_intel' [13:37, 10:59](1746 MB) -PASS -- TEST 'control_c384_intel' [17:02, 12:15](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [14:05, 08:38](1402 MB) -PASS -- TEST 'control_stochy_intel' [03:27, 01:40](653 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:58, 01:16](501 MB) -PASS -- TEST 'control_lndp_intel' [04:29, 01:36](662 MB) -PASS -- TEST 'control_iovr4_intel' [04:32, 02:33](658 MB) -PASS -- TEST 'control_iovr5_intel' [04:31, 02:31](657 MB) -PASS -- TEST 'control_p8_intel' [07:20, 03:17](1904 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:26, 03:13](1892 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:21, 03:09](1906 MB) -PASS -- TEST 'control_restart_p8_intel' [05:20, 03:00](1139 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:25, 03:16](1894 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:49, 03:37](1155 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:07, 03:39](1894 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:04, 03:21](1987 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:09, 06:02](1901 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:22, 05:07](1940 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:13, 03:46](1906 MB) -PASS -- TEST 'merra2_thompson_intel' [06:15, 04:10](1901 MB) -PASS -- TEST 'regional_control_intel' [08:58, 07:10](1106 MB) -PASS -- TEST 'regional_restart_intel' [04:57, 03:34](1098 MB) -PASS -- TEST 'regional_decomp_intel' [08:51, 08:03](1109 MB) -PASS -- TEST 'regional_2threads_intel' [08:50, 07:17](1104 MB) -PASS -- TEST 'regional_noquilt_intel' [09:36, 07:46](1397 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:14, 08:29](1108 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:49, 08:09](1104 MB) -PASS -- TEST 'regional_wofs_intel' [10:48, 09:28](1914 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 11:41] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:01, 08:43](1116 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:14, 05:56](1296 MB) -PASS -- TEST 'rap_decomp_intel' [10:57, 09:22](1037 MB) -PASS -- TEST 'rap_2threads_intel' [10:49, 09:07](1189 MB) -PASS -- TEST 'rap_restart_intel' [06:07, 04:29](1111 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:57, 09:27](1107 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:57, 09:48](1041 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:07, 07:06](1136 MB) -PASS -- TEST 'hrrr_control_intel' [06:04, 05:01](1042 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:52, 05:16](1039 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:47, 05:28](1116 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:54, 02:47](1009 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:56, 08:42](1102 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:35, 10:30](1982 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:34, 09:38](2073 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:30] -PASS -- TEST 'control_csawmg_intel' [09:02, 06:44](1018 MB) -PASS -- TEST 'control_ras_intel' [05:32, 03:59](745 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:14] -PASS -- TEST 'control_csawmg_gnu' [10:40, 09:36](750 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:43] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:07, 13:36](1676 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:12, 16:22] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:17, 03:47](1899 MB) -PASS -- TEST 'regional_control_faster_intel' [08:04, 06:37](1098 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:03] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:57, 03:12](1625 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:57, 03:18](1623 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:23](839 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:28, 03:03](831 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:46, 04:47](1150 MB) -PASS -- TEST 'control_ras_debug_intel' [04:31, 03:19](843 MB) -PASS -- TEST 'control_diag_debug_intel' [05:00, 03:15](1688 MB) -PASS -- TEST 'control_debug_p8_intel' [04:45, 03:21](1915 MB) -PASS -- TEST 'regional_debug_intel' [19:43, 18:21](1111 MB) -PASS -- TEST 'rap_control_debug_intel' [06:27, 05:13](1221 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:50](1214 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:59](1227 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:56](1215 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:28, 04:58](1223 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:12, 05:29](1302 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:32, 05:11](1218 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:30, 05:11](1225 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:29, 05:02](1225 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 05:02](1226 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:27, 04:52](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 06:09](1224 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 09:00](1219 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 05:30](1213 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 06:42](1227 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:25, 05:19](1222 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 09:47](1217 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:11, 06:03] -PASS -- TEST 'control_csawmg_debug_gnu' [05:48, 02:29](719 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:13, 05:17] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:52, 14:12](1683 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:14, 11:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:06, 04:59](1171 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 07:30](1052 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 04:30](991 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:33, 07:10](1091 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 04:20](969 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 04:45](924 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:51](1042 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 01:54](933 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 15:37] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:53, 03:15](1213 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:53](1123 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:15](1122 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 11:11] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:39, 05:19](984 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:05] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 06:03](1099 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 06:08](1104 MB) -PASS -- TEST 'conus13km_debug_intel' [17:48, 16:14](1241 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:45, 16:25](957 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:32](1182 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 14:47](1323 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:13, 04:33] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:03](1140 MB) - -PASS -- COMPILE 'hafsw_intel' [15:16, 14:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:25, 05:02](744 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 05:53](1118 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:28, 06:56](835 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:18, 13:32](872 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:37, 15:05](877 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:00, 05:28](502 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:40](521 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 02:42](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:16, 07:37](477 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:40](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:32](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:54, 04:05](599 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:14](406 MB) -PASS -- TEST 'gnv1_nested_intel' [06:30, 04:07](1759 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:13, 05:02] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:56, 13:13](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:18, 19:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:51](645 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:04, 08:58](745 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:16, 15:34] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:02, 06:33](734 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:12, 13:49] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:26](847 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:32](821 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:58, 16:13](1208 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:12] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:55](1147 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:41](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:36](1024 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:40](1024 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:38](1046 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:22, 02:41](1149 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:43](1172 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:34](1027 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:28, 06:40](1074 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:17, 06:28](1056 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:41](1164 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:53](2466 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:56](2523 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 04:11] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:21](1100 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:48] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:38](1142 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 03:54] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:45](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:55](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:33](324 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:21] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:00, 03:48](1990 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:12, 13:12] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 03:41](1942 MB) - -PASS -- COMPILE 'atml_intel' [14:12, 13:49] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:25](1852 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:02, 04:28](1869 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:30](1104 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 07:05] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:00, 05:54](1892 MB) - -PASS -- COMPILE 'atmw_intel' [14:13, 13:41] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:58](1909 MB) - -PASS -- COMPILE 'atmaero_intel' [13:13, 12:38] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:03, 04:11](3214 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 05:00](3104 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:54](3116 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:41] ( 884 warnings 6 remarks ) +PASS -- COMPILE 's2swa_32bit_intel' [14:14, 13:47] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:23, 05:49](3317 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:15, 16:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:09, 17:19](1980 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:30, 19:00](2136 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:15, 08:26](1265 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:07, 19:24](1871 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:14, 16:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:46, 16:58](1975 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:17] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:21, 22:42](1942 MB) + +PASS -- COMPILE 's2swa_intel' [14:13, 13:47] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:17, 05:59](3331 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:37, 05:54](3358 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:33, 03:40](3268 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:17, 05:56](3378 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:33, 03:59](3272 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:12, 05:36](3637 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:13, 06:00](3346 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:20, 04:58](3223 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:31, 06:44](3327 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:31, 10:26](3534 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:11, 06:26](3633 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:28, 09:37](4284 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:47, 06:21](4395 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:19, 05:31](3311 MB) + +PASS -- COMPILE 's2sw_intel' [13:13, 13:03] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:00, 04:54](1987 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:07, 04:31](2039 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:23] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:26, 08:38](3366 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:12, 05:21] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:14, 06:00](2027 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:13, 11:58] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:13, 04:21](2048 MB) + +PASS -- COMPILE 's2s_intel' [12:13, 12:07] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:49, 08:56](3115 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:49, 02:43](3087 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:47, 01:35](2550 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 17:40] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:25, 05:32](3329 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:59] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:12, 17:42](2028 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:18, 08:19](1281 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:14, 19:57](1901 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:17] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:03, 25:22](1956 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:30, 03:20](709 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 02:55](1599 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:00, 02:59](1612 MB) +PASS -- TEST 'control_latlon_intel' [03:48, 02:54](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:58, 03:01](1611 MB) +PASS -- TEST 'control_c48_intel' [08:54, 07:28](1760 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:29, 06:25](870 MB) +PASS -- TEST 'control_c192_intel' [12:11, 10:44](1748 MB) +PASS -- TEST 'control_c384_intel' [13:23, 10:31](2013 MB) +PASS -- TEST 'control_c384gdas_intel' [11:25, 08:04](1405 MB) +PASS -- TEST 'control_stochy_intel' [02:26, 01:40](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:32, 01:00](506 MB) +PASS -- TEST 'control_lndp_intel' [02:26, 01:34](661 MB) +PASS -- TEST 'control_iovr4_intel' [03:29, 02:27](658 MB) +PASS -- TEST 'control_iovr5_intel' [03:29, 02:28](657 MB) +PASS -- TEST 'control_p8_intel' [04:58, 03:09](1903 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 03:07](1899 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:57, 03:04](1900 MB) +PASS -- TEST 'control_restart_p8_intel' [02:49, 01:45](1139 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:58, 03:05](1887 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:59, 01:44](1167 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:52, 03:08](1896 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:53, 02:55](1984 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:49, 05:21](1892 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:04, 04:26](1966 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:01, 03:10](1906 MB) +PASS -- TEST 'merra2_thompson_intel' [04:58, 03:24](1902 MB) +PASS -- TEST 'regional_control_intel' [06:45, 05:23](1104 MB) +PASS -- TEST 'regional_restart_intel' [03:43, 02:58](1101 MB) +PASS -- TEST 'regional_decomp_intel' [06:44, 05:41](1103 MB) +PASS -- TEST 'regional_2threads_intel' [04:41, 03:31](1094 MB) +PASS -- TEST 'regional_noquilt_intel' [06:43, 05:18](1402 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:15](1097 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 05:18](1108 MB) +PASS -- TEST 'regional_wofs_intel' [07:37, 06:51](1911 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 11:12] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:43, 07:42](1108 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 04:09](1306 MB) +PASS -- TEST 'rap_decomp_intel' [09:37, 08:08](1023 MB) +PASS -- TEST 'rap_2threads_intel' [08:35, 07:17](1180 MB) +PASS -- TEST 'rap_restart_intel' [04:47, 04:02](1115 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:45, 07:42](1111 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:37, 08:10](1045 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:57, 05:49](1136 MB) +PASS -- TEST 'hrrr_control_intel' [04:45, 04:04](1047 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:39, 04:07](1034 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:40](1114 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:34, 02:10](1011 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:48, 07:38](1096 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:38, 09:19](1993 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:29, 09:07](2058 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 10:35] +PASS -- TEST 'control_csawmg_intel' [06:38, 06:07](1025 MB) +PASS -- TEST 'control_ras_intel' [04:25, 03:14](750 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:12, 04:24] +PASS -- TEST 'control_csawmg_gnu' [09:42, 08:23](758 MB) + +PASS -- COMPILE 'wam_intel' [11:13, 10:44] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:08, 10:50](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:13, 14:43] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:07, 02:47](1880 MB) +PASS -- TEST 'regional_control_faster_intel' [05:43, 04:55](1107 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:12, 06:59] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:38](1630 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:38](1636 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:27, 03:11](834 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:44](836 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:40, 04:22](1148 MB) +PASS -- TEST 'control_ras_debug_intel' [03:25, 02:45](838 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 02:51](1696 MB) +PASS -- TEST 'control_debug_p8_intel' [03:43, 03:02](1923 MB) +PASS -- TEST 'regional_debug_intel' [18:42, 18:08](1111 MB) +PASS -- TEST 'rap_control_debug_intel' [05:26, 04:57](1221 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:55](1222 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 04:52](1219 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 04:56](1222 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 05:00](1221 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:25](1305 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:27, 05:06](1217 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 05:05](1226 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:27, 04:56](1226 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 04:57](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:26, 04:51](1215 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:55](1225 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:08](1216 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 05:05](1219 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 05:54](1229 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:26, 05:17](1217 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:45, 08:36](1221 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 05:03] +PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:23](719 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:12, 04:37] ( 839 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 10:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:16, 03:52](1168 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:27](1045 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:25](992 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 06:08](1094 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 03:10](962 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:36, 03:37](923 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:49, 04:53](1037 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 01:53](935 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 13:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:04, 02:04](1207 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:51, 01:00](1127 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:20](1117 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 10:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:49, 04:11](988 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:29, 04:59](1099 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 04:57](1098 MB) +PASS -- TEST 'conus13km_debug_intel' [16:56, 15:29](1252 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:47, 15:02](933 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:21](1171 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:45](1323 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 04:04] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:07](1140 MB) + +PASS -- COMPILE 'hafsw_intel' [13:13, 12:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:23, 05:02](740 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:33, 06:06](1111 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:34, 07:00](843 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:27, 13:46](868 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:37, 15:26](892 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:11, 05:38](504 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:48, 06:48](526 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:52, 02:43](379 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:59, 07:24](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:56, 03:44](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:01, 03:33](537 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:01, 04:06](596 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:13](408 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:13, 04:41] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:13](597 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:14, 16:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:07, 08:46](672 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:15, 08:47](746 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:13, 12:35] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 06:31](737 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:13, 11:30] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:32, 06:31](836 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:23, 06:33](827 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:03, 16:06](1209 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:48] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:46](1163 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:43](1129 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:34](1036 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:22, 02:39](1036 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:39](1028 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 02:40](1149 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:44](1164 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:21, 02:31](1030 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:04, 06:47](1066 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:50, 06:25](1047 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:48](1166 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:26, 03:55](2507 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:23, 03:57](2467 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:13, 03:20] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 06:19](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:38] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:36](1174 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:08] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:36, 00:50](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 00:52](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:40](320 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:13, 11:31] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:32, 03:53](1992 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:14] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:26, 03:50](1960 MB) + +PASS -- COMPILE 'atml_intel' [13:14, 12:45] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:20, 04:28](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:18, 04:28](1855 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:00, 02:33](1105 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:12, 05:20] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:02, 05:50](1870 MB) + +PASS -- COMPILE 'atmw_intel' [12:14, 11:22] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:57, 01:49](1937 MB) + +PASS -- COMPILE 'atmaero_intel' [12:14, 11:21] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:08, 04:09](3197 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:54](3105 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:51, 05:11](3106 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:09] ( 884 warnings 6 remarks ) PASS -- COMPILE 'atm_gnu' [05:12, 04:48] -PASS -- TEST 'control_c48_gnu' [15:40, 11:09](1537 MB) -PASS -- TEST 'control_stochy_gnu' [05:22, 03:24](505 MB) -PASS -- TEST 'control_ras_gnu' [06:23, 04:46](507 MB) -PASS -- TEST 'control_p8_gnu' [05:55, 04:49](1458 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:50, 04:44](1459 MB) -PASS -- TEST 'control_flake_gnu' [11:25, 10:30](545 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:12, 04:26] -PASS -- TEST 'rap_control_gnu' [11:38, 10:52](852 MB) -PASS -- TEST 'rap_decomp_gnu' [11:38, 10:54](849 MB) -PASS -- TEST 'rap_2threads_gnu' [12:34, 09:52](929 MB) -PASS -- TEST 'rap_restart_gnu' [07:42, 05:26](577 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 10:44](818 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 10:57](814 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:45, 07:56](581 MB) -PASS -- TEST 'hrrr_control_gnu' [07:37, 05:38](811 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:35, 05:29](798 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:40, 05:02](919 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:36](847 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:31, 02:53](563 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:29, 02:50](657 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:42, 10:25](810 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:11, 08:40] -PASS -- TEST 'control_diag_debug_gnu' [03:49, 01:44](1276 MB) -PASS -- TEST 'regional_debug_gnu' [11:40, 10:11](734 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:42](822 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:37](821 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:27, 02:39](828 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:25, 02:42](827 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:46, 02:52](905 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:11](822 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:40](823 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:40](822 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:42](456 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:49](453 MB) -PASS -- TEST 'control_debug_p8_gnu' [04:40, 01:47](1438 MB) -PASS -- TEST 'rap_flake_debug_gnu' [05:26, 02:39](823 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [05:25, 02:54](824 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:38, 04:20](828 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:36] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 05:33] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:34, 09:19](708 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 04:56](707 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:28](756 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:30](745 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:33, 05:10](705 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:38, 06:52](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [06:27, 02:29](541 MB) -PASS -- TEST 'conus13km_control_gnu' [06:59, 03:11](876 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:45, 05:51](880 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:44, 01:48](554 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:11, 11:49] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:39, 05:51](726 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 08:41] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:25, 02:36](715 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:24, 02:35](715 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:50, 06:59](892 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:46, 06:59](577 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:43, 07:46](892 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:58](960 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 08:35] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:40](739 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 17:49] - -PASS -- COMPILE 's2s_gnu' [18:12, 17:10] -FAILED: TEST TIMED OUT -- TEST 'cpld_control_nowave_noaero_p8_gnu' [, ]( MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:21] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:13, 16:04] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:58, 21:09](1447 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:07] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:56, 12:44](1473 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:24] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 02:54](690 MB) +PASS -- TEST 'control_c48_gnu' [12:47, 11:14](1541 MB) +PASS -- TEST 'control_stochy_gnu' [04:29, 03:24](502 MB) +PASS -- TEST 'control_ras_gnu' [06:26, 04:48](504 MB) +PASS -- TEST 'control_p8_gnu' [06:04, 04:50](1468 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:05, 04:46](1458 MB) +PASS -- TEST 'control_flake_gnu' [11:33, 10:21](544 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:12, 04:28] +PASS -- TEST 'rap_control_gnu' [12:40, 10:47](815 MB) +PASS -- TEST 'rap_decomp_gnu' [12:38, 11:00](849 MB) +PASS -- TEST 'rap_2threads_gnu' [11:46, 09:55](930 MB) +PASS -- TEST 'rap_restart_gnu' [07:52, 05:33](577 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:47, 10:54](816 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:42, 11:10](816 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:51, 07:59](583 MB) +PASS -- TEST 'hrrr_control_gnu' [07:41, 05:33](814 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:44, 05:34](798 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:42, 05:06](926 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:43, 05:50](850 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:36, 02:55](560 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:36, 02:54](655 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:50, 10:51](811 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:46] +PASS -- TEST 'control_diag_debug_gnu' [04:09, 01:40](1273 MB) +PASS -- TEST 'regional_debug_gnu' [13:45, 11:45](716 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:28, 02:37](825 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:27, 02:37](820 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:41](820 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:25, 02:38](823 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:52, 02:53](903 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:25, 04:08](855 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:26, 02:43](826 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:25, 02:42](816 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:27, 01:40](489 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:25, 01:46](453 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:51](1440 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:28, 02:42](825 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 02:57](826 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 04:25](832 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:35] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:13] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:45, 09:23](710 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:44, 05:07](708 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:37, 08:42](753 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:34, 04:46](744 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 05:17](703 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:47, 07:06](551 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 02:34](537 MB) +PASS -- TEST 'conus13km_control_gnu' [05:07, 03:09](875 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:56, 06:06](888 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:53, 01:52](548 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:13, 10:58] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:43, 05:52](726 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:43] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:27, 02:39](716 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:29, 02:34](713 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:01, 06:52](894 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:54, 07:01](588 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:48, 07:40](895 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:47, 07:08](956 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:12, 07:42] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:30, 02:45](731 MB) + +PASS -- COMPILE 's2swa_gnu' [18:14, 16:46] + +PASS -- COMPILE 's2s_gnu' [17:13, 15:57] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:20, 07:27](1521 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:15, 03:27] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:15, 16:07] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:16, 20:07](1461 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:13, 03:13] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:59, 12:42](1458 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:13, 15:41] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:22, 03:01](685 MB) SYNOPSIS: -Starting Date/Time: 20240726 18:33:36 -Ending Date/Time: 20240726 20:24:37 -Total Time: 01h:51m:18s +Starting Date/Time: 20240731 14:36:54 +Ending Date/Time: 20240731 16:12:18 +Total Time: 01h:37m:22s Compiles Completed: 57/57 -Tests Completed: 243/244 +Tests Completed: 242/244 Failed Tests: -* TEST cpld_control_nowave_noaero_p8_gnu: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1436054/cpld_control_nowave_noaero_p8_gnu/err +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2373/ufs-weather-model/tests/logs/log_hera/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2373/ufs-weather-model/tests/logs/log_hera/run_gnv1_nested_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -411,7 +413,7 @@ Result: FAILURE ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -419,7 +421,7 @@ Submodule hashes used in testing: 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -434,23 +436,26 @@ 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3626519 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3087081 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-b) - NEW BASELINES FROM FILE: test_changes.list * (-e) - USE ECFLOW -PASS -- COMPILE 's2s_gnu' [17:12, 16:33] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:08, 07:18](1521 MB) +PASS -- COMPILE 'wam_debug_intel' [05:13, 04:08] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:57, 13:51](1679 MB) + +PASS -- COMPILE 'hafsw_intel' [14:14, 12:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'gnv1_nested_intel' [06:47, 04:25](1734 MB) SYNOPSIS: -Starting Date/Time: 20240729 06:07:25 -Ending Date/Time: 20240729 06:35:11 -Total Time: 00h:27m:56s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Starting Date/Time: 20240731 18:41:55 +Ending Date/Time: 20240731 19:05:36 +Total Time: 00h:24m:15s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index a3d52df0cc..b5ff9e7f1c 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: -d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,376 +35,376 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1943568 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3083262 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:19, 12:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:25, 09:11](2138 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 19:26] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:32, 14:02](2004 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:14, 14:31](2313 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:06, 07:20](1318 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:32, 14:57](1922 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:56, 13:08](1994 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:13] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:21, 21:11](1984 MB) - -PASS -- COMPILE 's2swa_intel' [13:18, 12:52] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:10, 08:59](2188 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:36, 09:10](2179 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:37, 04:38](1970 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:54, 08:46](2223 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:17, 04:34](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:15, 10:18](2544 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:58, 09:00](2180 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:25, 07:27](2093 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:31, 08:44](2195 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:44, 16:24](2967 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:35, 07:37](2932 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:08, 10:30](3807 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:49, 06:16](3648 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:30, 06:14](2162 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 12:28] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:05, 08:02](2018 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:17, 05:05](2086 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:28] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:39, 08:09](2218 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:56] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:54, 06:16](2066 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:11, 10:01] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:22, 05:38](2088 MB) - -PASS -- COMPILE 's2s_intel' [10:11, 10:02] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:55, 07:41](3106 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:21, 02:56](3089 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:13, 01:41](2512 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:35] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:58, 07:43](2183 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:55] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:11, 14:55](2037 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:34, 07:33](1405 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:29, 16:10](1973 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:12, 06:59] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:32, 22:42](2016 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:12, 10:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:50, 03:43](707 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:58, 02:30](1622 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:11, 02:57](1611 MB) -PASS -- TEST 'control_latlon_intel' [03:57, 02:42](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:07, 02:31](1608 MB) -PASS -- TEST 'control_c48_intel' [09:14, 07:00](1730 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:37, 05:55](859 MB) -PASS -- TEST 'control_c192_intel' [10:16, 09:05](1759 MB) -PASS -- TEST 'control_c384_intel' [12:20, 09:52](2036 MB) -PASS -- TEST 'control_c384gdas_intel' [14:21, 10:03](1521 MB) -PASS -- TEST 'control_stochy_intel' [02:23, 01:55](668 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:34, 01:27](539 MB) -PASS -- TEST 'control_lndp_intel' [02:21, 01:34](667 MB) -PASS -- TEST 'control_iovr4_intel' [03:27, 02:34](661 MB) -PASS -- TEST 'control_iovr5_intel' [05:31, 02:54](665 MB) -PASS -- TEST 'control_p8_intel' [06:05, 03:30](1917 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:38, 04:01](1918 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 03:23](1915 MB) -PASS -- TEST 'control_restart_p8_intel' [03:57, 02:20](1149 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:40, 03:24](1897 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:15, 02:05](1200 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:43, 03:34](1897 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:43, 03:02](1995 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:43, 05:27](1906 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:08, 04:20](1987 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:57, 03:43](1922 MB) -PASS -- TEST 'merra2_thompson_intel' [07:26, 03:53](1921 MB) -PASS -- TEST 'regional_control_intel' [06:57, 05:25](1202 MB) -PASS -- TEST 'regional_restart_intel' [04:46, 03:29](1177 MB) -PASS -- TEST 'regional_decomp_intel' [07:34, 05:34](1192 MB) -PASS -- TEST 'regional_2threads_intel' [03:41, 03:11](1155 MB) -PASS -- TEST 'regional_noquilt_intel' [07:34, 06:11](1525 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:43, 04:46](1201 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 04:41](1209 MB) -PASS -- TEST 'regional_wofs_intel' [08:26, 07:47](2093 MB) - -PASS -- COMPILE 'rrfs_intel' [14:15, 09:53] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:05, 06:54](1215 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:06, 03:42](1419 MB) -PASS -- TEST 'rap_decomp_intel' [07:42, 07:02](1166 MB) -PASS -- TEST 'rap_2threads_intel' [07:40, 06:13](1359 MB) -PASS -- TEST 'rap_restart_intel' [06:07, 04:20](1144 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:50, 06:37](1192 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:47, 07:01](1149 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:05, 04:58](1200 MB) -PASS -- TEST 'hrrr_control_intel' [05:21, 03:55](1076 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:51, 03:43](1045 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 03:45](1116 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:23, 02:05](1039 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:19, 07:03](1207 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:37, 07:40](2014 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:28, 07:38](2189 MB) - -PASS -- COMPILE 'csawmg_intel' [10:22, 09:17] -PASS -- TEST 'control_csawmg_intel' [08:35, 06:55](1053 MB) -PASS -- TEST 'control_ras_intel' [05:47, 03:06](846 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:14, 04:50] -PASS -- TEST 'control_csawmg_gnu' [10:30, 08:37](1070 MB) - -PASS -- COMPILE 'wam_intel' [07:16, 07:05] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:05, 10:28](1674 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:10, 13:39] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:20, 02:24](1903 MB) -PASS -- TEST 'regional_control_faster_intel' [06:36, 05:34](1201 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:55] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:20](1638 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:13, 02:15](1643 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:57, 03:01](842 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:41, 02:23](844 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:27, 04:05](1157 MB) -PASS -- TEST 'control_ras_debug_intel' [03:20, 02:23](853 MB) -PASS -- TEST 'control_diag_debug_intel' [04:35, 03:13](1712 MB) -PASS -- TEST 'control_debug_p8_intel' [03:39, 03:07](1931 MB) -PASS -- TEST 'regional_debug_intel' [17:28, 16:27](1162 MB) -PASS -- TEST 'rap_control_debug_intel' [04:23, 04:05](1236 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:13](1218 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:38, 04:09](1231 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:21, 04:16](1228 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:27, 04:13](1224 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:51, 04:24](1319 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 04:15](1223 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 04:15](1231 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:30, 04:20](1229 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:35, 04:17](1235 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:27, 04:31](1227 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 05:07](1225 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:38, 06:47](1222 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:13](1228 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:33](1231 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:28, 04:24](1225 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:00, 07:35](1228 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 04:24] -PASS -- TEST 'control_csawmg_debug_gnu' [04:00, 03:03](1053 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 03:06] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:15, 07:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:02, 03:44](1266 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:50, 07:16](1178 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:33](1058 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:21, 06:06](1291 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:26, 02:55](1044 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:40, 04:33](1003 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:00, 05:39](1149 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:25, 01:57](972 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:12, 12:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:10, 01:51](1316 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:06, 01:13](1217 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:43](1166 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:12, 07:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:53, 03:41](1089 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:03] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:45, 04:10](1109 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:38, 03:58](1119 MB) -PASS -- TEST 'conus13km_debug_intel' [16:56, 13:25](1349 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 13:36](1002 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:35, 08:49](1254 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 12:44](1417 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:12, 06:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:46, 04:44](1171 MB) - -PASS -- COMPILE 'hafsw_intel' [13:14, 12:21] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:25, 05:28](872 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:37, 05:14](1284 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:37, 06:34](957 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:17, 14:11](974 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:32, 15:31](988 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:23, 05:35](613 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:57, 08:00](628 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:21, 03:34](439 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:53, 07:38](546 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:59, 03:58](623 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:06, 03:39](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:59, 04:50](684 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:08](458 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 06:27] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:19, 13:51](655 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:12, 15:22] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:09, 16:45](733 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:18, 16:24](812 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:18, 09:56] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:22, 09:35](828 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:14, 09:50] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:31, 05:48](949 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:12, 05:47](912 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:04, 16:30](1335 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:04] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [11:26, 02:23](1146 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:24, 01:33](1118 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [11:19, 02:16](1020 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [12:20, 03:07](1021 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:18, 03:04](1023 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:20, 02:33](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:19, 02:21](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [10:18, 03:16](1025 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:45, 05:50](1167 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:41, 05:01](1154 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:14, 03:06](1129 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:27, 03:18](2458 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:31, 04:21](2390 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:13, 04:06] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:17, 06:05](1083 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:04] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:21, 03:01](1148 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:47, 01:01](331 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:28, 01:54](576 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:32, 00:32](562 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:12, 08:05] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:31, 03:51](2028 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:12, 08:05] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:27, 04:09](1998 MB) - -PASS -- COMPILE 'atml_intel' [09:12, 08:56] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:50, 05:42](1913 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:23, 05:54](1900 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 03:22](1156 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:12, 04:13] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:13, 05:57](1939 MB) - -PASS -- COMPILE 'atmw_intel' [10:25, 09:29] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:02, 01:41](1963 MB) - -PASS -- COMPILE 'atmaero_intel' [08:11, 07:44] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:06, 04:23](2020 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:00, 04:48](1811 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:03, 04:52](1831 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:59] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:08, 16:44](4556 MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 04:45] -PASS -- TEST 'control_c48_gnu' [10:48, 09:21](1572 MB) -PASS -- TEST 'control_stochy_gnu' [04:39, 02:50](732 MB) -PASS -- TEST 'control_ras_gnu' [05:21, 04:24](734 MB) -PASS -- TEST 'control_p8_gnu' [07:03, 05:38](1715 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:56, 04:56](1730 MB) -PASS -- TEST 'control_flake_gnu' [06:45, 05:17](807 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:14, 04:42] -PASS -- TEST 'rap_control_gnu' [10:39, 09:12](1087 MB) -PASS -- TEST 'rap_decomp_gnu' [10:35, 09:02](1083 MB) -PASS -- TEST 'rap_2threads_gnu' [10:00, 07:27](1153 MB) -PASS -- TEST 'rap_restart_gnu' [06:00, 04:34](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:02, 08:11](1093 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:46, 08:22](1087 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:02, 06:00](883 MB) -PASS -- TEST 'hrrr_control_gnu' [06:22, 04:18](1073 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:01, 05:36](1134 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:56, 03:57](1041 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:41, 05:36](1069 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 02:39](879 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:33, 02:06](936 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [10:29, 08:36](1083 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:21] -PASS -- TEST 'control_diag_debug_gnu' [03:03, 01:39](1629 MB) -PASS -- TEST 'regional_debug_gnu' [08:37, 07:45](1126 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:24, 02:56](1105 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:27, 02:40](1097 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:25, 02:24](1099 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:32, 02:05](1100 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:39, 02:55](1278 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 03:39](1102 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:38](1102 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:28, 02:45](1096 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:56](729 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:22, 01:46](727 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:42, 02:29](1727 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:20, 03:11](1104 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:25, 03:16](1105 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:11, 04:12](1108 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 03:43] -PASS -- TEST 'control_wam_debug_gnu' [06:52, 05:14](1587 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:56] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:36, 08:06](963 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:49, 04:03](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:05, 06:54](997 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:07, 03:39](895 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:39, 04:09](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:42, 05:58](861 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:48, 02:07](856 MB) -PASS -- TEST 'conus13km_control_gnu' [05:04, 03:33](1269 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:55, 01:48](1175 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:56, 01:39](925 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:16, 13:18] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:52, 04:54](990 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:16, 10:45] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:26, 02:26](981 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:34, 03:04](974 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:48, 07:20](1291 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:50, 07:37](964 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:34, 04:13](1203 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:32, 05:49](1355 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:23, 11:17] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:21](1006 MB) - -PASS -- COMPILE 's2swa_gnu' [20:12, 19:27] - -PASS -- COMPILE 's2s_gnu' [18:14, 17:30] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:50, 06:08](2739 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [11:13, 10:20] - -PASS -- COMPILE 's2sw_pdlib_gnu' [19:13, 18:56] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:13, 26:50](3038 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:12, 09:51] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:09, 12:48](3045 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [19:13, 18:13] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:20, 02:21](769 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:51] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:34, 08:19](2123 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:16, 14:35](2005 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:27, 14:06](2304 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:16, 06:33](1328 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:58, 15:33](1923 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:13] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:33, 13:06](1999 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:25] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:30, 20:32](1978 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 12:51] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:20, 08:20](2182 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:31, 08:10](2193 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:22, 04:23](1987 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:22, 08:17](2202 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:21, 04:29](1742 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:28, 09:29](2554 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:20, 08:05](2184 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:29, 06:48](2096 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:33, 08:01](2185 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:10, 16:06](2984 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:26, 05:53](2939 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:10, 09:52](3817 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:17, 06:17](3653 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 05:53](2149 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 12:22] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:18, 07:10](2020 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:26](2082 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 07:46] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:26, 07:48](2219 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:16] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 05:37](2049 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:40] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:17, 04:50](2073 MB) + +PASS -- COMPILE 's2s_intel' [12:11, 11:32] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:52, 07:06](3112 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:54, 02:05](3080 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:45, 01:44](2549 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:11, 07:42](2181 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:59, 13:45](2039 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:05, 06:47](1379 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:01, 15:13](1965 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:44] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 22:49](2039 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:12] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:21, 03:43](709 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:33, 02:25](1616 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:31](1633 MB) +PASS -- TEST 'control_latlon_intel' [03:31, 02:26](1618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:37](1623 MB) +PASS -- TEST 'control_c48_intel' [07:35, 06:53](1741 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:26, 05:52](862 MB) +PASS -- TEST 'control_c192_intel' [09:48, 09:06](1751 MB) +PASS -- TEST 'control_c384_intel' [11:28, 09:17](2056 MB) +PASS -- TEST 'control_c384gdas_intel' [12:03, 09:41](1516 MB) +PASS -- TEST 'control_stochy_intel' [02:21, 01:43](670 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:03](558 MB) +PASS -- TEST 'control_lndp_intel' [02:19, 01:45](678 MB) +PASS -- TEST 'control_iovr4_intel' [03:22, 02:38](662 MB) +PASS -- TEST 'control_iovr5_intel' [03:22, 02:38](674 MB) +PASS -- TEST 'control_p8_intel' [03:52, 02:44](1906 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:57, 02:45](1898 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:59, 02:38](1909 MB) +PASS -- TEST 'control_restart_p8_intel' [02:50, 01:37](1162 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:55, 02:42](1892 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:34](1199 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:42, 02:48](1890 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:48, 02:32](1989 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:35, 04:46](1903 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:56, 03:38](1975 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:57, 02:47](1922 MB) +PASS -- TEST 'merra2_thompson_intel' [04:01, 02:59](1911 MB) +PASS -- TEST 'regional_control_intel' [06:32, 05:27](1199 MB) +PASS -- TEST 'regional_restart_intel' [03:34, 02:36](1175 MB) +PASS -- TEST 'regional_decomp_intel' [05:27, 04:56](1186 MB) +PASS -- TEST 'regional_2threads_intel' [03:30, 03:04](1155 MB) +PASS -- TEST 'regional_noquilt_intel' [05:32, 04:58](1523 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:36, 04:41](1205 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 04:45](1203 MB) +PASS -- TEST 'regional_wofs_intel' [07:30, 07:01](2078 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 07:48] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:42, 06:37](1211 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:50, 03:27](1410 MB) +PASS -- TEST 'rap_decomp_intel' [07:42, 06:54](1150 MB) +PASS -- TEST 'rap_2threads_intel' [07:42, 06:13](1377 MB) +PASS -- TEST 'rap_restart_intel' [04:58, 03:28](1136 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:42, 06:43](1208 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:42, 06:57](1140 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:59, 05:06](1204 MB) +PASS -- TEST 'hrrr_control_intel' [04:44, 03:29](1080 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:44, 03:32](1042 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:08](1124 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:30, 01:54](1047 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:57, 06:30](1204 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:22, 07:41](2021 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:25](2181 MB) + +PASS -- COMPILE 'csawmg_intel' [08:11, 07:23] +PASS -- TEST 'control_csawmg_intel' [07:33, 06:50](1056 MB) +PASS -- TEST 'control_ras_intel' [03:21, 02:56](860 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:12] +PASS -- TEST 'control_csawmg_gnu' [07:41, 07:03](1070 MB) + +PASS -- COMPILE 'wam_intel' [08:11, 07:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:37, 10:33](1678 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:11, 14:00] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:56, 02:44](1911 MB) +PASS -- TEST 'regional_control_faster_intel' [06:30, 05:17](1192 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:58] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:33, 02:16](1641 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:35, 02:12](1652 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:31](847 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:16](841 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:17](1163 MB) +PASS -- TEST 'control_ras_debug_intel' [03:20, 02:21](848 MB) +PASS -- TEST 'control_diag_debug_intel' [03:37, 02:20](1706 MB) +PASS -- TEST 'control_debug_p8_intel' [04:37, 03:04](1932 MB) +PASS -- TEST 'regional_debug_intel' [18:34, 17:00](1154 MB) +PASS -- TEST 'rap_control_debug_intel' [05:22, 04:09](1227 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:24, 04:04](1229 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:20, 04:03](1237 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 04:12](1231 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:19, 04:08](1234 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:28, 04:10](1327 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 04:12](1231 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 04:09](1234 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:20, 04:07](1223 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:19, 04:05](1232 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:20, 03:59](1236 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 04:03](1232 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 06:54](1231 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 04:05](1226 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:20, 05:14](1242 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:23, 04:06](1232 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:02, 07:09](1235 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:42] +PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:52](1058 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:15] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:11, 07:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:55, 03:35](1268 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 06:56](1172 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:34](1057 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:47, 06:05](1296 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:00, 03:05](1047 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 03:58](1010 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:47, 05:27](1130 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:20, 02:08](983 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 11:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:43, 01:45](1313 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:38, 00:45](1212 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:33, 01:03](1167 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:30, 03:44](1099 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:17] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:11](1105 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:19, 03:58](1112 MB) +PASS -- TEST 'conus13km_debug_intel' [13:37, 12:40](1353 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:36, 12:59](1012 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:31, 08:30](1256 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:36, 12:46](1437 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:54] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:21, 04:30](1178 MB) + +PASS -- COMPILE 'hafsw_intel' [10:10, 10:03] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:04, 05:20](874 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:24, 04:49](1281 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:09, 06:18](964 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:03, 13:57](997 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:21, 15:04](1016 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:47, 05:22](610 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:10, 06:52](625 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:39, 02:35](441 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:02, 07:23](553 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:38, 03:43](625 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 03:33](625 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:49](685 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:25, 01:08](452 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:29] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:38, 14:19](648 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 16:20] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:50, 16:00](751 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:55, 15:37](854 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:51, 09:41](830 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:10, 10:13] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:03, 05:26](943 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:59, 05:26](916 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:47, 16:32](1346 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:10, 05:42] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:11](1134 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:20](1106 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 02:05](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:07](1021 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:11](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:13](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 02:18](1163 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:15, 02:06](1032 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:57, 04:56](1172 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:53, 04:50](1165 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:12](1165 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:03](2391 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:17, 03:02](2460 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:33] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:16, 05:06](1080 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:17] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:12](1160 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 00:51](331 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:47](560 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:34](564 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 07:49] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:51, 03:38](2020 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 08:01] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:50, 03:07](1991 MB) + +PASS -- COMPILE 'atml_intel' [09:11, 08:55] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:58, 05:54](1896 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 05:50](1900 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:40, 02:59](1163 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:10] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:50, 04:56](1938 MB) + +PASS -- COMPILE 'atmw_intel' [10:11, 09:38] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:48, 01:44](1951 MB) + +PASS -- COMPILE 'atmaero_intel' [10:11, 07:29] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:48, 03:55](2038 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:23](1810 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:42, 04:35](1810 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:57] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:33, 17:05](4579 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 04:09] +PASS -- TEST 'control_c48_gnu' [11:44, 09:26](1574 MB) +PASS -- TEST 'control_stochy_gnu' [04:19, 02:22](727 MB) +PASS -- TEST 'control_ras_gnu' [05:17, 03:47](738 MB) +PASS -- TEST 'control_p8_gnu' [05:49, 04:14](1735 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:39, 03:47](1738 MB) +PASS -- TEST 'control_flake_gnu' [05:22, 04:36](814 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:10, 04:07] +PASS -- TEST 'rap_control_gnu' [09:44, 07:58](1094 MB) +PASS -- TEST 'rap_decomp_gnu' [09:36, 08:13](1083 MB) +PASS -- TEST 'rap_2threads_gnu' [08:45, 07:16](1144 MB) +PASS -- TEST 'rap_restart_gnu' [04:51, 04:06](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:52, 08:01](1095 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:44, 08:05](1082 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:01, 06:20](883 MB) +PASS -- TEST 'hrrr_control_gnu' [05:38, 04:13](1072 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:37, 04:07](1134 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 03:45](1024 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:36, 04:16](1070 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:23, 02:14](880 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:23, 02:21](939 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:54, 08:07](1084 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 07:11] +PASS -- TEST 'control_diag_debug_gnu' [02:34, 01:19](1639 MB) +PASS -- TEST 'regional_debug_gnu' [07:27, 06:43](1144 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:10](1106 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:18, 02:05](1094 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:20, 01:58](1099 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:20, 01:57](1102 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:31, 02:10](1275 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 03:17](1099 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 02:07](1103 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:21, 01:57](1096 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:12](731 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:17, 01:22](729 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:28, 01:29](1728 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:02](1102 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:20](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:49, 03:26](1109 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:46] +PASS -- TEST 'control_wam_debug_gnu' [06:34, 05:23](1576 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:12] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 07:58](973 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:41, 04:09](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:51, 07:03](967 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:04, 03:40](871 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:42, 04:06](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:41, 06:07](871 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:23, 02:18](858 MB) +PASS -- TEST 'conus13km_control_gnu' [03:39, 02:51](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:38, 01:10](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:40, 01:35](922 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 09:43] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:39, 04:34](993 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:51] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 02:16](980 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:25, 02:01](973 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:42, 05:53](1292 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:34, 06:26](973 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:36, 03:58](1197 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:33, 05:52](1358 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 08:17] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:26](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [19:11, 18:14] + +PASS -- COMPILE 's2s_gnu' [17:11, 16:48] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:05, 05:24](2720 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:16] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:59] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:08, 25:54](3034 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:45] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:54, 12:06](2924 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:28] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:23](765 MB) SYNOPSIS: -Starting Date/Time: 20240726 15:31:11 -Ending Date/Time: 20240726 17:19:53 -Total Time: 01h:52m:57s +Starting Date/Time: 20240731 09:21:00 +Ending Date/Time: 20240731 10:54:53 +Total Time: 01h:34m:43s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index ce6f0fc6da..8a1843f928 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -ba4c3ee47280b777133ba3f3e60f271d70738c34 +4062b88d6b40c90e783e00de145f1e2f0dd8a0e3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,334 +35,256 @@ 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: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3152011 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3686172 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [41:14, 40:29] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [51:03, 49:32](2004 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:15, 47:50] ( 1 warnings 1427 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intel' [, ]( MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:00, 24:30](1853 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:15, 49:38] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [09:28, 21:24](1881 MB) - -PASS -- COMPILE 's2swa_intel' [41:14, 40:50] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:23, 07:57](2060 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [50:34, 49:38](2050 MB) -PASS -- TEST 'cpld_restart_p8_intel' [51:29, 05:09](1720 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:19, 08:00](2080 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_qr_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:23, 07:43](2322 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:16, 08:11](2050 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [51:40, 51:05](1974 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [50:25, 48:31](2048 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:33, 07:49](2039 MB) - -PASS -- COMPILE 's2sw_intel' [39:14, 38:40] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 06:45](1905 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [51:57, 50:41](1953 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:47] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:40, 11:04](2081 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:46] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [50:49, 50:01](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:13, 34:21] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:43, 06:20](1947 MB) - -PASS -- COMPILE 's2s_intel' [35:13, 34:51] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:10, 12:43](3062 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:09, 03:54](3053 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:03, 02:32](2466 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:16, 12:08] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:04, 07:40](2050 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 48:28] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:42, 21:46](1921 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:50, 11:24](1127 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:16, 24:56](1878 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:13] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:32, 32:58](1938 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:13, 37:27] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [05:36, 04:30](646 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 04:02](1553 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:20, 04:09](1552 MB) -PASS -- TEST 'control_latlon_intel' [05:11, 03:57](1552 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 04:04](1558 MB) -PASS -- TEST 'control_c48_intel' [13:28, 11:47](1733 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:49, 10:17](857 MB) -PASS -- TEST 'control_c192_intel' [16:32, 14:25](1690 MB) -PASS -- TEST 'control_c384_intel' [20:30, 17:50](1821 MB) -PASS -- TEST 'control_c384gdas_intel' [45:04, 43:04](1024 MB) -PASS -- TEST 'control_stochy_intel' [03:33, 02:17](605 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:20](435 MB) -PASS -- TEST 'control_lndp_intel' [03:33, 02:13](605 MB) -PASS -- TEST 'control_iovr4_intel' [04:35, 03:25](603 MB) -PASS -- TEST 'control_iovr5_intel' [04:36, 03:25](601 MB) -PASS -- TEST 'control_p8_intel' [06:36, 04:43](1842 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:48, 04:41](1828 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 04:31](1849 MB) -PASS -- TEST 'control_restart_p8_intel' [04:08, 02:49](1063 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:38, 04:31](1838 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [55:41, 55:04](1078 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:38, 04:47](1830 MB) -PASS -- TEST 'control_2threads_p8_intel' [53:52, 53:09](1932 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:18, 07:46](1844 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:59, 05:49](1917 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:52, 04:41](1848 MB) -PASS -- TEST 'merra2_thompson_intel' [53:32, 51:46](1855 MB) -PASS -- TEST 'regional_control_intel' [09:08, 07:54](1015 MB) -PASS -- TEST 'regional_restart_intel' [05:45, 04:22](1014 MB) -PASS -- TEST 'regional_decomp_intel' [10:08, 08:24](1018 MB) -PASS -- TEST 'regional_2threads_intel' [07:08, 06:08](1005 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [50:33, 50:24](1022 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [50:31, 49:36](1012 MB) - -PASS -- COMPILE 'rrfs_intel' [35:13, 35:09] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [12:06, 10:10](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:31, 05:46](1223 MB) -PASS -- TEST 'rap_decomp_intel' [12:04, 10:42](988 MB) -PASS -- TEST 'rap_2threads_intel' [11:33, 09:44](1087 MB) -PASS -- TEST 'rap_restart_intel' [07:29, 05:18](991 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:34, 10:05](994 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:06, 10:47](985 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:25, 07:34](1002 MB) -PASS -- TEST 'hrrr_control_intel' [53:20, 52:08](993 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [53:14, 52:06](983 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [53:47, 52:45](1066 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:31, 02:49](915 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:40, 10:01](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [46:01, 45:28](1943 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:37, 12:11](1938 MB) - -PASS -- COMPILE 'csawmg_intel' [32:13, 32:09] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:49, 08:53](960 MB) -PASS -- TEST 'control_ras_intel' [05:30, 04:30](664 MB) - -PASS -- COMPILE 'wam_intel' [33:14, 32:27] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [16:01, 14:27](1623 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [53:18, 52:54] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:36, 04:12](1842 MB) -PASS -- TEST 'regional_control_faster_intel' [08:48, 07:21](1017 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:12, 07:17] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:53, 03:24](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:58, 03:20](1570 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:30, 03:53](774 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:31, 03:29](774 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:50, 05:59](1094 MB) -PASS -- TEST 'control_ras_debug_intel' [04:30, 03:32](785 MB) -PASS -- TEST 'control_diag_debug_intel' [04:54, 03:28](1634 MB) -PASS -- TEST 'control_debug_p8_intel' [06:01, 04:09](1868 MB) -PASS -- TEST 'regional_debug_intel' [24:00, 22:52](1039 MB) -PASS -- TEST 'rap_control_debug_intel' [07:32, 06:15](1161 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:34, 06:09](1153 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 06:09](1164 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 06:12](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 06:14](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:45, 06:42](1236 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 06:18](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 06:24](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:24, 06:14](1166 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:13](1158 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:27, 06:04](1163 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 06:11](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 10:08](1163 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 06:11](1156 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 07:31](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:28, 06:11](1159 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:31, 10:42](1177 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:35] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:00, 16:53](1651 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:16, 30:08] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 05:17](1078 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:01, 08:23](904 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:04, 04:24](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:19, 07:58](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:39, 04:05](908 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:03, 04:42](865 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:21, 06:26](908 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 02:27](850 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [39:15, 38:32] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:04, 02:58](1104 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:54, 01:24](1048 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:52, 01:38](1023 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:12, 30:52] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:55, 05:31](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:37] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:32, 06:13](1042 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 06:02](1047 MB) -PASS -- TEST 'conus13km_debug_intel' [20:03, 18:39](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:03, 18:55](866 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:55, 10:45](1105 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:57, 18:40](1221 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:31] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 06:16](1083 MB) - -PASS -- COMPILE 'hafsw_intel' [39:14, 38:25] ( 1 warnings 1427 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:29, 07:08](711 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:39, 07:12](1081 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:51, 09:38](769 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:33, 16:27](796 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:53, 18:21](801 MB) -PASS -- TEST 'gnv1_nested_intel' [10:48, 07:24](1680 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:14, 33:24] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:24, 08:51](772 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:25, 08:52](763 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:33] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 03:40](1056 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:12](1044 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:36](938 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 03:38](922 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:38](931 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 03:36](1067 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:38](1067 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 03:36](934 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:23, 08:11](883 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:25, 08:19](840 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1070 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:34, 05:59](2408 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:33, 05:11](2397 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:31] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:01](1024 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:25] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 03:49](1060 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:52] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 02:30](235 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 01:54](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:54](253 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:13, 33:52] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:26, 05:24](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [33:13, 33:09] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:45, 05:16](1899 MB) - -PASS -- COMPILE 'atml_intel' [42:17, 41:35] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:50, 08:36](1861 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:50, 08:35](1859 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:53, 05:00](1072 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:10, 06:01] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:38, 08:06](1888 MB) - -PASS -- COMPILE 'atmw_intel' [34:14, 33:28] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:25, 02:54](1868 MB) - -PASS -- COMPILE 'atmaero_intel' [34:14, 33:27] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:30, 05:49](1944 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:26, 06:27](1722 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:11, 06:31](1741 MB) +PASS -- COMPILE 's2swa_32bit_intel' [41:14, 40:36] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:47, 07:14](2015 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:32] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:06, 21:32](1894 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:20, 22:14](2017 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:42, 11:07](1134 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:35, 24:34](1857 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:17, 54:32] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:44, 21:09](1883 MB) + +PASS -- COMPILE 's2swa_intel' [42:14, 40:54] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:23, 08:00](2059 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:46, 07:57](2065 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:54, 04:53](1719 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:20, 08:00](2080 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:58, 05:00](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:21, 07:55](2323 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:17, 08:02](2060 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:39, 06:58](2002 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:45, 08:03](2058 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:33, 07:27](2045 MB) + +PASS -- COMPILE 's2sw_intel' [39:14, 38:19] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:30, 06:37](1908 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:45, 06:27](1971 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:10] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:44, 11:05](2091 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:47] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:12, 07:44](1944 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:15, 35:00] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:44, 06:16](1972 MB) + +PASS -- COMPILE 's2s_intel' [38:16, 35:21] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:08, 12:28](3078 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:05, 03:58](3054 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:59, 02:29](2515 MB) + +PASS -- COMPILE 's2swa_faster_intel' [35:27, 33:36] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:11, 07:38](2028 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [47:21, 47:08] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:37, 21:41](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:48, 11:02](1136 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:31, 25:13](1886 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:46] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:32, 32:53](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:18, 38:00] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [05:41, 04:28](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 04:01](1552 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:22, 04:05](1557 MB) +PASS -- TEST 'control_latlon_intel' [05:09, 03:55](1548 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 04:00](1545 MB) +PASS -- TEST 'control_c48_intel' [15:28, 11:46](1739 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:53, 10:13](854 MB) +PASS -- TEST 'control_c192_intel' [17:42, 14:13](1691 MB) +PASS -- TEST 'control_c384_intel' [24:36, 17:54](1837 MB) +PASS -- TEST 'control_c384gdas_intel' [21:34, 13:17](1023 MB) +PASS -- TEST 'control_stochy_intel' [03:37, 02:15](605 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:33, 01:21](438 MB) +PASS -- TEST 'control_lndp_intel' [03:37, 02:09](606 MB) +PASS -- TEST 'control_iovr4_intel' [04:36, 03:23](602 MB) +PASS -- TEST 'control_iovr5_intel' [04:38, 03:23](605 MB) +PASS -- TEST 'control_p8_intel' [06:34, 04:43](1848 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:06, 04:48](1844 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:49, 04:27](1849 MB) +PASS -- TEST 'control_restart_p8_intel' [04:06, 02:50](1060 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:37, 04:27](1841 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:08, 02:47](1076 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:38, 04:52](1833 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:38, 04:37](1933 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:15, 07:47](1854 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:02, 05:58](1903 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:54, 04:43](1858 MB) +PASS -- TEST 'merra2_thompson_intel' [07:03, 05:00](1847 MB) +PASS -- TEST 'regional_control_intel' [09:06, 07:57](1014 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 04:36](1010 MB) +PASS -- TEST 'regional_decomp_intel' [10:07, 08:15](1020 MB) +PASS -- TEST 'regional_2threads_intel' [07:08, 05:55](1008 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:13, 07:52](1022 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:06, 07:58](1014 MB) + +PASS -- COMPILE 'rrfs_intel' [36:17, 35:44] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [15:09, 10:17](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:32, 05:39](1222 MB) +PASS -- TEST 'rap_decomp_intel' [14:16, 10:41](988 MB) +PASS -- TEST 'rap_2threads_intel' [14:16, 09:44](1087 MB) +PASS -- TEST 'rap_restart_intel' [07:22, 05:19](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:32, 10:05](992 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:07, 10:40](989 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:12, 07:36](1004 MB) +PASS -- TEST 'hrrr_control_intel' [10:01, 05:17](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:03, 05:27](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:40, 04:48](1069 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:32, 02:49](922 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:44, 10:02](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:35, 12:29](1946 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:35, 12:12](1940 MB) + +PASS -- COMPILE 'csawmg_intel' [33:19, 32:42] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:48, 08:46](960 MB) +PASS -- TEST 'control_ras_intel' [05:27, 04:30](663 MB) + +PASS -- COMPILE 'wam_intel' [33:18, 32:39] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [15:55, 14:18](1632 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [53:18, 52:45] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [13:34, 04:14](1840 MB) +PASS -- TEST 'regional_control_faster_intel' [08:46, 07:12](1011 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:42] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:59, 03:27](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:05, 03:20](1580 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:49](778 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:28](770 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:57, 05:59](1093 MB) +PASS -- TEST 'control_ras_debug_intel' [04:33, 03:28](788 MB) +PASS -- TEST 'control_diag_debug_intel' [05:03, 03:27](1640 MB) +PASS -- TEST 'control_debug_p8_intel' [06:07, 04:25](1878 MB) +PASS -- TEST 'regional_debug_intel' [24:02, 22:44](1044 MB) +PASS -- TEST 'rap_control_debug_intel' [07:35, 06:10](1163 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:37, 06:04](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 06:08](1167 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 06:10](1164 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:11](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:35, 06:30](1243 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:23, 06:22](1169 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:29, 06:17](1170 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:28, 06:12](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:31, 06:17](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:30, 06:07](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:30, 06:15](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:31, 10:13](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:31, 06:09](1162 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:33, 07:32](1168 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:27, 06:12](1165 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:29, 10:45](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:42] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:05, 16:52](1652 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 30:42] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:15, 05:21](1081 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:01, 08:25](904 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:14, 04:29](868 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:23, 08:00](952 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:20, 04:04](913 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:14, 04:46](865 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:27, 06:15](903 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:32, 02:25](852 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [53:20, 48:43] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:13, 02:58](1108 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:50, 01:23](1053 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:51, 01:36](1023 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:16, 31:03] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:56, 05:34](915 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:46] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 06:08](1041 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 06:01](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [20:05, 18:40](1153 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:04, 18:54](900 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:57, 10:51](1099 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:58, 18:41](1228 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:28, 06:12](1083 MB) + +PASS -- COMPILE 'hafsw_intel' [39:17, 38:48] ( 1 warnings 1427 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [12:27, 06:59](721 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:41, 06:51](1095 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:46, 09:19](767 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [23:30, 16:30](795 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:55, 18:08](827 MB) +PASS -- TEST 'gnv1_nested_intel' [27:10, 07:31](1683 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:17, 33:41] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:30, 08:46](773 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:31, 08:53](753 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:13, 08:29] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:25, 03:36](1084 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:14](1027 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:25, 03:31](937 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:26, 03:33](931 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:25, 03:34](926 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:24, 03:37](1066 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:35](1049 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:25, 03:31](932 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:26, 07:57](888 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:22, 07:51](842 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:22, 03:36](1074 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:15](2407 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [09:26, 05:05](2356 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:38] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:25, 08:02](1026 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:37] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 03:36](1069 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 01:55] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [15:42, 02:00](233 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [15:36, 01:43](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:32, 00:54](253 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:15, 34:08] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [19:29, 05:35](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:15, 33:24] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [16:39, 05:31](1875 MB) + +PASS -- COMPILE 'atml_intel' [38:16, 37:52] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [17:48, 08:59](1868 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:46, 09:11](1859 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:53, 04:52](1076 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 06:04] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [31:54, 08:16](1899 MB) + +PASS -- COMPILE 'atmw_intel' [36:16, 35:32] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:23, 02:51](1862 MB) + +PASS -- COMPILE 'atmaero_intel' [31:18, 27:13] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:32, 05:58](1945 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:29, 06:29](1723 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:20, 06:33](1734 MB) SYNOPSIS: -Starting Date/Time: 20240729 06:22:57 -Ending Date/Time: 20240729 15:24:17 -Total Time: 09h:01m:51s +Starting Date/Time: 20240731 21:01:26 +Ending Date/Time: 20240801 00:59:10 +Total Time: 03h:58m:22s Compiles Completed: 36/36 -Tests Completed: 160/164 -Failed Tests: -* TEST cpld_control_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_control_gfsv17_intel.log -* TEST cpld_control_gfsv17_iau_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_control_gfsv17_iau_intel.log -* TEST cpld_restart_gfsv17_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_gfsv17_intel.log -* TEST cpld_restart_qr_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_qr_p8_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -9fc184af0952396d9793dade5f7d4b699b781120 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2040239 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:06, 49:05] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:30, 21:46](1879 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:26, 22:34](2009 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 11:21](1090 MB) - -PASS -- COMPILE 's2swa_intel' [40:45, 40:44] ( 1381 remarks ) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:43, 08:16](2067 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 05:53](1724 MB) - -SYNOPSIS: -Starting Date/Time: 20240729 15:56:33 -Ending Date/Time: 20240729 17:53:36 -Total Time: 01h:57m:17s -Compiles Completed: 2/2 -Tests Completed: 5/5 +Tests Completed: 164/164 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 770122e795..8b2f2fd0b3 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: -d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,287 +35,358 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3184996 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_457009 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 16:02] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:45, 14:29](2084 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:43, 18:03](1962 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:15, 19:01](2143 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:49](1217 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:48, 20:24](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:42] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:42, 17:42](1958 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:24] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:35, 26:49](1940 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 16:01] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:44, 14:19](2148 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:45, 14:19](2150 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:43, 07:45](1817 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:44, 14:18](2161 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:43, 07:50](1714 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:38, 13:11](2440 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:38, 14:06](2137 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:40, 12:00](2044 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:45, 14:30](2139 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:34, 16:15](2714 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:33, 08:40](2731 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:06, 11:23](3655 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:04, 06:57](3502 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:32, 05:50](2117 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 15:13] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:24, 13:37](1979 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:34, 04:45](2049 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:22] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:12, 08:34](2168 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:40] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:09, 06:06](2011 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:44] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:13, 04:42](2040 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 12:52] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:57, 10:02](3108 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:34](3082 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:51, 02:04](2513 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:11, 24:52] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:37, 14:51](2143 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:35] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:12, 18:07](1997 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:21, 08:58](1259 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:15, 20:19](1913 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 07:08] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:08, 29:01](1982 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:28, 03:37](688 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:39, 03:03](1590 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:50, 03:09](1588 MB) -PASS -- TEST 'control_latlon_intel' [03:40, 03:04](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:49, 03:06](1587 MB) -PASS -- TEST 'control_c48_intel' [10:46, 09:11](1740 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:54](860 MB) -PASS -- TEST 'control_c192_intel' [12:00, 11:06](1732 MB) -PASS -- TEST 'control_c384_intel' [13:47, 12:10](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [12:23, 09:20](1359 MB) -PASS -- TEST 'control_stochy_intel' [02:24, 01:47](644 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:57, 01:04](483 MB) -PASS -- TEST 'control_lndp_intel' [02:24, 01:41](652 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:39](644 MB) -PASS -- TEST 'control_iovr5_intel' [03:25, 02:39](642 MB) -PASS -- TEST 'control_p8_intel' [05:12, 03:25](1880 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:12, 03:24](1890 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:24, 03:14](1888 MB) -PASS -- TEST 'control_restart_p8_intel' [03:08, 01:57](1100 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:17, 03:19](1874 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 01:55](1137 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:17, 03:26](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:16, 03:32](1966 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:46](1891 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:45](1950 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:26, 03:23](1893 MB) -PASS -- TEST 'merra2_thompson_intel' [05:40, 03:44](1897 MB) -PASS -- TEST 'regional_control_intel' [07:36, 06:14](1088 MB) -PASS -- TEST 'regional_restart_intel' [06:38, 03:43](1084 MB) -PASS -- TEST 'regional_decomp_intel' [07:36, 06:35](1076 MB) -PASS -- TEST 'regional_2threads_intel' [05:31, 04:35](1093 MB) -PASS -- TEST 'regional_noquilt_intel' [07:40, 06:13](1380 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:40, 06:09](1089 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 06:15](1089 MB) -PASS -- TEST 'regional_wofs_intel' [09:02, 07:56](1908 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 12:17] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:25, 08:37](1063 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 05:01](1306 MB) -PASS -- TEST 'rap_decomp_intel' [10:00, 08:44](1031 MB) -PASS -- TEST 'rap_2threads_intel' [09:52, 08:30](1170 MB) -PASS -- TEST 'rap_restart_intel' [06:29, 04:17](1047 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:05, 08:13](1052 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:57, 08:33](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:28, 06:09](1070 MB) -PASS -- TEST 'hrrr_control_intel' [06:15, 04:15](1034 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:19](1021 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 04:03](1096 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:23](951 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:20, 08:13](1047 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 09:46](1992 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:29, 09:30](2025 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:38] -PASS -- TEST 'control_csawmg_intel' [08:38, 06:39](1023 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:35](721 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 11:35] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:45, 12:11](1667 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:11, 19:53] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:36, 03:24](1882 MB) -PASS -- TEST 'regional_control_faster_intel' [07:44, 06:11](1084 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:18] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:44](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:55, 02:37](1614 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:10](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:47](819 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:14](1138 MB) -PASS -- TEST 'control_ras_debug_intel' [03:26, 02:47](824 MB) -PASS -- TEST 'control_diag_debug_intel' [03:52, 02:47](1676 MB) -PASS -- TEST 'control_debug_p8_intel' [03:52, 03:06](1912 MB) -PASS -- TEST 'regional_debug_intel' [18:50, 17:25](1109 MB) -PASS -- TEST 'rap_control_debug_intel' [05:26, 04:49](1202 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:46](1201 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:29, 04:47](1206 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:29, 04:51](1209 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 04:57](1213 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:34, 06:12](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 05:30](1205 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:50](1203 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:25, 05:10](1212 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:33](1207 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:28, 05:18](1207 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:42, 05:32](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:42, 08:02](1200 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:30, 04:48](1195 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:58](1216 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:21, 04:51](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:21, 08:24](1212 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:26] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:46, 13:31](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:20] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:41](1167 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:19, 06:56](996 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:41](934 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:58, 07:06](1079 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 03:35](957 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:28, 03:49](906 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [29:21, 05:13](982 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:55, 02:00](888 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:11, 18:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:52, 02:39](1177 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:51, 01:11](1135 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:42, 01:28](1087 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:28](982 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:15] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:49](1090 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:43](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [15:48, 14:10](1240 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:48, 14:27](945 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:27](1182 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 14:25](1306 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 05:07] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:57](1142 MB) - -PASS -- COMPILE 'hafsw_intel' [14:12, 13:16] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:17, 06:00](764 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:36, 06:14](1141 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:26](841 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:11, 24:45](867 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [32:16, 28:36](894 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:04, 06:59](512 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:28, 08:19](525 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:54, 03:23](379 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:17, 09:26](485 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:51, 04:39](536 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:51, 04:25](535 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:50, 05:37](602 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:33, 01:32](417 MB) -PASS -- TEST 'gnv1_nested_intel' [20:10, 04:16](1728 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:44] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:55, 13:08](598 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:13, 22:38] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:14, 13:01](761 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [34:59, 12:55](734 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 13:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:58, 08:45](728 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:16, 13:03] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [34:20, 07:16](841 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:12, 07:17](812 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [42:58, 16:25](1206 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:08] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [24:20, 02:56](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:23, 01:54](1118 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [28:19, 02:48](1026 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [28:21, 02:52](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [28:19, 02:52](1027 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [27:21, 02:57](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:22, 02:56](1157 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [28:19, 02:48](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [33:10, 06:26](1027 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [34:05, 06:24](1007 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [28:18, 02:55](1134 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 04:19](2444 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [29:20, 04:19](2388 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:39] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [31:20, 06:30](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:30] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [28:18, 02:56](1159 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:24] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [26:34, 01:02](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [25:26, 00:56](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:28, 00:36](318 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 12:22] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [27:10, 04:02](1980 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:13, 12:31] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [26:09, 03:50](1965 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 13:42] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [27:31, 04:44](1877 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [27:32, 04:45](1874 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:50, 02:37](1080 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 06:56] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [26:24, 05:52](1901 MB) - -PASS -- COMPILE 'atmw_intel' [13:12, 12:41] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:17, 02:03](1920 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 12:03] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [21:13, 04:29](1997 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [18:13, 05:14](1782 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [17:59, 05:18](1783 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 05:13] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [31:56, 20:52](4551 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:10, 16:24] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:41, 14:32](2094 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:42, 18:05](1960 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:11, 19:00](2129 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:06, 08:53](1217 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:41, 20:23](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:43, 17:40](1951 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:37] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:49, 26:53](1944 MB) + +PASS -- COMPILE 's2swa_intel' [16:10, 16:08] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:36, 14:16](2140 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:40, 14:18](2135 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:43, 07:55](1810 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:36, 14:32](2167 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:43, 07:58](1716 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:34, 13:16](2434 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:34, 14:05](2132 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:37, 11:56](2042 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:38, 14:17](2148 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:42, 15:40](2718 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:02, 08:26](2724 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:01, 11:29](3662 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:34, 07:08](3542 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:26, 05:58](2116 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 15:34] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:22, 13:40](1981 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:28, 04:49](2044 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:10, 08:14] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:20, 08:50](2173 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:10, 07:16] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:00, 06:03](2018 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:10, 13:41] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:18, 04:39](2046 MB) + +PASS -- COMPILE 's2s_intel' [14:10, 14:05] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:56, 09:47](3109 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:20](3091 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:01, 02:08](2546 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:11, 23:00] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:29, 14:31](2154 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 20:03] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 18:07](1995 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:28, 08:54](1248 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:09, 20:20](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 06:48] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:24, 28:48](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:27, 03:37](689 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 03:04](1593 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 03:10](1593 MB) +PASS -- TEST 'control_latlon_intel' [03:43, 03:05](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:53, 03:06](1594 MB) +PASS -- TEST 'control_c48_intel' [10:49, 09:16](1740 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:56](856 MB) +PASS -- TEST 'control_c192_intel' [12:49, 11:10](1741 MB) +PASS -- TEST 'control_c384_intel' [14:48, 12:21](2022 MB) +PASS -- TEST 'control_c384gdas_intel' [12:28, 09:27](1360 MB) +PASS -- TEST 'control_stochy_intel' [02:22, 01:48](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:08](475 MB) +PASS -- TEST 'control_lndp_intel' [02:22, 01:42](643 MB) +PASS -- TEST 'control_iovr4_intel' [03:24, 02:38](639 MB) +PASS -- TEST 'control_iovr5_intel' [03:23, 02:39](643 MB) +PASS -- TEST 'control_p8_intel' [05:08, 03:26](1882 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:09, 03:25](1880 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:20, 03:15](1884 MB) +PASS -- TEST 'control_restart_p8_intel' [03:06, 02:01](1095 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:15, 03:22](1879 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:16, 01:57](1129 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:07, 03:22](1872 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:40](1975 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:44, 05:49](1881 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:52](1952 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:21, 03:27](1895 MB) +PASS -- TEST 'merra2_thompson_intel' [05:34, 03:40](1895 MB) +PASS -- TEST 'regional_control_intel' [07:35, 06:17](1091 MB) +PASS -- TEST 'regional_restart_intel' [04:36, 03:29](1081 MB) +PASS -- TEST 'regional_decomp_intel' [07:37, 06:39](1081 MB) +PASS -- TEST 'regional_2threads_intel' [05:35, 04:36](1077 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 06:19](1382 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 06:17](1088 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 06:21](1093 MB) +PASS -- TEST 'regional_wofs_intel' [08:35, 07:33](1908 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:16] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:20, 08:16](1059 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:53, 05:01](1307 MB) +PASS -- TEST 'rap_decomp_intel' [10:02, 08:27](1020 MB) +PASS -- TEST 'rap_2threads_intel' [09:57, 08:14](1168 MB) +PASS -- TEST 'rap_restart_intel' [06:29, 04:16](1041 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:00, 08:11](1055 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:56, 08:28](1026 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 06:09](1075 MB) +PASS -- TEST 'hrrr_control_intel' [05:58, 04:16](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:20](1015 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:13, 04:05](1103 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:39, 02:18](950 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:14, 08:03](1043 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:38](1989 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:22](2026 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:30] +PASS -- TEST 'control_csawmg_intel' [07:37, 06:32](1024 MB) +PASS -- TEST 'control_ras_intel' [04:23, 03:25](718 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 11:30] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:43, 12:01](1665 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:39] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:19, 03:10](1891 MB) +PASS -- TEST 'regional_control_faster_intel' [06:33, 05:58](1082 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:02] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:44](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:52, 02:39](1611 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:25, 03:03](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:42](817 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:43, 04:18](1143 MB) +PASS -- TEST 'control_ras_debug_intel' [03:24, 02:48](822 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 02:44](1683 MB) +PASS -- TEST 'control_debug_p8_intel' [03:49, 03:08](1919 MB) +PASS -- TEST 'regional_debug_intel' [18:47, 17:16](1098 MB) +PASS -- TEST 'rap_control_debug_intel' [05:27, 04:55](1210 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:44](1204 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:26, 04:52](1209 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:14](1210 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:31](1207 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:32, 05:14](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 04:57](1208 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 05:00](1207 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:20, 04:50](1211 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:00](1213 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:48](1203 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:49](1208 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:20, 08:01](1201 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 04:50](1205 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 06:01](1211 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:52](1213 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:19, 08:19](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 05:04] ( 839 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 04:48](1167 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 06:58](1012 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:16, 03:41](928 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:04, 07:05](1082 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:33](956 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:59, 03:51](907 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:24, 05:13](981 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 02:00](882 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 17:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:54, 02:36](1185 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:13](1131 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:36, 01:30](1085 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 11:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:29](978 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 05:11] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:43](1090 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:45](1086 MB) +PASS -- TEST 'conus13km_debug_intel' [14:49, 14:07](1245 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 14:29](950 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:39, 08:31](1174 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 14:44](1316 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 05:12] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:21, 04:54](1142 MB) + +PASS -- COMPILE 'hafsw_intel' [14:10, 13:26] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:09, 05:54](761 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:10](1136 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 07:22](840 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:15, 24:15](871 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:23, 29:02](886 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 06:59](515 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:26, 08:17](521 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:22](382 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:13, 09:28](485 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:37](540 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:54, 04:21](541 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:38](591 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:33](411 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:47] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:56, 12:56](603 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [22:10, 21:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:11, 12:47](676 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:01, 12:49](735 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:17] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:58, 08:45](726 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:10, 12:30] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:16, 07:14](833 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 07:15](818 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:19](1200 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:16] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:56](1158 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:54](1108 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 02:47](1021 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:50](1024 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:52](1023 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:58](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:58](1149 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:51](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:07, 06:28](1026 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:09, 06:22](1007 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:55](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:16](2398 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:21](2345 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 05:44] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:29](1076 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:48] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:57](1154 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:01](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:56](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:37](319 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:59] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:03, 04:00](1984 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:10, 12:19] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:05, 03:54](1955 MB) + +PASS -- COMPILE 'atml_intel' [14:10, 13:40] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:21, 04:47](1872 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:25, 04:46](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:47](1083 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 06:45] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:26, 05:52](1906 MB) + +PASS -- COMPILE 'atmw_intel' [13:10, 12:32] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:16, 02:04](1919 MB) + +PASS -- COMPILE 'atmaero_intel' [12:10, 12:06] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:09, 04:33](1989 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 05:14](1775 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:58, 05:17](1800 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 04:56] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:49, 20:46](4552 MB) SYNOPSIS: -Starting Date/Time: 20240729 07:28:02 -Ending Date/Time: 20240729 09:28:56 -Total Time: 02h:01m:46s +Starting Date/Time: 20240731 09:22:04 +Ending Date/Time: 20240731 10:52:07 +Total Time: 01h:30m:46s Compiles Completed: 41/41 -Tests Completed: 185/185 +Tests Completed: 183/185 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2373/tests/logs/log_orion/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2373/tests/logs/log_orion/run_gnv1_nested_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ORION REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1813348 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [06:10, 05:35] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:41, 14:00](1695 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 13:28] ( 1 warnings 9 remarks ) +PASS -- TEST 'gnv1_nested_intel' [07:06, 04:19](1730 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 16:42:20 +Ending Date/Time: 20240731 17:05:05 +Total Time: 00h:22m:56s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index cb60b28f68..f62c9c31cf 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: -4124fe82547dcec17e208ff919f41db354b212e6 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,241 +35,307 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_18190 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135764 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:28, 11:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [31:39, 01:31](3102 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:46, 27:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:20, 01:59](1823 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [58:03, 02:28](1853 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [58:03, 01:59](981 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:21, 01:58](1793 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:42, 22:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:24, 01:08](1819 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:32, 16:07] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:36, 02:00](1843 MB) - -PASS -- COMPILE 's2swa_intel' [11:30, 11:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [32:36, 01:36](3133 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:36, 01:56](3133 MB) -PASS -- TEST 'cpld_restart_p8_intel' [24:15, 01:09](3065 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [32:36, 01:36](3151 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [24:15, 01:42](3084 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [32:36, 01:05](3372 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [32:36, 01:33](3126 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [32:37, 01:34](3076 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [32:36, 01:57](3134 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [32:45, 04:36](4127 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:25, 05:43](4268 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [32:36, 01:58](3115 MB) - -PASS -- COMPILE 's2sw_intel' [11:28, 11:07] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [32:38, 00:54](1835 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:38, 01:04](1891 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:28, 10:35] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:38, 01:07](1893 MB) - -PASS -- COMPILE 's2s_intel' [11:28, 10:26] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [32:37, 01:06](2928 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [32:37, 01:30](2918 MB) -PASS -- TEST 'cpld_restart_c48_intel' [28:28, 01:04](2326 MB) - -PASS -- COMPILE 's2swa_faster_intel' [40:59, 40:29] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [03:01, 02:24](3130 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:42, 22:39] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:43, 01:05](1834 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [01:13, 01:24](1008 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [01:14, 01:39](1808 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:31, 15:37] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [16:07, 01:30](1865 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:24, 10:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [21:13, 00:20](572 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [21:12, 00:29](1469 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:12, 00:27](1478 MB) -PASS -- TEST 'control_latlon_intel' [21:13, 00:19](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:13, 00:31](1472 MB) -PASS -- TEST 'control_c48_intel' [21:11, 01:06](1593 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [21:11, 00:53](715 MB) -PASS -- TEST 'control_c192_intel' [21:12, 00:27](1588 MB) -PASS -- TEST 'control_c384_intel' [21:16, 01:22](1910 MB) -PASS -- TEST 'control_c384gdas_intel' [21:17, 02:02](1088 MB) -PASS -- TEST 'control_stochy_intel' [21:12, 00:24](530 MB) -PASS -- TEST 'control_stochy_restart_intel' [18:43, 01:03](332 MB) -PASS -- TEST 'control_lndp_intel' [21:13, 00:30](527 MB) -PASS -- TEST 'control_iovr4_intel' [21:12, 00:44](524 MB) -PASS -- TEST 'control_iovr5_intel' [21:12, 00:42](525 MB) -PASS -- TEST 'control_p8_intel' [21:12, 01:40](1765 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [21:13, 01:50](1772 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [21:12, 01:51](1775 MB) -PASS -- TEST 'control_restart_p8_intel' [15:55, 01:09](915 MB) -PASS -- TEST 'control_noqr_p8_intel' [21:12, 01:41](1761 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [15:55, 01:10](922 MB) -PASS -- TEST 'control_decomp_p8_intel' [21:13, 01:34](1761 MB) -PASS -- TEST 'control_2threads_p8_intel' [21:13, 01:06](1858 MB) -PASS -- TEST 'control_p8_lndp_intel' [21:13, 01:08](1770 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [21:13, 02:01](1823 MB) -PASS -- TEST 'control_p8_mynn_intel' [21:13, 01:42](1776 MB) -PASS -- TEST 'merra2_thompson_intel' [21:13, 01:39](1772 MB) -PASS -- TEST 'regional_control_intel' [21:12, 00:15](851 MB) -PASS -- TEST 'regional_restart_intel' [15:20, 00:33](837 MB) -PASS -- TEST 'regional_decomp_intel' [18:26, 00:51](847 MB) -PASS -- TEST 'regional_2threads_intel' [17:48, 00:50](903 MB) -PASS -- TEST 'regional_noquilt_intel' [17:39, 00:19](1169 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [17:39, 01:18](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [17:23, 01:08](853 MB) -PASS -- TEST 'regional_wofs_intel' [17:19, 00:48](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [24:45, 24:18] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [07:52, 02:03](912 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:53, 01:03](1092 MB) -PASS -- TEST 'rap_decomp_intel' [06:30, 02:01](912 MB) -PASS -- TEST 'rap_2threads_intel' [06:12, 01:44](996 MB) -PASS -- TEST 'rap_restart_intel' [58:30, 01:28](784 MB) -PASS -- TEST 'rap_sfcdiff_intel' [05:44, 02:19](914 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:44, 02:02](910 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [56:07, 01:39](782 MB) -PASS -- TEST 'hrrr_control_intel' [05:29, 01:27](907 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:07, 01:02](908 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:53, 01:14](986 MB) -PASS -- TEST 'hrrr_control_restart_intel' [00:00, 01:18](735 MB) -PASS -- TEST 'rrfs_v1beta_intel' [04:13, 01:29](907 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [04:13, 01:16](1871 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [04:07, 01:31](1860 MB) - -PASS -- COMPILE 'csawmg_intel' [13:27, 13:11] -PASS -- TEST 'control_csawmg_intel' [17:17, 00:25](872 MB) -PASS -- TEST 'control_ras_intel' [17:13, 00:51](566 MB) - -PASS -- COMPILE 'wam_intel' [38:05, 37:46] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [53:33, 00:55](1568 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:36, 18:47] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:58, 02:03](1773 MB) -PASS -- TEST 'regional_control_faster_intel' [07:57, 00:21](848 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 06:02] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:04, 01:16](1504 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:04, 01:22](1498 MB) -PASS -- TEST 'control_stochy_debug_intel' [15:04, 00:51](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [15:04, 01:09](700 MB) -PASS -- TEST 'control_csawmg_debug_intel' [15:04, 00:22](1015 MB) -PASS -- TEST 'control_ras_debug_intel' [14:35, 00:59](710 MB) -PASS -- TEST 'control_diag_debug_intel' [14:24, 01:16](1565 MB) -PASS -- TEST 'control_debug_p8_intel' [14:14, 00:51](1805 MB) -PASS -- TEST 'regional_debug_intel' [13:07, 00:12](893 MB) -PASS -- TEST 'rap_control_debug_intel' [13:05, 00:45](1088 MB) -PASS -- TEST 'hrrr_control_debug_intel' [12:44, 00:49](1079 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [12:25, 00:49](1085 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [12:25, 00:45](1087 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:58, 00:39](1087 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:47, 00:35](1167 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:28, 00:37](1086 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:50, 00:35](1092 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:47, 00:38](1087 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:22, 00:42](1084 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:22, 00:46](1084 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:10, 00:39](1086 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:08, 00:28](1084 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:04, 00:47](1080 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:02, 00:36](1092 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:35, 00:41](1092 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:33, 01:54](1093 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:21, 06:25] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [09:33, 00:26](1592 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:34, 13:52] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:51, 01:16](955 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:48, 02:18](791 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:41, 02:09](786 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:31, 02:02](853 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [02:27, 02:23](843 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [02:20, 01:51](786 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [55:19, 01:26](688 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [58:02, 00:28](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:41, 19:36] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [58:26, 01:25](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [54:07, 00:52](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [54:06, 00:41](886 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [21:49, 21:12] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [54:29, 01:16](814 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [23:54, 22:50] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [52:11, 00:55](961 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [52:11, 01:05](960 MB) -PASS -- TEST 'conus13km_debug_intel' [52:11, 01:05](1055 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [52:11, 00:53](726 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [52:12, 00:18](1051 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [52:11, 01:00](1121 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [26:56, 25:58] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [48:07, 00:47](994 MB) - -PASS -- COMPILE 'hafsw_intel' [25:45, 25:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [48:08, 01:59](613 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [48:08, 01:12](969 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [48:06, 01:49](662 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [48:06, 01:27](697 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:07, 01:23](713 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [48:06, 00:59](391 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [48:07, 02:16](403 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [48:07, 01:43](287 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [48:10, 02:20](374 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [48:06, 01:33](418 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [48:06, 00:49](418 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [48:08, 00:50](491 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [48:07, 00:25](313 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:27, 09:57] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:33, 01:17](525 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:45, 19:47] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [47:09, 00:48](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [47:09, 01:39](710 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [23:48, 22:36] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [42:04, 00:48](712 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:34, 13:52] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [48:34, 02:11](660 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [48:34, 02:10](650 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [48:32, 00:25](881 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 10:44] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [46:46, 00:46](1827 MB) - -PASS -- COMPILE 'atml_intel' [16:32, 15:52] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [10:25, 09:56] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [17:31, 17:01] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [36:02, 01:21](3024 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [36:02, 01:49](2906 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:02, 01:47](2923 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:29, 06:25] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [44:43, 01:14](4438 MB) +PASS -- COMPILE 's2swa_32bit_intel' [31:50, 30:42] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [52:57, 01:57](3100 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:35, 18:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [52:16, 01:55](1824 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [34:19, 01:37](1849 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [34:19, 02:12](982 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:17, 01:29](1792 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:58, 42:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [27:53, 01:11](1821 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:31, 15:08] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [55:20, 01:46](1843 MB) + +PASS -- COMPILE 's2swa_intel' [30:47, 30:03] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [40:02, 01:36](3133 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:02, 01:48](3130 MB) +PASS -- TEST 'cpld_restart_p8_intel' [31:42, 01:04](3065 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [40:02, 01:34](3152 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [31:42, 00:59](3087 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [40:02, 01:01](3369 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [40:02, 01:45](3128 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [40:03, 01:35](3078 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:02, 01:49](3129 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [40:11, 04:01](4129 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:42, 04:25](4273 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [40:02, 01:50](3114 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 11:14] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [58:23, 00:49](1840 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:23, 00:58](1904 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:28, 13:20] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:22, 01:06](1899 MB) + +PASS -- COMPILE 's2s_intel' [22:38, 21:55] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [48:11, 01:00](2923 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [48:11, 01:27](2925 MB) +PASS -- TEST 'cpld_restart_c48_intel' [44:08, 01:11](2349 MB) + +PASS -- COMPILE 's2swa_faster_intel' [30:48, 30:01] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [40:02, 01:55](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:34, 18:11] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:17, 00:47](1843 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:04, 01:26](1008 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:05, 01:41](1802 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [28:50, 28:29] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:33, 00:42](1863 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [34:52, 34:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [19:50, 00:22](568 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [19:50, 00:35](1463 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:50, 00:24](1475 MB) +PASS -- TEST 'control_latlon_intel' [19:20, 00:20](1478 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:56, 00:32](1471 MB) +PASS -- TEST 'control_c48_intel' [18:45, 01:11](1592 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [18:45, 00:50](715 MB) +PASS -- TEST 'control_c192_intel' [18:45, 00:40](1593 MB) +PASS -- TEST 'control_c384_intel' [18:36, 01:37](1903 MB) +PASS -- TEST 'control_c384gdas_intel' [18:32, 02:04](1089 MB) +PASS -- TEST 'control_stochy_intel' [18:26, 00:27](529 MB) +PASS -- TEST 'control_stochy_restart_intel' [16:01, 01:01](333 MB) +PASS -- TEST 'control_lndp_intel' [18:21, 00:30](528 MB) +PASS -- TEST 'control_iovr4_intel' [17:52, 00:44](527 MB) +PASS -- TEST 'control_iovr5_intel' [17:52, 00:43](521 MB) +PASS -- TEST 'control_p8_intel' [17:32, 01:38](1770 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [16:44, 01:49](1765 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [16:44, 01:57](1772 MB) +PASS -- TEST 'control_restart_p8_intel' [12:25, 01:00](917 MB) +PASS -- TEST 'control_noqr_p8_intel' [16:44, 01:31](1759 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [11:43, 00:41](925 MB) +PASS -- TEST 'control_decomp_p8_intel' [16:44, 01:25](1761 MB) +PASS -- TEST 'control_2threads_p8_intel' [16:43, 01:02](1855 MB) +PASS -- TEST 'control_p8_lndp_intel' [16:42, 01:04](1777 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [16:42, 02:04](1830 MB) +PASS -- TEST 'control_p8_mynn_intel' [16:39, 01:43](1778 MB) +PASS -- TEST 'merra2_thompson_intel' [16:37, 01:42](1778 MB) +PASS -- TEST 'regional_control_intel' [15:56, 00:12](849 MB) +PASS -- TEST 'regional_restart_intel' [10:14, 00:28](852 MB) +PASS -- TEST 'regional_decomp_intel' [15:56, 00:55](852 MB) +PASS -- TEST 'regional_2threads_intel' [15:43, 00:56](904 MB) +PASS -- TEST 'regional_noquilt_intel' [15:33, 00:19](1173 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [15:20, 00:23](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [15:04, 00:15](855 MB) +PASS -- TEST 'regional_wofs_intel' [15:03, 00:52](1576 MB) + +PASS -- COMPILE 'rrfs_intel' [21:41, 20:26] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [33:37, 01:42](914 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:38, 01:03](1087 MB) +PASS -- TEST 'rap_decomp_intel' [33:37, 01:26](913 MB) +PASS -- TEST 'rap_2threads_intel' [33:37, 01:45](997 MB) +PASS -- TEST 'rap_restart_intel' [24:34, 01:33](785 MB) +PASS -- TEST 'rap_sfcdiff_intel' [33:37, 02:10](909 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [33:37, 01:55](911 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [24:03, 01:43](782 MB) +PASS -- TEST 'hrrr_control_intel' [33:37, 01:02](904 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [33:37, 00:56](908 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [33:38, 01:24](991 MB) +PASS -- TEST 'hrrr_control_restart_intel' [28:32, 01:05](737 MB) +PASS -- TEST 'rrfs_v1beta_intel' [33:37, 02:08](907 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [33:37, 01:00](1872 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [33:37, 01:17](1859 MB) + +PASS -- COMPILE 'csawmg_intel' [11:25, 11:05] +PASS -- TEST 'control_csawmg_intel' [40:52, 00:29](872 MB) +PASS -- TEST 'control_ras_intel' [40:52, 00:52](565 MB) + +PASS -- COMPILE 'wam_intel' [09:24, 08:31] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [42:52, 00:55](1572 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:34, 13:52] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [33:09, 02:03](1774 MB) +PASS -- TEST 'regional_control_faster_intel' [32:39, 00:21](848 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [19:35, 18:23] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:16, 01:14](1499 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [23:16, 01:17](1501 MB) +PASS -- TEST 'control_stochy_debug_intel' [23:16, 00:44](701 MB) +PASS -- TEST 'control_lndp_debug_intel' [23:16, 01:00](703 MB) +PASS -- TEST 'control_csawmg_debug_intel' [23:16, 00:26](1012 MB) +PASS -- TEST 'control_ras_debug_intel' [23:16, 01:01](711 MB) +PASS -- TEST 'control_diag_debug_intel' [23:16, 01:12](1559 MB) +PASS -- TEST 'control_debug_p8_intel' [23:16, 00:54](1796 MB) +PASS -- TEST 'regional_debug_intel' [23:15, 00:11](903 MB) +PASS -- TEST 'rap_control_debug_intel' [23:16, 00:44](1084 MB) +PASS -- TEST 'hrrr_control_debug_intel' [23:16, 00:49](1078 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [23:16, 00:45](1087 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [23:16, 00:42](1083 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [23:16, 00:43](1082 MB) +PASS -- TEST 'rap_diag_debug_intel' [23:16, 00:34](1164 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [23:16, 00:37](1086 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [23:13, 00:36](1090 MB) +PASS -- TEST 'rap_lndp_debug_intel' [14:24, 00:47](1086 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:24, 00:51](1085 MB) +PASS -- TEST 'rap_noah_debug_intel' [14:24, 00:54](1082 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [13:28, 00:42](1082 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:25, 00:25](1080 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [12:05, 00:47](1078 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:45, 00:33](1090 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:22, 00:41](1090 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:21, 01:51](1091 MB) + +PASS -- COMPILE 'wam_debug_intel' [22:43, 22:00] ( 825 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:33, 13:32] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [25:29, 01:16](954 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [25:28, 01:20](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [25:28, 02:00](787 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [25:28, 01:49](856 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [25:29, 02:17](844 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:28, 01:51](786 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:09, 01:34](688 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:05, 00:17](670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:42, 22:30] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [10:46, 01:05](1003 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:48, 01:00](1009 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:47, 00:47](887 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:44, 17:47] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:44, 01:21](812 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [31:59, 31:28] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [01:37, 00:55](964 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [01:37, 01:04](960 MB) +PASS -- TEST 'conus13km_debug_intel' [01:37, 01:05](1056 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [01:37, 00:57](725 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [01:38, 00:23](1057 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [01:37, 01:00](1122 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:35, 10:24] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:11, 00:56](991 MB) + +PASS -- COMPILE 'hafsw_intel' [22:37, 22:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:18, 02:04](615 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:18, 01:09](972 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:16, 01:37](664 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [05:16, 01:30](698 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:17, 01:56](711 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:16, 01:03](389 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:17, 02:01](405 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:17, 01:35](285 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:20, 02:14](374 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:16, 00:37](413 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 00:52](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:18, 00:56](494 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:17, 00:28](325 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [19:41, 19:23] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:49, 01:16](527 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [25:43, 25:28] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:36, 01:33](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [57:36, 01:32](712 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:36, 14:05] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:56, 00:56](708 MB) + +PASS -- COMPILE 'hafs_all_intel' [21:39, 20:53] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [56:30, 01:49](662 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:30, 01:44](648 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [56:28, 00:21](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:30, 11:09] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:26, 00:46](1824 MB) + +PASS -- COMPILE 'atml_intel' [26:48, 25:34] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [14:30, 14:15] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [16:30, 15:25] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [50:22, 01:02](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [50:22, 01:34](2904 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [50:22, 01:21](2920 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:22, 08:46] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [57:05, 01:30](4437 MB) SYNOPSIS: -Starting Date/Time: 20240729 13:15:36 -Ending Date/Time: 20240729 14:41:50 -Total Time: 01h:26m:50s +Starting Date/Time: 20240731 13:48:54 +Ending Date/Time: 20240731 15:30:17 +Total Time: 01h:42m:25s Compiles Completed: 33/33 -Tests Completed: 156/156 +Tests Completed: 155/156 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_wcoss2/run_control_wam_debug_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF WCOSS2 REGRESSION TESTING LOG==== +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_238998 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-n) - RUN SINGLE TEST: control_wam_debug +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [04:17, 03:54] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [40:01, 01:01](1599 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 16:15:42 +Ending Date/Time: 20240731 16:37:16 +Total Time: 00h:21m:56s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/diag_table/diag_table_cpld.IN b/tests/parm/diag_table/diag_table_cpld.IN index 2a602d9d93..002b47673e 100644 --- a/tests/parm/diag_table/diag_table_cpld.IN +++ b/tests/parm/diag_table/diag_table_cpld.IN @@ -76,6 +76,7 @@ "gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "omga", "omga", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_template b/tests/parm/diag_table/diag_table_template index 37f7765f67..75ee3bd7a3 100644 --- a/tests/parm/diag_table/diag_table_template +++ b/tests/parm/diag_table/diag_table_template @@ -75,6 +75,7 @@ "gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "omga", "omga", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_thompson b/tests/parm/diag_table/diag_table_thompson index 588b58b98f..8e2b41b279 100644 --- a/tests/parm/diag_table/diag_table_thompson +++ b/tests/parm/diag_table/diag_table_thompson @@ -102,6 +102,7 @@ "gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "omga", "omga", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_wam b/tests/parm/diag_table/diag_table_wam index a86571b34e..273fc78ee1 100644 --- a/tests/parm/diag_table/diag_table_wam +++ b/tests/parm/diag_table/diag_table_wam @@ -21,11 +21,12 @@ "gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "spo3", "o3mr", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "spo2", "spfo2", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "spo", "spfo", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "spo2", "spfo2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "spo", "spfo", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "omga", "omga", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index a2d45053bf..ecdc0c5d0b 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -49,6 +49,7 @@ hydrostatic = @[HYDROSTATIC] phys_hydrostatic = .false. use_hydro_pressure = .false. + pass_full_omega_to_physics_in_non_hydrostatic_mode = @[UPDATE_FULL_OMEGA] beta = 0. a_imp = 1. p_fac = 0.1 diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..c413127f2a 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,77 @@ +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c192 intel +control_c384 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +control_p8_rrtmgp intel +control_p8_mynn intel +control_wam intel +control_p8_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_diag_debug intel +control_debug_p8 intel +atm_ds2s_docn_pcice intel +atm_ds2s_docn_dice intel +control_p8_atmlnd_sbs intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel +control_p8_atmlnd_debug intel +atmwav_control_noaero_p8 intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +control_c48 gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_diag_debug gnu +control_debug_p8 gnu +control_wam_debug gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu + diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index 01426380af..eb1b30790d 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -123,7 +123,7 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. -export IOPT_DIAG=1 +export IOPT_DIAG=2 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index 3e59cabc9c..dbf82fe08c 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -126,7 +126,7 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. -export IOPT_DIAG=1 +export IOPT_DIAG=2 #IAU export CHOUR=12 diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index 428f1a1a65..362e5a112d 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -82,7 +82,7 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. -export IOPT_DIAG=1 +export IOPT_DIAG=2 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 7152ceb68c..37220564ac 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -102,7 +102,7 @@ export KNOB_UGWP_NDX4LH=4 #GFSv17 settings export PROGSIGMA=.true. -export IOPT_DIAG=1 +export IOPT_DIAG=2 export WW3_DOMAIN=global_270k export MESH_WAV=mesh.${WW3_DOMAIN}.nc diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index 1f204a4aaa..6fc53f2686 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -130,7 +130,7 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. -export IOPT_DIAG=1 +export IOPT_DIAG=2 # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index ad4a7be818..924c60a9b7 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -132,7 +132,7 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. -export IOPT_DIAG=1 +export IOPT_DIAG=2 # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. diff --git a/tests/tests/gnv1_nested b/tests/tests/gnv1_nested index a35fffedf5..28047bdac4 100644 --- a/tests/tests/gnv1_nested +++ b/tests/tests/gnv1_nested @@ -192,7 +192,7 @@ export LHEATSTRG=.false. export LSEASPRAY=.false. export IMFDEEPCNV=5 export IMFDEEPCNV_NEST02=5 -export IOPT_DIAG=1 +export IOPT_DIAG=2 export NSTF_NAME=2,0,0,0,0 export EFFR_IN=.true. export RES_LATLON_DYNAMICS='""' From f0c3a780c1a443d04cf37e4459adcb54d9d07cbf Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Thu, 1 Aug 2024 21:00:03 +0000 Subject: [PATCH 10/33] MPAS building in UFSATM! Some more reorganization. Initial infrastructure for CCPP. More CMake modifications --- CMakeLists.txt | 13 +++++++++++-- FV3 | 2 +- driver/UFSDriver.F90 | 12 ++++++------ 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5387962ed1..5d0b3be19d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -174,6 +174,12 @@ find_package(bacio 2.4.0 REQUIRED) find_package(sp 2.3.3 REQUIRED) find_package(w3emc 2.9.2 REQUIRED) +if(MPAS) + find_package(PnetCDF REQUIRED COMPONENTS Fortran) + find_package(PIO REQUIRED COMPONENTS Fortran C) + set(FV3 OFF) +endif() + # Configure Python find_package(Python 3.6 REQUIRED COMPONENTS Interpreter) message("Found Python: ${Python_EXECUTABLE}") @@ -189,13 +195,16 @@ endif() ### Atmosphere Components [FV3, MPAS?] ### DJS2024: There will be a generalized atmospheric component with multiple ### dycores, not multiple atmospheric components (one for each dycore). -### So, - rename the atmospheric component FV3 to UFSATM, then -### - if FV3 or MPAS, add_sudirectory(UFSATM) +### So, - rename the atmospheric component FV3 to UFSATM or ATM, then +### - if FV3 or MPAS, add_sudirectory(UFSATM or ATM) ### ############################################################################### if(FV3) add_subdirectory(FV3) endif() +if (MPAS) + add_subdirectory(FV3) +endif() ############################################################################### ### AQM diff --git a/FV3 b/FV3 index 587ea55925..b4f6463fa4 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 587ea55925d09bef2b4e8aed296b70ad8e97d2c8 +Subproject commit b4f6463fa403b39fd80c51378c3aa1e42e466f21 diff --git a/driver/UFSDriver.F90 b/driver/UFSDriver.F90 index 9ad721618d..c9fb8f2ca9 100644 --- a/driver/UFSDriver.F90 +++ b/driver/UFSDriver.F90 @@ -367,12 +367,12 @@ subroutine SetModelServices(driver, rc) end if #endif #ifdef FRONT_MPAS - if (trim(model) == "mpas") then - call NUOPC_DriverAddComp(driver, trim(prefix), MPAS_SS, & - info=info, petList=petList, comp=comp, rc=rc) - if (ChkErr(rc,__LINE__,u_FILE_u)) return - found_comp = .true. - end if +! if (trim(model) == "mpas") then +! call NUOPC_DriverAddComp(driver, trim(prefix), MPAS_SS, & +! info=info, petList=petList, comp=comp, rc=rc) +! if (ChkErr(rc,__LINE__,u_FILE_u)) return +! found_comp = .true. +! end if #endif #if defined FRONT_CDEPS_DATM if (trim(model) == "datm" ) then From 74abf0f163214d0b78b6f06d7a60f89db3b86d58 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Tue, 6 Aug 2024 10:40:14 -0400 Subject: [PATCH 11/33] initialize scalar field when created for non-CSG (cube-sphere grid) components (#2370) * UFSWM - * CICE - initialize scalar field when created * MOM6 - initialize scalar field when created * WW3 - initialize scalar field when created --- CICE-interface/CICE | 2 +- MOM6-interface/MOM6 | 2 +- WW3 | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 30 +- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_acorn.log | 593 ++++++-------- tests/logs/RegressionTests_derecho.log | 580 +++++++------ tests/logs/RegressionTests_gaea.log | 621 +++++++------- tests/logs/RegressionTests_hera.log | 765 +++++++++--------- tests/logs/RegressionTests_hercules.log | 730 ++++++++--------- tests/logs/RegressionTests_jet.log | 559 +++++++------ tests/logs/RegressionTests_orion.log | 619 +++++++------- tests/logs/RegressionTests_wcoss2.log | 530 ++++++------ tests/rt.conf | 2 +- 15 files changed, 2459 insertions(+), 2676 deletions(-) diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 9452de8c3c..2ffee5cd48 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 9452de8c3cb43fb2628f0722e6a51f79429d2160 +Subproject commit 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index b32aea7bf3..4b8777eb08 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit b32aea7bf3f9e2a774afa23d3386c88156cd1182 +Subproject commit 4b8777eb08b065d8a95e5317b6270a7a67ccf93e diff --git a/WW3 b/WW3 index d9b3172f41..7f548c795a 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit d9b3172f4197c65d471662c6952a668152d71230 +Subproject commit 7f548c795a348bbb0fe4967dd25692c79036dc73 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index b52438f989..24f6aeb1e1 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jul 31 16:54:12 UTC 2024 +Mon Aug 5 13:20:26 UTC 2024 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_3750971/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/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 = 279.178521 - 0: The maximum resident set size (KB) = 1452196 + 0: The total amount of wall time = 275.232912 + 0: The maximum resident set size (KB) = 1454960 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_3750971/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/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 = 980.789299 - 0: The maximum resident set size (KB) = 1438832 + 0: The total amount of wall time = 990.929727 + 0: The maximum resident set size (KB) = 1452048 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_3750971/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/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 = 250.532991 - 0: The maximum resident set size (KB) = 1435764 + 0: The total amount of wall time = 249.842884 + 0: The maximum resident set size (KB) = 1447064 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_3750971/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/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 = 252.858828 - 0: The maximum resident set size (KB) = 1423936 + 0: The total amount of wall time = 251.717479 + 0: The maximum resident set size (KB) = 1430488 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_3750971/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/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 = 250.469720 - 0: The maximum resident set size (KB) = 1435444 + 0: The total amount of wall time = 250.675414 + 0: The maximum resident set size (KB) = 1431300 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_3750971/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/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 = 251.094450 - 0: The maximum resident set size (KB) = 1435512 + 0: The total amount of wall time = 248.017536 + 0: The maximum resident set size (KB) = 1436404 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_3750971/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/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 = 250.907119 - 0: The maximum resident set size (KB) = 1424508 + 0: The total amount of wall time = 249.324976 + 0: The maximum resident set size (KB) = 1431388 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 31 18:06:20 UTC 2024 -Elapsed time: 01h:12m:08s. Have a nice day! +Mon Aug 5 14:26:37 UTC 2024 +Elapsed time: 01h:06m:13s. 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 b2c3bea61e..057d916e36 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jul 31 15:34:20 UTC 2024 +Mon Aug 5 20:25:41 UTC 2024 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_3296517/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3648314/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 = 1598.613826 - 0: The maximum resident set size (KB) = 1535936 + 0: The total amount of wall time = 1456.394419 + 0: The maximum resident set size (KB) = 1531368 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_3296517/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3648314/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 = 726.442492 - 0: The maximum resident set size (KB) = 1538112 + 0: The total amount of wall time = 434.948106 + 0: The maximum resident set size (KB) = 1537108 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_3296517/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3648314/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 = 465.781642 - 0: The maximum resident set size (KB) = 1538556 + 0: The total amount of wall time = 436.362270 + 0: The maximum resident set size (KB) = 1517024 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 31 16:54:12 UTC 2024 -Elapsed time: 01h:19m:53s. Have a nice day! +Mon Aug 5 22:04:47 UTC 2024 +Elapsed time: 01h:39m:08s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 3e72d37929..03e41e3bb2 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Jul 31 13:03:37 UTC 2024 +Mon Aug 5 17:40:12 UTC 2024 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_500215/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/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 = 1465.693547 - 0: The maximum resident set size (KB) = 757880 + 0: The total amount of wall time = 1408.629188 + 0: The maximum resident set size (KB) = 768992 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_500215/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/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 = 2169.422270 - 0: The maximum resident set size (KB) = 729460 + 0: The total amount of wall time = 2173.644662 + 0: The maximum resident set size (KB) = 708900 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_500215/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/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 = 2264.677203 - 0: The maximum resident set size (KB) = 730040 + 0: The total amount of wall time = 2162.607714 + 0: The maximum resident set size (KB) = 716328 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_500215/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/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 = 2181.123987 - 0: The maximum resident set size (KB) = 735016 + 0: The total amount of wall time = 2154.653116 + 0: The maximum resident set size (KB) = 707252 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 31 15:34:18 UTC 2024 -Elapsed time: 02h:30m:42s. Have a nice day! +Mon Aug 5 20:20:41 UTC 2024 +Elapsed time: 02h:40m:29s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index fb5048da8d..cf536a8d6c 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,13 +1,13 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +1d72e10c471068cdf993bc535757009c7d8230d0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,344 +36,273 @@ 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-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1128655 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3669415 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 11:09] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [56:47, 02:34](3214 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:27] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [50:41, 03:03](1922 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:40, 02:47](1967 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [23:57, 03:15](1091 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [50:42, 03:29](1898 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:30, 16:18] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [51:41, 01:24](1918 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:53] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [02:53, 02:50](1962 MB) - -PASS -- COMPILE 's2swa_intel' [11:26, 11:09] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [56:45, 01:31](3244 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [56:45, 01:32](3241 MB) -PASS -- TEST 'cpld_restart_p8_intel' [40:39, 01:11](3176 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [56:45, 01:57](3265 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [42:56, 01:51](3191 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [56:45, 01:15](3475 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [56:45, 01:11](3235 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [56:46, 01:41](3185 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [56:45, 01:41](3243 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [56:45, 01:54](3223 MB) - -PASS -- COMPILE 's2sw_intel' [11:25, 10:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [56:46, 01:55](1933 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [56:46, 02:13](2004 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:47, 01:28](1994 MB) - -PASS -- COMPILE 's2s_intel' [10:24, 09:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [57:46, 00:57](2948 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [57:46, 01:28](2945 MB) -PASS -- TEST 'cpld_restart_c48_intel' [53:21, 01:41](2360 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:02] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [52:42, 01:51](3237 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:51] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [51:40, 01:27](1938 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:55, 01:08](1102 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:29, 01:00](1910 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:31] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:35, 00:59](1981 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 10:16] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [44:37, 00:29](670 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [43:01, 01:07](1572 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [43:00, 00:38](1579 MB) -PASS -- TEST 'control_latlon_intel' [42:34, 01:02](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:19, 01:12](1575 MB) -PASS -- TEST 'control_c48_intel' [40:18, 00:41](1612 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [39:22, 00:55](733 MB) -PASS -- TEST 'control_c192_intel' [39:18, 01:05](1692 MB) -PASS -- TEST 'control_c384_intel' [38:11, 02:17](2001 MB) -PASS -- TEST 'control_c384gdas_intel' [37:53, 02:46](1190 MB) -PASS -- TEST 'control_stochy_intel' [37:37, 00:34](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [21:54, 00:38](434 MB) -PASS -- TEST 'control_lndp_intel' [35:34, 01:13](630 MB) -PASS -- TEST 'control_iovr4_intel' [33:25, 00:42](624 MB) -PASS -- TEST 'control_iovr5_intel' [31:50, 00:46](624 MB) -PASS -- TEST 'control_p8_intel' [30:45, 02:16](1868 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [30:32, 02:37](1869 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [29:52, 02:16](1871 MB) -PASS -- TEST 'control_restart_p8_intel' [16:48, 02:08](1020 MB) -PASS -- TEST 'control_noqr_p8_intel' [29:43, 01:46](1861 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [16:48, 02:13](1024 MB) -PASS -- TEST 'control_decomp_p8_intel' [29:42, 01:38](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [28:49, 01:59](1960 MB) -PASS -- TEST 'control_p8_lndp_intel' [28:42, 00:23](1873 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [28:12, 02:36](1923 MB) -PASS -- TEST 'control_p8_mynn_intel' [26:49, 02:05](1882 MB) -PASS -- TEST 'merra2_thompson_intel' [26:29, 02:19](1871 MB) -PASS -- TEST 'regional_control_intel' [25:51, 00:13](871 MB) -PASS -- TEST 'regional_restart_intel' [20:02, 00:42](880 MB) -PASS -- TEST 'regional_decomp_intel' [24:52, 00:49](881 MB) -PASS -- TEST 'regional_2threads_intel' [24:41, 01:09](1004 MB) -PASS -- TEST 'regional_noquilt_intel' [23:29, 01:07](1195 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [23:06, 00:38](872 MB) -PASS -- TEST 'regional_wofs_intel' [22:29, 00:39](1603 MB) - -PASS -- COMPILE 'ifi_intel' [09:21, 08:36] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [48:11, 01:09](873 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [48:11, 00:14](873 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [48:12, 00:40](1001 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:40] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [46:23, 02:12](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [46:24, 01:23](1193 MB) -PASS -- TEST 'rap_decomp_intel' [46:23, 02:24](1010 MB) -PASS -- TEST 'rap_2threads_intel' [46:23, 01:50](1095 MB) -PASS -- TEST 'rap_restart_intel' [21:43, 02:44](890 MB) -PASS -- TEST 'rap_sfcdiff_intel' [46:23, 03:09](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [46:23, 01:59](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [20:55, 02:48](892 MB) -PASS -- TEST 'hrrr_control_intel' [46:23, 02:43](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [46:23, 02:10](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [46:24, 02:51](1084 MB) -PASS -- TEST 'hrrr_control_restart_intel' [20:26, 00:39](838 MB) -PASS -- TEST 'rrfs_v1beta_intel' [19:29, 02:54](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [19:10, 01:21](1969 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:39, 00:48](1959 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:59] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [47:25, 00:54](969 MB) -PASS -- TEST 'control_ras_intel' [47:25, 00:26](658 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:23, 11:02] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:52, 02:10](3214 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 16:07] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [35:47, 02:46](1922 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [09:50, 02:31](1965 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:49, 03:11](1071 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:48, 02:38](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 16:15] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [35:47, 00:52](1922 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:50] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [46:59, 02:37](1965 MB) + +PASS -- COMPILE 's2swa_intel' [11:23, 10:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [40:52, 01:34](3243 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:52, 02:25](3238 MB) +PASS -- TEST 'cpld_restart_p8_intel' [25:50, 02:07](3175 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [40:52, 01:10](3266 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [28:01, 02:07](3194 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [40:52, 01:55](3479 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [40:52, 01:51](3235 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [40:53, 01:17](3185 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:52, 02:22](3244 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [40:52, 02:03](3223 MB) + +PASS -- COMPILE 's2sw_intel' [11:24, 10:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [40:51, 01:54](1932 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [40:51, 02:14](2004 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:52, 02:19](1993 MB) + +PASS -- COMPILE 's2s_intel' [10:23, 09:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [41:51, 00:56](2944 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [41:51, 01:28](2952 MB) +PASS -- TEST 'cpld_restart_c48_intel' [37:24, 01:27](2363 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:39] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [35:45, 02:28](3240 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 15:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:45, 01:34](1939 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:47, 01:50](1122 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [08:30, 01:35](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:30] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:41, 01:34](1983 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:24, 10:14] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [28:55, 00:52](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [25:37, 01:04](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:37, 00:30](1579 MB) +PASS -- TEST 'control_latlon_intel' [25:32, 00:44](1575 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:22, 01:10](1575 MB) +PASS -- TEST 'control_c48_intel' [24:57, 01:02](1617 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [23:59, 01:05](734 MB) +PASS -- TEST 'control_c192_intel' [22:34, 00:51](1692 MB) +PASS -- TEST 'control_c384_intel' [22:34, 01:56](2002 MB) +PASS -- TEST 'control_c384gdas_intel' [21:56, 03:08](1198 MB) +PASS -- TEST 'control_stochy_intel' [19:36, 01:07](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:57, 00:44](433 MB) +PASS -- TEST 'control_lndp_intel' [18:32, 01:03](630 MB) +PASS -- TEST 'control_iovr4_intel' [15:37, 00:38](624 MB) +PASS -- TEST 'control_iovr5_intel' [15:43, 00:59](623 MB) +PASS -- TEST 'control_p8_intel' [15:39, 02:32](1869 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [15:36, 02:25](1871 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [13:52, 02:00](1870 MB) +PASS -- TEST 'control_restart_p8_intel' [03:09, 02:20](1021 MB) +PASS -- TEST 'control_noqr_p8_intel' [13:33, 02:03](1860 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:50, 02:04](1002 MB) +PASS -- TEST 'control_decomp_p8_intel' [13:32, 02:24](1856 MB) +PASS -- TEST 'control_2threads_p8_intel' [13:28, 01:59](1957 MB) +PASS -- TEST 'control_p8_lndp_intel' [12:41, 00:27](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:24, 02:20](1924 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:29, 02:36](1882 MB) +PASS -- TEST 'merra2_thompson_intel' [10:27, 03:01](1871 MB) +PASS -- TEST 'regional_control_intel' [10:10, 00:16](870 MB) +PASS -- TEST 'regional_restart_intel' [02:17, 00:35](861 MB) +PASS -- TEST 'regional_decomp_intel' [08:26, 00:53](872 MB) +PASS -- TEST 'regional_2threads_intel' [07:56, 00:50](1005 MB) +PASS -- TEST 'regional_noquilt_intel' [07:12, 01:11](1196 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:05, 00:33](872 MB) +PASS -- TEST 'regional_wofs_intel' [07:04, 01:03](1599 MB) + +PASS -- COMPILE 'ifi_intel' [09:22, 08:32] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [32:29, 00:20](872 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [32:29, 00:12](875 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [32:30, 00:38](1011 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 09:36] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [31:17, 01:14](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [31:18, 01:11](1189 MB) +PASS -- TEST 'rap_decomp_intel' [31:17, 01:47](1010 MB) +PASS -- TEST 'rap_2threads_intel' [31:17, 02:37](1094 MB) +PASS -- TEST 'rap_restart_intel' [06:59, 02:34](888 MB) +PASS -- TEST 'rap_sfcdiff_intel' [31:17, 02:42](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:17, 01:25](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:21, 02:16](889 MB) +PASS -- TEST 'hrrr_control_intel' [31:17, 02:24](1001 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [31:17, 02:38](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [31:18, 02:47](1086 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:03, 00:25](841 MB) +PASS -- TEST 'rrfs_v1beta_intel' [31:17, 02:43](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [03:37, 00:37](1969 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [03:28, 00:31](1957 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:56] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [31:29, 00:52](967 MB) +PASS -- TEST 'control_ras_intel' [31:29, 00:53](659 MB) PASS -- COMPILE 'wam_intel' [09:22, 08:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [47:24, 00:40](1667 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [18:06, 02:05](1868 MB) -PASS -- TEST 'regional_control_faster_intel' [16:47, 01:09](868 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [32:49, 05:44] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [16:20, 00:49](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:20, 00:57](1617 MB) -PASS -- TEST 'control_stochy_debug_intel' [16:02, 00:39](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [16:06, 00:20](813 MB) -PASS -- TEST 'control_csawmg_debug_intel' [15:53, 01:02](1126 MB) -PASS -- TEST 'control_ras_debug_intel' [15:50, 01:05](820 MB) -PASS -- TEST 'control_diag_debug_intel' [14:42, 00:51](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [14:19, 00:40](1906 MB) -PASS -- TEST 'regional_debug_intel' [13:49, 00:37](948 MB) -PASS -- TEST 'rap_control_debug_intel' [13:44, 00:58](1199 MB) -PASS -- TEST 'hrrr_control_debug_intel' [13:30, 01:08](1194 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [13:07, 00:45](1198 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [12:36, 01:10](1197 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:37, 00:49](1195 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:16, 01:30](1277 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:35, 00:37](1195 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:34, 00:57](1203 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:34, 01:04](1198 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:34, 01:08](1196 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:04, 00:26](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:48, 00:36](1195 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:29, 00:51](1196 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:51, 00:50](1191 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 01:05](1197 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:23, 00:35](1203 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:13, 02:44](1200 MB) - -PASS -- COMPILE 'wam_debug_intel' [55:12, 03:53] ( 840 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [59:19, 08:56] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [52:22, 00:57](1054 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [52:21, 01:55](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [52:21, 03:27](886 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [52:21, 02:38](953 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [52:22, 01:56](939 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [52:21, 03:16](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:09, 02:30](797 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [17:24, 01:14](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [02:18, 11:59] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [48:20, 01:17](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [16:43, 00:47](1081 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [16:42, 00:37](976 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [57:12, 09:04] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [51:00, 00:46](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [51:08, 04:03] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [56:16, 00:56](1075 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [56:16, 00:50](1071 MB) -PASS -- TEST 'conus13km_debug_intel' [56:16, 00:29](1163 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [56:16, 00:47](855 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [56:17, 01:15](1147 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [56:16, 00:43](1251 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:08, 03:44] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [56:16, 00:48](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [57:12, 10:33] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [49:13, 01:55](706 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:13, 00:58](1055 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [49:11, 01:21](760 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [49:11, 01:54](791 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [49:12, 01:35](813 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [49:11, 00:52](480 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [49:12, 01:31](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [49:12, 01:05](388 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [49:15, 02:34](448 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [49:11, 01:37](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [49:11, 01:21](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [49:13, 01:39](583 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [49:12, 00:51](417 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_debug_intel' [50:05, 04:10] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [56:18, 01:11](689 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [57:13, 13:46] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [44:06, 01:22](625 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [43:36, 01:08](802 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [29:44, 10:18] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [50:09, 01:07](795 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:23, 09:34] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [40:16, 01:40](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [39:47, 01:37](740 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:43, 00:15](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:24, 09:36] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [35:22, 00:34](771 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:40, 00:21](744 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [35:24, 00:13](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [33:52, 01:10](649 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [33:47, 00:17](650 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [32:13, 00:32](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [31:43, 00:41](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [30:16, 01:12](651 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [29:42, 01:20](691 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:37, 01:19](670 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [27:37, 00:37](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [27:02, 00:37](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [24:34, 00:39](2036 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:24, 09:17] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [24:04, 00:54](771 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:14, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [54:01, 00:42](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [54:01, 00:14](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [50:29, 00:41](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:42, 09:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [23:43, 01:39](1925 MB) - -PASS -- COMPILE 'atml_intel' [49:03, 10:49] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [03:18, 02:11](1894 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [03:18, 02:06](1896 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [54:53, 00:53](1044 MB) - -PASS -- COMPILE 'atml_debug_intel' [41:57, 04:37] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:03, 02:01](1938 MB) - -PASS -- COMPILE 'atmw_intel' [46:00, 09:26] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 02:33](1904 MB) - -PASS -- COMPILE 'atmaero_intel' [44:59, 09:18] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:10, 01:49](3132 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [04:10, 02:11](3016 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [04:10, 02:09](3025 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [38:54, 03:50] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [09:29, 01:54](4564 MB) +PASS -- TEST 'control_wam_intel' [31:30, 00:19](1666 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:22, 02:11](1866 MB) +PASS -- TEST 'regional_control_faster_intel' [03:08, 00:49](866 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [33:47, 05:42] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [01:59, 00:34](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [01:37, 01:24](1618 MB) +PASS -- TEST 'control_stochy_debug_intel' [01:28, 01:02](815 MB) +PASS -- TEST 'control_lndp_debug_intel' [01:28, 00:18](812 MB) +PASS -- TEST 'control_csawmg_debug_intel' [01:06, 00:30](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [00:43, 01:14](828 MB) +PASS -- TEST 'control_diag_debug_intel' [00:26, 01:02](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [00:13, 01:00](1910 MB) +PASS -- TEST 'regional_debug_intel' [00:03, 00:50](933 MB) +PASS -- TEST 'rap_control_debug_intel' [59:57, 00:34](1197 MB) +PASS -- TEST 'hrrr_control_debug_intel' [59:34, 00:43](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [57:50, 01:00](1197 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [57:58, 01:07](1199 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [57:21, 00:17](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [57:06, 01:09](1278 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [57:00, 00:54](1196 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [56:59, 01:09](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [55:58, 01:10](1198 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [55:53, 00:22](1197 MB) +PASS -- TEST 'rap_noah_debug_intel' [55:35, 00:38](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [55:17, 00:37](1193 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [55:12, 00:23](1195 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [54:20, 01:00](1190 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [54:29, 00:50](1199 MB) +PASS -- TEST 'rap_flake_debug_intel' [54:14, 00:53](1203 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [53:59, 03:04](1199 MB) + +PASS -- COMPILE 'wam_debug_intel' [50:05, 03:49] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [45:41, 00:55](1706 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [56:14, 09:00] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [39:32, 00:53](1055 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [39:31, 02:06](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [39:31, 04:15](888 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [39:31, 02:15](951 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [39:32, 02:44](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [39:31, 03:44](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:41, 02:41](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:22, 00:15](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [58:16, 11:55] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [37:29, 00:40](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:40, 00:39](1078 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:39, 01:14](978 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [53:11, 09:04] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:19, 01:29](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [47:01, 03:53] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [44:28, 00:46](1074 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:28, 00:55](1067 MB) +PASS -- TEST 'conus13km_debug_intel' [44:28, 00:25](1168 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [44:28, 01:01](855 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [44:29, 00:57](1150 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:28, 00:39](1251 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [47:03, 03:47] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:26, 00:39](1093 MB) + +PASS -- COMPILE 'hafsw_intel' [54:10, 10:23] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [37:10, 01:30](706 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:10, 00:27](1055 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:08, 01:24](763 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [37:08, 01:48](798 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:09, 01:53](955 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [37:08, 00:56](483 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [37:09, 01:41](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [37:09, 01:19](386 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [37:12, 03:01](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [37:08, 01:14](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [37:08, 01:27](515 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [37:09, 00:48](578 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [37:08, 01:20](415 MB) +PASS -- TEST 'gnv1_nested_intel' [37:07, 03:37](1712 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [47:05, 04:15] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:25, 00:44](685 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [53:11, 13:45] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:19, 01:34](625 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [33:19, 01:47](798 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [25:40, 10:13] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:20, 01:40](796 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:23, 09:49] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [30:46, 01:53](758 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:15, 01:57](743 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:09, 00:44](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:23, 09:17] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [27:02, 00:50](769 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [19:35, 00:34](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [25:18, 00:45](652 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [24:52, 00:55](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [24:02, 00:52](649 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [22:15, 00:42](768 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [22:07, 01:02](756 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [22:02, 00:50](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:33, 01:52](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [18:53, 01:13](680 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [18:07, 00:28](767 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [17:30, 00:25](2037 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [17:25, 00:58](2034 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:24, 09:22] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:46, 00:47](768 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [09:22, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [16:39, 01:14](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [15:52, 00:38](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [11:19, 01:10](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:29, 09:43] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:43, 01:02](1930 MB) + +PASS -- COMPILE 'atml_intel' [16:30, 10:38] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:44, 02:25](1895 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [14:34, 02:16](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:05, 01:14](1047 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:23, 04:33] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [13:39, 02:08](1934 MB) + +PASS -- COMPILE 'atmw_intel' [15:29, 09:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [13:07, 02:40](1905 MB) + +PASS -- COMPILE 'atmaero_intel' [39:55, 09:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [56:22, 01:51](3130 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [56:22, 02:01](3015 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [56:22, 02:10](3025 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [33:47, 03:52] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [01:30, 01:45](4543 MB) SYNOPSIS: -Starting Date/Time: 20240731 13:51:30 -Ending Date/Time: 20240731 16:18:19 -Total Time: 02h:27m:14s +Starting Date/Time: 20240805 16:07:25 +Ending Date/Time: 20240805 18:26:20 +Total Time: 02h:19m:22s Compiles Completed: 38/38 -Tests Completed: 177/179 -Failed Tests: -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_acorn/run_control_wam_debug_intel.log -* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_acorn/run_gnv1_nested_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ACORN REGRESSION TESTING LOG==== -====START OF ACORN REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1769361 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-l) - USE CONFIG FILE: rt.test -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_debug_intel' [04:16, 03:51] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [03:14, 00:46](1702 MB) - -PASS -- COMPILE 'hafsw_intel' [11:24, 10:36] ( 2 warnings 8 remarks ) -PASS -- TEST 'gnv1_nested_intel' [56:06, 03:33](1710 MB) - -SYNOPSIS: -Starting Date/Time: 20240731 16:52:30 -Ending Date/Time: 20240731 17:15:35 -Total Time: 00h:23m:11s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Tests Completed: 179/179 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index e49fb23fde..338b1c2749 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,13 +1,13 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,289 +36,288 @@ 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-20240730 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_118977 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_117686 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [49:21, 21:52] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:32, 05:56](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [52:23, 24:30] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:21, 14:33](1914 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:44, 16:01](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:32, 08:06](1081 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:03, 16:33](1889 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:23, 23:59] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:17, 14:22](1911 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [39:20, 12:21] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [49:30, 21:41] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:11, 08:17](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:38, 07:40](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:23, 04:07](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:51, 07:41](3250 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:54, 04:00](3188 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:23, 06:32](3726 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:11, 07:49](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:13, 05:32](3536 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:36, 07:53](3236 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:29, 11:52](3812 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:53, 06:43](3626 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [33:46, 12:50](4522 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:01, 07:21](4671 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:10, 05:57](3210 MB) - -PASS -- COMPILE 's2sw_intel' [47:29, 20:30] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:44, 04:54](1920 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:54, 05:08](1992 MB) - -PASS -- COMPILE 's2swa_debug_intel' [39:26, 12:06] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:18, 08:22](3300 MB) - -PASS -- COMPILE 's2sw_debug_intel' [38:28, 11:28] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 05:55](1964 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [43:26, 16:06] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:03, 04:50](1991 MB) - -PASS -- COMPILE 's2s_intel' [44:22, 16:27] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:11, 06:51](2953 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:09, 02:32](2951 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:07, 01:44](2370 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:15, 26:13] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:19, 06:26](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:21, 22:29] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:37, 14:53](1943 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [22:42, 09:03](1118 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [10:02, 16:58](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:13, 11:15] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:40, 23:47](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:14, 15:30] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:40, 03:29](673 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:23, 02:37](1569 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:37, 02:35](1567 MB) -PASS -- TEST 'control_latlon_intel' [05:23, 02:30](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:26, 02:31](1574 MB) -PASS -- TEST 'control_c48_intel' [34:17, 06:09](1620 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [33:36, 05:26](734 MB) -PASS -- TEST 'control_c192_intel' [12:11, 09:08](1695 MB) -PASS -- TEST 'control_c384_intel' [19:09, 09:07](2016 MB) -PASS -- TEST 'control_c384gdas_intel' [17:13, 07:34](1200 MB) -PASS -- TEST 'control_stochy_intel' [03:40, 01:29](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:06](439 MB) -PASS -- TEST 'control_lndp_intel' [03:42, 01:27](624 MB) -PASS -- TEST 'control_iovr4_intel' [03:51, 02:10](624 MB) -PASS -- TEST 'control_iovr5_intel' [03:45, 02:12](622 MB) -PASS -- TEST 'control_p8_intel' [05:37, 03:23](1873 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:36, 03:15](1861 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 03:19](1866 MB) -PASS -- TEST 'control_restart_p8_intel' [05:24, 02:11](1017 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:00, 03:12](1864 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:41, 02:03](1019 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:00, 03:22](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:52, 03:02](1955 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:05](1869 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:11, 04:05](1925 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:24, 03:22](1877 MB) -PASS -- TEST 'merra2_thompson_intel' [07:01, 03:41](1869 MB) -PASS -- TEST 'regional_control_intel' [08:17, 05:13](875 MB) -PASS -- TEST 'regional_restart_intel' [04:59, 03:15](872 MB) -PASS -- TEST 'regional_decomp_intel' [08:06, 05:35](876 MB) -PASS -- TEST 'regional_noquilt_intel' [07:03, 05:08](1197 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 05:03](880 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:48, 05:06](873 MB) -PASS -- TEST 'regional_wofs_intel' [08:51, 05:57](1607 MB) - -PASS -- COMPILE 'rrfs_intel' [15:19, 13:19] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:35, 06:47](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:08, 04:12](1191 MB) -PASS -- TEST 'rap_decomp_intel' [09:35, 07:00](1005 MB) -PASS -- TEST 'rap_2threads_intel' [09:34, 06:20](1096 MB) -PASS -- TEST 'rap_restart_intel' [05:16, 03:15](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:36, 06:50](1004 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:36, 07:05](1008 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:16, 04:54](879 MB) -PASS -- TEST 'hrrr_control_intel' [07:13, 03:41](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:13, 03:28](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:42, 02:57](1084 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:48, 01:48](836 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:43, 06:42](998 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:15, 08:02](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:14, 07:50](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [14:13, 11:30] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:08, 06:48](962 MB) -PASS -- TEST 'control_ras_intel' [08:41, 02:56](655 MB) - -PASS -- COMPILE 'wam_intel' [12:19, 11:01] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [32:06, 11:11](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:21, 17:17] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:43, 03:05](1872 MB) -PASS -- TEST 'regional_control_faster_intel' [07:02, 04:59](879 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:20, 12:51] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:17, 02:40](1613 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:44, 02:33](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [09:35, 02:53](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [22:37, 02:45](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [23:57, 04:49](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [21:03, 02:48](818 MB) -PASS -- TEST 'control_diag_debug_intel' [22:46, 02:43](1671 MB) -PASS -- TEST 'control_debug_p8_intel' [21:34, 03:25](1906 MB) -PASS -- TEST 'regional_debug_intel' [21:54, 16:56](929 MB) -PASS -- TEST 'rap_control_debug_intel' [23:13, 05:01](1195 MB) -PASS -- TEST 'hrrr_control_debug_intel' [23:11, 05:03](1188 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [21:11, 04:38](1196 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [21:09, 04:41](1192 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [20:00, 04:51](1192 MB) -PASS -- TEST 'rap_diag_debug_intel' [20:46, 05:05](1279 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [19:05, 04:48](1197 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [19:02, 05:01](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [18:06, 04:58](1189 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [18:06, 05:07](1192 MB) -PASS -- TEST 'rap_noah_debug_intel' [16:18, 04:36](1192 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [16:01, 05:01](1192 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [19:04, 07:44](1189 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [16:20, 04:46](1188 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [16:06, 05:37](1192 MB) -PASS -- TEST 'rap_flake_debug_intel' [14:11, 04:42](1191 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:38, 08:02](1194 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:13, 07:01] ( 844 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:13, 11:19] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [28:36, 03:32](1055 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:25, 06:09](880 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:30, 02:52](883 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:07, 05:15](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:12, 03:16](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:24, 02:59](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:59, 04:01](791 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 01:40](771 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:00, 15:24] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [13:13, 01:52](1085 MB) -PASS -- TEST 'conus13km_2threads_intel' [09:11, 01:03](1082 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [47:10, 01:10](973 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [04:55, 11:23] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:53, 03:41](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [34:04, 07:18] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:29, 04:42](1068 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:49, 04:52](1067 MB) -PASS -- TEST 'conus13km_debug_intel' [38:37, 14:01](1172 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:41, 13:40](840 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:20, 08:01](1151 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [37:21, 13:15](1220 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:02, 06:58] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:38, 04:49](1099 MB) - -PASS -- COMPILE 'hafsw_intel' [46:17, 18:38] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:44, 06:43](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:15, 05:45](1072 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:41, 09:14](774 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [24:59, 12:19](799 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:23, 13:32](811 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:13, 08:37](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:29, 10:30](493 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:30, 04:14](390 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:30, 09:50](457 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:20, 04:07](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:46, 04:16](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:43, 05:35](583 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:33, 01:22](430 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_debug_intel' [35:05, 08:30] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:23, 12:58](632 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [51:07, 27:22] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:33, 08:54](630 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:30, 09:43](686 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [42:14, 19:24] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:33, 07:03](677 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:05, 16:13] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:43, 09:56](754 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:56, 09:08](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:51, 19:38](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [30:13, 08:44] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [30:48, 03:06](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:37](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [31:13, 02:56](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [29:50, 02:32](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [29:53, 02:45](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:53, 02:47](766 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:55, 02:39](766 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [29:50, 02:43](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [30:09, 06:05](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [31:13, 05:52](683 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [29:37, 02:43](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [31:40, 04:10](2033 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [30:02, 04:28](2032 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [29:28, 06:10] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [33:01, 05:21](753 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [27:22, 08:46] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [29:54, 02:41](755 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [32:22, 02:52] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:13, 01:24](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:47, 01:17](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:45, 01:03](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [43:27, 14:29] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:40, 05:02](1922 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [41:23, 12:40] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:57, 06:02](1900 MB) - -PASS -- COMPILE 'atml_intel' [43:19, 16:01] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:53, 09:01](1890 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:50, 09:40](1890 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:20, 05:22](1039 MB) - -PASS -- COMPILE 'atml_debug_intel' [37:24, 10:05] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:51, 07:08](1938 MB) - -PASS -- COMPILE 'atmw_intel' [41:26, 14:23] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:28, 03:25](1891 MB) - -PASS -- COMPILE 'atmaero_intel' [32:25, 12:51] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:56, 06:39](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:26, 06:41](2994 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:17, 06:47](3007 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [25:23, 08:28] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:46, 22:51](4516 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:16, 21:01] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:22, 07:10](3202 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:18, 23:41] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:53, 15:05](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:37, 15:56](1948 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:33, 07:51](1069 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:40, 16:54](1890 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:18, 23:07] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:07, 14:25](1916 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:15, 11:12] ( 1530 warnings 1948 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_intel' [22:16, 20:59] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:24, 08:22](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:37, 08:14](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:34, 04:05](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:24, 07:52](3254 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:24, 03:48](3188 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:19, 08:05](3733 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:08, 07:10](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:08, 06:48](3540 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:41, 07:53](3234 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:54, 11:38](3811 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:30, 06:16](3628 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [30:20, 12:01](4525 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:36, 07:32](4671 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:09, 07:54](3209 MB) + +PASS -- COMPILE 's2sw_intel' [20:15, 19:24] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:28, 05:01](1924 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 05:04](1991 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:13, 11:09] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:54, 08:12](3295 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:15, 10:31] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 06:28](1960 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:16, 15:18] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:11, 05:28](1991 MB) + +PASS -- COMPILE 's2s_intel' [16:14, 15:27] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:03, 06:36](2949 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:12, 02:21](2948 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:07, 01:47](2365 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:21, 25:40] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:22, 06:25](3233 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:21, 21:41] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:43, 15:38](1946 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:03, 08:07](1109 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:47, 17:10](1906 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:18, 10:38] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:33, 24:03](1964 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:19, 15:37] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:39, 03:37](673 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 02:35](1573 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:26](1567 MB) +PASS -- TEST 'control_latlon_intel' [04:04, 02:24](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:04, 02:25](1568 MB) +PASS -- TEST 'control_c48_intel' [08:18, 06:02](1620 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:32, 05:16](735 MB) +PASS -- TEST 'control_c192_intel' [11:45, 09:08](1688 MB) +PASS -- TEST 'control_c384_intel' [15:37, 09:08](2011 MB) +PASS -- TEST 'control_c384gdas_intel' [15:56, 07:36](1195 MB) +PASS -- TEST 'control_stochy_intel' [02:39, 01:24](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:41, 00:51](436 MB) +PASS -- TEST 'control_lndp_intel' [02:40, 01:19](627 MB) +PASS -- TEST 'control_iovr4_intel' [03:49, 02:04](625 MB) +PASS -- TEST 'control_iovr5_intel' [03:47, 02:07](619 MB) +PASS -- TEST 'control_p8_intel' [06:29, 03:51](1864 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:46, 03:32](1873 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:47, 03:37](1864 MB) +PASS -- TEST 'control_restart_p8_intel' [04:15, 02:05](1015 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:37, 03:29](1861 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 02:11](1012 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:36, 03:43](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:36, 03:36](1951 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:26, 05:09](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:34, 04:16](1924 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:42, 03:24](1876 MB) +PASS -- TEST 'merra2_thompson_intel' [06:23, 03:44](1868 MB) +PASS -- TEST 'regional_control_intel' [06:53, 05:17](872 MB) +PASS -- TEST 'regional_restart_intel' [04:58, 03:01](872 MB) +PASS -- TEST 'regional_decomp_intel' [06:53, 05:24](871 MB) +PASS -- TEST 'regional_noquilt_intel' [06:55, 05:09](1192 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:53, 05:03](872 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:58, 05:08](881 MB) +PASS -- TEST 'regional_wofs_intel' [06:53, 05:40](1607 MB) + +PASS -- COMPILE 'rrfs_intel' [14:19, 12:52] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:32, 06:16](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:48, 03:53](1197 MB) +PASS -- TEST 'rap_decomp_intel' [08:32, 06:34](1005 MB) +PASS -- TEST 'rap_2threads_intel' [08:32, 05:49](1099 MB) +PASS -- TEST 'rap_restart_intel' [05:08, 03:13](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:33, 06:17](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:35](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:09, 04:37](882 MB) +PASS -- TEST 'hrrr_control_intel' [05:15, 03:23](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:15, 03:17](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:15, 03:02](1088 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:47, 01:46](836 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:34, 06:11](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:11, 07:31](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:12, 07:04](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [12:19, 11:07] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:03, 06:36](965 MB) +PASS -- TEST 'control_ras_intel' [04:39, 03:05](659 MB) + +PASS -- COMPILE 'wam_intel' [11:18, 10:36] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:38, 11:36](1655 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:19, 17:02] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:44, 03:17](1870 MB) +PASS -- TEST 'regional_control_faster_intel' [06:56, 04:46](879 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:20, 12:12] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:07, 02:32](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:03, 02:31](1612 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:37, 02:50](812 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:38](808 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:56, 04:45](1123 MB) +PASS -- TEST 'control_ras_debug_intel' [04:31, 02:36](817 MB) +PASS -- TEST 'control_diag_debug_intel' [05:06, 02:33](1671 MB) +PASS -- TEST 'control_debug_p8_intel' [06:05, 03:51](1903 MB) +PASS -- TEST 'regional_debug_intel' [18:57, 17:18](927 MB) +PASS -- TEST 'rap_control_debug_intel' [06:31, 04:40](1192 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:33, 04:42](1189 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:43, 04:37](1190 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:38](1196 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:45, 05:06](1194 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:18, 05:03](1273 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:39, 04:54](1196 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:44, 04:50](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:38, 04:49](1193 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 04:42](1191 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:38](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:32, 04:54](1191 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:41, 07:56](1189 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:42, 04:33](1189 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:41, 05:26](1193 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:39, 05:01](1192 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:15, 08:02](1198 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:12, 06:43] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:22, 12:15](1699 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:13, 10:51] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:38, 04:03](1057 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:08, 06:17](879 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:43](879 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:24, 05:21](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:58, 03:00](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:08, 03:02](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 04:16](792 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:34, 01:32](774 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:19, 14:46] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:32, 02:03](1084 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:35, 00:56](1083 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:30, 01:06](972 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:21, 10:52] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:01, 03:53](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:17, 06:42] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:41, 04:27](1069 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:44, 04:25](1067 MB) +PASS -- TEST 'conus13km_debug_intel' [15:59, 13:47](1150 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:08, 13:25](834 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:47, 07:53](1150 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:35, 13:35](1223 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:17, 06:28] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:45, 04:38](1094 MB) + +PASS -- COMPILE 'hafsw_intel' [19:19, 18:05] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:52, 04:31](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:09, 05:04](1069 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:47, 06:25](777 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:41, 11:20](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:00, 12:27](807 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:10, 04:38](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:39, 05:42](492 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:03, 02:15](391 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:51, 06:09](461 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:58, 03:17](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:17, 03:05](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:25, 03:48](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:12](429 MB) +PASS -- TEST 'gnv1_nested_intel' [07:35, 04:02](1714 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:17, 07:44] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:16, 12:05](636 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [27:23, 26:15] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:27, 07:22](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:01, 07:34](686 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:20, 19:19] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:57, 05:40](682 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:19, 15:25] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:02](750 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:38, 06:02](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:26, 16:52](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:19, 08:24] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:28](769 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:32](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:49, 02:19](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:39, 02:23](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:30, 02:27](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:42](768 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:35, 02:43](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:31](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:21, 05:46](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:01, 05:44](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:29](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:34, 03:52](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:39, 03:52](2035 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:19, 05:56] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:05](753 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:17, 08:15] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:36, 02:28](766 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:39] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:06](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:09, 01:03](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:44](453 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:19, 13:01] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:26, 03:54](1916 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:18, 11:40] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:32, 04:13](1899 MB) + +PASS -- COMPILE 'atml_intel' [15:21, 14:46] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:36, 06:45](1887 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:25, 06:20](1891 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:24, 03:38](1018 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:19, 09:25] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:13, 06:09](1936 MB) + +PASS -- COMPILE 'atmw_intel' [14:21, 13:42] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:20, 02:07](1890 MB) + +PASS -- COMPILE 'atmaero_intel' [13:18, 12:11] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:00, 04:32](3122 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 04:25](2993 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:34](3008 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:17, 07:29] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:32, 21:59](4530 MB) SYNOPSIS: -Starting Date/Time: 20240731 08:43:44 -Ending Date/Time: 20240731 20:26:26 -Total Time: 11h:43m:35s +Starting Date/Time: 20240805 06:52:14 +Ending Date/Time: 20240805 08:28:48 +Total Time: 01h:37m:26s Compiles Completed: 41/41 -Tests Completed: 181/183 +Tests Completed: 183/184 Failed Tests: -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/work/zshrader/rt-2373/tests/logs/log_derecho/run_control_wam_debug_intel.log -* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/work/zshrader/rt-2373/tests/logs/log_derecho/run_gnv1_nested_intel.log +* TEST cpld_debug_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2370/tests/logs/log_derecho/run_cpld_debug_gfsv17_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -331,13 +330,13 @@ Result: FAILURE ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -351,11 +350,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -366,25 +365,22 @@ 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-20240730 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_30140 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_6646 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 'wam_debug_intel' [07:12, 06:23] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [13:52, 12:24](1698 MB) - -PASS -- COMPILE 'hafsw_intel' [18:14, 17:33] ( 6 warnings 9 remarks ) -PASS -- TEST 'gnv1_nested_intel' [07:19, 04:04](1712 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [55:26, 11:41] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:07, 22:28](1944 MB) SYNOPSIS: -Starting Date/Time: 20240801 06:59:02 -Ending Date/Time: 20240801 07:26:00 -Total Time: 00h:27m:11s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Starting Date/Time: 20240805 12:17:56 +Ending Date/Time: 20240805 13:42:51 +Total Time: 01h:25m:29s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 67bdbf63d9..d1fb44cf8b 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,13 +1,13 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,357 +36,286 @@ 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-20240730 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_40274 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_84360 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:11, 19:00] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:27, 08:10](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 25:34] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:32, 13:56](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:35, 15:40](1952 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:27, 07:32](1077 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:26, 15:03](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:12, 22:23] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:47, 13:41](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:15, 13:15] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:26, 24:16](1936 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 18:18] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:18, 08:07](3229 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:24, 08:00](3229 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:32, 05:03](3159 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:26, 08:50](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:42, 05:17](3182 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:24, 06:58](3465 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:14, 08:42](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:12, 08:18](3170 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:34, 08:23](3227 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:32, 10:28](3448 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:28, 07:17](3614 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [26:01, 13:01](4213 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:02, 09:01](4369 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:14, 08:39](3221 MB) - -PASS -- COMPILE 's2sw_intel' [19:11, 18:11] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:24, 05:17](1938 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:34, 05:49](1996 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:17] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:46, 09:53](3276 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:40] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:47, 05:58](1956 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 16:04] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:33, 05:03](1989 MB) - -PASS -- COMPILE 's2s_intel' [17:11, 16:07] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:23, 06:29](2929 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:32, 01:56](2938 MB) -PASS -- TEST 'cpld_restart_c48_intel' [08:21, 01:08](2351 MB) - -PASS -- COMPILE 's2swa_faster_intel' [29:15, 28:13] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:45, 08:39](3229 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:15, 23:57] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:57, 15:04](1937 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:18, 07:46](1096 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:20, 17:29](1912 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:20, 15:09] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:19, 26:49](1957 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:11, 15:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:41, 03:54](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:45, 04:04](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:26, 03:32](1567 MB) -PASS -- TEST 'control_latlon_intel' [05:21, 03:28](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:28](1569 MB) -PASS -- TEST 'control_c48_intel' [08:38, 06:30](1601 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:10, 05:49](720 MB) -PASS -- TEST 'control_c192_intel' [12:51, 10:29](1683 MB) -PASS -- TEST 'control_c384_intel' [20:40, 18:44](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [17:42, 14:56](1178 MB) -PASS -- TEST 'control_stochy_intel' [02:40, 02:07](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:12](425 MB) -PASS -- TEST 'control_lndp_intel' [02:40, 01:55](623 MB) -PASS -- TEST 'control_iovr4_intel' [03:46, 02:48](620 MB) -PASS -- TEST 'control_iovr5_intel' [03:46, 02:42](620 MB) -PASS -- TEST 'control_p8_intel' [05:51, 03:44](1868 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:09, 04:15](1867 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:46, 03:38](1868 MB) -PASS -- TEST 'control_restart_p8_intel' [03:05, 01:51](1013 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:44](1861 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:05, 01:42](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:48, 04:12](1859 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:58, 02:48](1947 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:46, 05:31](1868 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:08, 04:11](1921 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:10, 03:31](1866 MB) -PASS -- TEST 'merra2_thompson_intel' [05:08, 03:44](1865 MB) -PASS -- TEST 'regional_control_intel' [05:41, 04:51](848 MB) -PASS -- TEST 'regional_restart_intel' [05:00, 02:52](860 MB) -PASS -- TEST 'regional_decomp_intel' [05:39, 05:01](867 MB) -PASS -- TEST 'regional_2threads_intel' [03:46, 03:00](998 MB) -PASS -- TEST 'regional_noquilt_intel' [05:45, 04:41](1182 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:16, 05:06](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 04:51](858 MB) -PASS -- TEST 'regional_wofs_intel' [07:44, 06:08](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 14:19] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:01, 06:56](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:58, 04:04](1187 MB) -PASS -- TEST 'rap_decomp_intel' [07:55, 07:06](1007 MB) -PASS -- TEST 'rap_2threads_intel' [07:54, 06:16](1100 MB) -PASS -- TEST 'rap_restart_intel' [05:58, 03:45](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:58, 07:00](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:58, 07:08](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:07, 05:12](878 MB) -PASS -- TEST 'hrrr_control_intel' [05:05, 04:06](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:51, 03:51](1003 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:51, 03:23](1083 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:34, 01:58](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:00, 06:35](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:37, 08:22](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:50](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [16:13, 15:48] -PASS -- TEST 'control_csawmg_intel' [07:33, 06:47](966 MB) -PASS -- TEST 'control_ras_intel' [04:28, 03:25](659 MB) - -PASS -- COMPILE 'wam_intel' [14:13, 13:56] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:37, 11:29](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:13, 20:32] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:35, 03:21](1867 MB) -PASS -- TEST 'regional_control_faster_intel' [05:57, 04:39](856 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:12, 15:07] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:53, 02:59](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:54, 02:51](1598 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:30, 03:09](801 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:53](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:40, 04:18](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [03:33, 02:55](805 MB) -PASS -- TEST 'control_diag_debug_intel' [04:44, 03:00](1663 MB) -PASS -- TEST 'control_debug_p8_intel' [04:37, 03:16](1894 MB) -PASS -- TEST 'regional_debug_intel' [17:43, 16:17](902 MB) -PASS -- TEST 'rap_control_debug_intel' [06:37, 05:09](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:10, 04:58](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 05:10](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:31, 05:14](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 05:01](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:38, 05:29](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 05:16](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 05:14](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:32, 05:09](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 05:19](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:38, 05:24](1181 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 05:12](1180 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:44, 08:15](1180 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:44, 05:28](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:32, 06:37](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:31, 05:32](1182 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:58, 08:50](1184 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:14, 11:03] ( 839 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:14, 13:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:06, 04:04](1049 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:49, 05:58](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:58, 03:39](883 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:59, 05:27](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:24, 02:51](937 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:55, 03:53](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:53, 04:09](782 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 01:43](766 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:14, 19:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:25, 02:25](1096 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:02, 01:08](1079 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:27, 01:20](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 13:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:59, 04:24](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:15, 09:44] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:30, 04:54](1060 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 05:01](1059 MB) -PASS -- TEST 'conus13km_debug_intel' [16:24, 14:20](1139 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:16, 14:37](817 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:09, 08:16](1129 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:10, 14:17](1210 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:14, 08:13] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:58](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [18:11, 18:03] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:32, 05:18](705 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:41, 04:34](1057 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 07:42](756 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:18, 11:50](784 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:58, 13:09](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:14, 05:27](481 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:34, 06:56](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:20, 02:56](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:48, 08:00](437 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 03:54](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:09, 04:07](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:03, 05:11](572 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:43, 02:39](403 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:11, 10:35] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:01, 13:04](598 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:12, 23:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:15, 08:20](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:28, 08:26](785 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:14, 17:52] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:18, 06:30](782 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:14, 16:17] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:27](733 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:58, 06:29](727 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:46, 20:05](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:11, 14:29] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:29, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:27, 01:34](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:26, 02:27](638 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:32, 02:28](638 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:29](638 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:23, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:27, 02:29](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:06, 06:03](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:57, 05:57](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:37](749 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:29, 04:39](2029 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:26, 04:40](2028 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 08:52] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:27](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:17, 12:37] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:25, 02:37](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:17] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:57, 01:46](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:51, 01:16](457 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:43, 00:59](457 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:15, 14:23] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:36, 04:06](1922 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:12, 14:37] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:28, 04:03](1910 MB) - -PASS -- COMPILE 'atml_intel' [18:12, 16:24] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:32, 08:13](1894 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:30, 08:39](1895 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:45, 04:59](1042 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:14, 12:42] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:29, 06:21](1929 MB) - -PASS -- COMPILE 'atmw_intel' [15:13, 14:34] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:46, 02:48](1898 MB) - -PASS -- COMPILE 'atmaero_intel' [14:13, 13:16] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:13, 06:34](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:16, 07:08](3006 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:06, 07:22](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:12, 09:31] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:38, 18:14](4487 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:13, 16:56] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:36, 07:11](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 22:51] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [46:50, 14:11](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:37, 15:26](1952 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:30, 07:33](1079 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:34, 15:02](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:16, 23:21] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [50:01, 13:27](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:13, 11:34] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:34, 24:13](1937 MB) + +PASS -- COMPILE 's2swa_intel' [18:13, 17:51] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [28:26, 07:57](3230 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:26, 07:50](3226 MB) +PASS -- TEST 'cpld_restart_p8_intel' [31:53, 05:32](3159 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [39:23, 07:56](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [21:29, 05:21](3181 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [34:00, 06:30](3461 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [38:13, 07:45](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [38:13, 07:01](3171 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [39:32, 07:59](3229 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [43:21, 10:16](3447 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [20:25, 07:44](3609 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [47:39, 12:43](4213 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:43, 09:49](4366 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [36:10, 07:42](3222 MB) + +PASS -- COMPILE 's2sw_intel' [16:13, 15:49] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:28, 05:11](1937 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:49, 05:12](1996 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:12, 11:07] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:38, 09:54](3277 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:12, 10:51] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:58](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:13, 14:29] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:39, 05:19](1989 MB) + +PASS -- COMPILE 's2s_intel' [15:13, 14:10] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:16, 06:32](2929 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [09:14, 01:59](2938 MB) +PASS -- TEST 'cpld_restart_c48_intel' [38:37, 01:08](2349 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:13, 25:54] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [40:45, 07:49](3229 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:14, 21:28] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:04, 15:31](1936 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:51, 07:48](1096 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:04, 17:52](1913 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:14, 13:09] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [06:30, 26:57](1959 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:13, 14:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [40:37, 03:46](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [26:57, 03:00](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [24:32, 03:16](1576 MB) +PASS -- TEST 'control_latlon_intel' [20:43, 03:12](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:21, 03:23](1569 MB) +PASS -- TEST 'control_c48_intel' [23:00, 06:34](1600 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [20:54, 05:40](719 MB) +PASS -- TEST 'control_c192_intel' [19:47, 10:03](1682 MB) +PASS -- TEST 'control_c384_intel' [26:18, 18:21](1984 MB) +PASS -- TEST 'control_c384gdas_intel' [22:10, 14:22](1179 MB) +PASS -- TEST 'control_stochy_intel' [08:31, 01:55](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:33, 01:03](426 MB) +PASS -- TEST 'control_lndp_intel' [08:31, 01:42](622 MB) +PASS -- TEST 'control_iovr4_intel' [08:28, 02:37](620 MB) +PASS -- TEST 'control_iovr5_intel' [08:31, 02:39](620 MB) +PASS -- TEST 'control_p8_intel' [09:08, 03:17](1867 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:09, 03:21](1868 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:14, 03:16](1869 MB) +PASS -- TEST 'control_restart_p8_intel' [04:17, 02:10](1012 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:04, 03:15](1862 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 02:41](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:01, 03:19](1859 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:21, 02:49](1949 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:20, 05:12](1867 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:27, 04:13](1920 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:42, 03:22](1865 MB) +PASS -- TEST 'merra2_thompson_intel' [06:37, 03:36](1866 MB) +PASS -- TEST 'regional_control_intel' [06:47, 04:50](858 MB) +PASS -- TEST 'regional_restart_intel' [04:42, 03:00](860 MB) +PASS -- TEST 'regional_decomp_intel' [06:46, 05:00](860 MB) +PASS -- TEST 'regional_2threads_intel' [03:43, 03:02](999 MB) +PASS -- TEST 'regional_noquilt_intel' [05:43, 04:35](1177 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:51, 04:43](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:38, 04:46](858 MB) +PASS -- TEST 'regional_wofs_intel' [07:38, 06:11](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [14:12, 13:22] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [47:55, 06:59](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [43:20, 04:05](1179 MB) +PASS -- TEST 'rap_decomp_intel' [47:54, 07:11](1007 MB) +PASS -- TEST 'rap_2threads_intel' [47:54, 06:02](1100 MB) +PASS -- TEST 'rap_restart_intel' [05:51, 03:26](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [47:53, 06:49](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [47:54, 07:13](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 05:05](877 MB) +PASS -- TEST 'hrrr_control_intel' [44:22, 03:56](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [43:29, 03:51](1003 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [43:29, 03:07](1082 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:10, 02:10](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [47:58, 06:45](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [48:02, 08:20](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [46:56, 08:01](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 12:58] +PASS -- TEST 'control_csawmg_intel' [07:43, 06:39](966 MB) +PASS -- TEST 'control_ras_intel' [04:30, 03:35](659 MB) + +PASS -- COMPILE 'wam_intel' [13:13, 12:48] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:26, 12:36](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:17, 19:29] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:16, 03:33](1867 MB) +PASS -- TEST 'regional_control_faster_intel' [07:50, 05:14](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:45] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:06, 04:04](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:06, 03:51](1593 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:45](799 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:27, 03:36](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:39, 05:07](1110 MB) +PASS -- TEST 'control_ras_debug_intel' [04:28, 03:25](805 MB) +PASS -- TEST 'control_diag_debug_intel' [05:43, 03:55](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [05:42, 03:59](1894 MB) +PASS -- TEST 'regional_debug_intel' [18:55, 16:38](893 MB) +PASS -- TEST 'rap_control_debug_intel' [07:33, 05:23](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:55, 04:59](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:44, 05:16](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:29, 05:04](1181 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:32, 05:20](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:16](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 05:10](1184 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:33, 05:16](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:30, 05:06](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 05:17](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:31, 05:04](1179 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:32, 05:13](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:33, 08:18](1179 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:51, 05:05](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 05:57](1186 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:36, 05:19](1184 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:10, 08:26](1184 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:12, 08:04] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:29, 13:49](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:53, 03:55](1052 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:04, 05:45](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:39, 03:20](883 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:14, 05:09](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:41, 02:49](938 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:42, 03:40](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:11, 04:27](784 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:40, 02:13](766 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:12, 16:16] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:13, 02:32](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:16, 01:15](1078 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:20, 01:45](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:19, 04:33](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:14, 08:26] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 05:29](1059 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 05:22](1059 MB) +PASS -- TEST 'conus13km_debug_intel' [16:21, 14:40](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:14, 15:19](819 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:13, 09:14](1127 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:40, 14:59](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:12, 08:28] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:35, 05:39](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [17:12, 15:21] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:49, 06:05](705 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:11, 05:20](1056 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:25, 07:46](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:52, 11:56](786 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:49, 12:52](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:31, 05:31](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:04, 06:58](494 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:25, 02:57](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:38, 08:19](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 03:56](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:16, 03:48](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:42, 04:50](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:45, 01:43](403 MB) +PASS -- TEST 'gnv1_nested_intel' [09:18, 06:15](1717 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [12:11, 10:12] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:21, 13:13](600 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:12, 23:21] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:15, 07:49](612 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:27, 07:56](783 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 15:28] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:41, 06:11](781 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:12, 14:51] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:26, 06:16](740 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:18, 06:19](727 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:20, 20:06](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:11, 12:47] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:45, 02:39](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:48, 01:35](740 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 02:32](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:27, 02:30](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:27, 02:41](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:31, 02:41](750 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 02:43](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 02:42](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:06, 06:32](691 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 06:08](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:37, 02:34](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:30, 04:41](2029 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:29, 04:45](2028 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 08:29] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:32, 05:26](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:12, 12:54] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:34](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:23] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:59, 01:48](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:58, 01:24](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:48, 00:59](456 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:56] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:42, 04:14](1923 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:13, 12:33] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:45, 04:08](1912 MB) + +PASS -- COMPILE 'atml_intel' [15:12, 14:46] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:50, 08:09](1895 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:43, 08:28](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:03, 03:50](1043 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:12, 09:26] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:05, 06:19](1929 MB) + +PASS -- COMPILE 'atmw_intel' [15:15, 13:04] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:39, 02:38](1898 MB) + +PASS -- COMPILE 'atmaero_intel' [13:14, 12:36] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:49, 06:16](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:25, 06:59](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 06:46](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:14, 08:59] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:47, 18:12](4484 MB) SYNOPSIS: -Starting Date/Time: 20240730 19:35:54 -Ending Date/Time: 20240730 21:08:49 -Total Time: 01h:33m:52s +Starting Date/Time: 20240804 20:14:23 +Ending Date/Time: 20240804 22:26:43 +Total Time: 02h:13m:20s Compiles Completed: 41/41 -Tests Completed: 183/185 -Failed Tests: -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2373/ufs-weather-model/tests/logs/log_gaea/run_control_wam_debug_intel.log -* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2373/ufs-weather-model/tests/logs/log_gaea/run_gnv1_nested_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF GAEA REGRESSION TESTING LOG==== -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_179250 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_debug_intel' [10:11, 09:39] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:17, 13:48](1687 MB) - -PASS -- COMPILE 'hafsw_intel' [17:15, 16:25] ( 1 warnings 9 remarks ) -PASS -- TEST 'gnv1_nested_intel' [09:05, 05:40](1717 MB) - -SYNOPSIS: -Starting Date/Time: 20240731 13:43:20 -Ending Date/Time: 20240731 14:11:13 -Total Time: 00h:28m:13s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Tests Completed: 185/185 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index f3c2f5166e..ea1be17918 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,20 +1,20 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -25,382 +25,380 @@ 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-20240730 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2625282 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2958009 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:14, 13:47] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:23, 05:49](3317 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:15, 16:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:09, 17:19](1980 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:30, 19:00](2136 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:15, 08:26](1265 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:07, 19:24](1871 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:14, 16:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:46, 16:58](1975 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:17] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:21, 22:42](1942 MB) - -PASS -- COMPILE 's2swa_intel' [14:13, 13:47] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:17, 05:59](3331 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:37, 05:54](3358 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:33, 03:40](3268 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:17, 05:56](3378 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:33, 03:59](3272 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:12, 05:36](3637 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:13, 06:00](3346 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:20, 04:58](3223 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:31, 06:44](3327 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:31, 10:26](3534 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:11, 06:26](3633 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:28, 09:37](4284 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:47, 06:21](4395 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:19, 05:31](3311 MB) - -PASS -- COMPILE 's2sw_intel' [13:13, 13:03] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:00, 04:54](1987 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:07, 04:31](2039 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:23] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:26, 08:38](3366 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:12, 05:21] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:14, 06:00](2027 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:13, 11:58] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:13, 04:21](2048 MB) - -PASS -- COMPILE 's2s_intel' [12:13, 12:07] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:49, 08:56](3115 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:49, 02:43](3087 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:47, 01:35](2550 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 17:40] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:25, 05:32](3329 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:59] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:12, 17:42](2028 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:18, 08:19](1281 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:14, 19:57](1901 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:17] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:03, 25:22](1956 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:30, 03:20](709 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 02:55](1599 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:00, 02:59](1612 MB) -PASS -- TEST 'control_latlon_intel' [03:48, 02:54](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:58, 03:01](1611 MB) -PASS -- TEST 'control_c48_intel' [08:54, 07:28](1760 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:29, 06:25](870 MB) -PASS -- TEST 'control_c192_intel' [12:11, 10:44](1748 MB) -PASS -- TEST 'control_c384_intel' [13:23, 10:31](2013 MB) -PASS -- TEST 'control_c384gdas_intel' [11:25, 08:04](1405 MB) -PASS -- TEST 'control_stochy_intel' [02:26, 01:40](663 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:32, 01:00](506 MB) -PASS -- TEST 'control_lndp_intel' [02:26, 01:34](661 MB) -PASS -- TEST 'control_iovr4_intel' [03:29, 02:27](658 MB) -PASS -- TEST 'control_iovr5_intel' [03:29, 02:28](657 MB) -PASS -- TEST 'control_p8_intel' [04:58, 03:09](1903 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 03:07](1899 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:57, 03:04](1900 MB) -PASS -- TEST 'control_restart_p8_intel' [02:49, 01:45](1139 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:58, 03:05](1887 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:59, 01:44](1167 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:52, 03:08](1896 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:53, 02:55](1984 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:49, 05:21](1892 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:04, 04:26](1966 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:01, 03:10](1906 MB) -PASS -- TEST 'merra2_thompson_intel' [04:58, 03:24](1902 MB) -PASS -- TEST 'regional_control_intel' [06:45, 05:23](1104 MB) -PASS -- TEST 'regional_restart_intel' [03:43, 02:58](1101 MB) -PASS -- TEST 'regional_decomp_intel' [06:44, 05:41](1103 MB) -PASS -- TEST 'regional_2threads_intel' [04:41, 03:31](1094 MB) -PASS -- TEST 'regional_noquilt_intel' [06:43, 05:18](1402 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:15](1097 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 05:18](1108 MB) -PASS -- TEST 'regional_wofs_intel' [07:37, 06:51](1911 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 11:12] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:43, 07:42](1108 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 04:09](1306 MB) -PASS -- TEST 'rap_decomp_intel' [09:37, 08:08](1023 MB) -PASS -- TEST 'rap_2threads_intel' [08:35, 07:17](1180 MB) -PASS -- TEST 'rap_restart_intel' [04:47, 04:02](1115 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:45, 07:42](1111 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:37, 08:10](1045 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:57, 05:49](1136 MB) -PASS -- TEST 'hrrr_control_intel' [04:45, 04:04](1047 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:39, 04:07](1034 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:40](1114 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:34, 02:10](1011 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:48, 07:38](1096 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:38, 09:19](1993 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:29, 09:07](2058 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 10:35] -PASS -- TEST 'control_csawmg_intel' [06:38, 06:07](1025 MB) -PASS -- TEST 'control_ras_intel' [04:25, 03:14](750 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:12, 04:24] -PASS -- TEST 'control_csawmg_gnu' [09:42, 08:23](758 MB) - -PASS -- COMPILE 'wam_intel' [11:13, 10:44] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:08, 10:50](1667 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:13, 14:43] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:07, 02:47](1880 MB) -PASS -- TEST 'regional_control_faster_intel' [05:43, 04:55](1107 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:12, 06:59] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:38](1630 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:38](1636 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:27, 03:11](834 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:44](836 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:40, 04:22](1148 MB) -PASS -- TEST 'control_ras_debug_intel' [03:25, 02:45](838 MB) -PASS -- TEST 'control_diag_debug_intel' [03:49, 02:51](1696 MB) -PASS -- TEST 'control_debug_p8_intel' [03:43, 03:02](1923 MB) -PASS -- TEST 'regional_debug_intel' [18:42, 18:08](1111 MB) -PASS -- TEST 'rap_control_debug_intel' [05:26, 04:57](1221 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:55](1222 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 04:52](1219 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 04:56](1222 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 05:00](1221 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:25](1305 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:27, 05:06](1217 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 05:05](1226 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:27, 04:56](1226 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 04:57](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:26, 04:51](1215 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:55](1225 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:08](1216 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 05:05](1219 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 05:54](1229 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:26, 05:17](1217 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:45, 08:36](1221 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 05:03] -PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:23](719 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:12, 04:37] ( 839 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 10:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:16, 03:52](1168 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:27](1045 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:25](992 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 06:08](1094 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 03:10](962 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:36, 03:37](923 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:49, 04:53](1037 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 01:53](935 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 13:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:04, 02:04](1207 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:51, 01:00](1127 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:20](1117 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 10:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:49, 04:11](988 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:22] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:29, 04:59](1099 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 04:57](1098 MB) -PASS -- TEST 'conus13km_debug_intel' [16:56, 15:29](1252 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:47, 15:02](933 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:21](1171 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:45](1323 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 04:04] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:07](1140 MB) - -PASS -- COMPILE 'hafsw_intel' [13:13, 12:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:23, 05:02](740 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:33, 06:06](1111 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:34, 07:00](843 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:27, 13:46](868 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:37, 15:26](892 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:11, 05:38](504 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:48, 06:48](526 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:52, 02:43](379 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:59, 07:24](486 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:56, 03:44](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:01, 03:33](537 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:01, 04:06](596 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:13](408 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:13, 04:41] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:13](597 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:14, 16:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:07, 08:46](672 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:15, 08:47](746 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:13, 12:35] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 06:31](737 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:13, 11:30] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:32, 06:31](836 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:23, 06:33](827 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:03, 16:06](1209 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:48] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:46](1163 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:43](1129 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:34](1036 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:22, 02:39](1036 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:39](1028 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 02:40](1149 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:44](1164 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:21, 02:31](1030 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:04, 06:47](1066 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:50, 06:25](1047 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:48](1166 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:26, 03:55](2507 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:23, 03:57](2467 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:13, 03:20] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 06:19](1085 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:38] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:36](1174 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:08] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:36, 00:50](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 00:52](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:40](320 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:13, 11:31] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:32, 03:53](1992 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:14] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:26, 03:50](1960 MB) - -PASS -- COMPILE 'atml_intel' [13:14, 12:45] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:20, 04:28](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:18, 04:28](1855 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:00, 02:33](1105 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:12, 05:20] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:02, 05:50](1870 MB) - -PASS -- COMPILE 'atmw_intel' [12:14, 11:22] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:57, 01:49](1937 MB) - -PASS -- COMPILE 'atmaero_intel' [12:14, 11:21] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:08, 04:09](3197 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:54](3105 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:51, 05:11](3106 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:09] ( 884 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [05:12, 04:48] -PASS -- TEST 'control_c48_gnu' [12:47, 11:14](1541 MB) -PASS -- TEST 'control_stochy_gnu' [04:29, 03:24](502 MB) -PASS -- TEST 'control_ras_gnu' [06:26, 04:48](504 MB) -PASS -- TEST 'control_p8_gnu' [06:04, 04:50](1468 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:05, 04:46](1458 MB) -PASS -- TEST 'control_flake_gnu' [11:33, 10:21](544 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:12, 04:28] -PASS -- TEST 'rap_control_gnu' [12:40, 10:47](815 MB) -PASS -- TEST 'rap_decomp_gnu' [12:38, 11:00](849 MB) -PASS -- TEST 'rap_2threads_gnu' [11:46, 09:55](930 MB) -PASS -- TEST 'rap_restart_gnu' [07:52, 05:33](577 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:47, 10:54](816 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:42, 11:10](816 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:51, 07:59](583 MB) -PASS -- TEST 'hrrr_control_gnu' [07:41, 05:33](814 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:44, 05:34](798 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:42, 05:06](926 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:43, 05:50](850 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:36, 02:55](560 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:36, 02:54](655 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:50, 10:51](811 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:46] -PASS -- TEST 'control_diag_debug_gnu' [04:09, 01:40](1273 MB) -PASS -- TEST 'regional_debug_gnu' [13:45, 11:45](716 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:28, 02:37](825 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:27, 02:37](820 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:41](820 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:25, 02:38](823 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:52, 02:53](903 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:25, 04:08](855 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:26, 02:43](826 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:25, 02:42](816 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:27, 01:40](489 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:25, 01:46](453 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:51](1440 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:28, 02:42](825 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 02:57](826 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 04:25](832 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:35] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:13] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:45, 09:23](710 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:44, 05:07](708 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:37, 08:42](753 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:34, 04:46](744 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 05:17](703 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:47, 07:06](551 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 02:34](537 MB) -PASS -- TEST 'conus13km_control_gnu' [05:07, 03:09](875 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:56, 06:06](888 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:53, 01:52](548 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:13, 10:58] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:43, 05:52](726 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:43] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:27, 02:39](716 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:29, 02:34](713 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:01, 06:52](894 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:54, 07:01](588 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:48, 07:40](895 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:47, 07:08](956 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:12, 07:42] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:30, 02:45](731 MB) - -PASS -- COMPILE 's2swa_gnu' [18:14, 16:46] - -PASS -- COMPILE 's2s_gnu' [17:13, 15:57] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:20, 07:27](1521 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:15, 03:27] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:15, 16:07] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:16, 20:07](1461 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:13, 03:13] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:59, 12:42](1458 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:13, 15:41] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:22, 03:01](685 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:13, 14:05] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:05, 05:41](3320 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:14, 16:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:04, 17:37](1979 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:20, 18:18](2163 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:12, 08:15](1259 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:02, 19:30](1876 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 17:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:39, 17:02](1973 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:12, 06:13] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:00, 22:50](1936 MB) + +PASS -- COMPILE 's2swa_intel' [15:13, 14:17] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:09, 05:55](3344 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:19, 05:52](3356 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:21, 03:38](3255 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:09, 05:58](3351 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:21, 03:33](3289 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:05, 05:34](3622 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:05, 05:56](3326 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:08, 04:50](3228 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:16, 05:55](3336 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:17, 10:13](3534 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:48, 06:21](3642 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:39, 10:16](4336 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:55, 06:23](4389 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:09, 06:18](3337 MB) + +PASS -- COMPILE 's2sw_intel' [14:13, 13:35] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:11, 04:52](1955 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:13, 04:35](2058 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:12, 06:14] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:07, 08:32](3392 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:12, 05:36] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:09, 05:52](2034 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:13, 12:44] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:03, 04:22](2031 MB) + +PASS -- COMPILE 's2s_intel' [13:13, 12:42] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:44, 09:17](3099 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:44, 02:51](3074 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:45, 01:34](2548 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:13, 18:05] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:16, 05:50](3343 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:20] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:13, 17:40](2016 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:14, 08:31](1286 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:10, 20:03](1920 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:34] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:57, 24:57](1972 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:12, 12:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:28, 03:19](705 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:50, 02:58](1604 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:53, 02:57](1610 MB) +PASS -- TEST 'control_latlon_intel' [03:44, 03:00](1597 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:50, 02:55](1609 MB) +PASS -- TEST 'control_c48_intel' [08:45, 07:30](1765 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 06:26](871 MB) +PASS -- TEST 'control_c192_intel' [12:03, 10:29](1754 MB) +PASS -- TEST 'control_c384_intel' [13:05, 10:30](2024 MB) +PASS -- TEST 'control_c384gdas_intel' [11:00, 08:00](1376 MB) +PASS -- TEST 'control_stochy_intel' [02:27, 01:40](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:28, 00:58](506 MB) +PASS -- TEST 'control_lndp_intel' [02:25, 01:38](666 MB) +PASS -- TEST 'control_iovr4_intel' [03:27, 02:29](659 MB) +PASS -- TEST 'control_iovr5_intel' [03:28, 02:28](658 MB) +PASS -- TEST 'control_p8_intel' [03:59, 03:05](1899 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:09, 03:07](1900 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:05, 03:14](1901 MB) +PASS -- TEST 'control_restart_p8_intel' [02:48, 01:45](1143 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:51, 03:01](1904 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:45](1164 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:51, 03:17](1884 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:49, 03:09](1987 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:45, 05:19](1896 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:54, 04:46](1924 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:55, 03:10](1911 MB) +PASS -- TEST 'merra2_thompson_intel' [04:52, 03:22](1907 MB) +PASS -- TEST 'regional_control_intel' [06:37, 05:38](1094 MB) +PASS -- TEST 'regional_restart_intel' [03:39, 02:55](1099 MB) +PASS -- TEST 'regional_decomp_intel' [06:36, 05:35](1090 MB) +PASS -- TEST 'regional_2threads_intel' [04:35, 03:24](1096 MB) +PASS -- TEST 'regional_noquilt_intel' [06:45, 05:15](1402 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:16](1100 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 05:20](1092 MB) +PASS -- TEST 'regional_wofs_intel' [07:37, 06:53](1916 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 11:10] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:55, 07:57](1112 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 04:09](1305 MB) +PASS -- TEST 'rap_decomp_intel' [09:41, 08:07](1036 MB) +PASS -- TEST 'rap_2threads_intel' [08:37, 07:15](1180 MB) +PASS -- TEST 'rap_restart_intel' [04:45, 04:01](1096 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:44, 07:42](1102 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 08:04](1039 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:45, 05:50](1137 MB) +PASS -- TEST 'hrrr_control_intel' [04:44, 03:58](1048 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:36, 04:05](1039 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:36, 03:38](1112 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:09](1004 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:47, 07:35](1097 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:27](1994 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:34, 09:18](2063 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 10:42] +PASS -- TEST 'control_csawmg_intel' [06:40, 06:06](1030 MB) +PASS -- TEST 'control_ras_intel' [04:24, 03:14](741 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:20] +PASS -- TEST 'control_csawmg_gnu' [09:42, 08:18](761 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 11:00] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:51, 10:58](1673 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 15:05] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:52, 02:45](1884 MB) +PASS -- TEST 'regional_control_faster_intel' [05:35, 04:51](1100 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:22] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:54, 02:48](1632 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:58, 02:44](1629 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:31, 03:00](839 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:30, 02:44](834 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:49, 04:29](1151 MB) +PASS -- TEST 'control_ras_debug_intel' [03:30, 02:49](844 MB) +PASS -- TEST 'control_diag_debug_intel' [04:00, 02:56](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [04:54, 03:09](1926 MB) +PASS -- TEST 'regional_debug_intel' [18:50, 17:58](1113 MB) +PASS -- TEST 'rap_control_debug_intel' [05:32, 04:55](1219 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:36, 04:50](1216 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:36, 04:59](1227 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:36, 04:59](1225 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:32, 05:01](1224 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:47, 05:15](1306 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:31, 05:10](1224 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 05:06](1220 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:31, 04:59](1221 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:35, 04:58](1215 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:33, 04:54](1219 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:26, 04:58](1224 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:12](1221 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 05:00](1218 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 05:53](1227 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:58](1224 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:43](1223 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:46] +PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:20](735 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:12, 04:15] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:48, 13:37](1702 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 10:43] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:10, 03:56](1163 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:35, 06:25](1056 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:24](995 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:38, 06:06](1093 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 03:09](966 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:38, 03:37](936 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:44, 04:51](1031 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:51](932 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:12, 13:41] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:00, 02:06](1206 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:50, 00:53](1130 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:15](1115 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 11:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:11](987 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:06] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1096 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:53](1101 MB) +PASS -- TEST 'conus13km_debug_intel' [15:53, 14:39](1244 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:38](951 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:09](1182 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:53](1313 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:00] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 04:56](1142 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 12:32] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:20, 04:59](741 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:33, 05:52](1118 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:51](845 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 13:32](872 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:34, 15:13](892 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:57, 05:29](508 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:43](519 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:48, 02:41](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 07:11](492 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:43](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:52, 03:34](537 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:53, 04:05](593 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:10](409 MB) +PASS -- TEST 'gnv1_nested_intel' [06:38, 04:10](1753 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:21] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:53, 13:04](593 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:13, 16:15] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:03, 08:47](681 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 08:58](750 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:12, 12:08] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:05, 06:24](739 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 11:48] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:20](836 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:20, 06:26](827 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:59, 16:17](1212 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:43] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 03:10](1154 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:24, 01:44](1103 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:38](1032 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:39](1014 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:45](1018 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:20, 02:42](1168 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:42](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:37](1026 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:39, 06:26](1067 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:35, 06:18](1046 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:59](1145 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:22, 03:56](2519 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:56](2468 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:26] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:36](1073 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:44] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:49](1163 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:31] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:33, 00:51](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:55](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:35](323 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:48] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:11, 03:44](1982 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 10:59] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:09, 03:39](1977 MB) + +PASS -- COMPILE 'atml_intel' [13:12, 12:27] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:10, 04:20](1866 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:06, 04:23](1875 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:28](1095 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:13, 04:57] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:49](1897 MB) + +PASS -- COMPILE 'atmw_intel' [11:12, 11:07] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:56](1931 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 11:16] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:01, 04:21](3200 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 04:55](3113 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:52, 05:01](3121 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:55] ( 884 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [05:12, 04:50] +PASS -- TEST 'control_c48_gnu' [12:41, 11:17](1541 MB) +PASS -- TEST 'control_stochy_gnu' [04:25, 03:28](503 MB) +PASS -- TEST 'control_ras_gnu' [05:24, 04:51](502 MB) +PASS -- TEST 'control_p8_gnu' [06:01, 04:49](1460 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:54, 04:44](1462 MB) +PASS -- TEST 'control_flake_gnu' [11:27, 10:23](545 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:44] +PASS -- TEST 'rap_control_gnu' [11:35, 11:06](855 MB) +PASS -- TEST 'rap_decomp_gnu' [11:33, 10:54](853 MB) +PASS -- TEST 'rap_2threads_gnu' [10:41, 09:49](931 MB) +PASS -- TEST 'rap_restart_gnu' [06:44, 05:33](575 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:40, 10:57](816 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:36, 11:00](812 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:47, 08:05](577 MB) +PASS -- TEST 'hrrr_control_gnu' [06:36, 05:36](811 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:35, 05:35](801 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:39, 05:05](917 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:38, 05:41](843 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:34, 03:00](565 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:34, 02:58](655 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:29](811 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:35] +PASS -- TEST 'control_diag_debug_gnu' [02:54, 01:43](1274 MB) +PASS -- TEST 'regional_debug_gnu' [12:45, 11:38](714 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:24, 02:45](824 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:25, 02:36](820 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:26, 02:39](828 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:23, 02:38](827 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:39, 02:50](906 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:08](819 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:25, 02:54](825 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:23, 02:51](819 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:23, 01:45](491 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:27, 01:49](449 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:47, 01:47](1438 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:25, 02:38](827 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:57](828 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:27](831 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:36] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:10] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:34, 09:16](708 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:37, 05:00](709 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:45, 08:33](756 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:35, 04:31](747 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 05:05](705 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:43, 06:57](548 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:32, 02:35](540 MB) +PASS -- TEST 'conus13km_control_gnu' [04:57, 03:18](877 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:51, 06:08](879 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:52, 01:54](556 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 11:02] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](732 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:46] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 02:38](716 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:24, 02:37](712 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:53, 07:01](894 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:49, 07:03](579 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:45, 07:54](901 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:45, 06:59](960 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:47] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:28, 02:43](737 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 16:31] + +PASS -- COMPILE 's2s_gnu' [17:12, 16:14] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:12, 07:20](1533 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:19] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:56] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:01, 19:44](1463 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:07] +FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:39] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:22, 03:28](680 MB) SYNOPSIS: -Starting Date/Time: 20240731 14:36:54 -Ending Date/Time: 20240731 16:12:18 -Total Time: 01h:37m:22s +Starting Date/Time: 20240805 00:00:47 +Ending Date/Time: 20240805 02:04:13 +Total Time: 02h:04m:44s Compiles Completed: 57/57 -Tests Completed: 242/244 +Tests Completed: 243/244 Failed Tests: -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2373/ufs-weather-model/tests/logs/log_hera/run_control_wam_debug_intel.log -* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2373/ufs-weather-model/tests/logs/log_hera/run_gnv1_nested_intel.log +* TEST cpld_debug_pdlib_p8_gnu: FAILED: TEST TIMED OUT +-- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2958009/cpld_debug_pdlib_p8_gnu/err NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -413,20 +411,20 @@ Result: FAILURE ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -437,25 +435,22 @@ 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-20240730 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3087081 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1313382 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-b) - NEW BASELINES FROM FILE: test_changes.list * (-e) - USE ECFLOW -PASS -- COMPILE 'wam_debug_intel' [05:13, 04:08] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:57, 13:51](1679 MB) - -PASS -- COMPILE 'hafsw_intel' [14:14, 12:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'gnv1_nested_intel' [06:47, 04:25](1734 MB) +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:12, 03:26] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:58, 13:15](1456 MB) SYNOPSIS: -Starting Date/Time: 20240731 18:41:55 -Ending Date/Time: 20240731 19:05:36 -Total Time: 00h:24m:15s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Starting Date/Time: 20240805 17:54:52 +Ending Date/Time: 20240805 18:15:21 +Total Time: 00h:20m:39s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index b5ff9e7f1c..2e81377b87 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,13 +1,13 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,375 +36,375 @@ 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-20240730 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3083262 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1562821 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:51] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:34, 08:19](2123 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:33] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:16, 14:35](2005 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:27, 14:06](2304 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:16, 06:33](1328 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:58, 15:33](1923 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:13] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:33, 13:06](1999 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:25] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:30, 20:32](1978 MB) - -PASS -- COMPILE 's2swa_intel' [13:11, 12:51] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:20, 08:20](2182 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:31, 08:10](2193 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:22, 04:23](1987 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:22, 08:17](2202 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:21, 04:29](1742 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:28, 09:29](2554 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:20, 08:05](2184 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:29, 06:48](2096 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:33, 08:01](2185 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:10, 16:06](2984 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:26, 05:53](2939 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:10, 09:52](3817 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:17, 06:17](3653 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 05:53](2149 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 12:22] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:18, 07:10](2020 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:26](2082 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 07:46] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:26, 07:48](2219 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:16] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 05:37](2049 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:40] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:17, 04:50](2073 MB) - -PASS -- COMPILE 's2s_intel' [12:11, 11:32] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:52, 07:06](3112 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:54, 02:05](3080 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:45, 01:44](2549 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:37] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:11, 07:42](2181 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:59, 13:45](2039 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:05, 06:47](1379 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:01, 15:13](1965 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:44] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 22:49](2039 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:21, 03:43](709 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:33, 02:25](1616 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:31](1633 MB) -PASS -- TEST 'control_latlon_intel' [03:31, 02:26](1618 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:37](1623 MB) -PASS -- TEST 'control_c48_intel' [07:35, 06:53](1741 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:26, 05:52](862 MB) -PASS -- TEST 'control_c192_intel' [09:48, 09:06](1751 MB) -PASS -- TEST 'control_c384_intel' [11:28, 09:17](2056 MB) -PASS -- TEST 'control_c384gdas_intel' [12:03, 09:41](1516 MB) -PASS -- TEST 'control_stochy_intel' [02:21, 01:43](670 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:03](558 MB) -PASS -- TEST 'control_lndp_intel' [02:19, 01:45](678 MB) -PASS -- TEST 'control_iovr4_intel' [03:22, 02:38](662 MB) -PASS -- TEST 'control_iovr5_intel' [03:22, 02:38](674 MB) -PASS -- TEST 'control_p8_intel' [03:52, 02:44](1906 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:57, 02:45](1898 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:59, 02:38](1909 MB) -PASS -- TEST 'control_restart_p8_intel' [02:50, 01:37](1162 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:55, 02:42](1892 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:34](1199 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:42, 02:48](1890 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:48, 02:32](1989 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:35, 04:46](1903 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:56, 03:38](1975 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:57, 02:47](1922 MB) -PASS -- TEST 'merra2_thompson_intel' [04:01, 02:59](1911 MB) -PASS -- TEST 'regional_control_intel' [06:32, 05:27](1199 MB) -PASS -- TEST 'regional_restart_intel' [03:34, 02:36](1175 MB) -PASS -- TEST 'regional_decomp_intel' [05:27, 04:56](1186 MB) -PASS -- TEST 'regional_2threads_intel' [03:30, 03:04](1155 MB) -PASS -- TEST 'regional_noquilt_intel' [05:32, 04:58](1523 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:36, 04:41](1205 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 04:45](1203 MB) -PASS -- TEST 'regional_wofs_intel' [07:30, 07:01](2078 MB) - -PASS -- COMPILE 'rrfs_intel' [08:11, 07:48] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:42, 06:37](1211 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:50, 03:27](1410 MB) -PASS -- TEST 'rap_decomp_intel' [07:42, 06:54](1150 MB) -PASS -- TEST 'rap_2threads_intel' [07:42, 06:13](1377 MB) -PASS -- TEST 'rap_restart_intel' [04:58, 03:28](1136 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:42, 06:43](1208 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:42, 06:57](1140 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:59, 05:06](1204 MB) -PASS -- TEST 'hrrr_control_intel' [04:44, 03:29](1080 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:44, 03:32](1042 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:08](1124 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:30, 01:54](1047 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:57, 06:30](1204 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:22, 07:41](2021 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:25](2181 MB) - -PASS -- COMPILE 'csawmg_intel' [08:11, 07:23] -PASS -- TEST 'control_csawmg_intel' [07:33, 06:50](1056 MB) -PASS -- TEST 'control_ras_intel' [03:21, 02:56](860 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:12] -PASS -- TEST 'control_csawmg_gnu' [07:41, 07:03](1070 MB) - -PASS -- COMPILE 'wam_intel' [08:11, 07:15] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:37, 10:33](1678 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:11, 14:00] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:56, 02:44](1911 MB) -PASS -- TEST 'regional_control_faster_intel' [06:30, 05:17](1192 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:58] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:33, 02:16](1641 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:35, 02:12](1652 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:31](847 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:16](841 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:17](1163 MB) -PASS -- TEST 'control_ras_debug_intel' [03:20, 02:21](848 MB) -PASS -- TEST 'control_diag_debug_intel' [03:37, 02:20](1706 MB) -PASS -- TEST 'control_debug_p8_intel' [04:37, 03:04](1932 MB) -PASS -- TEST 'regional_debug_intel' [18:34, 17:00](1154 MB) -PASS -- TEST 'rap_control_debug_intel' [05:22, 04:09](1227 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:24, 04:04](1229 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:20, 04:03](1237 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 04:12](1231 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:19, 04:08](1234 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:28, 04:10](1327 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 04:12](1231 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 04:09](1234 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:20, 04:07](1223 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:19, 04:05](1232 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:20, 03:59](1236 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 04:03](1232 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 06:54](1231 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 04:05](1226 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:20, 05:14](1242 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:23, 04:06](1232 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:02, 07:09](1235 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:42] -PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:52](1058 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:15] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:11, 07:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:55, 03:35](1268 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 06:56](1172 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:34](1057 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:47, 06:05](1296 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:00, 03:05](1047 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 03:58](1010 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:47, 05:27](1130 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:20, 02:08](983 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 11:40] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:43, 01:45](1313 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:38, 00:45](1212 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:33, 01:03](1167 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:30, 03:44](1099 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:17] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:11](1105 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:19, 03:58](1112 MB) -PASS -- TEST 'conus13km_debug_intel' [13:37, 12:40](1353 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:36, 12:59](1012 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:31, 08:30](1256 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:36, 12:46](1437 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:54] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:21, 04:30](1178 MB) - -PASS -- COMPILE 'hafsw_intel' [10:10, 10:03] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:04, 05:20](874 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:24, 04:49](1281 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:09, 06:18](964 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:03, 13:57](997 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:21, 15:04](1016 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:47, 05:22](610 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:10, 06:52](625 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:39, 02:35](441 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:02, 07:23](553 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:38, 03:43](625 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 03:33](625 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:49](685 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:25, 01:08](452 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:29] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:38, 14:19](648 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:11, 16:20] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:50, 16:00](751 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:55, 15:37](854 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:51, 09:41](830 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:10, 10:13] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:03, 05:26](943 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:59, 05:26](916 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:47, 16:32](1346 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:10, 05:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:11](1134 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:20](1106 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 02:05](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:07](1021 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:11](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:13](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 02:18](1163 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:15, 02:06](1032 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:57, 04:56](1172 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:53, 04:50](1165 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:12](1165 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:03](2391 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:17, 03:02](2460 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:33] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:16, 05:06](1080 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:17] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:12](1160 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:52] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 00:51](331 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:47](560 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:34](564 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 07:49] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:51, 03:38](2020 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 08:01] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:50, 03:07](1991 MB) - -PASS -- COMPILE 'atml_intel' [09:11, 08:55] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:58, 05:54](1896 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 05:50](1900 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:40, 02:59](1163 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:10] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:50, 04:56](1938 MB) - -PASS -- COMPILE 'atmw_intel' [10:11, 09:38] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:48, 01:44](1951 MB) - -PASS -- COMPILE 'atmaero_intel' [10:11, 07:29] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:48, 03:55](2038 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:23](1810 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:42, 04:35](1810 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:57] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:33, 17:05](4579 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 04:09] -PASS -- TEST 'control_c48_gnu' [11:44, 09:26](1574 MB) -PASS -- TEST 'control_stochy_gnu' [04:19, 02:22](727 MB) -PASS -- TEST 'control_ras_gnu' [05:17, 03:47](738 MB) -PASS -- TEST 'control_p8_gnu' [05:49, 04:14](1735 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:39, 03:47](1738 MB) -PASS -- TEST 'control_flake_gnu' [05:22, 04:36](814 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:10, 04:07] -PASS -- TEST 'rap_control_gnu' [09:44, 07:58](1094 MB) -PASS -- TEST 'rap_decomp_gnu' [09:36, 08:13](1083 MB) -PASS -- TEST 'rap_2threads_gnu' [08:45, 07:16](1144 MB) -PASS -- TEST 'rap_restart_gnu' [04:51, 04:06](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:52, 08:01](1095 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:44, 08:05](1082 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:01, 06:20](883 MB) -PASS -- TEST 'hrrr_control_gnu' [05:38, 04:13](1072 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:37, 04:07](1134 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 03:45](1024 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:36, 04:16](1070 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:23, 02:14](880 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:23, 02:21](939 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:54, 08:07](1084 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 07:11] -PASS -- TEST 'control_diag_debug_gnu' [02:34, 01:19](1639 MB) -PASS -- TEST 'regional_debug_gnu' [07:27, 06:43](1144 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:10](1106 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:18, 02:05](1094 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:20, 01:58](1099 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:20, 01:57](1102 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:31, 02:10](1275 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 03:17](1099 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 02:07](1103 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:21, 01:57](1096 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:12](731 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:17, 01:22](729 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:28, 01:29](1728 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:02](1102 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:20](1106 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:49, 03:26](1109 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:46] -PASS -- TEST 'control_wam_debug_gnu' [06:34, 05:23](1576 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:12] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 07:58](973 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:41, 04:09](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:51, 07:03](967 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:04, 03:40](871 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:42, 04:06](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:41, 06:07](871 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:23, 02:18](858 MB) -PASS -- TEST 'conus13km_control_gnu' [03:39, 02:51](1269 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:38, 01:10](1176 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:40, 01:35](922 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 09:43] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:39, 04:34](993 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:51] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 02:16](980 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:25, 02:01](973 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:42, 05:53](1292 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:34, 06:26](973 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:36, 03:58](1197 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:33, 05:52](1358 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 08:17] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:26](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [19:11, 18:14] - -PASS -- COMPILE 's2s_gnu' [17:11, 16:48] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:05, 05:24](2720 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:16] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:59] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:08, 25:54](3034 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:45] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:54, 12:06](2924 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:28] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:23](765 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:02, 08:22](2123 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:22] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:25, 14:45](2014 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:52, 14:22](2300 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:40, 06:51](1319 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:50, 15:33](1909 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 20:06] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:26, 13:32](1999 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:18] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:10, 20:54](1983 MB) + +PASS -- COMPILE 's2swa_intel' [12:11, 11:40] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:53, 08:23](2180 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:00, 08:42](2185 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:09, 04:18](1989 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:53, 08:30](2199 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:09, 04:24](1742 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:59, 09:59](2550 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:53, 08:33](2178 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:56, 06:58](2096 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:01, 08:41](2183 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:41, 15:48](2986 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:18, 05:51](2931 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:54, 10:19](3813 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:52, 06:34](3646 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:57, 06:05](2147 MB) + +PASS -- COMPILE 's2sw_intel' [10:11, 10:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:43, 10:29](2025 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:50, 04:25](2085 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:17] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [08:59, 07:43](2216 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 06:11] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:51, 05:35](2054 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:11, 08:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:49, 04:48](2078 MB) + +PASS -- COMPILE 's2s_intel' [09:11, 08:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:41, 07:03](3114 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:39, 02:11](3098 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:42, 02:10](2538 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:26] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:05, 07:26](2179 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:48, 13:55](2043 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:57, 07:03](1405 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:57, 15:36](1960 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:50] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:50, 23:01](2037 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:22, 03:32](710 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:30, 02:27](1601 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:34, 02:36](1617 MB) +PASS -- TEST 'control_latlon_intel' [03:30, 02:32](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:37, 02:28](1616 MB) +PASS -- TEST 'control_c48_intel' [07:33, 06:51](1735 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:23, 05:51](865 MB) +PASS -- TEST 'control_c192_intel' [10:42, 09:16](1772 MB) +PASS -- TEST 'control_c384_intel' [11:35, 09:27](2053 MB) +PASS -- TEST 'control_c384gdas_intel' [11:49, 09:43](1519 MB) +PASS -- TEST 'control_stochy_intel' [02:22, 01:44](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:27, 01:03](541 MB) +PASS -- TEST 'control_lndp_intel' [02:21, 01:40](667 MB) +PASS -- TEST 'control_iovr4_intel' [03:20, 02:37](667 MB) +PASS -- TEST 'control_iovr5_intel' [04:19, 02:42](664 MB) +PASS -- TEST 'control_p8_intel' [03:47, 02:43](1913 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:47, 02:43](1898 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:47, 03:05](1906 MB) +PASS -- TEST 'control_restart_p8_intel' [02:46, 01:33](1165 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:46, 02:35](1907 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:47, 01:35](1182 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:36, 02:43](1903 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:37, 03:24](1995 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:28, 05:23](1909 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:53, 04:17](1988 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:39](1916 MB) +PASS -- TEST 'merra2_thompson_intel' [06:55, 04:48](1910 MB) +PASS -- TEST 'regional_control_intel' [07:27, 05:39](1197 MB) +PASS -- TEST 'regional_restart_intel' [03:30, 02:42](1181 MB) +PASS -- TEST 'regional_decomp_intel' [07:23, 05:52](1198 MB) +PASS -- TEST 'regional_2threads_intel' [04:24, 03:04](1155 MB) +PASS -- TEST 'regional_noquilt_intel' [06:24, 05:20](1530 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:44](1195 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:22, 04:51](1198 MB) +PASS -- TEST 'regional_wofs_intel' [08:26, 07:24](2094 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 07:46] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [13:40, 06:42](1205 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:45, 03:42](1408 MB) +PASS -- TEST 'rap_decomp_intel' [14:37, 07:01](1157 MB) +PASS -- TEST 'rap_2threads_intel' [13:40, 06:16](1384 MB) +PASS -- TEST 'rap_restart_intel' [04:59, 03:40](1134 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:43, 06:53](1209 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:43, 07:05](1151 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 05:12](1219 MB) +PASS -- TEST 'hrrr_control_intel' [10:39, 03:33](1069 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:39, 03:36](1040 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:39, 03:12](1125 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:27, 01:54](1022 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:01, 06:47](1194 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:25, 07:40](2013 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 07:37](2208 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 07:03] +PASS -- TEST 'control_csawmg_intel' [14:29, 07:00](1074 MB) +PASS -- TEST 'control_ras_intel' [07:21, 02:57](843 MB) + +PASS -- COMPILE 'csawmg_gnu' [09:10, 04:11] +PASS -- TEST 'control_csawmg_gnu' [07:36, 06:59](1073 MB) + +PASS -- COMPILE 'wam_intel' [12:10, 07:18] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:32, 10:25](1673 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:10, 13:35] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:48, 02:21](1908 MB) +PASS -- TEST 'regional_control_faster_intel' [06:25, 05:23](1198 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 05:35] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:27, 02:23](1638 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:31, 02:16](1646 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:18, 02:32](842 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:18, 02:19](837 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:25, 04:17](1164 MB) +PASS -- TEST 'control_ras_debug_intel' [03:21, 02:42](848 MB) +PASS -- TEST 'control_diag_debug_intel' [03:33, 02:25](1703 MB) +PASS -- TEST 'control_debug_p8_intel' [03:30, 02:44](1936 MB) +PASS -- TEST 'regional_debug_intel' [16:26, 16:00](1165 MB) +PASS -- TEST 'rap_control_debug_intel' [04:18, 04:06](1230 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:20, 04:00](1221 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 04:03](1236 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 04:06](1235 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:18, 04:05](1234 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:26, 04:16](1318 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:20, 04:22](1234 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:26](1239 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:05](1240 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 04:04](1241 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:09](1227 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 04:23](1226 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 07:05](1235 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:45](1229 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:24](1232 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:28, 04:06](1232 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:54, 07:13](1224 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:10, 05:01] +PASS -- TEST 'control_csawmg_debug_gnu' [02:31, 01:58](1058 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:10, 03:29] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 07:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:44](1267 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:43, 07:20](1180 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:51, 03:28](1051 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:31, 06:03](1285 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:12](1044 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 03:47](1019 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:48, 05:19](1133 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:19, 02:01](977 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:10, 12:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:36, 01:52](1313 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:30, 00:45](1214 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:27, 01:02](1178 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 07:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:29, 03:45](1099 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:29] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:18, 04:01](1111 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:22, 03:55](1112 MB) +PASS -- TEST 'conus13km_debug_intel' [18:33, 12:50](1360 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:33, 12:58](1011 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:26, 08:52](1256 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:28, 12:58](1436 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:31] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:20, 04:30](1172 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 09:52] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:06, 05:29](871 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:26, 05:02](1275 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 06:26](935 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:01, 13:52](994 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:09, 15:23](1007 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:52, 05:35](614 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:13, 07:07](623 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:39, 02:44](443 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:52, 08:00](556 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:41, 04:08](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:40, 03:40](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:45, 04:52](679 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:09](454 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:27] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:39, 16:32](650 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:10, 15:46] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:43, 15:27](750 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:53, 16:27](849 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 09:29] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:52, 10:08](830 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:11, 10:02] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:05, 05:51](953 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:03, 05:40](938 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:35](1348 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 07:02] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:11](1161 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:16, 01:21](1113 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 02:06](1016 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:09](1022 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:12](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:09](1145 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:11](1136 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 02:09](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:55, 04:54](1166 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:49, 04:55](1157 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:09](1138 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:15, 03:06](2458 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:15, 03:05](2407 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 04:12] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 05:11](1086 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 07:07] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:15, 02:11](1129 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:45] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:56](335 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:22, 00:50](560 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:42](572 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:11, 08:20] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:47, 04:01](2028 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 08:00] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:46, 03:54](1995 MB) + +PASS -- COMPILE 'atml_intel' [09:11, 09:08] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:56, 07:20](1900 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:52, 07:37](1905 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 03:40](1144 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 04:13] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:50, 05:27](1938 MB) + +PASS -- COMPILE 'atmw_intel' [10:10, 09:44] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:47, 01:48](1957 MB) + +PASS -- COMPILE 'atmaero_intel' [08:10, 07:54] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:46, 04:27](2024 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:47, 04:29](1801 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:37, 04:38](1822 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:14] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:28, 17:00](4584 MB) + +PASS -- COMPILE 'atm_gnu' [06:10, 05:43] +PASS -- TEST 'control_c48_gnu' [10:41, 09:20](1562 MB) +PASS -- TEST 'control_stochy_gnu' [03:24, 02:20](734 MB) +PASS -- TEST 'control_ras_gnu' [05:21, 03:52](731 MB) +PASS -- TEST 'control_p8_gnu' [05:44, 04:42](1729 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 04:26](1718 MB) +PASS -- TEST 'control_flake_gnu' [06:21, 04:37](810 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:10, 05:42] +PASS -- TEST 'rap_control_gnu' [08:48, 08:03](1085 MB) +PASS -- TEST 'rap_decomp_gnu' [09:47, 07:55](1084 MB) +PASS -- TEST 'rap_2threads_gnu' [08:45, 07:13](1150 MB) +PASS -- TEST 'rap_restart_gnu' [05:56, 03:59](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:43, 08:06](1084 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:34, 08:04](1083 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:49, 06:03](882 MB) +PASS -- TEST 'hrrr_control_gnu' [05:33, 04:09](1074 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:34, 04:17](1134 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:44, 03:38](1027 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:42, 04:13](1068 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:19, 02:09](878 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:12](935 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:49, 08:17](1082 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:11, 11:17] +PASS -- TEST 'control_diag_debug_gnu' [02:35, 01:18](1631 MB) +PASS -- TEST 'regional_debug_gnu' [07:30, 06:38](1126 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:20, 02:04](1104 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:20, 02:04](1097 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:16, 02:02](1098 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:06](1101 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:10](1275 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 03:11](1103 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 02:05](1103 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:20, 02:00](1098 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:10](729 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:17, 01:17](729 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:30, 01:25](1709 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:20, 01:59](1103 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:18, 02:16](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:47, 03:20](1114 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:34] +PASS -- TEST 'control_wam_debug_gnu' [06:29, 05:28](1580 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 06:43] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:43, 07:58](966 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:55, 03:55](952 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:32, 06:52](998 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:36, 03:37](875 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:38, 03:59](954 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:54, 05:53](862 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:18, 02:11](858 MB) +PASS -- TEST 'conus13km_control_gnu' [04:36, 02:49](1267 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:32, 01:09](1177 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:32, 01:41](936 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:10, 14:35] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:30, 04:35](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:10, 12:31] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:25, 02:11](983 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:18, 02:05](975 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:34, 06:09](1289 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:31, 06:18](979 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:31, 03:44](1195 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:30, 06:01](1356 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [16:10, 13:27] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:14](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [24:11, 22:09] + +PASS -- COMPILE 's2s_gnu' [21:11, 18:55] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:54, 04:55](2735 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [14:11, 12:50] + +PASS -- COMPILE 's2sw_pdlib_gnu' [21:11, 20:15] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:19, 25:47](3033 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:10, 10:43] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:59, 12:04](2940 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:20] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:16, 02:17](764 MB) SYNOPSIS: -Starting Date/Time: 20240731 09:21:00 -Ending Date/Time: 20240731 10:54:53 -Total Time: 01h:34m:43s +Starting Date/Time: 20240805 08:20:40 +Ending Date/Time: 20240805 09:59:14 +Total Time: 01h:38m:59s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 8a1843f928..ffa39feaa2 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,13 +1,13 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -4062b88d6b40c90e783e00de145f1e2f0dd8a0e3 +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,255 +36,326 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3686172 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3949448 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [41:14, 40:36] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:47, 07:14](2015 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:32] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:06, 21:32](1894 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:20, 22:14](2017 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:42, 11:07](1134 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:35, 24:34](1857 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:17, 54:32] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:44, 21:09](1883 MB) - -PASS -- COMPILE 's2swa_intel' [42:14, 40:54] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:23, 08:00](2059 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:46, 07:57](2065 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:54, 04:53](1719 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:20, 08:00](2080 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:58, 05:00](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:21, 07:55](2323 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:17, 08:02](2060 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:39, 06:58](2002 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:45, 08:03](2058 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:33, 07:27](2045 MB) - -PASS -- COMPILE 's2sw_intel' [39:14, 38:19] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:30, 06:37](1908 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:45, 06:27](1971 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:10] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:44, 11:05](2091 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:47] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:12, 07:44](1944 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:15, 35:00] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:44, 06:16](1972 MB) - -PASS -- COMPILE 's2s_intel' [38:16, 35:21] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:08, 12:28](3078 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:05, 03:58](3054 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:59, 02:29](2515 MB) - -PASS -- COMPILE 's2swa_faster_intel' [35:27, 33:36] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:11, 07:38](2028 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:21, 47:08] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:37, 21:41](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:48, 11:02](1136 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:31, 25:13](1886 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:46] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:32, 32:53](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:18, 38:00] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [05:41, 04:28](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 04:01](1552 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:22, 04:05](1557 MB) -PASS -- TEST 'control_latlon_intel' [05:09, 03:55](1548 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 04:00](1545 MB) -PASS -- TEST 'control_c48_intel' [15:28, 11:46](1739 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:53, 10:13](854 MB) -PASS -- TEST 'control_c192_intel' [17:42, 14:13](1691 MB) -PASS -- TEST 'control_c384_intel' [24:36, 17:54](1837 MB) -PASS -- TEST 'control_c384gdas_intel' [21:34, 13:17](1023 MB) -PASS -- TEST 'control_stochy_intel' [03:37, 02:15](605 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:33, 01:21](438 MB) -PASS -- TEST 'control_lndp_intel' [03:37, 02:09](606 MB) -PASS -- TEST 'control_iovr4_intel' [04:36, 03:23](602 MB) -PASS -- TEST 'control_iovr5_intel' [04:38, 03:23](605 MB) -PASS -- TEST 'control_p8_intel' [06:34, 04:43](1848 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:06, 04:48](1844 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:49, 04:27](1849 MB) -PASS -- TEST 'control_restart_p8_intel' [04:06, 02:50](1060 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:37, 04:27](1841 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:08, 02:47](1076 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:38, 04:52](1833 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:38, 04:37](1933 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:15, 07:47](1854 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:02, 05:58](1903 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:54, 04:43](1858 MB) -PASS -- TEST 'merra2_thompson_intel' [07:03, 05:00](1847 MB) -PASS -- TEST 'regional_control_intel' [09:06, 07:57](1014 MB) -PASS -- TEST 'regional_restart_intel' [05:40, 04:36](1010 MB) -PASS -- TEST 'regional_decomp_intel' [10:07, 08:15](1020 MB) -PASS -- TEST 'regional_2threads_intel' [07:08, 05:55](1008 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:13, 07:52](1022 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:06, 07:58](1014 MB) - -PASS -- COMPILE 'rrfs_intel' [36:17, 35:44] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [15:09, 10:17](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:32, 05:39](1222 MB) -PASS -- TEST 'rap_decomp_intel' [14:16, 10:41](988 MB) -PASS -- TEST 'rap_2threads_intel' [14:16, 09:44](1087 MB) -PASS -- TEST 'rap_restart_intel' [07:22, 05:19](987 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:32, 10:05](992 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:07, 10:40](989 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:12, 07:36](1004 MB) -PASS -- TEST 'hrrr_control_intel' [10:01, 05:17](984 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:03, 05:27](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:40, 04:48](1069 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:32, 02:49](922 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:44, 10:02](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:35, 12:29](1946 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:35, 12:12](1940 MB) - -PASS -- COMPILE 'csawmg_intel' [33:19, 32:42] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:48, 08:46](960 MB) -PASS -- TEST 'control_ras_intel' [05:27, 04:30](663 MB) - -PASS -- COMPILE 'wam_intel' [33:18, 32:39] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [15:55, 14:18](1632 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [53:18, 52:45] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [13:34, 04:14](1840 MB) -PASS -- TEST 'regional_control_faster_intel' [08:46, 07:12](1011 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:42] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:59, 03:27](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:05, 03:20](1580 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:49](778 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:28](770 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:57, 05:59](1093 MB) -PASS -- TEST 'control_ras_debug_intel' [04:33, 03:28](788 MB) -PASS -- TEST 'control_diag_debug_intel' [05:03, 03:27](1640 MB) -PASS -- TEST 'control_debug_p8_intel' [06:07, 04:25](1878 MB) -PASS -- TEST 'regional_debug_intel' [24:02, 22:44](1044 MB) -PASS -- TEST 'rap_control_debug_intel' [07:35, 06:10](1163 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:37, 06:04](1157 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 06:08](1167 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 06:10](1164 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:11](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:35, 06:30](1243 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:23, 06:22](1169 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:29, 06:17](1170 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:28, 06:12](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:31, 06:17](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:30, 06:07](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:30, 06:15](1165 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:31, 10:13](1160 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:31, 06:09](1162 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:33, 07:32](1168 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:27, 06:12](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:29, 10:45](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:42] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:05, 16:52](1652 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 30:42] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:15, 05:21](1081 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:01, 08:25](904 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:14, 04:29](868 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:23, 08:00](952 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:20, 04:04](913 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:14, 04:46](865 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:27, 06:15](903 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:32, 02:25](852 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [53:20, 48:43] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:13, 02:58](1108 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:50, 01:23](1053 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:51, 01:36](1023 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:16, 31:03] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:56, 05:34](915 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:46] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 06:08](1041 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 06:01](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [20:05, 18:40](1153 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:04, 18:54](900 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:57, 10:51](1099 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:58, 18:41](1228 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:28, 06:12](1083 MB) - -PASS -- COMPILE 'hafsw_intel' [39:17, 38:48] ( 1 warnings 1427 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [12:27, 06:59](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:41, 06:51](1095 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:46, 09:19](767 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [23:30, 16:30](795 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:55, 18:08](827 MB) -PASS -- TEST 'gnv1_nested_intel' [27:10, 07:31](1683 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:17, 33:41] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:30, 08:46](773 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:31, 08:53](753 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:13, 08:29] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:25, 03:36](1084 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:14](1027 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:25, 03:31](937 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:26, 03:33](931 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:25, 03:34](926 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:24, 03:37](1066 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:35](1049 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:25, 03:31](932 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:26, 07:57](888 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:22, 07:51](842 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:22, 03:36](1074 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:15](2407 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:26, 05:05](2356 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:38] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:25, 08:02](1026 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:37] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 03:36](1069 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 01:55] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [15:42, 02:00](233 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [15:36, 01:43](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:32, 00:54](253 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:15, 34:08] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [19:29, 05:35](1913 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:15, 33:24] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [16:39, 05:31](1875 MB) - -PASS -- COMPILE 'atml_intel' [38:16, 37:52] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [17:48, 08:59](1868 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:46, 09:11](1859 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:53, 04:52](1076 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 06:04] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [31:54, 08:16](1899 MB) - -PASS -- COMPILE 'atmw_intel' [36:16, 35:32] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:23, 02:51](1862 MB) - -PASS -- COMPILE 'atmaero_intel' [31:18, 27:13] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:32, 05:58](1945 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:29, 06:29](1723 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:20, 06:33](1734 MB) +PASS -- COMPILE 's2swa_32bit_intel' [42:15, 41:49] ( 1 warnings 1384 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:07, 07:52](2022 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:16, 49:06] ( 1 warnings 1428 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [43:32, 21:50](1900 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:30, 23:29](2010 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:46, 11:03](1129 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [46:17, 24:54](1855 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:16, 49:32] ( 1 warnings 1425 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [40:15, 21:36](1881 MB) + +PASS -- COMPILE 's2swa_intel' [42:16, 41:29] ( 1382 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [35:36, 08:28](2063 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [36:08, 08:20](2057 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:23, 05:15](1717 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [35:39, 08:26](2078 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:26, 05:33](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [35:31, 08:06](2316 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [35:31, 08:22](2011 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [35:00, 07:16](1961 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [36:00, 08:17](2064 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [35:49, 07:54](2040 MB) + +PASS -- COMPILE 's2sw_intel' [39:15, 38:50] ( 1280 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [38:06, 06:52](1903 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [37:23, 06:42](1947 MB) + +PASS -- COMPILE 's2swa_debug_intel' [36:19, 06:04] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:43, 11:16](2080 MB) + +PASS -- COMPILE 's2sw_debug_intel' [32:21, 05:47] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:00, 07:45](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [02:24, 35:31] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:12, 07:19](1973 MB) + +PASS -- COMPILE 's2s_intel' [55:22, 35:44] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [19:18, 12:49](3075 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [11:15, 04:12](3059 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:06, 02:50](2515 MB) + +PASS -- COMPILE 's2swa_faster_intel' [53:30, 34:28] ( 1610 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:23, 09:37](2055 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [48:15, 47:17] ( 1340 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:46, 23:39](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:35, 12:58](1142 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:09, 27:39](1887 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:40] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:47, 33:01](1942 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:14, 38:22] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [06:38, 04:56](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:19, 04:42](1545 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:25, 05:11](1558 MB) +PASS -- TEST 'control_latlon_intel' [06:18, 04:28](1552 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:29, 04:51](1549 MB) +PASS -- TEST 'control_c48_intel' [14:26, 12:03](1742 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:45, 10:14](852 MB) +PASS -- TEST 'control_c192_intel' [17:51, 15:31](1692 MB) +PASS -- TEST 'control_c384_intel' [24:27, 20:39](1818 MB) +PASS -- TEST 'control_c384gdas_intel' [20:44, 14:59](1018 MB) +PASS -- TEST 'control_stochy_intel' [03:35, 02:44](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:43, 01:44](442 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 02:37](605 MB) +PASS -- TEST 'control_iovr4_intel' [04:50, 03:44](602 MB) +PASS -- TEST 'control_iovr5_intel' [05:35, 03:59](605 MB) +PASS -- TEST 'control_p8_intel' [07:40, 05:39](1828 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:57, 05:41](1843 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:54, 05:29](1848 MB) +PASS -- TEST 'control_restart_p8_intel' [05:15, 02:53](1065 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:47, 05:37](1842 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:10, 03:00](1070 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:49, 05:42](1828 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:36, 05:54](1934 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:29, 08:23](1852 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:56, 06:40](1906 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:55, 05:42](1855 MB) +PASS -- TEST 'merra2_thompson_intel' [08:12, 05:28](1856 MB) +PASS -- TEST 'regional_control_intel' [11:06, 09:36](1013 MB) +PASS -- TEST 'regional_restart_intel' [07:45, 06:19](1016 MB) +PASS -- TEST 'regional_decomp_intel' [12:06, 09:54](1014 MB) +PASS -- TEST 'regional_2threads_intel' [10:14, 07:57](1008 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [12:17, 09:54](1020 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [12:06, 09:54](1014 MB) + +PASS -- COMPILE 'rrfs_intel' [42:15, 35:57] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [13:14, 11:05](997 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:06, 05:43](1213 MB) +PASS -- TEST 'rap_decomp_intel' [15:01, 11:45](985 MB) +PASS -- TEST 'rap_2threads_intel' [12:40, 10:25](1093 MB) +PASS -- TEST 'rap_restart_intel' [09:24, 07:11](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:35, 11:11](992 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:54, 11:53](991 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [13:12, 08:50](999 MB) +PASS -- TEST 'hrrr_control_intel' [08:46, 06:20](991 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:19, 05:26](980 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:11, 04:55](1060 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:40, 03:03](919 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:47, 11:20](988 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:45, 14:36](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:46, 14:05](1940 MB) + +PASS -- COMPILE 'csawmg_intel' [39:15, 32:59] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [13:09, 10:20](960 MB) +PASS -- TEST 'control_ras_intel' [07:37, 05:20](668 MB) + +PASS -- COMPILE 'wam_intel' [33:15, 32:49] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [20:03, 18:11](1625 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [54:18, 53:30] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:56, 04:37](1840 MB) +PASS -- TEST 'regional_control_faster_intel' [08:52, 07:50](1017 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:16] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:47, 03:29](1575 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:31, 03:25](1573 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:30, 04:05](772 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:30](776 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:52, 06:57](1093 MB) +PASS -- TEST 'control_ras_debug_intel' [04:30, 03:33](799 MB) +PASS -- TEST 'control_diag_debug_intel' [07:50, 03:39](1638 MB) +PASS -- TEST 'control_debug_p8_intel' [09:36, 04:44](1879 MB) +PASS -- TEST 'regional_debug_intel' [27:59, 24:12](1041 MB) +PASS -- TEST 'rap_control_debug_intel' [10:43, 06:46](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:52, 06:55](1160 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:34, 07:19](1159 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:52, 06:46](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:33, 07:18](1166 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:46, 06:54](1250 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 06:17](1165 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 06:30](1165 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:32, 06:13](1163 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 06:25](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:22](1165 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 06:20](1160 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:15, 11:00](1165 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:36, 06:12](1159 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:34, 07:48](1167 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:28, 06:15](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:14, 10:48](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:53] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:59, 17:44](1659 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:16, 30:54] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:32, 05:52](1082 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:06, 09:43](901 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:56, 04:25](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:06, 09:26](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:50, 04:07](911 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:27, 05:13](861 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:36, 06:49](898 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 03:03](852 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [52:17, 48:54] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:32, 03:32](1107 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:29](1051 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:39](1021 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [35:13, 30:37] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:17, 07:13](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:19, 05:57] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 06:10](1041 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:34, 06:05](1044 MB) +PASS -- TEST 'conus13km_debug_intel' [20:07, 18:44](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:16, 19:11](872 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:59, 10:52](1105 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:59, 18:46](1234 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:51] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:29, 06:21](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [40:15, 38:56] ( 1 warnings 1428 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:43, 07:12](705 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:43, 06:47](1091 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:11, 09:29](768 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [20:03, 17:45](801 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:30, 19:07](822 MB) +PASS -- TEST 'gnv1_nested_intel' [11:46, 07:30](1684 MB) + +PASS -- COMPILE 'hafs_all_intel' [35:15, 34:20] ( 1269 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:51, 09:26](769 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:46, 09:32](754 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:38] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:26, 04:02](1066 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:12](1037 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:26, 03:57](931 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:35, 04:02](929 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 03:52](925 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:26, 03:53](1071 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 03:42](1063 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 03:46](944 MB) +FAILED: TEST TIMED OUT -- TEST 'datm_cdeps_mx025_cfsr_intel' [, ]( MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:29, 08:13](844 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 03:45](1065 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 05:15](2370 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:43, 05:31](2356 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:52] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:25, 08:06](1013 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:30] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 04:10](1055 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:16] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:41, 01:40](233 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:27](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:55](256 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:14, 34:38] ( 1016 remarks ) +FAILED: TEST TIMED OUT -- TEST 'atm_ds2s_docn_pcice_intel' [, ]( MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:14, 33:41] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:59, 06:04](1885 MB) + +PASS -- COMPILE 'atml_intel' [38:15, 37:47] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:51, 10:11](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:48, 10:31](1862 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:07, 06:27](1073 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 06:16] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:23, 08:39](1890 MB) + +PASS -- COMPILE 'atmw_intel' [37:14, 35:19] ( 1261 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:42, 03:18](1860 MB) + +PASS -- COMPILE 'atmaero_intel' [35:15, 34:01] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:46, 06:39](1951 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:00, 07:11](1732 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:41, 07:30](1746 MB) SYNOPSIS: -Starting Date/Time: 20240731 21:01:26 -Ending Date/Time: 20240801 00:59:10 -Total Time: 03h:58m:22s +Starting Date/Time: 20240805 00:16:01 +Ending Date/Time: 20240805 05:47:53 +Total Time: 05h:32m:33s Compiles Completed: 36/36 -Tests Completed: 164/164 +Tests Completed: 162/164 +Failed Tests: +* TEST datm_cdeps_mx025_cfsr_intel: FAILED: TEST TIMED OUT +-- LOG: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3949448/datm_cdeps_mx025_cfsr_intel/err +* TEST atm_ds2s_docn_pcice_intel: FAILED: TEST TIMED OUT +-- LOG: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3949448/atm_ds2s_docn_pcice_intel/err + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1849630 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:39] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:15, 08:04](894 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:18, 34:20] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:00, 06:19](1916 MB) + +SYNOPSIS: +Starting Date/Time: 20240805 15:51:58 +Ending Date/Time: 20240805 16:42:30 +Total Time: 00h:50m:51s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 8b2f2fd0b3..7a67ef80ad 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,13 +1,13 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,357 +36,286 @@ 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-20240730 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_457009 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2194935 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:10, 16:24] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:41, 14:32](2094 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:42, 18:05](1960 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:11, 19:00](2129 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:06, 08:53](1217 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:41, 20:23](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:43, 17:40](1951 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:37] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:49, 26:53](1944 MB) - -PASS -- COMPILE 's2swa_intel' [16:10, 16:08] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:36, 14:16](2140 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:40, 14:18](2135 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:43, 07:55](1810 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:36, 14:32](2167 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:43, 07:58](1716 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:34, 13:16](2434 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:34, 14:05](2132 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:37, 11:56](2042 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:38, 14:17](2148 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:42, 15:40](2718 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:02, 08:26](2724 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:01, 11:29](3662 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:34, 07:08](3542 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:26, 05:58](2116 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 15:34] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:22, 13:40](1981 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:28, 04:49](2044 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:10, 08:14] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:20, 08:50](2173 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:10, 07:16] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:00, 06:03](2018 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:10, 13:41] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:18, 04:39](2046 MB) - -PASS -- COMPILE 's2s_intel' [14:10, 14:05] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:56, 09:47](3109 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:20](3091 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:01, 02:08](2546 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:11, 23:00] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:29, 14:31](2154 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 20:03] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 18:07](1995 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:28, 08:54](1248 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:09, 20:20](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 06:48] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:24, 28:48](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:27, 03:37](689 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 03:04](1593 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 03:10](1593 MB) -PASS -- TEST 'control_latlon_intel' [03:43, 03:05](1596 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:53, 03:06](1594 MB) -PASS -- TEST 'control_c48_intel' [10:49, 09:16](1740 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:56](856 MB) -PASS -- TEST 'control_c192_intel' [12:49, 11:10](1741 MB) -PASS -- TEST 'control_c384_intel' [14:48, 12:21](2022 MB) -PASS -- TEST 'control_c384gdas_intel' [12:28, 09:27](1360 MB) -PASS -- TEST 'control_stochy_intel' [02:22, 01:48](641 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:08](475 MB) -PASS -- TEST 'control_lndp_intel' [02:22, 01:42](643 MB) -PASS -- TEST 'control_iovr4_intel' [03:24, 02:38](639 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:42, 14:21](2093 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 17:57](1965 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:16, 18:56](2127 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:07, 08:50](1211 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:45, 20:12](1873 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:21] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:42, 17:37](1953 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 08:06] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:43, 27:11](1932 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 15:42] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:31, 14:29](2152 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:41, 14:09](2143 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:45, 07:55](1815 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:31, 14:32](2163 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:45, 08:03](1711 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:35, 13:24](2439 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:31, 14:33](2130 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 12:32](2047 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:40, 14:27](2148 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:30, 16:21](2713 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:51, 08:57](2737 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:03, 11:22](3664 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:27, 07:05](3506 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:24, 05:54](2111 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 15:14] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:22, 13:49](1984 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:27, 04:41](2038 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:10, 08:06] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:21, 08:50](2173 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:47] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:03, 06:09](2017 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:54] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:10, 04:40](2049 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 12:51] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:55, 09:52](3109 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:58, 03:20](3087 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:51, 02:09](2538 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:11, 24:23] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:29, 14:45](2138 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:21] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 18:06](1998 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:59](1256 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:07, 20:22](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 06:54] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:00, 28:37](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:26, 03:37](688 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:43, 03:04](1590 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:46, 03:09](1589 MB) +PASS -- TEST 'control_latlon_intel' [03:41, 03:04](1584 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 03:11](1591 MB) +PASS -- TEST 'control_c48_intel' [10:49, 09:11](1742 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:30, 07:55](848 MB) +PASS -- TEST 'control_c192_intel' [11:57, 11:09](1736 MB) +PASS -- TEST 'control_c384_intel' [14:53, 12:11](2008 MB) +PASS -- TEST 'control_c384gdas_intel' [12:34, 09:30](1356 MB) +PASS -- TEST 'control_stochy_intel' [02:22, 01:47](646 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:47, 01:05](475 MB) +PASS -- TEST 'control_lndp_intel' [02:22, 01:41](643 MB) +PASS -- TEST 'control_iovr4_intel' [03:28, 02:39](643 MB) PASS -- TEST 'control_iovr5_intel' [03:23, 02:39](643 MB) -PASS -- TEST 'control_p8_intel' [05:08, 03:26](1882 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:09, 03:25](1880 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:20, 03:15](1884 MB) -PASS -- TEST 'control_restart_p8_intel' [03:06, 02:01](1095 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:15, 03:22](1879 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:16, 01:57](1129 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:07, 03:22](1872 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:40](1975 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:44, 05:49](1881 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:52](1952 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:21, 03:27](1895 MB) -PASS -- TEST 'merra2_thompson_intel' [05:34, 03:40](1895 MB) -PASS -- TEST 'regional_control_intel' [07:35, 06:17](1091 MB) -PASS -- TEST 'regional_restart_intel' [04:36, 03:29](1081 MB) -PASS -- TEST 'regional_decomp_intel' [07:37, 06:39](1081 MB) -PASS -- TEST 'regional_2threads_intel' [05:35, 04:36](1077 MB) -PASS -- TEST 'regional_noquilt_intel' [07:35, 06:19](1382 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 06:17](1088 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 06:21](1093 MB) -PASS -- TEST 'regional_wofs_intel' [08:35, 07:33](1908 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 12:16] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:20, 08:16](1059 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:53, 05:01](1307 MB) -PASS -- TEST 'rap_decomp_intel' [10:02, 08:27](1020 MB) -PASS -- TEST 'rap_2threads_intel' [09:57, 08:14](1168 MB) -PASS -- TEST 'rap_restart_intel' [06:29, 04:16](1041 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:00, 08:11](1055 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:56, 08:28](1026 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 06:09](1075 MB) -PASS -- TEST 'hrrr_control_intel' [05:58, 04:16](1029 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:20](1015 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:13, 04:05](1103 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:39, 02:18](950 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:14, 08:03](1043 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:38](1989 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:22](2026 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:30] -PASS -- TEST 'control_csawmg_intel' [07:37, 06:32](1024 MB) -PASS -- TEST 'control_ras_intel' [04:23, 03:25](718 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 11:30] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:43, 12:01](1665 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:39] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:19, 03:10](1891 MB) -PASS -- TEST 'regional_control_faster_intel' [06:33, 05:58](1082 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:02] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:44](1611 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:52, 02:39](1611 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:25, 03:03](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:42](817 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:43, 04:18](1143 MB) -PASS -- TEST 'control_ras_debug_intel' [03:24, 02:48](822 MB) -PASS -- TEST 'control_diag_debug_intel' [03:49, 02:44](1683 MB) -PASS -- TEST 'control_debug_p8_intel' [03:49, 03:08](1919 MB) -PASS -- TEST 'regional_debug_intel' [18:47, 17:16](1098 MB) -PASS -- TEST 'rap_control_debug_intel' [05:27, 04:55](1210 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:44](1204 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:26, 04:52](1209 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:14](1210 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:31](1207 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:32, 05:14](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 04:57](1208 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 05:00](1207 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:20, 04:50](1211 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:00](1213 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:48](1203 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:49](1208 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:20, 08:01](1201 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 04:50](1205 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 06:01](1211 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:52](1213 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:19, 08:19](1211 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 05:04] ( 839 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 04:48](1167 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 06:58](1012 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:16, 03:41](928 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:04, 07:05](1082 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:33](956 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:59, 03:51](907 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:24, 05:13](981 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 02:00](882 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 17:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:54, 02:36](1185 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:13](1131 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:36, 01:30](1085 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 11:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:29](978 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 05:11] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:43](1090 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:45](1086 MB) -PASS -- TEST 'conus13km_debug_intel' [14:49, 14:07](1245 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 14:29](950 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:39, 08:31](1174 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 14:44](1316 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 05:12] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:21, 04:54](1142 MB) - -PASS -- COMPILE 'hafsw_intel' [14:10, 13:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:09, 05:54](761 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:10](1136 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 07:22](840 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:15, 24:15](871 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:23, 29:02](886 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 06:59](515 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:26, 08:17](521 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:22](382 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:13, 09:28](485 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:37](540 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:54, 04:21](541 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:38](591 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:33](411 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:47] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:56, 12:56](603 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:10, 21:52] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:11, 12:47](676 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:01, 12:49](735 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:17] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:58, 08:45](726 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:10, 12:30] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:16, 07:14](833 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 07:15](818 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:19](1200 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:16] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:56](1158 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:54](1108 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 02:47](1021 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:50](1024 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:52](1023 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:58](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:58](1149 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:51](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:07, 06:28](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:09, 06:22](1007 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:55](1154 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:16](2398 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:21](2345 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 05:44] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:29](1076 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:48] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:57](1154 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:18] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:01](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:56](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:37](319 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:59] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:03, 04:00](1984 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:10, 12:19] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:05, 03:54](1955 MB) - -PASS -- COMPILE 'atml_intel' [14:10, 13:40] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:21, 04:47](1872 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:25, 04:46](1870 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:47](1083 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 06:45] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:26, 05:52](1906 MB) - -PASS -- COMPILE 'atmw_intel' [13:10, 12:32] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:16, 02:04](1919 MB) - -PASS -- COMPILE 'atmaero_intel' [12:10, 12:06] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:09, 04:33](1989 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 05:14](1775 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:58, 05:17](1800 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 04:56] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:49, 20:46](4552 MB) +PASS -- TEST 'control_p8_intel' [05:08, 03:31](1886 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:08, 03:25](1882 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:26, 03:18](1882 MB) +PASS -- TEST 'control_restart_p8_intel' [03:14, 01:55](1101 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:13, 03:22](1879 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:21, 01:58](1130 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:08, 03:26](1873 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:35](1972 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:48, 05:48](1882 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:31, 04:48](1948 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:24, 03:26](1899 MB) +PASS -- TEST 'merra2_thompson_intel' [05:34, 03:41](1894 MB) +PASS -- TEST 'regional_control_intel' [07:37, 06:19](1084 MB) +PASS -- TEST 'regional_restart_intel' [04:47, 03:20](1082 MB) +PASS -- TEST 'regional_decomp_intel' [07:34, 06:38](1084 MB) +PASS -- TEST 'regional_2threads_intel' [05:32, 04:37](1077 MB) +PASS -- TEST 'regional_noquilt_intel' [06:37, 06:09](1381 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 06:12](1086 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 06:16](1093 MB) +PASS -- TEST 'regional_wofs_intel' [08:36, 07:31](1906 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:31] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:19, 08:14](1052 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:55, 05:13](1306 MB) +PASS -- TEST 'rap_decomp_intel' [09:54, 08:29](1022 MB) +PASS -- TEST 'rap_2threads_intel' [10:16, 08:15](1160 MB) +PASS -- TEST 'rap_restart_intel' [06:34, 04:20](1044 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:58, 08:11](1055 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:58, 08:29](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:33, 06:09](1078 MB) +PASS -- TEST 'hrrr_control_intel' [06:08, 04:16](1031 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:54, 04:23](1020 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:15, 04:04](1097 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:26, 02:18](953 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:18, 08:07](1049 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:40](1985 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:25](2020 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:36] +PASS -- TEST 'control_csawmg_intel' [07:42, 06:28](1024 MB) +PASS -- TEST 'control_ras_intel' [04:26, 03:24](718 MB) + +PASS -- COMPILE 'wam_intel' [12:10, 11:16] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:45, 12:07](1670 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:19] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:18, 03:09](1888 MB) +PASS -- TEST 'regional_control_faster_intel' [06:39, 05:56](1091 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:55] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:45](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:56, 02:40](1615 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:27, 03:06](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:47](820 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:22](1138 MB) +PASS -- TEST 'control_ras_debug_intel' [03:28, 02:49](825 MB) +PASS -- TEST 'control_diag_debug_intel' [03:53, 02:48](1683 MB) +PASS -- TEST 'control_debug_p8_intel' [03:53, 03:08](1918 MB) +PASS -- TEST 'regional_debug_intel' [18:49, 17:36](1116 MB) +PASS -- TEST 'rap_control_debug_intel' [05:26, 04:56](1215 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:28, 04:49](1200 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:28, 04:57](1210 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:28, 05:00](1206 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 04:55](1208 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:34, 05:06](1296 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:27, 05:01](1209 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:27, 05:01](1211 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:25, 04:57](1202 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:58](1215 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:44](1200 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:20, 04:52](1213 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 07:58](1207 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 04:49](1202 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:57](1212 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:56](1211 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 08:23](1204 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 05:02] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:45, 13:31](1690 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 11:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:46](1169 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:14, 06:57](1003 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:24, 03:42](928 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 07:07](1078 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:06, 03:34](958 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:11, 03:49](903 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:29, 05:14](978 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:44, 02:00](880 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 17:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:56, 02:38](1181 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:47, 01:11](1134 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:29](1079 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:27] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:27](979 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:26] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:50](1089 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:39](1083 MB) +PASS -- TEST 'conus13km_debug_intel' [15:58, 14:22](1245 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 14:14](946 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 08:44](1174 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 14:23](1315 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:31, 04:58](1136 MB) + +PASS -- COMPILE 'hafsw_intel' [14:10, 13:50] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:54](763 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 06:11](1139 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 07:23](836 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:12, 24:19](874 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:18, 28:18](894 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 06:57](514 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:30, 08:14](523 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:24](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:22, 09:29](491 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:40](536 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 04:23](540 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:37](591 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:31](409 MB) +PASS -- TEST 'gnv1_nested_intel' [07:11, 04:18](1737 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:42] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:02, 13:22](603 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [22:11, 21:46] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:09, 12:45](674 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:08, 12:50](739 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:27] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:03, 08:53](727 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:12, 12:22] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:20, 07:20](828 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:24, 07:21](813 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:56, 16:16](1204 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:55] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:21, 02:57](1156 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:56](1116 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:49](1028 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:52](1022 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:54](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:57](1163 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:59](1162 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:51](1016 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:27](1026 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:10, 06:24](998 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:20, 02:57](1133 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 04:27](2400 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:20](2390 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:36] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:22](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:23] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:58](1157 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:32] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 01:01](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:55](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:36](323 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:54] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 04:06](1973 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 11:46] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:05, 03:55](1956 MB) + +PASS -- COMPILE 'atml_intel' [14:11, 13:34] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:27, 04:51](1870 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:25, 04:48](1871 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:39](1082 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 06:17] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:28, 06:01](1897 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 12:25] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:20, 02:10](1917 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 11:58] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:15, 04:32](2001 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:11, 05:16](1769 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 05:23](1797 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 05:22] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:05, 20:53](4560 MB) SYNOPSIS: -Starting Date/Time: 20240731 09:22:04 -Ending Date/Time: 20240731 10:52:07 -Total Time: 01h:30m:46s +Starting Date/Time: 20240805 07:55:58 +Ending Date/Time: 20240805 09:26:43 +Total Time: 01h:31m:48s Compiles Completed: 41/41 -Tests Completed: 183/185 -Failed Tests: -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2373/tests/logs/log_orion/run_control_wam_debug_intel.log -* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2373/tests/logs/log_orion/run_gnv1_nested_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ORION REGRESSION TESTING LOG==== -====START OF ORION REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1813348 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_debug_intel' [06:10, 05:35] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:41, 14:00](1695 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 13:28] ( 1 warnings 9 remarks ) -PASS -- TEST 'gnv1_nested_intel' [07:06, 04:19](1730 MB) - -SYNOPSIS: -Starting Date/Time: 20240731 16:42:20 -Ending Date/Time: 20240731 17:05:05 -Total Time: 00h:22m:56s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Tests Completed: 185/185 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index f62c9c31cf..55875c3ebc 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,17 +1,17 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +1d72e10c471068cdf993bc535757009c7d8230d0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e4) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop-64-g0495c19) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,306 +36,240 @@ 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-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135764 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46672 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [31:50, 30:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [52:57, 01:57](3100 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:35, 18:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [52:16, 01:55](1824 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [34:19, 01:37](1849 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [34:19, 02:12](982 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:17, 01:29](1792 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:58, 42:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [27:53, 01:11](1821 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:31, 15:08] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [55:20, 01:46](1843 MB) - -PASS -- COMPILE 's2swa_intel' [30:47, 30:03] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [40:02, 01:36](3133 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:02, 01:48](3130 MB) -PASS -- TEST 'cpld_restart_p8_intel' [31:42, 01:04](3065 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [40:02, 01:34](3152 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [31:42, 00:59](3087 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [40:02, 01:01](3369 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [40:02, 01:45](3128 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [40:03, 01:35](3078 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:02, 01:49](3129 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [40:11, 04:01](4129 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:42, 04:25](4273 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [40:02, 01:50](3114 MB) - -PASS -- COMPILE 's2sw_intel' [12:28, 11:14] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [58:23, 00:49](1840 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:23, 00:58](1904 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:28, 13:20] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:22, 01:06](1899 MB) - -PASS -- COMPILE 's2s_intel' [22:38, 21:55] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [48:11, 01:00](2923 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [48:11, 01:27](2925 MB) -PASS -- TEST 'cpld_restart_c48_intel' [44:08, 01:11](2349 MB) - -PASS -- COMPILE 's2swa_faster_intel' [30:48, 30:01] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [40:02, 01:55](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:34, 18:11] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:17, 00:47](1843 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:04, 01:26](1008 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:05, 01:41](1802 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [28:50, 28:29] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:33, 00:42](1863 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [34:52, 34:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [19:50, 00:22](568 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [19:50, 00:35](1463 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:50, 00:24](1475 MB) -PASS -- TEST 'control_latlon_intel' [19:20, 00:20](1478 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:56, 00:32](1471 MB) -PASS -- TEST 'control_c48_intel' [18:45, 01:11](1592 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [18:45, 00:50](715 MB) -PASS -- TEST 'control_c192_intel' [18:45, 00:40](1593 MB) -PASS -- TEST 'control_c384_intel' [18:36, 01:37](1903 MB) -PASS -- TEST 'control_c384gdas_intel' [18:32, 02:04](1089 MB) -PASS -- TEST 'control_stochy_intel' [18:26, 00:27](529 MB) -PASS -- TEST 'control_stochy_restart_intel' [16:01, 01:01](333 MB) -PASS -- TEST 'control_lndp_intel' [18:21, 00:30](528 MB) -PASS -- TEST 'control_iovr4_intel' [17:52, 00:44](527 MB) -PASS -- TEST 'control_iovr5_intel' [17:52, 00:43](521 MB) -PASS -- TEST 'control_p8_intel' [17:32, 01:38](1770 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [16:44, 01:49](1765 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [16:44, 01:57](1772 MB) -PASS -- TEST 'control_restart_p8_intel' [12:25, 01:00](917 MB) -PASS -- TEST 'control_noqr_p8_intel' [16:44, 01:31](1759 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [11:43, 00:41](925 MB) -PASS -- TEST 'control_decomp_p8_intel' [16:44, 01:25](1761 MB) -PASS -- TEST 'control_2threads_p8_intel' [16:43, 01:02](1855 MB) -PASS -- TEST 'control_p8_lndp_intel' [16:42, 01:04](1777 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [16:42, 02:04](1830 MB) -PASS -- TEST 'control_p8_mynn_intel' [16:39, 01:43](1778 MB) -PASS -- TEST 'merra2_thompson_intel' [16:37, 01:42](1778 MB) -PASS -- TEST 'regional_control_intel' [15:56, 00:12](849 MB) -PASS -- TEST 'regional_restart_intel' [10:14, 00:28](852 MB) -PASS -- TEST 'regional_decomp_intel' [15:56, 00:55](852 MB) -PASS -- TEST 'regional_2threads_intel' [15:43, 00:56](904 MB) -PASS -- TEST 'regional_noquilt_intel' [15:33, 00:19](1173 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [15:20, 00:23](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [15:04, 00:15](855 MB) -PASS -- TEST 'regional_wofs_intel' [15:03, 00:52](1576 MB) - -PASS -- COMPILE 'rrfs_intel' [21:41, 20:26] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [33:37, 01:42](914 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:38, 01:03](1087 MB) -PASS -- TEST 'rap_decomp_intel' [33:37, 01:26](913 MB) -PASS -- TEST 'rap_2threads_intel' [33:37, 01:45](997 MB) -PASS -- TEST 'rap_restart_intel' [24:34, 01:33](785 MB) -PASS -- TEST 'rap_sfcdiff_intel' [33:37, 02:10](909 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [33:37, 01:55](911 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [24:03, 01:43](782 MB) -PASS -- TEST 'hrrr_control_intel' [33:37, 01:02](904 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [33:37, 00:56](908 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [33:38, 01:24](991 MB) -PASS -- TEST 'hrrr_control_restart_intel' [28:32, 01:05](737 MB) -PASS -- TEST 'rrfs_v1beta_intel' [33:37, 02:08](907 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [33:37, 01:00](1872 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [33:37, 01:17](1859 MB) - -PASS -- COMPILE 'csawmg_intel' [11:25, 11:05] -PASS -- TEST 'control_csawmg_intel' [40:52, 00:29](872 MB) -PASS -- TEST 'control_ras_intel' [40:52, 00:52](565 MB) - -PASS -- COMPILE 'wam_intel' [09:24, 08:31] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [42:52, 00:55](1572 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:34, 13:52] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [33:09, 02:03](1774 MB) -PASS -- TEST 'regional_control_faster_intel' [32:39, 00:21](848 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [19:35, 18:23] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:16, 01:14](1499 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [23:16, 01:17](1501 MB) -PASS -- TEST 'control_stochy_debug_intel' [23:16, 00:44](701 MB) -PASS -- TEST 'control_lndp_debug_intel' [23:16, 01:00](703 MB) -PASS -- TEST 'control_csawmg_debug_intel' [23:16, 00:26](1012 MB) -PASS -- TEST 'control_ras_debug_intel' [23:16, 01:01](711 MB) -PASS -- TEST 'control_diag_debug_intel' [23:16, 01:12](1559 MB) -PASS -- TEST 'control_debug_p8_intel' [23:16, 00:54](1796 MB) -PASS -- TEST 'regional_debug_intel' [23:15, 00:11](903 MB) -PASS -- TEST 'rap_control_debug_intel' [23:16, 00:44](1084 MB) -PASS -- TEST 'hrrr_control_debug_intel' [23:16, 00:49](1078 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [23:16, 00:45](1087 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [23:16, 00:42](1083 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [23:16, 00:43](1082 MB) -PASS -- TEST 'rap_diag_debug_intel' [23:16, 00:34](1164 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [23:16, 00:37](1086 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [23:13, 00:36](1090 MB) -PASS -- TEST 'rap_lndp_debug_intel' [14:24, 00:47](1086 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:24, 00:51](1085 MB) -PASS -- TEST 'rap_noah_debug_intel' [14:24, 00:54](1082 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:28, 00:42](1082 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:25, 00:25](1080 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [12:05, 00:47](1078 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:45, 00:33](1090 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:22, 00:41](1090 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:21, 01:51](1091 MB) - -PASS -- COMPILE 'wam_debug_intel' [22:43, 22:00] ( 825 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:33, 13:32] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [25:29, 01:16](954 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [25:28, 01:20](790 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [25:28, 02:00](787 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [25:28, 01:49](856 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [25:29, 02:17](844 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:28, 01:51](786 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:09, 01:34](688 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:05, 00:17](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:42, 22:30] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [10:46, 01:05](1003 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:48, 01:00](1009 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:47, 00:47](887 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:44, 17:47] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:44, 01:21](812 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [31:59, 31:28] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [01:37, 00:55](964 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [01:37, 01:04](960 MB) -PASS -- TEST 'conus13km_debug_intel' [01:37, 01:05](1056 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [01:37, 00:57](725 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [01:38, 00:23](1057 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [01:37, 01:00](1122 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:35, 10:24] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:11, 00:56](991 MB) - -PASS -- COMPILE 'hafsw_intel' [22:37, 22:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:18, 02:04](615 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:18, 01:09](972 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:16, 01:37](664 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [05:16, 01:30](698 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:17, 01:56](711 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:16, 01:03](389 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:17, 02:01](405 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:17, 01:35](285 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:20, 02:14](374 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:16, 00:37](413 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 00:52](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:18, 00:56](494 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:17, 00:28](325 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [19:41, 19:23] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:49, 01:16](527 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [25:43, 25:28] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:36, 01:33](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [57:36, 01:32](712 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:36, 14:05] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:56, 00:56](708 MB) - -PASS -- COMPILE 'hafs_all_intel' [21:39, 20:53] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [56:30, 01:49](662 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:30, 01:44](648 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [56:28, 00:21](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:30, 11:09] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:26, 00:46](1824 MB) - -PASS -- COMPILE 'atml_intel' [26:48, 25:34] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [14:30, 14:15] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [16:30, 15:25] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [50:22, 01:02](3025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [50:22, 01:34](2904 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [50:22, 01:21](2920 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:22, 08:46] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [57:05, 01:30](4437 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:30, 11:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [39:29, 01:41](3099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:30, 12:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [39:29, 02:01](1820 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 01:51](1836 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [21:14, 02:11](985 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:30, 01:31](1801 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:34, 17:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [34:25, 01:06](1820 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:42] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [46:40, 01:40](1836 MB) + +PASS -- COMPILE 's2swa_intel' [11:29, 11:13] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [40:30, 01:34](3135 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:30, 01:52](3133 MB) +PASS -- TEST 'cpld_restart_p8_intel' [32:17, 01:01](3064 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [40:30, 01:31](3152 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [32:16, 00:56](3082 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [40:30, 01:08](3369 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [40:30, 01:34](3128 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [40:31, 01:40](3077 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:30, 01:53](3129 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [40:39, 04:31](4129 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:38, 05:44](4273 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [40:30, 01:53](3114 MB) + +PASS -- COMPILE 's2sw_intel' [14:36, 13:53] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [51:12, 00:52](1830 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [51:12, 00:59](1896 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [22:41, 21:51] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:17, 01:10](1899 MB) + +PASS -- COMPILE 's2s_intel' [11:29, 10:18] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [40:29, 01:04](2925 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [40:29, 01:28](2935 MB) +PASS -- TEST 'cpld_restart_c48_intel' [36:27, 01:04](2347 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:47, 27:26] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [24:11, 01:53](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:45, 21:13] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:08, 00:54](1837 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [26:43, 01:18](1000 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:44, 01:19](1806 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:29, 16:02] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:10, 01:50](1863 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [21:35, 21:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [18:53, 00:23](571 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [18:53, 00:28](1463 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:53, 00:24](1475 MB) +PASS -- TEST 'control_latlon_intel' [18:53, 00:24](1469 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:53, 00:32](1468 MB) +PASS -- TEST 'control_c48_intel' [18:52, 01:00](1592 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [18:52, 00:51](716 MB) +PASS -- TEST 'control_c192_intel' [18:53, 00:28](1584 MB) +PASS -- TEST 'control_c384_intel' [18:57, 01:25](1900 MB) +PASS -- TEST 'control_c384gdas_intel' [18:57, 02:04](1086 MB) +PASS -- TEST 'control_stochy_intel' [17:46, 00:26](529 MB) +PASS -- TEST 'control_stochy_restart_intel' [15:18, 01:02](332 MB) +PASS -- TEST 'control_lndp_intel' [17:46, 00:27](524 MB) +PASS -- TEST 'control_iovr4_intel' [17:46, 00:42](525 MB) +PASS -- TEST 'control_iovr5_intel' [17:34, 00:43](522 MB) +PASS -- TEST 'control_p8_intel' [17:14, 02:02](1767 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [16:48, 02:04](1767 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [15:34, 01:56](1778 MB) +PASS -- TEST 'control_restart_p8_intel' [11:38, 00:40](919 MB) +PASS -- TEST 'control_noqr_p8_intel' [15:19, 01:34](1768 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [10:18, 01:05](922 MB) +PASS -- TEST 'control_decomp_p8_intel' [15:11, 01:30](1762 MB) +PASS -- TEST 'control_2threads_p8_intel' [15:07, 00:50](1850 MB) +PASS -- TEST 'control_p8_lndp_intel' [15:05, 01:16](1773 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [15:00, 02:01](1829 MB) +PASS -- TEST 'control_p8_mynn_intel' [14:27, 01:47](1774 MB) +PASS -- TEST 'merra2_thompson_intel' [14:21, 01:43](1770 MB) +PASS -- TEST 'regional_control_intel' [14:13, 01:14](851 MB) +PASS -- TEST 'regional_restart_intel' [07:27, 00:26](852 MB) +PASS -- TEST 'regional_decomp_intel' [14:04, 00:53](861 MB) +PASS -- TEST 'regional_2threads_intel' [13:51, 00:53](908 MB) +PASS -- TEST 'regional_noquilt_intel' [13:50, 00:19](1174 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [13:25, 01:15](851 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [13:16, 01:13](851 MB) +PASS -- TEST 'regional_wofs_intel' [13:16, 00:56](1576 MB) + +PASS -- COMPILE 'rrfs_intel' [17:33, 16:31] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [22:56, 01:36](911 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:57, 01:07](1098 MB) +PASS -- TEST 'rap_decomp_intel' [22:56, 01:23](913 MB) +PASS -- TEST 'rap_2threads_intel' [22:56, 01:41](998 MB) +PASS -- TEST 'rap_restart_intel' [13:13, 01:15](783 MB) +PASS -- TEST 'rap_sfcdiff_intel' [22:56, 02:14](909 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:56, 02:00](913 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [13:13, 01:40](782 MB) +PASS -- TEST 'hrrr_control_intel' [22:56, 01:03](906 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [22:56, 00:56](908 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [22:57, 01:23](990 MB) +PASS -- TEST 'hrrr_control_restart_intel' [12:51, 01:09](739 MB) +PASS -- TEST 'rrfs_v1beta_intel' [22:56, 02:11](906 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [22:56, 00:55](1872 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [22:56, 01:08](1859 MB) + +PASS -- COMPILE 'csawmg_intel' [14:29, 14:07] +PASS -- TEST 'control_csawmg_intel' [24:59, 00:30](875 MB) +PASS -- TEST 'control_ras_intel' [24:59, 00:56](564 MB) + +PASS -- COMPILE 'wam_intel' [14:30, 13:25] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [24:58, 00:55](1565 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:30, 16:15] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [12:09, 01:56](1761 MB) +PASS -- TEST 'regional_control_faster_intel' [12:00, 00:27](847 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [23:38, 23:17] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:30, 01:19](1498 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:30, 01:25](1504 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:30, 00:47](700 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:30, 01:05](701 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:30, 00:24](1009 MB) +PASS -- TEST 'control_ras_debug_intel' [06:30, 01:03](710 MB) +PASS -- TEST 'control_diag_debug_intel' [06:30, 01:18](1562 MB) +PASS -- TEST 'control_debug_p8_intel' [06:30, 00:56](1794 MB) +PASS -- TEST 'regional_debug_intel' [06:29, 01:05](890 MB) +PASS -- TEST 'rap_control_debug_intel' [06:30, 00:46](1086 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:30, 00:56](1077 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:30, 00:47](1085 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 00:47](1088 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:06, 00:45](1086 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:00, 00:28](1166 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:50, 00:34](1082 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:23, 00:30](1087 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:14, 00:37](1087 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:08, 00:41](1084 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:57, 00:48](1080 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:30, 00:41](1084 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [04:29, 00:26](1078 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [03:30, 00:45](1081 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [03:17, 00:29](1093 MB) +PASS -- TEST 'rap_flake_debug_intel' [03:12, 00:42](1088 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [02:58, 01:54](1090 MB) + +PASS -- COMPILE 'wam_debug_intel' [23:46, 23:14] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [02:30, 01:13](1595 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:30, 13:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:16, 01:29](957 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:59, 01:29](787 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:54, 02:10](787 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:14, 01:35](858 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:10, 02:25](847 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:00, 01:52](789 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:20, 01:41](692 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:55, 00:19](670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:44, 14:38] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:12, 01:11](1005 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:56, 00:50](1011 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:54, 00:40](884 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:32, 15:14] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:38, 01:44](809 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [29:05, 28:07] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [53:50, 00:57](962 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [53:50, 01:00](958 MB) +PASS -- TEST 'conus13km_debug_intel' [53:50, 01:08](1049 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [53:50, 00:43](723 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [53:50, 00:21](1051 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [53:50, 01:06](1122 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:26, 10:24] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:26, 00:50](996 MB) + +PASS -- COMPILE 'hafsw_intel' [16:33, 15:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [01:22, 01:58](616 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [01:23, 00:58](964 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [01:20, 01:34](661 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [01:20, 01:30](703 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [00:54, 01:25](715 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:37, 01:23](396 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [59:53, 01:58](403 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [59:42, 01:25](287 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [59:45, 02:00](374 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:40, 01:17](426 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:28, 01:10](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:27, 00:59](496 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:20, 00:55](318 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:42, 09:07] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [01:36, 01:13](523 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:41, 18:52] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [49:35, 00:47](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [49:35, 01:39](713 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:30, 14:54] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:10, 00:57](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:42, 18:15] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [48:45, 01:16](660 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [48:45, 02:09](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [48:43, 00:26](882 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:38, 09:59] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [55:51, 01:35](1827 MB) + +PASS -- COMPILE 'atml_intel' [21:52, 21:07] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [14:30, 13:53] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [22:36, 21:56] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [38:44, 01:21](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [38:44, 01:51](2906 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [38:44, 01:43](2921 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:22, 08:54] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [46:29, 00:53](4438 MB) SYNOPSIS: -Starting Date/Time: 20240731 13:48:54 -Ending Date/Time: 20240731 15:30:17 -Total Time: 01h:42m:25s +Starting Date/Time: 20240805 16:07:37 +Ending Date/Time: 20240805 17:54:48 +Total Time: 01h:47m:56s Compiles Completed: 33/33 -Tests Completed: 155/156 -Failed Tests: -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_wcoss2/run_control_wam_debug_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF WCOSS2 REGRESSION TESTING LOG==== -====START OF WCOSS2 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_238998 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-n) - RUN SINGLE TEST: control_wam_debug -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_debug_intel' [04:17, 03:54] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [40:01, 01:01](1599 MB) - -SYNOPSIS: -Starting Date/Time: 20240731 16:15:42 -Ending Date/Time: 20240731 16:37:16 -Total Time: 00h:21m:56s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 156/156 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/rt.conf b/tests/rt.conf index 36679f99e1..be3a401f72 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -36,7 +36,7 @@ COMPILE | s2swa_32bit_pdlib_sfs | intel | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DC RUN | cpld_control_sfs | - noaacloud | baseline | COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 | -RUN | cpld_debug_gfsv17 | - noaacloud jet derecho | baseline | +RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline | COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | RUN | cpld_control_p8 | - noaacloud | baseline | From fe47b338ba40fed9d8572bf0a26e463e1cb8f185 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 7 Aug 2024 16:49:01 +0000 Subject: [PATCH 12/33] Forgot to link to personal for of MPAS submodule --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index b4f6463fa4..8168a66d9d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b4f6463fa403b39fd80c51378c3aa1e42e466f21 +Subproject commit 8168a66d9da8e45a62b1cea452d37ac2da3c928b From fcf0022aaa522f859080da2673dc538f78068163 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 8 Aug 2024 10:28:23 -0600 Subject: [PATCH 13/33] In fv3atm: convert GFS DDTs from blocked data structures to contiguous arrays (#2183) * UFSWM - In fv3atm and submodules, convert internal GFS DDTs from blocked data structures to contiguous arrays. This excludes the (external) `GFS_extdiag` and `GFS_restart` DDTs. * AQM - * CDEPS - * CICE - * CMEPS - * CMakeModules - * FV3 - Convert GFS DDTs from blocked data structures to contiguous arrays (not including GFS_restart and GFS_extdiag DDTs) * ccpp-physics - Convert GFS DDTs from blocked data structures to contiguous arrays (affects `GFS_debug.{F90,meta} only`) * atmos_cubed_sphere - Convert GFS DDTs from blocked data structures to contiguous arrays and remove IPD_Data super DDT * GOCART - * HYCOM - * MOM6 - * NOAHMP - * WW3 - * stochastic_physics - --- FV3 | 2 +- cmake/Intel.cmake | 3 +- tests/fv3_conf/compile_slurm.IN_gaea | 1 + tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 30 +- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_derecho.log | 620 ++++++-------- tests/logs/RegressionTests_gaea.log | 649 +++++++------- tests/logs/RegressionTests_hera.log | 790 ++++++++---------- tests/logs/RegressionTests_hercules.log | 741 ++++++++-------- tests/logs/RegressionTests_jet.log | 537 ++++++------ tests/logs/RegressionTests_orion.log | 554 ++++++------ tests/logs/RegressionTests_wcoss2.log | 468 +++++------ tests/rt.conf | 2 +- tests/test_changes.list | 76 -- tests/tests/regional_atmaq_debug | 2 +- 16 files changed, 2232 insertions(+), 2343 deletions(-) diff --git a/FV3 b/FV3 index 0495c19204..aa1484378d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 0495c19204325401ccba2943f99e65ee9190f07d +Subproject commit aa1484378de6cc665910b63a691a1475809f6bb3 diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index 73564f1783..6b8cae0ef6 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -20,7 +20,8 @@ endif() if(DEBUG) add_definitions(-DDEBUG) - set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -ftrapuv -init=snan,arrays") + #set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -ftrapuv -init=snan,arrays") + set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -check -check noarg_temp_created -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -ftrapuv -init=snan,arrays") set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -ftrapuv") else() if(FASTER) diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaea index 97aceeebae..29c259b092 100644 --- a/tests/fv3_conf/compile_slurm.IN_gaea +++ b/tests/fv3_conf/compile_slurm.IN_gaea @@ -7,6 +7,7 @@ #SBATCH --partition=eslogin_c5 #SBATCH --nodes=1 #SBATCH --ntasks-per-node=8 +#SBATCH --mem-per-cpu=4G #SBATCH --time=180 #SBATCH --job-name="@[JBNME]" diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 24f6aeb1e1..a79ca74ba1 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Aug 5 13:20:26 UTC 2024 +Wed Aug 7 16:04:22 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/bit_base_bit_base +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_3245717/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 = 275.232912 - 0: The maximum resident set size (KB) = 1454960 + 0: The total amount of wall time = 291.553157 + 0: The maximum resident set size (KB) = 1432740 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/dbg_base_dbg_base +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_3245717/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 = 990.929727 - 0: The maximum resident set size (KB) = 1452048 + 0: The total amount of wall time = 978.453839 + 0: The maximum resident set size (KB) = 1404508 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/dcp_dcp +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_3245717/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 = 249.842884 - 0: The maximum resident set size (KB) = 1447064 + 0: The total amount of wall time = 250.835851 + 0: The maximum resident set size (KB) = 1418368 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/mpi_mpi +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_3245717/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 = 251.717479 - 0: The maximum resident set size (KB) = 1430488 + 0: The total amount of wall time = 251.336453 + 0: The maximum resident set size (KB) = 1419812 Test mpi PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/rst_rst +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_3245717/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 = 250.675414 - 0: The maximum resident set size (KB) = 1431300 + 0: The total amount of wall time = 250.225330 + 0: The maximum resident set size (KB) = 1419120 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/std_base_std_base +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_3245717/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 = 248.017536 - 0: The maximum resident set size (KB) = 1436404 + 0: The total amount of wall time = 251.764603 + 0: The maximum resident set size (KB) = 1418912 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/thr_thr +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_3245717/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 = 249.324976 - 0: The maximum resident set size (KB) = 1431388 + 0: The total amount of wall time = 250.616791 + 0: The maximum resident set size (KB) = 1405864 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Aug 5 14:26:37 UTC 2024 -Elapsed time: 01h:06m:13s. Have a nice day! +Wed Aug 7 17:12:51 UTC 2024 +Elapsed time: 01h:08m:29s. 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 057d916e36..e61bb4928d 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Aug 5 20:25:41 UTC 2024 +Wed Aug 7 14:58:27 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3648314/dbg_base_dbg_base +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_1523760/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 = 1456.394419 - 0: The maximum resident set size (KB) = 1531368 + 0: The total amount of wall time = 1347.758320 + 0: The maximum resident set size (KB) = 1508348 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3648314/rst_rst +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_1523760/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 = 434.948106 - 0: The maximum resident set size (KB) = 1537108 + 0: The total amount of wall time = 427.699439 + 0: The maximum resident set size (KB) = 1502940 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3648314/std_base_std_base +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_1523760/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 = 436.362270 - 0: The maximum resident set size (KB) = 1517024 + 0: The total amount of wall time = 461.709298 + 0: The maximum resident set size (KB) = 1511784 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Aug 5 22:04:47 UTC 2024 -Elapsed time: 01h:39m:08s. Have a nice day! +Wed Aug 7 16:04:22 UTC 2024 +Elapsed time: 01h:05m:56s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 03e41e3bb2..61c8ee0c7e 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Aug 5 17:40:12 UTC 2024 +Wed Aug 7 12:28:17 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/bit_base_bit_base +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_538515/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 = 1408.629188 - 0: The maximum resident set size (KB) = 768992 + 0: The total amount of wall time = 1405.955778 + 0: The maximum resident set size (KB) = 767568 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/dcp_dcp +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_538515/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 = 2173.644662 - 0: The maximum resident set size (KB) = 708900 + 0: The total amount of wall time = 2160.154552 + 0: The maximum resident set size (KB) = 703612 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/std_base_std_base +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_538515/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 = 2162.607714 - 0: The maximum resident set size (KB) = 716328 + 0: The total amount of wall time = 2253.393184 + 0: The maximum resident set size (KB) = 716020 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/thr_thr +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_538515/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 = 2154.653116 - 0: The maximum resident set size (KB) = 707252 + 0: The total amount of wall time = 2176.355099 + 0: The maximum resident set size (KB) = 724868 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Aug 5 20:20:41 UTC 2024 -Elapsed time: 02h:40m:29s. Have a nice day! +Wed Aug 7 14:58:26 UTC 2024 +Elapsed time: 02h:30m:10s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 338b1c2749..5062b3ac4e 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,31 +1,31 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +c34693f57b7804adb9fae55d41f8519a32801059 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,351 +36,285 @@ 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-20240730 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_117686 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_62932 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:16, 21:01] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:22, 07:10](3202 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:18, 23:41] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:53, 15:05](1914 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:37, 15:56](1948 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:33, 07:51](1069 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:40, 16:54](1890 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:18, 23:07] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:07, 14:25](1916 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:15, 11:12] ( 1530 warnings 1948 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_intel' [22:16, 20:59] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:24, 08:22](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:37, 08:14](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:34, 04:05](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:24, 07:52](3254 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:24, 03:48](3188 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:19, 08:05](3733 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:08, 07:10](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:08, 06:48](3540 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:41, 07:53](3234 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:54, 11:38](3811 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:30, 06:16](3628 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [30:20, 12:01](4525 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:36, 07:32](4671 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:09, 07:54](3209 MB) - -PASS -- COMPILE 's2sw_intel' [20:15, 19:24] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:28, 05:01](1924 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 05:04](1991 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:13, 11:09] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:54, 08:12](3295 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:15, 10:31] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 06:28](1960 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:16, 15:18] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:11, 05:28](1991 MB) - -PASS -- COMPILE 's2s_intel' [16:14, 15:27] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:03, 06:36](2949 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:12, 02:21](2948 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:07, 01:47](2365 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:21, 25:40] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:22, 06:25](3233 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:21, 21:41] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:43, 15:38](1946 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:03, 08:07](1109 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:47, 17:10](1906 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:18, 10:38] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:33, 24:03](1964 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:19, 15:37] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:39, 03:37](673 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 02:35](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:26](1567 MB) -PASS -- TEST 'control_latlon_intel' [04:04, 02:24](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:04, 02:25](1568 MB) -PASS -- TEST 'control_c48_intel' [08:18, 06:02](1620 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:32, 05:16](735 MB) -PASS -- TEST 'control_c192_intel' [11:45, 09:08](1688 MB) -PASS -- TEST 'control_c384_intel' [15:37, 09:08](2011 MB) -PASS -- TEST 'control_c384gdas_intel' [15:56, 07:36](1195 MB) -PASS -- TEST 'control_stochy_intel' [02:39, 01:24](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:41, 00:51](436 MB) -PASS -- TEST 'control_lndp_intel' [02:40, 01:19](627 MB) -PASS -- TEST 'control_iovr4_intel' [03:49, 02:04](625 MB) -PASS -- TEST 'control_iovr5_intel' [03:47, 02:07](619 MB) -PASS -- TEST 'control_p8_intel' [06:29, 03:51](1864 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:46, 03:32](1873 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:47, 03:37](1864 MB) -PASS -- TEST 'control_restart_p8_intel' [04:15, 02:05](1015 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:37, 03:29](1861 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 02:11](1012 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:36, 03:43](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:36, 03:36](1951 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:26, 05:09](1868 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:34, 04:16](1924 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:42, 03:24](1876 MB) -PASS -- TEST 'merra2_thompson_intel' [06:23, 03:44](1868 MB) -PASS -- TEST 'regional_control_intel' [06:53, 05:17](872 MB) -PASS -- TEST 'regional_restart_intel' [04:58, 03:01](872 MB) -PASS -- TEST 'regional_decomp_intel' [06:53, 05:24](871 MB) -PASS -- TEST 'regional_noquilt_intel' [06:55, 05:09](1192 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:53, 05:03](872 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:58, 05:08](881 MB) -PASS -- TEST 'regional_wofs_intel' [06:53, 05:40](1607 MB) - -PASS -- COMPILE 'rrfs_intel' [14:19, 12:52] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:32, 06:16](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:48, 03:53](1197 MB) -PASS -- TEST 'rap_decomp_intel' [08:32, 06:34](1005 MB) -PASS -- TEST 'rap_2threads_intel' [08:32, 05:49](1099 MB) -PASS -- TEST 'rap_restart_intel' [05:08, 03:13](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:33, 06:17](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:35](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:09, 04:37](882 MB) -PASS -- TEST 'hrrr_control_intel' [05:15, 03:23](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:15, 03:17](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:15, 03:02](1088 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:47, 01:46](836 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:34, 06:11](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:11, 07:31](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:12, 07:04](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [12:19, 11:07] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:03, 06:36](965 MB) -PASS -- TEST 'control_ras_intel' [04:39, 03:05](659 MB) - -PASS -- COMPILE 'wam_intel' [11:18, 10:36] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:38, 11:36](1655 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:19, 17:02] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:44, 03:17](1870 MB) -PASS -- TEST 'regional_control_faster_intel' [06:56, 04:46](879 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:20, 12:12] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:07, 02:32](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:03, 02:31](1612 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:37, 02:50](812 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:38](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:56, 04:45](1123 MB) -PASS -- TEST 'control_ras_debug_intel' [04:31, 02:36](817 MB) -PASS -- TEST 'control_diag_debug_intel' [05:06, 02:33](1671 MB) -PASS -- TEST 'control_debug_p8_intel' [06:05, 03:51](1903 MB) -PASS -- TEST 'regional_debug_intel' [18:57, 17:18](927 MB) -PASS -- TEST 'rap_control_debug_intel' [06:31, 04:40](1192 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:33, 04:42](1189 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:43, 04:37](1190 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:38](1196 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:45, 05:06](1194 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:18, 05:03](1273 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:39, 04:54](1196 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:44, 04:50](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:38, 04:49](1193 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 04:42](1191 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:38](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:32, 04:54](1191 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:41, 07:56](1189 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:42, 04:33](1189 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:41, 05:26](1193 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:39, 05:01](1192 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:15, 08:02](1198 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:12, 06:43] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:22, 12:15](1699 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:13, 10:51] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:38, 04:03](1057 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:08, 06:17](879 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:43](879 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:24, 05:21](942 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:58, 03:00](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:08, 03:02](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 04:16](792 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:34, 01:32](774 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:19, 14:46] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:32, 02:03](1084 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:35, 00:56](1083 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:30, 01:06](972 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:21, 10:52] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:01, 03:53](910 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:17, 06:42] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:41, 04:27](1069 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:44, 04:25](1067 MB) -PASS -- TEST 'conus13km_debug_intel' [15:59, 13:47](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:08, 13:25](834 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:47, 07:53](1150 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:35, 13:35](1223 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:17, 06:28] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:45, 04:38](1094 MB) - -PASS -- COMPILE 'hafsw_intel' [19:19, 18:05] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:52, 04:31](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:09, 05:04](1069 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:47, 06:25](777 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:41, 11:20](799 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:00, 12:27](807 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:10, 04:38](476 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:39, 05:42](492 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:03, 02:15](391 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:51, 06:09](461 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:58, 03:17](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:17, 03:05](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:25, 03:48](589 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:12](429 MB) -PASS -- TEST 'gnv1_nested_intel' [07:35, 04:02](1714 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:17, 07:44] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:16, 12:05](636 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [27:23, 26:15] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:27, 07:22](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:01, 07:34](686 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:20, 19:19] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:57, 05:40](682 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:19, 15:25] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:02](750 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:38, 06:02](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:26, 16:52](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:19, 08:24] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:28](769 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:32](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:49, 02:19](649 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:39, 02:23](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:30, 02:27](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:42](768 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:35, 02:43](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:31](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:21, 05:46](698 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:01, 05:44](679 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:29](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:34, 03:52](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:39, 03:52](2035 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:19, 05:56] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:05](753 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:17, 08:15] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:36, 02:28](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:39] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:06](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:09, 01:03](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:44](453 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:19, 13:01] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:26, 03:54](1916 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:18, 11:40] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:32, 04:13](1899 MB) - -PASS -- COMPILE 'atml_intel' [15:21, 14:46] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:36, 06:45](1887 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:25, 06:20](1891 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:24, 03:38](1018 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:19, 09:25] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:13, 06:09](1936 MB) - -PASS -- COMPILE 'atmw_intel' [14:21, 13:42] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:20, 02:07](1890 MB) - -PASS -- COMPILE 'atmaero_intel' [13:18, 12:11] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:00, 04:32](3122 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 04:25](2993 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:34](3008 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:17, 07:29] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:32, 21:59](4530 MB) +PASS -- COMPILE 's2swa_32bit_intel' [55:29, 20:54] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:15, 05:37](3206 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [57:29, 22:54] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:20, 14:38](1910 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:17, 15:54](1933 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:12, 07:53](1077 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:51, 16:25](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [57:30, 22:55] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:19, 14:10](1905 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [47:48, 11:21] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:36, 22:39](1941 MB) + +PASS -- COMPILE 's2swa_intel' [54:30, 20:47] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [59:22, 06:21](3220 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:17, 06:15](3219 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:50, 04:05](3146 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:40, 06:14](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:09, 04:01](3179 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [30:17, 05:58](3734 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:20, 06:09](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:08, 05:08](3536 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:35, 06:19](3228 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:10, 09:37](3816 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:53, 06:24](3619 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:08, 10:20](4518 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:20, 06:59](4672 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [17:14, 06:07](3208 MB) + +PASS -- COMPILE 's2sw_intel' [53:29, 19:24] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:50, 04:45](1929 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:58, 05:06](1981 MB) + +PASS -- COMPILE 's2swa_debug_intel' [47:48, 11:18] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:00, 08:10](3304 MB) + +PASS -- COMPILE 's2sw_debug_intel' [46:29, 10:38] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [40:33, 05:56](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [51:29, 15:44] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:06, 04:46](1986 MB) + +PASS -- COMPILE 's2s_intel' [51:31, 15:45] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [44:37, 06:39](2886 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [39:38, 02:21](2893 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:18, 01:33](2311 MB) + +PASS -- COMPILE 's2swa_faster_intel' [07:45, 23:26] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:22, 06:16](3234 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [04:47, 21:33] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:01, 14:44](1924 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:05, 07:46](1103 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:48, 16:34](1894 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [53:44, 10:43] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:46, 24:35](1947 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [53:42, 13:46] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:37, 03:28](671 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:56, 02:26](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:19, 02:28](1563 MB) +PASS -- TEST 'control_latlon_intel' [05:57, 02:24](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:02, 02:26](1565 MB) +PASS -- TEST 'control_c48_intel' [09:04, 06:07](1573 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:40, 05:15](710 MB) +PASS -- TEST 'control_c192_intel' [11:40, 08:48](1679 MB) +PASS -- TEST 'control_c384_intel' [16:20, 08:53](1946 MB) +PASS -- TEST 'control_c384gdas_intel' [14:12, 07:10](1177 MB) +PASS -- TEST 'control_stochy_intel' [02:40, 01:27](622 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:43, 00:52](440 MB) +PASS -- TEST 'control_lndp_intel' [02:40, 01:22](621 MB) +PASS -- TEST 'control_iovr4_intel' [04:49, 02:06](617 MB) +PASS -- TEST 'control_iovr5_intel' [04:35, 02:06](622 MB) +PASS -- TEST 'control_p8_intel' [06:38, 03:02](1855 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:35, 03:04](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:34, 03:02](1850 MB) +PASS -- TEST 'control_restart_p8_intel' [04:14, 01:59](1003 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:17, 03:10](1855 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:13, 02:07](1002 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:16, 03:04](1844 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:27, 03:03](1936 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:13, 05:01](1853 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:33, 03:56](1909 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:34, 03:12](1866 MB) +PASS -- TEST 'merra2_thompson_intel' [06:30, 03:32](1861 MB) +PASS -- TEST 'regional_control_intel' [06:54, 04:54](865 MB) +PASS -- TEST 'regional_restart_intel' [04:50, 02:56](858 MB) +PASS -- TEST 'regional_decomp_intel' [06:53, 05:04](865 MB) +PASS -- TEST 'regional_noquilt_intel' [06:54, 04:45](1178 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 04:46](870 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:00, 04:51](864 MB) +PASS -- TEST 'regional_wofs_intel' [08:00, 05:39](1595 MB) + +PASS -- COMPILE 'rrfs_intel' [51:40, 12:30] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:20, 06:10](1004 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:43, 03:42](1163 MB) +PASS -- TEST 'rap_decomp_intel' [11:20, 06:24](1002 MB) +PASS -- TEST 'rap_2threads_intel' [10:28, 05:42](1092 MB) +PASS -- TEST 'rap_restart_intel' [05:13, 03:15](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:21, 06:07](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:22, 06:25](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:12, 04:36](875 MB) +PASS -- TEST 'hrrr_control_intel' [14:14, 03:12](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [14:14, 03:21](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:17, 02:47](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:41, 01:46](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:28, 06:00](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:53, 07:26](1952 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:53, 07:12](1944 MB) + +PASS -- COMPILE 'csawmg_intel' [48:41, 11:24] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [12:09, 06:27](957 MB) +PASS -- TEST 'control_ras_intel' [07:34, 02:54](656 MB) + +PASS -- COMPILE 'wam_intel' [47:39, 11:09] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:16, 10:10](1655 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [47:40, 11:38] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [13:32, 02:49](1853 MB) +PASS -- TEST 'regional_control_faster_intel' [07:02, 04:43](859 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [47:40, 13:52] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:12, 02:34](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:15, 02:33](1612 MB) +PASS -- TEST 'control_stochy_debug_intel' [11:39, 02:54](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [10:39, 02:37](807 MB) +PASS -- TEST 'control_csawmg_debug_intel' [13:11, 04:32](1114 MB) +PASS -- TEST 'control_ras_debug_intel' [10:38, 02:39](815 MB) +PASS -- TEST 'control_diag_debug_intel' [11:41, 02:39](1662 MB) +PASS -- TEST 'control_debug_p8_intel' [12:14, 03:27](1902 MB) +PASS -- TEST 'regional_debug_intel' [19:04, 16:31](915 MB) +PASS -- TEST 'rap_control_debug_intel' [13:40, 04:54](1186 MB) +PASS -- TEST 'hrrr_control_debug_intel' [12:49, 04:37](1184 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 04:42](1188 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:43](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:42, 04:40](1186 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:05, 04:59](1269 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:31, 04:46](1188 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:33, 04:44](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:46, 04:44](1192 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:41, 04:44](1192 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:36, 04:43](1185 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:40, 04:47](1185 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:31](1184 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:37, 04:36](1185 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:43, 05:32](1189 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:41, 04:44](1188 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:09, 07:57](1191 MB) + +PASS -- COMPILE 'wam_debug_intel' [40:35, 07:01] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [13:57, 12:22](1684 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:23, 11:10] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:46, 03:28](1016 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:06, 05:07](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:04, 02:46](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:09, 04:46](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:12, 02:24](935 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:19, 02:53](876 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 03:54](793 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:48, 01:32](778 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:30, 11:02] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:48, 01:53](1075 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:33, 00:58](1071 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:33, 01:06](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [24:24, 11:07] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:13, 03:39](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [20:22, 07:22] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 04:38](1062 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:27](1060 MB) +PASS -- TEST 'conus13km_debug_intel' [15:35, 13:28](1147 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:24, 13:39](826 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:29, 07:50](1140 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:28, 13:52](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [18:26, 07:00] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:39, 04:35](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [29:23, 17:09] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:31, 04:33](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:59, 05:02](1047 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:03, 06:26](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:24, 10:58](766 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:41, 12:10](797 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:35, 04:39](460 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:44, 05:41](477 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:06, 02:17](383 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:35, 06:05](452 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:03, 03:17](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 03:03](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:21, 03:48](570 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:33, 01:13](421 MB) +PASS -- TEST 'gnv1_nested_intel' [07:33, 04:12](1701 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [18:20, 08:24] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:39, 12:00](625 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [27:22, 16:52] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:19, 07:10](614 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:27, 07:14](674 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [23:22, 18:17] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:26, 05:23](668 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:15, 15:31] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:46, 05:41](740 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:53, 05:44](722 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:07](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:17, 08:10] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:44, 02:28](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:25, 01:32](759 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:35, 02:21](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:31, 02:24](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:44, 02:25](648 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:43, 02:28](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:38, 02:29](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:38, 02:19](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:52, 05:43](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:18, 05:42](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:29](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 03:54](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:30, 03:53](2035 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:17, 05:37] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:27, 05:10](752 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:22, 08:15] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:29](756 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:17, 02:37] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:44, 01:09](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 01:05](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:41, 00:45](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:19, 13:16] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:38, 03:50](1902 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:18, 12:14] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:30, 03:45](1898 MB) + +PASS -- COMPILE 'atml_intel' [15:19, 14:17] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:37, 07:14](1883 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:40, 07:06](1878 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:12, 04:13](1033 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:18, 10:26] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:35, 06:24](1919 MB) + +PASS -- COMPILE 'atmw_intel' [14:20, 13:22] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:22, 02:21](1875 MB) + +PASS -- COMPILE 'atmaero_intel' [13:18, 12:37] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:48, 04:12](3122 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:46, 04:19](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:12, 04:23](3007 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:19, 07:52] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:13, 21:53](4538 MB) SYNOPSIS: -Starting Date/Time: 20240805 06:52:14 -Ending Date/Time: 20240805 08:28:48 -Total Time: 01h:37m:26s +Starting Date/Time: 20240806 14:30:46 +Ending Date/Time: 20240806 18:20:14 +Total Time: 03h:50m:18s Compiles Completed: 41/41 -Tests Completed: 183/184 -Failed Tests: -* TEST cpld_debug_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/work/zshrader/rt-2370/tests/logs/log_derecho/run_cpld_debug_gfsv17_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_6646 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [55:26, 11:41] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:07, 22:28](1944 MB) - -SYNOPSIS: -Starting Date/Time: 20240805 12:17:56 -Ending Date/Time: 20240805 13:42:51 -Total Time: 01h:25m:29s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 184/184 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index d1fb44cf8b..0b77498111 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,31 +1,361 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +b40a0f095bb14723f1a8be990d19a22972f356d6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240806 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_214339 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [22:12, 21:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:04, 07:24](3207 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:15, 25:07] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:40, 14:00](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:38, 14:59](1935 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:31, 07:46](1072 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:40, 14:58](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:12, 25:03] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:47, 13:49](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:15, 15:52] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:59, 25:08](1939 MB) + +PASS -- COMPILE 's2swa_intel' [22:12, 21:58] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:54, 08:27](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:56, 08:28](3221 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:58, 05:12](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:54, 08:31](3247 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:56, 05:14](3172 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:36, 06:56](3460 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:43, 08:26](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:56, 07:26](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:05, 08:29](3223 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:11, 10:34](3453 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:43, 08:21](3604 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:36, 13:10](4209 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:04, 09:17](4360 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:56, 08:00](3211 MB) + +PASS -- COMPILE 's2sw_intel' [21:16, 20:08] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:40, 06:02](1929 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:50, 06:45](1996 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:11, 16:28] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:38, 09:58](3280 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:15, 15:53] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:11, 06:36](1954 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [20:11, 18:38] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:40, 05:32](1993 MB) + +PASS -- COMPILE 's2s_intel' [19:11, 19:04] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:14, 06:29](2870 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:27, 01:56](2877 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:18, 01:08](2288 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:17, 22:16] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:50, 08:41](3223 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:14, 24:56] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:44, 16:17](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:41, 08:00](1085 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:41, 17:58](1903 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:15, 16:58] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:30, 26:56](1959 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:16, 16:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:45, 03:54](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:47, 03:12](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:27, 03:12](1565 MB) +PASS -- TEST 'control_latlon_intel' [05:45, 03:08](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:17, 03:09](1563 MB) +PASS -- TEST 'control_c48_intel' [09:15, 06:32](1561 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:48, 05:51](696 MB) +PASS -- TEST 'control_c192_intel' [12:52, 10:11](1671 MB) +PASS -- TEST 'control_c384_intel' [21:09, 18:34](1927 MB) +PASS -- TEST 'control_c384gdas_intel' [18:37, 14:35](1151 MB) +PASS -- TEST 'control_stochy_intel' [02:48, 02:04](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:31, 01:03](425 MB) +PASS -- TEST 'control_lndp_intel' [02:51, 01:51](618 MB) +PASS -- TEST 'control_iovr4_intel' [03:54, 02:41](616 MB) +PASS -- TEST 'control_iovr5_intel' [03:54, 02:43](616 MB) +PASS -- TEST 'control_p8_intel' [07:38, 03:26](1849 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:50, 03:32](1848 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:42, 03:21](1852 MB) +PASS -- TEST 'control_restart_p8_intel' [04:18, 02:17](996 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:38, 03:26](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:15, 01:47](1013 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:30, 03:21](1849 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:13, 02:51](1926 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:50, 05:46](1849 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:30, 04:15](1905 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:27, 03:44](1863 MB) +PASS -- TEST 'merra2_thompson_intel' [06:11, 04:09](1856 MB) +PASS -- TEST 'regional_control_intel' [06:11, 05:05](848 MB) +PASS -- TEST 'regional_restart_intel' [03:38, 02:33](847 MB) +PASS -- TEST 'regional_decomp_intel' [06:53, 04:52](851 MB) +PASS -- TEST 'regional_2threads_intel' [05:00, 02:55](989 MB) +PASS -- TEST 'regional_noquilt_intel' [06:24, 04:39](1175 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:23, 04:33](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:00, 04:39](832 MB) +PASS -- TEST 'regional_wofs_intel' [06:45, 06:07](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [17:16, 16:46] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:08, 07:04](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:15, 04:10](1152 MB) +PASS -- TEST 'rap_decomp_intel' [10:19, 07:13](1007 MB) +PASS -- TEST 'rap_2threads_intel' [08:41, 06:18](1087 MB) +PASS -- TEST 'rap_restart_intel' [06:53, 03:28](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:24, 06:57](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:07, 07:37](1004 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:13, 04:58](877 MB) +PASS -- TEST 'hrrr_control_intel' [05:14, 03:55](1001 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:04, 03:54](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:01, 03:14](1081 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:42, 01:59](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:34, 06:45](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:34, 08:38](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:37, 07:54](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [16:16, 15:46] +PASS -- TEST 'control_csawmg_intel' [07:42, 06:47](958 MB) +PASS -- TEST 'control_ras_intel' [05:20, 03:33](654 MB) + +PASS -- COMPILE 'wam_intel' [16:11, 15:58] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:19, 12:04](1649 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:35] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:30, 03:11](1846 MB) +PASS -- TEST 'regional_control_faster_intel' [05:44, 04:35](844 MB) + +FAILED: UNABLE TO FINISH COMPILE -- COMPILE 'atm_debug_dyn32_intel' [, ] +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_stochy_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_lndp_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_csawmg_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_ras_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_diag_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_debug_p8_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'regional_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_control_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'hrrr_control_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'hrrr_gf_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'hrrr_c3_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_unified_drag_suite_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_diag_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_unified_ugwp_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_lndp_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_progcld_thompson_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_noah_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_sfcdiff_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rrfs_v1beta_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_clm_lake_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_flake_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'gnv1_c96_no_nest_debug_intel' [, ]( MB) + +PASS -- COMPILE 'wam_debug_intel' [12:12, 11:29] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:17, 13:32](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 13:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:18, 04:13](1010 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:15, 05:48](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:05, 03:32](875 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:13, 05:06](932 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:11, 02:53](922 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:07, 03:33](875 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:12, 04:24](774 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 01:41](757 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 15:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:05, 02:36](1086 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:21, 01:10](1062 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:27, 01:26](963 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:15, 14:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:21](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:14, 10:47] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 05:07](1051 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 05:46](1052 MB) +PASS -- TEST 'conus13km_debug_intel' [17:52, 14:11](1136 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:27, 15:08](807 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:14, 08:36](1115 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:15, 15:06](1200 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:15, 13:11] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:40, 05:22](1079 MB) + +PASS -- COMPILE 'hafsw_intel' [20:11, 19:57] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:37, 05:31](685 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:00, 04:41](1034 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:03, 07:57](725 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:41, 11:48](762 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:30, 12:52](781 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:32, 05:30](462 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 06:50](482 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:37, 03:06](368 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:20, 08:05](429 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:19, 04:01](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:37, 03:38](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:27, 04:59](557 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:49, 01:53](399 MB) +PASS -- TEST 'gnv1_nested_intel' [09:16, 06:00](1706 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:11, 14:43] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:26, 13:10](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:14, 18:59] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:40, 07:48](605 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:33, 07:51](777 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:12, 20:45] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:28, 06:08](776 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:12, 19:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:25, 06:19](720 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 06:25](705 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:19, 20:07](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:13, 14:50] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:28, 02:34](761 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:34, 01:35](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:27](638 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:34, 02:27](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:33, 02:36](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:35, 02:37](750 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:28](638 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:50, 06:12](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:51, 06:03](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:23, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:29, 04:40](2028 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:58, 04:42](2028 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:11, 10:26] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:35, 05:31](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [16:13, 15:09] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:27, 02:34](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:20, 04:43] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:11, 01:59](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:10, 01:38](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:50, 01:04](456 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:18, 17:19] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:38, 05:07](1910 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:12, 14:33] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:16](1897 MB) + +PASS -- COMPILE 'atml_intel' [17:16, 16:20] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:47, 07:20](1881 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:47, 07:20](1881 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 04:17](1031 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:16, 12:26] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:33, 06:42](1921 MB) + +PASS -- COMPILE 'atmw_intel' [16:14, 15:50] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:11, 02:24](1883 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 14:54] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:32, 06:19](3117 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 06:44](3008 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:29, 06:48](3018 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:11, 11:10] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:39, 18:18](4492 MB) + +SYNOPSIS: +Starting Date/Time: 20240806 23:36:46 +Ending Date/Time: 20240807 01:14:37 +Total Time: 01h:38m:56s +Compiles Completed: 40/41 +Tests Completed: 159/185 +Failed Compiles: +* COMPILE atm_debug_dyn32_intel: FAILED: UNABLE TO FINISH COMPILE +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2183/ufs-weather-model/tests/logs/log_gaea/compile_atm_debug_dyn32_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF GAEA REGRESSION TESTING LOG==== +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +43fce6b201a8bffe7e346b1dfb5c724bfc053722 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,286 +366,47 @@ 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-20240730 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_84360 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233535 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:13, 16:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:36, 07:11](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 22:51] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [46:50, 14:11](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:37, 15:26](1952 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:30, 07:33](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:34, 15:02](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:16, 23:21] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [50:01, 13:27](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:13, 11:34] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:34, 24:13](1937 MB) - -PASS -- COMPILE 's2swa_intel' [18:13, 17:51] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [28:26, 07:57](3230 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:26, 07:50](3226 MB) -PASS -- TEST 'cpld_restart_p8_intel' [31:53, 05:32](3159 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [39:23, 07:56](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [21:29, 05:21](3181 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [34:00, 06:30](3461 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [38:13, 07:45](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [38:13, 07:01](3171 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [39:32, 07:59](3229 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [43:21, 10:16](3447 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [20:25, 07:44](3609 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [47:39, 12:43](4213 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:43, 09:49](4366 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [36:10, 07:42](3222 MB) - -PASS -- COMPILE 's2sw_intel' [16:13, 15:49] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:28, 05:11](1937 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:49, 05:12](1996 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:12, 11:07] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:38, 09:54](3277 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:12, 10:51] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:58](1956 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:13, 14:29] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:39, 05:19](1989 MB) - -PASS -- COMPILE 's2s_intel' [15:13, 14:10] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:16, 06:32](2929 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [09:14, 01:59](2938 MB) -PASS -- TEST 'cpld_restart_c48_intel' [38:37, 01:08](2349 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:13, 25:54] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [40:45, 07:49](3229 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:14, 21:28] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:04, 15:31](1936 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:51, 07:48](1096 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:04, 17:52](1913 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:14, 13:09] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [06:30, 26:57](1959 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:13, 14:52] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [40:37, 03:46](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [26:57, 03:00](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [24:32, 03:16](1576 MB) -PASS -- TEST 'control_latlon_intel' [20:43, 03:12](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:21, 03:23](1569 MB) -PASS -- TEST 'control_c48_intel' [23:00, 06:34](1600 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [20:54, 05:40](719 MB) -PASS -- TEST 'control_c192_intel' [19:47, 10:03](1682 MB) -PASS -- TEST 'control_c384_intel' [26:18, 18:21](1984 MB) -PASS -- TEST 'control_c384gdas_intel' [22:10, 14:22](1179 MB) -PASS -- TEST 'control_stochy_intel' [08:31, 01:55](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:33, 01:03](426 MB) -PASS -- TEST 'control_lndp_intel' [08:31, 01:42](622 MB) -PASS -- TEST 'control_iovr4_intel' [08:28, 02:37](620 MB) -PASS -- TEST 'control_iovr5_intel' [08:31, 02:39](620 MB) -PASS -- TEST 'control_p8_intel' [09:08, 03:17](1867 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:09, 03:21](1868 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:14, 03:16](1869 MB) -PASS -- TEST 'control_restart_p8_intel' [04:17, 02:10](1012 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:04, 03:15](1862 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 02:41](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:01, 03:19](1859 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:21, 02:49](1949 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:20, 05:12](1867 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:27, 04:13](1920 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:42, 03:22](1865 MB) -PASS -- TEST 'merra2_thompson_intel' [06:37, 03:36](1866 MB) -PASS -- TEST 'regional_control_intel' [06:47, 04:50](858 MB) -PASS -- TEST 'regional_restart_intel' [04:42, 03:00](860 MB) -PASS -- TEST 'regional_decomp_intel' [06:46, 05:00](860 MB) -PASS -- TEST 'regional_2threads_intel' [03:43, 03:02](999 MB) -PASS -- TEST 'regional_noquilt_intel' [05:43, 04:35](1177 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:51, 04:43](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:38, 04:46](858 MB) -PASS -- TEST 'regional_wofs_intel' [07:38, 06:11](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [14:12, 13:22] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [47:55, 06:59](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [43:20, 04:05](1179 MB) -PASS -- TEST 'rap_decomp_intel' [47:54, 07:11](1007 MB) -PASS -- TEST 'rap_2threads_intel' [47:54, 06:02](1100 MB) -PASS -- TEST 'rap_restart_intel' [05:51, 03:26](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [47:53, 06:49](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [47:54, 07:13](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 05:05](877 MB) -PASS -- TEST 'hrrr_control_intel' [44:22, 03:56](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [43:29, 03:51](1003 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [43:29, 03:07](1082 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:10, 02:10](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [47:58, 06:45](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [48:02, 08:20](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [46:56, 08:01](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 12:58] -PASS -- TEST 'control_csawmg_intel' [07:43, 06:39](966 MB) -PASS -- TEST 'control_ras_intel' [04:30, 03:35](659 MB) - -PASS -- COMPILE 'wam_intel' [13:13, 12:48] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:26, 12:36](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:17, 19:29] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:16, 03:33](1867 MB) -PASS -- TEST 'regional_control_faster_intel' [07:50, 05:14](856 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:45] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:06, 04:04](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:06, 03:51](1593 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:45](799 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:27, 03:36](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:39, 05:07](1110 MB) -PASS -- TEST 'control_ras_debug_intel' [04:28, 03:25](805 MB) -PASS -- TEST 'control_diag_debug_intel' [05:43, 03:55](1663 MB) -PASS -- TEST 'control_debug_p8_intel' [05:42, 03:59](1894 MB) -PASS -- TEST 'regional_debug_intel' [18:55, 16:38](893 MB) -PASS -- TEST 'rap_control_debug_intel' [07:33, 05:23](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:55, 04:59](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:44, 05:16](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:29, 05:04](1181 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:32, 05:20](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:16](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 05:10](1184 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:33, 05:16](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:30, 05:06](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 05:17](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:31, 05:04](1179 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:32, 05:13](1181 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:33, 08:18](1179 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:51, 05:05](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 05:57](1186 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:36, 05:19](1184 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:10, 08:26](1184 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:12, 08:04] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:29, 13:49](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:53, 03:55](1052 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:04, 05:45](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:39, 03:20](883 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:14, 05:09](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:41, 02:49](938 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:42, 03:40](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:11, 04:27](784 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:40, 02:13](766 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:12, 16:16] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:13, 02:32](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:16, 01:15](1078 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:20, 01:45](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:19, 04:33](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:14, 08:26] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 05:29](1059 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 05:22](1059 MB) -PASS -- TEST 'conus13km_debug_intel' [16:21, 14:40](1139 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:14, 15:19](819 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:13, 09:14](1127 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:40, 14:59](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:12, 08:28] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:35, 05:39](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [17:12, 15:21] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:49, 06:05](705 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:11, 05:20](1056 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:25, 07:46](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:52, 11:56](786 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:49, 12:52](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:31, 05:31](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:04, 06:58](494 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:25, 02:57](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:38, 08:19](437 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 03:56](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:16, 03:48](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:42, 04:50](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:45, 01:43](403 MB) -PASS -- TEST 'gnv1_nested_intel' [09:18, 06:15](1717 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:11, 10:12] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:21, 13:13](600 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:12, 23:21] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:15, 07:49](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:27, 07:56](783 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 15:28] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:41, 06:11](781 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:12, 14:51] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:26, 06:16](740 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:18, 06:19](727 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:20, 20:06](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:11, 12:47] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:45, 02:39](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:48, 01:35](740 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 02:32](647 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:27, 02:30](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:27, 02:41](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:31, 02:41](750 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 02:43](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 02:42](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:06, 06:32](691 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 06:08](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:37, 02:34](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:30, 04:41](2029 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:29, 04:45](2028 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 08:29] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:32, 05:26](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:12, 12:54] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:34](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:23] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:59, 01:48](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:58, 01:24](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:48, 00:59](456 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:56] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:42, 04:14](1923 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:13, 12:33] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:45, 04:08](1912 MB) - -PASS -- COMPILE 'atml_intel' [15:12, 14:46] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:50, 08:09](1895 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:43, 08:28](1895 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:03, 03:50](1043 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:12, 09:26] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:05, 06:19](1929 MB) - -PASS -- COMPILE 'atmw_intel' [15:15, 13:04] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:39, 02:38](1898 MB) - -PASS -- COMPILE 'atmaero_intel' [13:14, 12:36] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:49, 06:16](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:25, 06:59](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 06:46](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:14, 08:59] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:47, 18:12](4484 MB) +PASS -- COMPILE 'atm_debug_dyn32_intel' [41:24, 41:03] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:37, 03:00](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:36, 03:13](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:44, 03:17](795 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:04, 02:52](794 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:19, 04:37](1098 MB) +PASS -- TEST 'control_ras_debug_intel' [05:04, 02:53](801 MB) +PASS -- TEST 'control_diag_debug_intel' [10:23, 03:16](1652 MB) +PASS -- TEST 'control_debug_p8_intel' [10:21, 03:27](1887 MB) +PASS -- TEST 'regional_debug_intel' [23:19, 17:06](889 MB) +PASS -- TEST 'rap_control_debug_intel' [10:04, 05:39](1178 MB) +PASS -- TEST 'hrrr_control_debug_intel' [11:04, 05:29](1173 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [12:09, 05:53](1177 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [12:09, 05:46](1177 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:05, 05:08](1179 MB) +PASS -- TEST 'rap_diag_debug_intel' [14:16, 05:20](1261 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:08, 05:31](1176 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [11:08, 05:46](1182 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:05, 05:10](1182 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:09, 05:43](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:05, 04:56](1176 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:05, 05:23](1180 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:09, 08:04](1174 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:05, 05:37](1170 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [12:09, 06:14](1181 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:09, 05:42](1179 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:38, 09:20](1179 MB) SYNOPSIS: -Starting Date/Time: 20240804 20:14:23 -Ending Date/Time: 20240804 22:26:43 -Total Time: 02h:13m:20s -Compiles Completed: 41/41 -Tests Completed: 185/185 +Starting Date/Time: 20240807 15:32:30 +Ending Date/Time: 20240807 16:39:53 +Total Time: 01h:07m:48s +Compiles Completed: 1/1 +Tests Completed: 26/26 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index ea1be17918..29aadba024 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,20 +1,20 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +b40a0f095bb14723f1a8be990d19a22972f356d6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -24,433 +24,377 @@ 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2958009 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240806 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_763542 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:13, 14:05] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:05, 05:41](3320 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:14, 16:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:04, 17:37](1979 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:20, 18:18](2163 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:12, 08:15](1259 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:02, 19:30](1876 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 17:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:39, 17:02](1973 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:12, 06:13] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:00, 22:50](1936 MB) - -PASS -- COMPILE 's2swa_intel' [15:13, 14:17] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:09, 05:55](3344 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:19, 05:52](3356 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:21, 03:38](3255 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:09, 05:58](3351 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:21, 03:33](3289 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:05, 05:34](3622 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:05, 05:56](3326 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:08, 04:50](3228 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:16, 05:55](3336 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:17, 10:13](3534 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:48, 06:21](3642 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:39, 10:16](4336 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:55, 06:23](4389 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:09, 06:18](3337 MB) - -PASS -- COMPILE 's2sw_intel' [14:13, 13:35] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:11, 04:52](1955 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:13, 04:35](2058 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:12, 06:14] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:07, 08:32](3392 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:12, 05:36] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:09, 05:52](2034 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:13, 12:44] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:03, 04:22](2031 MB) - -PASS -- COMPILE 's2s_intel' [13:13, 12:42] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:44, 09:17](3099 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:44, 02:51](3074 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:45, 01:34](2548 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:13, 18:05] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:16, 05:50](3343 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:20] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:13, 17:40](2016 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:14, 08:31](1286 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:10, 20:03](1920 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:34] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:57, 24:57](1972 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:12, 12:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:28, 03:19](705 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:50, 02:58](1604 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:53, 02:57](1610 MB) -PASS -- TEST 'control_latlon_intel' [03:44, 03:00](1597 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:50, 02:55](1609 MB) -PASS -- TEST 'control_c48_intel' [08:45, 07:30](1765 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 06:26](871 MB) -PASS -- TEST 'control_c192_intel' [12:03, 10:29](1754 MB) -PASS -- TEST 'control_c384_intel' [13:05, 10:30](2024 MB) -PASS -- TEST 'control_c384gdas_intel' [11:00, 08:00](1376 MB) -PASS -- TEST 'control_stochy_intel' [02:27, 01:40](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:28, 00:58](506 MB) -PASS -- TEST 'control_lndp_intel' [02:25, 01:38](666 MB) -PASS -- TEST 'control_iovr4_intel' [03:27, 02:29](659 MB) -PASS -- TEST 'control_iovr5_intel' [03:28, 02:28](658 MB) -PASS -- TEST 'control_p8_intel' [03:59, 03:05](1899 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:09, 03:07](1900 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:05, 03:14](1901 MB) -PASS -- TEST 'control_restart_p8_intel' [02:48, 01:45](1143 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:51, 03:01](1904 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:45](1164 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:51, 03:17](1884 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:49, 03:09](1987 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:45, 05:19](1896 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:54, 04:46](1924 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:55, 03:10](1911 MB) -PASS -- TEST 'merra2_thompson_intel' [04:52, 03:22](1907 MB) -PASS -- TEST 'regional_control_intel' [06:37, 05:38](1094 MB) -PASS -- TEST 'regional_restart_intel' [03:39, 02:55](1099 MB) -PASS -- TEST 'regional_decomp_intel' [06:36, 05:35](1090 MB) -PASS -- TEST 'regional_2threads_intel' [04:35, 03:24](1096 MB) -PASS -- TEST 'regional_noquilt_intel' [06:45, 05:15](1402 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:16](1100 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 05:20](1092 MB) -PASS -- TEST 'regional_wofs_intel' [07:37, 06:53](1916 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 11:10] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:55, 07:57](1112 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 04:09](1305 MB) -PASS -- TEST 'rap_decomp_intel' [09:41, 08:07](1036 MB) -PASS -- TEST 'rap_2threads_intel' [08:37, 07:15](1180 MB) -PASS -- TEST 'rap_restart_intel' [04:45, 04:01](1096 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:44, 07:42](1102 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 08:04](1039 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:45, 05:50](1137 MB) -PASS -- TEST 'hrrr_control_intel' [04:44, 03:58](1048 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:36, 04:05](1039 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:36, 03:38](1112 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:09](1004 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:47, 07:35](1097 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:27](1994 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:34, 09:18](2063 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 10:42] -PASS -- TEST 'control_csawmg_intel' [06:40, 06:06](1030 MB) -PASS -- TEST 'control_ras_intel' [04:24, 03:14](741 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:20] -PASS -- TEST 'control_csawmg_gnu' [09:42, 08:18](761 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 11:00] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:51, 10:58](1673 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 15:05] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:52, 02:45](1884 MB) -PASS -- TEST 'regional_control_faster_intel' [05:35, 04:51](1100 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:22] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:54, 02:48](1632 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:58, 02:44](1629 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:31, 03:00](839 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:30, 02:44](834 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:49, 04:29](1151 MB) -PASS -- TEST 'control_ras_debug_intel' [03:30, 02:49](844 MB) -PASS -- TEST 'control_diag_debug_intel' [04:00, 02:56](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [04:54, 03:09](1926 MB) -PASS -- TEST 'regional_debug_intel' [18:50, 17:58](1113 MB) -PASS -- TEST 'rap_control_debug_intel' [05:32, 04:55](1219 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:36, 04:50](1216 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:36, 04:59](1227 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:36, 04:59](1225 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:32, 05:01](1224 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:47, 05:15](1306 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:31, 05:10](1224 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 05:06](1220 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:31, 04:59](1221 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:35, 04:58](1215 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:33, 04:54](1219 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:26, 04:58](1224 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:12](1221 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 05:00](1218 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 05:53](1227 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:58](1224 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:43](1223 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:46] -PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:20](735 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:12, 04:15] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:48, 13:37](1702 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 10:43] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:10, 03:56](1163 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:35, 06:25](1056 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:24](995 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:38, 06:06](1093 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 03:09](966 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:38, 03:37](936 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:44, 04:51](1031 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:51](932 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:12, 13:41] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:00, 02:06](1206 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:50, 00:53](1130 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:15](1115 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 11:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:11](987 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:06] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1096 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:53](1101 MB) -PASS -- TEST 'conus13km_debug_intel' [15:53, 14:39](1244 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:38](951 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:09](1182 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:53](1313 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:00] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 04:56](1142 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 12:32] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:20, 04:59](741 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:33, 05:52](1118 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:51](845 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 13:32](872 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:34, 15:13](892 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:57, 05:29](508 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:43](519 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:48, 02:41](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 07:11](492 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:43](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:52, 03:34](537 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:53, 04:05](593 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:10](409 MB) -PASS -- TEST 'gnv1_nested_intel' [06:38, 04:10](1753 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:21] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:53, 13:04](593 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:13, 16:15] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:03, 08:47](681 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 08:58](750 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:12, 12:08] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:05, 06:24](739 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 11:48] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:20](836 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:20, 06:26](827 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:59, 16:17](1212 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:43] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 03:10](1154 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:24, 01:44](1103 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:38](1032 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:39](1014 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:45](1018 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:20, 02:42](1168 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:42](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:37](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:39, 06:26](1067 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:35, 06:18](1046 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:59](1145 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:22, 03:56](2519 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:56](2468 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:26] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:36](1073 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:44] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:49](1163 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:31] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:33, 00:51](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:55](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:35](323 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:48] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:11, 03:44](1982 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 10:59] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:09, 03:39](1977 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 12:27] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:10, 04:20](1866 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:06, 04:23](1875 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:28](1095 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:13, 04:57] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:49](1897 MB) - -PASS -- COMPILE 'atmw_intel' [11:12, 11:07] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:56](1931 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 11:16] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:01, 04:21](3200 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 04:55](3113 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:52, 05:01](3121 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:55] ( 884 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [05:12, 04:50] -PASS -- TEST 'control_c48_gnu' [12:41, 11:17](1541 MB) -PASS -- TEST 'control_stochy_gnu' [04:25, 03:28](503 MB) -PASS -- TEST 'control_ras_gnu' [05:24, 04:51](502 MB) -PASS -- TEST 'control_p8_gnu' [06:01, 04:49](1460 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:54, 04:44](1462 MB) -PASS -- TEST 'control_flake_gnu' [11:27, 10:23](545 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:44] -PASS -- TEST 'rap_control_gnu' [11:35, 11:06](855 MB) -PASS -- TEST 'rap_decomp_gnu' [11:33, 10:54](853 MB) -PASS -- TEST 'rap_2threads_gnu' [10:41, 09:49](931 MB) -PASS -- TEST 'rap_restart_gnu' [06:44, 05:33](575 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:40, 10:57](816 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:36, 11:00](812 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:47, 08:05](577 MB) -PASS -- TEST 'hrrr_control_gnu' [06:36, 05:36](811 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:35, 05:35](801 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:39, 05:05](917 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:38, 05:41](843 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:34, 03:00](565 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:34, 02:58](655 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:29](811 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:35] -PASS -- TEST 'control_diag_debug_gnu' [02:54, 01:43](1274 MB) -PASS -- TEST 'regional_debug_gnu' [12:45, 11:38](714 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:24, 02:45](824 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:25, 02:36](820 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:26, 02:39](828 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:23, 02:38](827 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:39, 02:50](906 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:08](819 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:25, 02:54](825 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:23, 02:51](819 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:23, 01:45](491 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:27, 01:49](449 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:47, 01:47](1438 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:25, 02:38](827 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:57](828 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:27](831 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:36] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:10] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:34, 09:16](708 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:37, 05:00](709 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:45, 08:33](756 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:35, 04:31](747 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 05:05](705 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:43, 06:57](548 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:32, 02:35](540 MB) -PASS -- TEST 'conus13km_control_gnu' [04:57, 03:18](877 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:51, 06:08](879 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:52, 01:54](556 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 11:02] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](732 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:46] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 02:38](716 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:24, 02:37](712 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:53, 07:01](894 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:49, 07:03](579 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:45, 07:54](901 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:45, 06:59](960 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:47] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:28, 02:43](737 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:31] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:14] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:12, 07:20](1533 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:19] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:56] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:01, 19:44](1463 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:07] -FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:39] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:22, 03:28](680 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:12, 12:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:21, 05:41](3286 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:24] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:05, 17:29](1957 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:22, 18:11](2132 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:17, 08:23](1217 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:04, 19:30](1856 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:46, 17:15](1936 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:12, 05:44] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:02, 23:32](1888 MB) + +PASS -- COMPILE 's2swa_intel' [13:12, 12:22] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:21, 06:00](3315 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:26, 06:02](3316 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:28, 03:36](3219 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:17, 05:58](3344 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:31, 03:35](3246 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:11, 05:38](3606 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:17, 06:01](3306 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:15, 04:52](3192 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:26, 05:55](3320 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:13, 10:28](3503 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:06, 06:23](3600 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:49, 09:33](4265 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:54, 06:07](4356 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:19, 05:31](3294 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 11:47] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:11, 04:55](1957 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:15, 04:26](2035 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:12, 05:43] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:05, 08:37](3319 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:39] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:57, 05:51](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:12, 10:53] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:04, 04:24](2033 MB) + +PASS -- COMPILE 's2s_intel' [12:12, 11:11] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:42, 09:08](3031 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:43](3018 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:38](2450 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:12, 16:35] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:21, 05:32](3319 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:19] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:13, 17:34](1988 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:24](1246 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:22, 20:01](1886 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:28] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:11, 25:51](1921 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:12, 10:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:26, 03:21](679 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:44, 02:57](1583 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:49, 02:59](1591 MB) +PASS -- TEST 'control_latlon_intel' [06:40, 02:54](1578 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:48, 02:57](1586 MB) +PASS -- TEST 'control_c48_intel' [08:45, 07:38](1693 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:29, 06:32](831 MB) +PASS -- TEST 'control_c192_intel' [14:04, 10:46](1737 MB) +PASS -- TEST 'control_c384_intel' [13:05, 10:59](1943 MB) +PASS -- TEST 'control_c384gdas_intel' [11:22, 08:07](1355 MB) +PASS -- TEST 'control_stochy_intel' [02:24, 01:39](638 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:06](477 MB) +PASS -- TEST 'control_lndp_intel' [02:27, 01:37](640 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:28](631 MB) +PASS -- TEST 'control_iovr5_intel' [03:26, 02:30](629 MB) +PASS -- TEST 'control_p8_intel' [04:57, 03:08](1880 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:01, 03:06](1864 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:57, 03:00](1872 MB) +PASS -- TEST 'control_restart_p8_intel' [02:52, 01:48](1106 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:56, 03:06](1865 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:48](1145 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:51, 03:10](1862 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:47, 02:54](1938 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:42, 05:28](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:55, 04:07](1928 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:58, 03:09](1874 MB) +PASS -- TEST 'merra2_thompson_intel' [04:51, 03:40](1874 MB) +PASS -- TEST 'regional_control_intel' [06:44, 05:23](1073 MB) +PASS -- TEST 'regional_restart_intel' [03:43, 02:53](1067 MB) +PASS -- TEST 'regional_decomp_intel' [06:39, 05:41](1067 MB) +PASS -- TEST 'regional_2threads_intel' [04:39, 03:27](1056 MB) +PASS -- TEST 'regional_noquilt_intel' [06:42, 05:18](1370 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:25](1074 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 05:25](1079 MB) +PASS -- TEST 'regional_wofs_intel' [07:42, 06:59](1891 MB) + +PASS -- COMPILE 'rrfs_intel' [10:12, 10:00] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:42, 07:49](1086 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:14, 04:08](1237 MB) +PASS -- TEST 'rap_decomp_intel' [11:46, 08:13](1019 MB) +PASS -- TEST 'rap_2threads_intel' [11:46, 07:22](1148 MB) +PASS -- TEST 'rap_restart_intel' [05:48, 04:09](1078 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:45, 07:48](1078 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:45, 08:15](1018 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:48, 05:56](1112 MB) +PASS -- TEST 'hrrr_control_intel' [08:47, 04:01](1024 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:47, 04:09](1009 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:47, 03:42](1081 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:35, 02:14](984 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:57, 07:44](1070 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 09:23](1978 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:30, 09:06](2056 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:54] +PASS -- TEST 'control_csawmg_intel' [07:42, 06:11](995 MB) +PASS -- TEST 'control_ras_intel' [04:24, 03:19](729 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:23] +PASS -- TEST 'control_csawmg_gnu' [09:45, 08:31](729 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 09:55] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:56, 11:12](1653 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:12, 10:13] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:58, 02:49](1876 MB) +PASS -- TEST 'regional_control_faster_intel' [06:39, 04:59](1066 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:43] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:38](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:40](1590 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:24, 03:09](795 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:46](795 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:20](1105 MB) +PASS -- TEST 'control_ras_debug_intel' [03:25, 02:51](798 MB) +PASS -- TEST 'control_diag_debug_intel' [03:53, 02:48](1645 MB) +PASS -- TEST 'control_debug_p8_intel' [04:46, 03:03](1885 MB) +PASS -- TEST 'regional_debug_intel' [18:43, 17:46](1058 MB) +PASS -- TEST 'rap_control_debug_intel' [05:27, 04:55](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:27, 05:00](1169 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:54](1177 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:26, 04:55](1181 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 05:01](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:19](1262 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 05:06](1174 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:01](1173 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:24, 05:03](1180 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:56](1183 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:53](1178 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 04:59](1183 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:12](1174 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 05:00](1177 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:28, 05:58](1175 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:25, 04:59](1176 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:44, 08:30](1186 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:14] +PASS -- TEST 'control_csawmg_debug_gnu' [03:41, 02:18](696 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:12, 04:45] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:49, 13:47](1664 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 03:53](1111 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 06:27](1037 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:37, 03:26](969 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:32, 06:12](1071 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 03:10](938 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:38](913 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:55, 04:52](1030 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:52](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 09:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:01, 02:07](1177 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:51, 00:53](1093 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:49, 01:14](1086 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:12, 09:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:18](962 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:29] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 04:56](1057 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:29, 04:53](1055 MB) +PASS -- TEST 'conus13km_debug_intel' [16:52, 15:11](1175 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:47, 15:12](896 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:41, 08:29](1106 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 15:15](1242 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:42] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:02](1097 MB) + +PASS -- COMPILE 'hafsw_intel' [12:12, 11:28] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:16, 05:10](703 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 06:19](1070 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 07:01](792 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:13, 13:41](828 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:28, 15:17](860 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:37](474 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:27, 06:49](487 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:46, 02:41](356 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:08, 07:23](466 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:47](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 03:31](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:55, 04:11](551 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:10](386 MB) +PASS -- TEST 'gnv1_nested_intel' [06:45, 04:16](1723 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 05:00] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:56, 12:54](533 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:03] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:01, 08:44](640 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:08, 08:45](699 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:11, 11:03] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:07, 06:39](701 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:55] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:39](797 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:14, 06:41](772 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:55, 16:03](1212 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:27] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:43](1167 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:42](1095 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:19, 02:33](1041 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:24, 02:40](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:39](1025 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:20, 02:46](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:47](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:36](1021 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:29, 06:52](1067 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:22, 06:11](1033 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 03:08](1150 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:23, 04:02](2506 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:33, 03:59](2441 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:22] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:23](1078 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:26] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:41](1135 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:38] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:47](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:49](315 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:27, 00:33](314 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:12, 10:54] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:06, 03:46](1964 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 10:41] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:03, 03:37](1921 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 10:56] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:03, 04:19](1838 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:02, 04:16](1840 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:25](1066 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:12, 05:47] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:58, 05:54](1841 MB) + +PASS -- COMPILE 'atmw_intel' [11:12, 10:52] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:52](1897 MB) + +PASS -- COMPILE 'atmaero_intel' [11:12, 10:25] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:01, 04:10](3176 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:56, 04:57](3071 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 05:00](3089 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 05:02] ( 884 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [05:11, 04:35] +PASS -- TEST 'control_c48_gnu' [14:39, 11:11](1493 MB) +PASS -- TEST 'control_stochy_gnu' [04:24, 03:27](474 MB) +PASS -- TEST 'control_ras_gnu' [08:23, 04:50](490 MB) +PASS -- TEST 'control_p8_gnu' [08:58, 04:47](1437 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:54, 04:40](1425 MB) +PASS -- TEST 'control_flake_gnu' [14:25, 10:31](519 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:34] +PASS -- TEST 'rap_control_gnu' [14:33, 10:49](792 MB) +PASS -- TEST 'rap_decomp_gnu' [13:32, 11:09](796 MB) +PASS -- TEST 'rap_2threads_gnu' [12:39, 09:55](898 MB) +PASS -- TEST 'rap_restart_gnu' [06:43, 05:30](557 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 10:51](792 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:07](828 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:50, 08:13](563 MB) +PASS -- TEST 'hrrr_control_gnu' [07:40, 05:35](791 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:33, 05:32](784 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:36, 05:05](886 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:34, 05:34](787 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:33, 02:54](547 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:31, 02:50](635 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:42, 10:33](792 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 06:23] +PASS -- TEST 'control_diag_debug_gnu' [04:52, 01:38](1245 MB) +PASS -- TEST 'regional_debug_gnu' [13:41, 11:11](724 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:26, 02:41](800 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [05:26, 02:34](795 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:37](810 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:23, 02:38](804 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:38, 02:53](885 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:10](794 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:37](794 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:23, 02:38](795 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:20, 01:35](433 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:47](429 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:49](1402 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:23, 02:39](796 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:23, 02:53](799 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:23](807 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:49] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:14] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:28](692 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:35, 04:59](688 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:34, 08:35](733 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:29, 04:28](725 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:29, 05:03](688 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:41, 07:04](536 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 02:33](520 MB) +PASS -- TEST 'conus13km_control_gnu' [03:57, 03:09](854 MB) +PASS -- TEST 'conus13km_2threads_gnu' [10:47, 05:45](856 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:48](536 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:12, 09:32] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:57](708 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:12, 06:29] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:25, 02:36](685 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:24, 02:32](687 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:47, 07:11](853 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:50, 07:06](552 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:44, 07:29](861 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:44, 07:00](923 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 06:31] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:24, 02:41](706 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 16:30] + +PASS -- COMPILE 's2s_gnu' [16:11, 15:48] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:15, 07:26](1518 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:11] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:53] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:14, 20:57](1430 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:59] + +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:30] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 03:02](680 MB) SYNOPSIS: -Starting Date/Time: 20240805 00:00:47 -Ending Date/Time: 20240805 02:04:13 -Total Time: 02h:04m:44s +Starting Date/Time: 20240807 03:42:14 +Ending Date/Time: 20240807 05:17:49 +Total Time: 01h:36m:42s Compiles Completed: 57/57 -Tests Completed: 243/244 -Failed Tests: -* TEST cpld_debug_pdlib_p8_gnu: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2958009/cpld_debug_pdlib_p8_gnu/err - -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 HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1313382 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:12, 03:26] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:58, 13:15](1456 MB) - -SYNOPSIS: -Starting Date/Time: 20240805 17:54:52 -Ending Date/Time: 20240805 18:15:21 -Total Time: 00h:20m:39s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 243/243 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 2e81377b87..f3c8e7df2c 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,31 +1,31 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +316fa2afafdaabcdf9c024689e0f5f117395bce5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,375 +36,374 @@ 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-20240730 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1562821 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2147705 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:02, 08:22](2123 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:25, 14:45](2014 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:52, 14:22](2300 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:40, 06:51](1319 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:50, 15:33](1909 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 20:06] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:26, 13:32](1999 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:18] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:10, 20:54](1983 MB) - -PASS -- COMPILE 's2swa_intel' [12:11, 11:40] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:53, 08:23](2180 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:00, 08:42](2185 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:09, 04:18](1989 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:53, 08:30](2199 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:09, 04:24](1742 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:59, 09:59](2550 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:53, 08:33](2178 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:56, 06:58](2096 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:01, 08:41](2183 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:41, 15:48](2986 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:18, 05:51](2931 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:54, 10:19](3813 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:52, 06:34](3646 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:57, 06:05](2147 MB) - -PASS -- COMPILE 's2sw_intel' [10:11, 10:02] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:43, 10:29](2025 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:50, 04:25](2085 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:17] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [08:59, 07:43](2216 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:10, 06:11] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:51, 05:35](2054 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:11, 08:44] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:49, 04:48](2078 MB) - -PASS -- COMPILE 's2s_intel' [09:11, 08:44] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:41, 07:03](3114 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:39, 02:11](3098 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:42, 02:10](2538 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:26] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:05, 07:26](2179 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:48, 13:55](2043 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:57, 07:03](1405 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:57, 15:36](1960 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:50] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:50, 23:01](2037 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:22, 03:32](710 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:30, 02:27](1601 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:34, 02:36](1617 MB) -PASS -- TEST 'control_latlon_intel' [03:30, 02:32](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:37, 02:28](1616 MB) -PASS -- TEST 'control_c48_intel' [07:33, 06:51](1735 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:23, 05:51](865 MB) -PASS -- TEST 'control_c192_intel' [10:42, 09:16](1772 MB) -PASS -- TEST 'control_c384_intel' [11:35, 09:27](2053 MB) -PASS -- TEST 'control_c384gdas_intel' [11:49, 09:43](1519 MB) -PASS -- TEST 'control_stochy_intel' [02:22, 01:44](663 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:27, 01:03](541 MB) -PASS -- TEST 'control_lndp_intel' [02:21, 01:40](667 MB) -PASS -- TEST 'control_iovr4_intel' [03:20, 02:37](667 MB) -PASS -- TEST 'control_iovr5_intel' [04:19, 02:42](664 MB) -PASS -- TEST 'control_p8_intel' [03:47, 02:43](1913 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:47, 02:43](1898 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:47, 03:05](1906 MB) -PASS -- TEST 'control_restart_p8_intel' [02:46, 01:33](1165 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:46, 02:35](1907 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:47, 01:35](1182 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:36, 02:43](1903 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:37, 03:24](1995 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:28, 05:23](1909 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:53, 04:17](1988 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:39](1916 MB) -PASS -- TEST 'merra2_thompson_intel' [06:55, 04:48](1910 MB) -PASS -- TEST 'regional_control_intel' [07:27, 05:39](1197 MB) -PASS -- TEST 'regional_restart_intel' [03:30, 02:42](1181 MB) -PASS -- TEST 'regional_decomp_intel' [07:23, 05:52](1198 MB) -PASS -- TEST 'regional_2threads_intel' [04:24, 03:04](1155 MB) -PASS -- TEST 'regional_noquilt_intel' [06:24, 05:20](1530 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:44](1195 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:22, 04:51](1198 MB) -PASS -- TEST 'regional_wofs_intel' [08:26, 07:24](2094 MB) - -PASS -- COMPILE 'rrfs_intel' [08:10, 07:46] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [13:40, 06:42](1205 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:45, 03:42](1408 MB) -PASS -- TEST 'rap_decomp_intel' [14:37, 07:01](1157 MB) -PASS -- TEST 'rap_2threads_intel' [13:40, 06:16](1384 MB) -PASS -- TEST 'rap_restart_intel' [04:59, 03:40](1134 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:43, 06:53](1209 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:43, 07:05](1151 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 05:12](1219 MB) -PASS -- TEST 'hrrr_control_intel' [10:39, 03:33](1069 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:39, 03:36](1040 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:39, 03:12](1125 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:27, 01:54](1022 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:01, 06:47](1194 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:25, 07:40](2013 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 07:37](2208 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 07:03] -PASS -- TEST 'control_csawmg_intel' [14:29, 07:00](1074 MB) -PASS -- TEST 'control_ras_intel' [07:21, 02:57](843 MB) - -PASS -- COMPILE 'csawmg_gnu' [09:10, 04:11] -PASS -- TEST 'control_csawmg_gnu' [07:36, 06:59](1073 MB) - -PASS -- COMPILE 'wam_intel' [12:10, 07:18] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:32, 10:25](1673 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:10, 13:35] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:48, 02:21](1908 MB) -PASS -- TEST 'regional_control_faster_intel' [06:25, 05:23](1198 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 05:35] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:27, 02:23](1638 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:31, 02:16](1646 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:18, 02:32](842 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:18, 02:19](837 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:25, 04:17](1164 MB) -PASS -- TEST 'control_ras_debug_intel' [03:21, 02:42](848 MB) -PASS -- TEST 'control_diag_debug_intel' [03:33, 02:25](1703 MB) -PASS -- TEST 'control_debug_p8_intel' [03:30, 02:44](1936 MB) -PASS -- TEST 'regional_debug_intel' [16:26, 16:00](1165 MB) -PASS -- TEST 'rap_control_debug_intel' [04:18, 04:06](1230 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:20, 04:00](1221 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 04:03](1236 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 04:06](1235 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:18, 04:05](1234 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:26, 04:16](1318 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:20, 04:22](1234 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:26](1239 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:05](1240 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 04:04](1241 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:09](1227 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 04:23](1226 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 07:05](1235 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:45](1229 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:24](1232 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:28, 04:06](1232 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:54, 07:13](1224 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:10, 05:01] -PASS -- TEST 'control_csawmg_debug_gnu' [02:31, 01:58](1058 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:10, 03:29] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 07:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:44](1267 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:43, 07:20](1180 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:51, 03:28](1051 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:31, 06:03](1285 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:12](1044 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 03:47](1019 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:48, 05:19](1133 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:19, 02:01](977 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:10, 12:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:36, 01:52](1313 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:30, 00:45](1214 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:27, 01:02](1178 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 07:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:29, 03:45](1099 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:29] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:18, 04:01](1111 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:22, 03:55](1112 MB) -PASS -- TEST 'conus13km_debug_intel' [18:33, 12:50](1360 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:33, 12:58](1011 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:26, 08:52](1256 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:28, 12:58](1436 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:31] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:20, 04:30](1172 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 09:52] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:06, 05:29](871 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:26, 05:02](1275 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 06:26](935 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:01, 13:52](994 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:09, 15:23](1007 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:52, 05:35](614 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:13, 07:07](623 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:39, 02:44](443 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:52, 08:00](556 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:41, 04:08](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:40, 03:40](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:45, 04:52](679 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:09](454 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:27] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:39, 16:32](650 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:10, 15:46] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:43, 15:27](750 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:53, 16:27](849 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 09:29] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:52, 10:08](830 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:11, 10:02] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:05, 05:51](953 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:03, 05:40](938 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:35](1348 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:10, 07:02] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:11](1161 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:16, 01:21](1113 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 02:06](1016 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:09](1022 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:12](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:09](1145 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:11](1136 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 02:09](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:55, 04:54](1166 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:49, 04:55](1157 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:09](1138 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:15, 03:06](2458 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:15, 03:05](2407 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 04:12] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 05:11](1086 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 07:07] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:15, 02:11](1129 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:45] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:56](335 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:22, 00:50](560 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:42](572 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:11, 08:20] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:47, 04:01](2028 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 08:00] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:46, 03:54](1995 MB) - -PASS -- COMPILE 'atml_intel' [09:11, 09:08] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:56, 07:20](1900 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:52, 07:37](1905 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 03:40](1144 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 04:13] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:50, 05:27](1938 MB) - -PASS -- COMPILE 'atmw_intel' [10:10, 09:44] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:47, 01:48](1957 MB) - -PASS -- COMPILE 'atmaero_intel' [08:10, 07:54] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:46, 04:27](2024 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:47, 04:29](1801 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:37, 04:38](1822 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:14] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:28, 17:00](4584 MB) - -PASS -- COMPILE 'atm_gnu' [06:10, 05:43] -PASS -- TEST 'control_c48_gnu' [10:41, 09:20](1562 MB) -PASS -- TEST 'control_stochy_gnu' [03:24, 02:20](734 MB) -PASS -- TEST 'control_ras_gnu' [05:21, 03:52](731 MB) -PASS -- TEST 'control_p8_gnu' [05:44, 04:42](1729 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 04:26](1718 MB) -PASS -- TEST 'control_flake_gnu' [06:21, 04:37](810 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 05:42] -PASS -- TEST 'rap_control_gnu' [08:48, 08:03](1085 MB) -PASS -- TEST 'rap_decomp_gnu' [09:47, 07:55](1084 MB) -PASS -- TEST 'rap_2threads_gnu' [08:45, 07:13](1150 MB) -PASS -- TEST 'rap_restart_gnu' [05:56, 03:59](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:43, 08:06](1084 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:34, 08:04](1083 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:49, 06:03](882 MB) -PASS -- TEST 'hrrr_control_gnu' [05:33, 04:09](1074 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:34, 04:17](1134 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:44, 03:38](1027 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:42, 04:13](1068 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:19, 02:09](878 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:12](935 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:49, 08:17](1082 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:11, 11:17] -PASS -- TEST 'control_diag_debug_gnu' [02:35, 01:18](1631 MB) -PASS -- TEST 'regional_debug_gnu' [07:30, 06:38](1126 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:20, 02:04](1104 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:20, 02:04](1097 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:16, 02:02](1098 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:06](1101 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:10](1275 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 03:11](1103 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 02:05](1103 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:20, 02:00](1098 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:10](729 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:17, 01:17](729 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:30, 01:25](1709 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:20, 01:59](1103 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:18, 02:16](1106 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:47, 03:20](1114 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:34] -PASS -- TEST 'control_wam_debug_gnu' [06:29, 05:28](1580 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 06:43] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:43, 07:58](966 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:55, 03:55](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:32, 06:52](998 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:36, 03:37](875 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:38, 03:59](954 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:54, 05:53](862 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:18, 02:11](858 MB) -PASS -- TEST 'conus13km_control_gnu' [04:36, 02:49](1267 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:32, 01:09](1177 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:32, 01:41](936 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:10, 14:35] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:30, 04:35](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:10, 12:31] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:25, 02:11](983 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:18, 02:05](975 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:34, 06:09](1289 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:31, 06:18](979 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:31, 03:44](1195 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:30, 06:01](1356 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [16:10, 13:27] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:14](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [24:11, 22:09] - -PASS -- COMPILE 's2s_gnu' [21:11, 18:55] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:54, 04:55](2735 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [14:11, 12:50] - -PASS -- COMPILE 's2sw_pdlib_gnu' [21:11, 20:15] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:19, 25:47](3033 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:10, 10:43] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:59, 12:04](2940 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:20] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:16, 02:17](764 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [12:51, 12:51] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:27, 07:45](2117 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [41:47, 41:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [13:51, 13:16](2006 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:44, 13:55](2282 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:22, 06:29](1316 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:42, 14:56](1920 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:17, 16:17] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:35, 13:07](1984 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:40, 04:40] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [21:51, 21:02](1975 MB) + +PASS -- COMPILE 's2swa_intel' [10:52, 10:52] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:34, 07:50](2175 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:34, 07:46](2182 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:59, 04:22](1980 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:40, 07:53](2197 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:13, 04:30](1743 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:47, 09:08](2547 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:12, 07:34](2174 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:03, 06:34](2089 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:34, 07:50](2179 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:32, 15:22](2993 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:30, 05:59](2918 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:22, 10:05](3834 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:25, 05:59](3642 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:20, 05:51](2159 MB) + +PASS -- COMPILE 's2sw_intel' [10:23, 10:23] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:01, 07:26](2018 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:50, 04:11](2087 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:30, 05:30] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [07:55, 07:16](2221 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:19, 05:19] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:22, 04:50](2043 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:42, 12:42] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:41, 04:03](2080 MB) + +PASS -- COMPILE 's2s_intel' [09:43, 09:43] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:27, 07:01](3055 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:23, 01:57](3031 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:40, 01:07](2490 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:54, 12:54] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:11, 07:26](2182 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:27, 15:27] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:17, 13:49](2039 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:14, 06:48](1381 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:54, 15:18](1959 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [03:59, 03:59] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:06, 22:36](2005 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:10, 08:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:07, 03:58](714 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:44, 03:24](1607 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:46, 03:24](1610 MB) +PASS -- TEST 'control_latlon_intel' [03:32, 03:21](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:49, 03:29](1606 MB) +PASS -- TEST 'control_c48_intel' [07:35, 07:09](1713 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:17, 06:05](837 MB) +PASS -- TEST 'control_c192_intel' [13:52, 13:25](1744 MB) +PASS -- TEST 'control_c384_intel' [14:02, 13:07](2007 MB) +PASS -- TEST 'control_c384gdas_intel' [11:39, 10:17](1492 MB) +PASS -- TEST 'control_stochy_intel' [02:05, 01:56](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:25, 01:10](552 MB) +PASS -- TEST 'control_lndp_intel' [01:49, 01:41](663 MB) +PASS -- TEST 'control_iovr4_intel' [03:06, 02:55](673 MB) +PASS -- TEST 'control_iovr5_intel' [02:57, 02:50](665 MB) +PASS -- TEST 'control_p8_intel' [04:12, 03:40](1904 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:20, 03:42](1898 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:14, 03:32](1902 MB) +PASS -- TEST 'control_restart_p8_intel' [02:29, 02:05](1162 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:13, 03:39](1899 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:19, 01:58](1211 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:41, 04:04](1880 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:41, 03:08](1978 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:36, 06:22](1898 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:25, 04:44](1965 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:46, 03:11](1924 MB) +PASS -- TEST 'merra2_thompson_intel' [04:40, 04:02](1902 MB) +PASS -- TEST 'regional_control_intel' [06:42, 06:29](1198 MB) +PASS -- TEST 'regional_restart_intel' [03:49, 03:35](1156 MB) +PASS -- TEST 'regional_decomp_intel' [06:50, 06:36](1175 MB) +PASS -- TEST 'regional_2threads_intel' [04:26, 04:13](1160 MB) +PASS -- TEST 'regional_noquilt_intel' [06:54, 06:41](1518 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 06:38](1190 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:45, 06:30](1189 MB) +PASS -- TEST 'regional_wofs_intel' [08:29, 08:16](2078 MB) + +PASS -- COMPILE 'rrfs_intel' [08:33, 08:33] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:47, 08:12](1239 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:57, 04:26](1347 MB) +PASS -- TEST 'rap_decomp_intel' [09:33, 09:01](1158 MB) +PASS -- TEST 'rap_2threads_intel' [08:34, 07:56](1373 MB) +PASS -- TEST 'rap_restart_intel' [04:56, 04:22](1166 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:43, 08:11](1239 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:31, 08:59](1167 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:55, 06:17](1236 MB) +PASS -- TEST 'hrrr_control_intel' [05:04, 04:26](1104 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:10, 04:35](1055 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:25, 03:52](1112 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:35, 02:28](1047 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:38, 09:01](1226 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:04, 08:55](2009 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:52, 08:42](2196 MB) + +PASS -- COMPILE 'csawmg_intel' [07:37, 07:37] +PASS -- TEST 'control_csawmg_intel' [05:47, 05:33](1045 MB) +PASS -- TEST 'control_ras_intel' [03:04, 02:57](827 MB) + +PASS -- COMPILE 'csawmg_gnu' [03:53, 03:53] +PASS -- TEST 'control_csawmg_gnu' [07:34, 07:19](1073 MB) + +PASS -- COMPILE 'wam_intel' [12:15, 12:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:15, 09:51](1669 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:54, 07:54] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [02:58, 02:24](1891 MB) +PASS -- TEST 'regional_control_faster_intel' [04:35, 04:18](1198 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:34, 05:34] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:47, 02:25](1635 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:49, 02:30](1653 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:00, 02:53](849 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:28, 02:22](848 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:07, 03:46](1150 MB) +PASS -- TEST 'control_ras_debug_intel' [02:39, 02:28](847 MB) +PASS -- TEST 'control_diag_debug_intel' [02:42, 02:26](1696 MB) +PASS -- TEST 'control_debug_p8_intel' [03:15, 03:00](1942 MB) +PASS -- TEST 'regional_debug_intel' [16:05, 15:46](1150 MB) +PASS -- TEST 'rap_control_debug_intel' [04:35, 04:23](1227 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:32, 04:22](1230 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:28, 04:19](1237 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:46, 04:38](1226 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:52, 04:43](1247 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:58, 04:37](1316 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:41, 04:29](1240 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:57, 04:42](1233 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:43, 04:36](1239 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:34, 04:27](1236 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:16](1233 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:31, 04:21](1247 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:13, 07:06](1235 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:29, 04:22](1225 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:30, 05:20](1234 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:39, 04:29](1235 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:23, 07:45](1231 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:02, 04:02] +PASS -- TEST 'control_csawmg_debug_gnu' [02:53, 02:33](1050 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:29, 03:29] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:24, 08:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:53, 03:15](1243 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:58, 05:22](1146 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:31, 02:52](1020 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:32, 05:01](1261 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:24, 02:37](1028 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:48, 03:02](1001 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:38, 04:01](1079 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:59, 01:37](944 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:31, 08:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:11, 01:44](1279 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:04, 00:43](1196 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:18, 01:04](1145 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:58, 07:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:30, 04:12](1098 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:47, 04:47] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:49, 04:35](1099 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:20, 04:08](1098 MB) +PASS -- TEST 'conus13km_debug_intel' [13:23, 13:00](1340 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:35, 13:12](991 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:21, 07:58](1248 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:47, 12:22](1401 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:23, 03:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:19, 04:08](1168 MB) + +PASS -- COMPILE 'hafsw_intel' [09:29, 09:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:12, 05:17](857 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:09, 04:51](1259 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:25, 06:24](938 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:04, 14:15](979 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:35, 15:31](981 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:58, 05:23](595 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:44, 06:46](602 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:01, 02:33](436 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:49, 07:26](547 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:18, 03:47](601 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:08, 03:35](611 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:23, 04:45](659 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:27, 01:11](451 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [03:59, 03:59] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:09, 11:29](633 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:44, 09:44] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:58, 16:21](763 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:28, 15:37](845 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:04, 13:04] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:47, 10:03](815 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:08, 11:08] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:17, 05:28](949 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:20, 05:31](908 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:06, 16:32](1338 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:48, 07:47] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:18, 02:12](1149 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:52, 01:45](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:11, 04:06](1025 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:18, 02:09](1023 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:54, 02:51](1028 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:39, 03:32](1162 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:18, 02:13](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:10, 02:05](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:30, 04:53](1164 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:22, 04:50](1157 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:58, 02:55](1146 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:13, 03:07](2384 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:12, 03:06](2402 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:16, 03:15] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:12, 05:08](1080 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:04, 06:04] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:43, 02:38](1142 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:46, 00:46] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:07, 00:53](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:02, 00:50](558 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:47, 00:33](561 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:03, 09:02] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:07, 03:30](2018 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:15, 09:15] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:22, 03:36](1989 MB) + +PASS -- COMPILE 'atml_intel' [08:39, 08:39] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:19, 05:33](1901 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:40, 05:52](1891 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:39, 03:12](1139 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:11, 04:11] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:40, 05:53](1921 MB) + +PASS -- COMPILE 'atmw_intel' [09:55, 09:55] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:18, 01:38](1939 MB) + +PASS -- COMPILE 'atmaero_intel' [08:33, 08:33] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:33, 03:54](2026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:18, 04:37](1806 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:05, 04:36](1815 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:21, 04:21] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [17:07, 16:01](4575 MB) + +PASS -- COMPILE 'atm_gnu' [04:40, 04:40] +PASS -- TEST 'control_c48_gnu' [09:52, 09:28](1529 MB) +PASS -- TEST 'control_stochy_gnu' [02:37, 02:26](721 MB) +PASS -- TEST 'control_ras_gnu' [04:05, 03:56](734 MB) +PASS -- TEST 'control_p8_gnu' [04:45, 04:02](1722 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:30, 03:55](1729 MB) +PASS -- TEST 'control_flake_gnu' [05:07, 04:54](802 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:05, 04:05] +PASS -- TEST 'rap_control_gnu' [09:58, 09:27](1080 MB) +PASS -- TEST 'rap_decomp_gnu' [10:05, 09:29](1082 MB) +PASS -- TEST 'rap_2threads_gnu' [08:52, 08:14](1138 MB) +PASS -- TEST 'rap_restart_gnu' [05:21, 04:51](887 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:10, 09:36](1082 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:27, 08:55](1083 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:50, 07:08](883 MB) +PASS -- TEST 'hrrr_control_gnu' [05:41, 05:03](1070 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:06, 04:41](1135 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:56, 04:24](1045 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:14, 04:44](1068 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:49, 02:30](883 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:38, 02:19](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:46, 09:02](1076 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:59, 05:58] +PASS -- TEST 'control_diag_debug_gnu' [01:31, 01:14](1625 MB) +PASS -- TEST 'regional_debug_gnu' [06:48, 06:27](1122 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:05](1098 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:01, 01:55](1086 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:07, 01:58](1094 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:03, 01:57](1093 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:18, 02:04](1266 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:23, 03:14](1094 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:06, 01:59](1095 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:03, 01:57](1089 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:17, 01:09](721 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:22, 01:17](720 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:45, 01:24](1698 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:21, 02:08](1096 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:20, 02:13](1105 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [03:50, 03:16](1098 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:34, 02:34] +PASS -- TEST 'control_wam_debug_gnu' [05:47, 05:25](1565 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:50, 04:50] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:20, 08:46](962 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:08, 04:21](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:35, 08:04](994 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:47, 04:04](899 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:09, 04:28](954 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:10, 06:32](862 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:46, 02:22](863 MB) +PASS -- TEST 'conus13km_control_gnu' [03:28, 03:01](1271 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:32, 01:13](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:59, 01:41](928 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:15, 09:14] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:52, 04:33](990 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:02, 06:02] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:15, 02:05](977 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:06, 01:59](969 MB) +PASS -- TEST 'conus13km_debug_gnu' [05:55, 05:34](1285 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:10, 05:49](962 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [03:33, 03:19](1195 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:56, 05:36](1354 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:12, 06:12] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:19, 02:13](1001 MB) + +PASS -- COMPILE 's2swa_gnu' [15:34, 15:34] + +PASS -- COMPILE 's2s_gnu' [14:31, 14:31] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [05:47, 05:07](3117 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:31, 04:31] + +PASS -- COMPILE 's2sw_pdlib_gnu' [20:49, 20:49] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:04, 27:04](2921 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:27, 04:27] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:45, 12:02](2924 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [24:37, 24:36] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:59, 02:49](770 MB) SYNOPSIS: -Starting Date/Time: 20240805 08:20:40 -Ending Date/Time: 20240805 09:59:14 -Total Time: 01h:38m:59s +Starting Date/Time: 20240807 07:47:32 +Ending Date/Time: 20240807 11:55:23 +Total Time: 04h:08m:40s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index ffa39feaa2..97fb2cfbbc 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,31 +1,31 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +b40a0f095bb14723f1a8be990d19a22972f356d6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,261 +35,259 @@ 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: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3949448 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240806 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_529651 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [42:15, 41:49] ( 1 warnings 1384 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:07, 07:52](2022 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:16, 49:06] ( 1 warnings 1428 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [43:32, 21:50](1900 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:30, 23:29](2010 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:46, 11:03](1129 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [46:17, 24:54](1855 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:16, 49:32] ( 1 warnings 1425 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [40:15, 21:36](1881 MB) - -PASS -- COMPILE 's2swa_intel' [42:16, 41:29] ( 1382 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [35:36, 08:28](2063 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [36:08, 08:20](2057 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:23, 05:15](1717 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [35:39, 08:26](2078 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:26, 05:33](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [35:31, 08:06](2316 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [35:31, 08:22](2011 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [35:00, 07:16](1961 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [36:00, 08:17](2064 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [35:49, 07:54](2040 MB) - -PASS -- COMPILE 's2sw_intel' [39:15, 38:50] ( 1280 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [38:06, 06:52](1903 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [37:23, 06:42](1947 MB) - -PASS -- COMPILE 's2swa_debug_intel' [36:19, 06:04] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:43, 11:16](2080 MB) - -PASS -- COMPILE 's2sw_debug_intel' [32:21, 05:47] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:00, 07:45](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [02:24, 35:31] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:12, 07:19](1973 MB) - -PASS -- COMPILE 's2s_intel' [55:22, 35:44] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [19:18, 12:49](3075 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [11:15, 04:12](3059 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:06, 02:50](2515 MB) - -PASS -- COMPILE 's2swa_faster_intel' [53:30, 34:28] ( 1610 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:23, 09:37](2055 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:15, 47:17] ( 1340 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:46, 23:39](1928 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:35, 12:58](1142 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:09, 27:39](1887 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:40] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:47, 33:01](1942 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:14, 38:22] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [06:38, 04:56](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:19, 04:42](1545 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:25, 05:11](1558 MB) -PASS -- TEST 'control_latlon_intel' [06:18, 04:28](1552 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:29, 04:51](1549 MB) -PASS -- TEST 'control_c48_intel' [14:26, 12:03](1742 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:45, 10:14](852 MB) -PASS -- TEST 'control_c192_intel' [17:51, 15:31](1692 MB) -PASS -- TEST 'control_c384_intel' [24:27, 20:39](1818 MB) -PASS -- TEST 'control_c384gdas_intel' [20:44, 14:59](1018 MB) -PASS -- TEST 'control_stochy_intel' [03:35, 02:44](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:43, 01:44](442 MB) -PASS -- TEST 'control_lndp_intel' [03:33, 02:37](605 MB) -PASS -- TEST 'control_iovr4_intel' [04:50, 03:44](602 MB) -PASS -- TEST 'control_iovr5_intel' [05:35, 03:59](605 MB) -PASS -- TEST 'control_p8_intel' [07:40, 05:39](1828 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:57, 05:41](1843 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:54, 05:29](1848 MB) -PASS -- TEST 'control_restart_p8_intel' [05:15, 02:53](1065 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:47, 05:37](1842 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:10, 03:00](1070 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:49, 05:42](1828 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:36, 05:54](1934 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:29, 08:23](1852 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:56, 06:40](1906 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:55, 05:42](1855 MB) -PASS -- TEST 'merra2_thompson_intel' [08:12, 05:28](1856 MB) -PASS -- TEST 'regional_control_intel' [11:06, 09:36](1013 MB) -PASS -- TEST 'regional_restart_intel' [07:45, 06:19](1016 MB) -PASS -- TEST 'regional_decomp_intel' [12:06, 09:54](1014 MB) -PASS -- TEST 'regional_2threads_intel' [10:14, 07:57](1008 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [12:17, 09:54](1020 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [12:06, 09:54](1014 MB) - -PASS -- COMPILE 'rrfs_intel' [42:15, 35:57] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [13:14, 11:05](997 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:06, 05:43](1213 MB) -PASS -- TEST 'rap_decomp_intel' [15:01, 11:45](985 MB) -PASS -- TEST 'rap_2threads_intel' [12:40, 10:25](1093 MB) -PASS -- TEST 'rap_restart_intel' [09:24, 07:11](987 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:35, 11:11](992 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:54, 11:53](991 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [13:12, 08:50](999 MB) -PASS -- TEST 'hrrr_control_intel' [08:46, 06:20](991 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:19, 05:26](980 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:11, 04:55](1060 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 03:03](919 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:47, 11:20](988 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:45, 14:36](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:46, 14:05](1940 MB) - -PASS -- COMPILE 'csawmg_intel' [39:15, 32:59] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [13:09, 10:20](960 MB) -PASS -- TEST 'control_ras_intel' [07:37, 05:20](668 MB) - -PASS -- COMPILE 'wam_intel' [33:15, 32:49] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [20:03, 18:11](1625 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [54:18, 53:30] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:56, 04:37](1840 MB) -PASS -- TEST 'regional_control_faster_intel' [08:52, 07:50](1017 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:16] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:47, 03:29](1575 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:31, 03:25](1573 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:30, 04:05](772 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:30](776 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:52, 06:57](1093 MB) -PASS -- TEST 'control_ras_debug_intel' [04:30, 03:33](799 MB) -PASS -- TEST 'control_diag_debug_intel' [07:50, 03:39](1638 MB) -PASS -- TEST 'control_debug_p8_intel' [09:36, 04:44](1879 MB) -PASS -- TEST 'regional_debug_intel' [27:59, 24:12](1041 MB) -PASS -- TEST 'rap_control_debug_intel' [10:43, 06:46](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:52, 06:55](1160 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:34, 07:19](1159 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:52, 06:46](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:33, 07:18](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:46, 06:54](1250 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 06:17](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 06:30](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:32, 06:13](1163 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 06:25](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:22](1165 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 06:20](1160 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:15, 11:00](1165 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:36, 06:12](1159 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:34, 07:48](1167 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:28, 06:15](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:14, 10:48](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:53] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:59, 17:44](1659 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:16, 30:54] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:32, 05:52](1082 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:06, 09:43](901 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:56, 04:25](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:06, 09:26](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:50, 04:07](911 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:27, 05:13](861 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:36, 06:49](898 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 03:03](852 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [52:17, 48:54] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:32, 03:32](1107 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:29](1051 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:39](1021 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [35:13, 30:37] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:17, 07:13](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:19, 05:57] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 06:10](1041 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:34, 06:05](1044 MB) -PASS -- TEST 'conus13km_debug_intel' [20:07, 18:44](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:16, 19:11](872 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:59, 10:52](1105 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:59, 18:46](1234 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:51] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:29, 06:21](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [40:15, 38:56] ( 1 warnings 1428 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:43, 07:12](705 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:43, 06:47](1091 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:11, 09:29](768 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [20:03, 17:45](801 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:30, 19:07](822 MB) -PASS -- TEST 'gnv1_nested_intel' [11:46, 07:30](1684 MB) - -PASS -- COMPILE 'hafs_all_intel' [35:15, 34:20] ( 1269 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:51, 09:26](769 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:46, 09:32](754 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:38] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:26, 04:02](1066 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:12](1037 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:26, 03:57](931 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:35, 04:02](929 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 03:52](925 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:26, 03:53](1071 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 03:42](1063 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 03:46](944 MB) -FAILED: TEST TIMED OUT -- TEST 'datm_cdeps_mx025_cfsr_intel' [, ]( MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:29, 08:13](844 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 03:45](1065 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 05:15](2370 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:43, 05:31](2356 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:52] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:25, 08:06](1013 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:30] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 04:10](1055 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:16] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:41, 01:40](233 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:27](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:55](256 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:14, 34:38] ( 1016 remarks ) -FAILED: TEST TIMED OUT -- TEST 'atm_ds2s_docn_pcice_intel' [, ]( MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:14, 33:41] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:59, 06:04](1885 MB) - -PASS -- COMPILE 'atml_intel' [38:15, 37:47] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:51, 10:11](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:48, 10:31](1862 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:07, 06:27](1073 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 06:16] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:23, 08:39](1890 MB) - -PASS -- COMPILE 'atmw_intel' [37:14, 35:19] ( 1261 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:42, 03:18](1860 MB) - -PASS -- COMPILE 'atmaero_intel' [35:15, 34:01] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:46, 06:39](1951 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:00, 07:11](1732 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:41, 07:30](1746 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:17, 44:24] ( 1 warnings 1378 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:47, 08:34](2013 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:22, 50:00] ( 1 warnings 1425 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [37:36, 22:06](1886 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [44:10, 24:03](2009 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [33:06, 13:32](1112 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [38:50, 24:50](1846 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:19, 54:44] ( 1 warnings 1422 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [30:21, 21:36](1884 MB) + +PASS -- COMPILE 's2swa_intel' [43:17, 42:35] ( 1379 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:26, 09:19](2048 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:02, 09:42](2050 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:13, 05:39](1712 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:35, 09:52](2065 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:17, 05:39](1735 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:17, 09:42](2320 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:31, 09:14](2061 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:48, 08:21](1998 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:00, 09:26](2050 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [19:47, 08:51](2037 MB) + +PASS -- COMPILE 's2sw_intel' [42:17, 41:49] ( 1277 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [20:00, 07:44](1904 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:16, 08:09](1968 MB) + +PASS -- COMPILE 's2swa_debug_intel' [27:25, 07:44] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:39, 11:17](2083 MB) + +PASS -- COMPILE 's2sw_debug_intel' [26:20, 07:20] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [16:01, 08:21](1933 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [55:22, 38:13] ( 1008 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:59, 07:09](1951 MB) + +PASS -- COMPILE 's2s_intel' [51:25, 38:23] ( 1013 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [15:14, 12:43](3021 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:06, 04:01](3008 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:18, 02:33](2460 MB) + +PASS -- COMPILE 's2swa_faster_intel' [43:29, 34:13] ( 1607 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [42:19, 08:42](2043 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [53:16, 47:35] ( 1337 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:40, 22:29](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [55:24, 11:06](1132 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [56:42, 25:27](1882 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:13, 06:37] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:35, 33:59](1937 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [43:15, 38:37] ( 1 warnings 1124 remarks ) +PASS -- TEST 'control_flake_intel' [10:43, 04:43](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [48:34, 04:16](1550 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [32:34, 04:12](1548 MB) +PASS -- TEST 'control_latlon_intel' [10:16, 04:27](1546 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [39:34, 04:35](1547 MB) +PASS -- TEST 'control_c48_intel' [17:32, 11:47](1698 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:52, 10:22](830 MB) +PASS -- TEST 'control_c192_intel' [59:09, 14:49](1672 MB) +PASS -- TEST 'control_c384_intel' [01:08, 19:50](1800 MB) +PASS -- TEST 'control_c384gdas_intel' [59:24, 14:03](1008 MB) +PASS -- TEST 'control_stochy_intel' [08:39, 02:47](602 MB) +PASS -- TEST 'control_stochy_restart_intel' [48:46, 01:21](436 MB) +PASS -- TEST 'control_lndp_intel' [08:38, 02:38](599 MB) +PASS -- TEST 'control_iovr4_intel' [09:41, 03:58](604 MB) +PASS -- TEST 'control_iovr5_intel' [09:41, 03:52](600 MB) +PASS -- TEST 'control_p8_intel' [45:04, 06:11](1842 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [01:18, 04:43](1830 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [13:17, 05:07](1849 MB) +PASS -- TEST 'control_restart_p8_intel' [27:20, 02:57](1052 MB) +PASS -- TEST 'control_noqr_p8_intel' [43:05, 05:13](1835 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [27:31, 02:57](1072 MB) +PASS -- TEST 'control_decomp_p8_intel' [41:17, 05:44](1831 MB) +PASS -- TEST 'control_2threads_p8_intel' [41:16, 05:15](1920 MB) +PASS -- TEST 'control_p8_lndp_intel' [14:25, 08:10](1836 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [42:22, 06:27](1902 MB) +PASS -- TEST 'control_p8_mynn_intel' [34:06, 04:46](1850 MB) +PASS -- TEST 'merra2_thompson_intel' [42:29, 05:54](1842 MB) +PASS -- TEST 'regional_control_intel' [37:18, 08:09](1002 MB) +PASS -- TEST 'regional_restart_intel' [11:55, 04:39](986 MB) +PASS -- TEST 'regional_decomp_intel' [13:12, 09:13](1002 MB) +PASS -- TEST 'regional_2threads_intel' [09:16, 07:30](992 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [12:22, 08:50](1012 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [17:14, 08:14](1005 MB) + +PASS -- COMPILE 'rrfs_intel' [39:16, 38:18] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [02:39, 10:47](986 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [58:48, 06:06](1164 MB) +PASS -- TEST 'rap_decomp_intel' [56:39, 11:01](974 MB) +PASS -- TEST 'rap_2threads_intel' [58:19, 09:54](1074 MB) +PASS -- TEST 'rap_restart_intel' [10:00, 05:20](986 MB) +PASS -- TEST 'rap_sfcdiff_intel' [03:35, 11:01](985 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [59:01, 11:07](982 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:24, 08:24](998 MB) +PASS -- TEST 'hrrr_control_intel' [57:23, 05:32](989 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [57:23, 05:33](978 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [57:13, 05:05](1053 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:34, 03:19](918 MB) +PASS -- TEST 'rrfs_v1beta_intel' [04:00, 10:37](980 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [03:44, 13:06](1945 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [00:46, 13:03](1939 MB) + +PASS -- COMPILE 'csawmg_intel' [38:17, 35:54] ( 1089 remarks ) +PASS -- TEST 'control_csawmg_intel' [56:55, 09:41](960 MB) +PASS -- TEST 'control_ras_intel' [30:31, 04:43](657 MB) + +PASS -- COMPILE 'wam_intel' [36:16, 35:46] ( 992 remarks ) +FAILED: TEST TIMED OUT -- TEST 'control_wam_intel' [, ]( MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:17, 38:01] ( 1292 remarks ) +PASS -- TEST 'control_p8_faster_intel' [29:57, 04:34](1838 MB) +PASS -- TEST 'regional_control_faster_intel' [10:47, 07:58](997 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [26:15, 09:38] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [28:59, 03:41](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [24:02, 03:27](1574 MB) +PASS -- TEST 'control_stochy_debug_intel' [23:33, 04:01](772 MB) +PASS -- TEST 'control_lndp_debug_intel' [20:32, 03:36](772 MB) +PASS -- TEST 'control_csawmg_debug_intel' [18:43, 06:12](1082 MB) +PASS -- TEST 'control_ras_debug_intel' [14:32, 03:36](786 MB) +PASS -- TEST 'control_diag_debug_intel' [14:54, 03:32](1632 MB) +PASS -- TEST 'control_debug_p8_intel' [13:01, 04:11](1853 MB) +PASS -- TEST 'regional_debug_intel' [32:51, 23:12](1036 MB) +PASS -- TEST 'rap_control_debug_intel' [07:29, 06:16](1157 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:27, 06:05](1158 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 06:18](1161 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:26, 06:25](1160 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:28, 06:20](1156 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:44, 06:47](1242 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:29, 06:36](1160 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:29, 06:34](1165 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:28, 06:20](1166 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:35, 06:27](1162 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:36, 06:11](1158 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:17](1157 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:32, 10:11](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 06:07](1153 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:35, 07:33](1160 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:25, 06:14](1157 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:52, 10:54](1163 MB) + +PASS -- COMPILE 'wam_debug_intel' [33:19, 05:25] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [21:02, 16:59](1651 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [05:17, 31:55] ( 3 warnings 1024 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:18, 05:33](1042 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:11, 09:00](890 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:22, 04:46](867 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:11, 08:40](935 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:20, 04:24](899 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:20, 05:03](854 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:25, 06:46](895 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 02:32](840 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [06:18, 33:24] ( 3 warnings 1197 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:04, 03:15](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:33](1042 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:43](1011 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [58:17, 32:29] ( 3 warnings 1044 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:51, 05:52](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [31:13, 05:51] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:29, 06:10](1040 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:30, 06:01](1036 MB) +PASS -- TEST 'conus13km_debug_intel' [22:05, 19:03](1146 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:50, 19:09](859 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:44, 11:04](1093 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:52, 18:57](1222 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [28:14, 05:40] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:31, 06:32](1082 MB) + +PASS -- COMPILE 'hafsw_intel' [41:17, 40:27] ( 1 warnings 1416 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:31, 07:11](695 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:39, 07:15](1066 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:44, 10:14](752 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [20:05, 17:02](789 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:03, 19:07](801 MB) +PASS -- TEST 'gnv1_nested_intel' [12:15, 07:43](1682 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:15, 37:10] ( 1263 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:41, 09:12](744 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:37, 09:00](735 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:32] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:38](1072 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:11](1041 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:27, 03:31](926 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:29, 03:35](924 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:27, 03:39](920 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 03:36](1065 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:29, 03:54](1065 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:29, 03:32](928 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:21, 08:01](889 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:23, 08:00](845 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:24, 03:37](1062 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:44, 05:28](2359 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:41, 05:08](2411 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:41] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:25, 07:59](1025 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:24] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:24, 03:41](1074 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:54] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:39, 01:58](232 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:34, 02:05](270 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 01:12](254 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [39:16, 37:27] ( 1013 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:51, 08:06](1896 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:15, 36:37] ( 1013 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:12, 07:57](1891 MB) + +PASS -- COMPILE 'atml_intel' [38:16, 38:01] ( 8 warnings 1165 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [17:14, 11:50](1854 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [17:35, 12:10](1846 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:55, 06:15](1064 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 06:52] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:02, 08:14](1886 MB) + +PASS -- COMPILE 'atmw_intel' [39:28, 38:11] ( 1258 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:19, 03:47](1851 MB) + +PASS -- COMPILE 'atmaero_intel' [38:23, 36:43] ( 1096 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:52, 06:36](1939 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:04, 06:53](1725 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:37, 07:05](1730 MB) SYNOPSIS: -Starting Date/Time: 20240805 00:16:01 -Ending Date/Time: 20240805 05:47:53 -Total Time: 05h:32m:33s +Starting Date/Time: 20240807 03:37:26 +Ending Date/Time: 20240807 09:38:56 +Total Time: 06h:02m:12s Compiles Completed: 36/36 -Tests Completed: 162/164 +Tests Completed: 163/164 Failed Tests: -* TEST datm_cdeps_mx025_cfsr_intel: FAILED: TEST TIMED OUT --- LOG: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3949448/datm_cdeps_mx025_cfsr_intel/err -* TEST atm_ds2s_docn_pcice_intel: FAILED: TEST TIMED OUT --- LOG: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3949448/atm_ds2s_docn_pcice_intel/err +* TEST control_wam_intel: FAILED: TEST TIMED OUT +-- LOG: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_529651/control_wam_intel/err NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -302,31 +300,31 @@ Result: FAILURE ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +f53391f8414a033e03d4d59c3362d7bb8ff66d9f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -337,25 +335,22 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1849630 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4088889 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems -* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-n) - RUN SINGLE TEST: control_wam * (-e) - USE ECFLOW -PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:39] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:15, 08:04](894 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:18, 34:20] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:00, 06:19](1916 MB) +PASS -- COMPILE 'wam_intel' [18:40, 35:42] ( 992 remarks ) +PASS -- TEST 'control_wam_intel' [24:20, 15:03](1616 MB) SYNOPSIS: -Starting Date/Time: 20240805 15:51:58 -Ending Date/Time: 20240805 16:42:30 -Total Time: 00h:50m:51s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Starting Date/Time: 20240807 15:58:18 +Ending Date/Time: 20240807 19:42:39 +Total Time: 03h:44m:40s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 7a67ef80ad..b08d50a9ee 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,31 +1,31 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +c34693f57b7804adb9fae55d41f8519a32801059 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,284 +36,284 @@ 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-20240730 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2194935 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2683135 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:42, 14:21](2093 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:33] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 17:57](1965 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:16, 18:56](2127 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:07, 08:50](1211 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:45, 20:12](1873 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:21] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:42, 17:37](1953 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 08:06] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:43, 27:11](1932 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 15:42] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:31, 14:29](2152 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:41, 14:09](2143 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:45, 07:55](1815 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:31, 14:32](2163 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:45, 08:03](1711 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:35, 13:24](2439 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:31, 14:33](2130 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 12:32](2047 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:40, 14:27](2148 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:30, 16:21](2713 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:51, 08:57](2737 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:03, 11:22](3664 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:27, 07:05](3506 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:24, 05:54](2111 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 15:14] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:22, 13:49](1984 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:27, 04:41](2038 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:10, 08:06] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:21, 08:50](2173 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:47] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:03, 06:09](2017 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:54] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:10, 04:40](2049 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 12:51] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:55, 09:52](3109 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:58, 03:20](3087 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:51, 02:09](2538 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:11, 24:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:29, 14:45](2138 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:21] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 18:06](1998 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:59](1256 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:07, 20:22](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 06:54] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:00, 28:37](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:26, 03:37](688 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:43, 03:04](1590 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:46, 03:09](1589 MB) -PASS -- TEST 'control_latlon_intel' [03:41, 03:04](1584 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 03:11](1591 MB) -PASS -- TEST 'control_c48_intel' [10:49, 09:11](1742 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:30, 07:55](848 MB) -PASS -- TEST 'control_c192_intel' [11:57, 11:09](1736 MB) -PASS -- TEST 'control_c384_intel' [14:53, 12:11](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [12:34, 09:30](1356 MB) -PASS -- TEST 'control_stochy_intel' [02:22, 01:47](646 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:47, 01:05](475 MB) -PASS -- TEST 'control_lndp_intel' [02:22, 01:41](643 MB) -PASS -- TEST 'control_iovr4_intel' [03:28, 02:39](643 MB) -PASS -- TEST 'control_iovr5_intel' [03:23, 02:39](643 MB) -PASS -- TEST 'control_p8_intel' [05:08, 03:31](1886 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:08, 03:25](1882 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:26, 03:18](1882 MB) -PASS -- TEST 'control_restart_p8_intel' [03:14, 01:55](1101 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:13, 03:22](1879 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:21, 01:58](1130 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:08, 03:26](1873 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:35](1972 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:48, 05:48](1882 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:31, 04:48](1948 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:24, 03:26](1899 MB) -PASS -- TEST 'merra2_thompson_intel' [05:34, 03:41](1894 MB) -PASS -- TEST 'regional_control_intel' [07:37, 06:19](1084 MB) -PASS -- TEST 'regional_restart_intel' [04:47, 03:20](1082 MB) -PASS -- TEST 'regional_decomp_intel' [07:34, 06:38](1084 MB) -PASS -- TEST 'regional_2threads_intel' [05:32, 04:37](1077 MB) -PASS -- TEST 'regional_noquilt_intel' [06:37, 06:09](1381 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 06:12](1086 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 06:16](1093 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 07:31](1906 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 12:31] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:19, 08:14](1052 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:55, 05:13](1306 MB) -PASS -- TEST 'rap_decomp_intel' [09:54, 08:29](1022 MB) -PASS -- TEST 'rap_2threads_intel' [10:16, 08:15](1160 MB) -PASS -- TEST 'rap_restart_intel' [06:34, 04:20](1044 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:58, 08:11](1055 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:58, 08:29](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:33, 06:09](1078 MB) -PASS -- TEST 'hrrr_control_intel' [06:08, 04:16](1031 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:54, 04:23](1020 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:15, 04:04](1097 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:26, 02:18](953 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:18, 08:07](1049 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:40](1985 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:25](2020 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:36] -PASS -- TEST 'control_csawmg_intel' [07:42, 06:28](1024 MB) -PASS -- TEST 'control_ras_intel' [04:26, 03:24](718 MB) - -PASS -- COMPILE 'wam_intel' [12:10, 11:16] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:45, 12:07](1670 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:19] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:18, 03:09](1888 MB) -PASS -- TEST 'regional_control_faster_intel' [06:39, 05:56](1091 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:55] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:45](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:56, 02:40](1615 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:27, 03:06](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:47](820 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:22](1138 MB) -PASS -- TEST 'control_ras_debug_intel' [03:28, 02:49](825 MB) -PASS -- TEST 'control_diag_debug_intel' [03:53, 02:48](1683 MB) -PASS -- TEST 'control_debug_p8_intel' [03:53, 03:08](1918 MB) -PASS -- TEST 'regional_debug_intel' [18:49, 17:36](1116 MB) -PASS -- TEST 'rap_control_debug_intel' [05:26, 04:56](1215 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:28, 04:49](1200 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:28, 04:57](1210 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:28, 05:00](1206 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 04:55](1208 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:34, 05:06](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:27, 05:01](1209 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:27, 05:01](1211 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:25, 04:57](1202 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:58](1215 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:44](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:20, 04:52](1213 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 07:58](1207 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 04:49](1202 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:57](1212 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:56](1211 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 08:23](1204 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 05:02] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:45, 13:31](1690 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 11:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:46](1169 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:14, 06:57](1003 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:24, 03:42](928 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 07:07](1078 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:06, 03:34](958 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:11, 03:49](903 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:29, 05:14](978 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:44, 02:00](880 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 17:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:56, 02:38](1181 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:47, 01:11](1134 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:29](1079 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:27] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:27](979 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:26] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:50](1089 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:39](1083 MB) -PASS -- TEST 'conus13km_debug_intel' [15:58, 14:22](1245 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 14:14](946 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 08:44](1174 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 14:23](1315 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:22] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:31, 04:58](1136 MB) - -PASS -- COMPILE 'hafsw_intel' [14:10, 13:50] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:54](763 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 06:11](1139 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 07:23](836 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:12, 24:19](874 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:18, 28:18](894 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 06:57](514 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:30, 08:14](523 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:24](380 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:22, 09:29](491 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:40](536 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 04:23](540 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:37](591 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:31](409 MB) -PASS -- TEST 'gnv1_nested_intel' [07:11, 04:18](1737 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:42] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:02, 13:22](603 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:11, 21:46] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:09, 12:45](674 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:08, 12:50](739 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:03, 08:53](727 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:12, 12:22] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:20, 07:20](828 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:24, 07:21](813 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:56, 16:16](1204 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:55] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:21, 02:57](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:56](1116 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:49](1028 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:52](1022 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:54](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:57](1163 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:59](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:51](1016 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:27](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:10, 06:24](998 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:20, 02:57](1133 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 04:27](2400 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:20](2390 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:36] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:22](1085 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:23] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:58](1157 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:32] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 01:01](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:55](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:36](323 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:54] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 04:06](1973 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 11:46] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:05, 03:55](1956 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 13:34] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:27, 04:51](1870 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:25, 04:48](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:39](1082 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 06:17] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:28, 06:01](1897 MB) - -PASS -- COMPILE 'atmw_intel' [13:11, 12:25] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:20, 02:10](1917 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 11:58] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:15, 04:32](2001 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:11, 05:16](1769 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 05:23](1797 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 05:22] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:05, 20:53](4560 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 17:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:45, 14:17](2083 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 23:57] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:50, 18:00](1954 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 18:58](2136 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:55](1208 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:50, 20:22](1865 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 21:51] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:46, 17:44](1944 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 09:46] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:53, 27:32](1937 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 17:31] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:33, 14:18](2131 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:45, 14:38](2131 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:46, 07:52](1818 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:33, 14:34](2155 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:46, 07:51](1707 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:40, 13:22](2421 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:33, 14:43](2124 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:36, 12:12](2042 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:46, 14:20](2126 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:30, 16:45](2713 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:25, 08:52](2721 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:44, 11:59](3717 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:23, 07:25](3506 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:29, 05:57](2103 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 15:01] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:15, 14:00](1972 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:50](2050 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 09:08] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:45, 08:42](2163 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:10, 08:53] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:09, 06:12](1991 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:18] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:29, 04:42](2042 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 15:06] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:01, 10:00](3051 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:03, 03:18](3027 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:02, 02:18](2474 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:10, 16:51] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:31, 14:47](2131 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:30] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:13, 18:19](1984 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 09:04](1230 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:13, 20:31](1921 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:10, 07:38] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:23, 29:28](1976 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:27, 03:43](687 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:47, 03:13](1587 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 03:18](1583 MB) +PASS -- TEST 'control_latlon_intel' [04:41, 03:11](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:52, 03:15](1584 MB) +PASS -- TEST 'control_c48_intel' [10:52, 09:27](1707 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:36, 08:07](840 MB) +PASS -- TEST 'control_c192_intel' [13:02, 11:49](1727 MB) +PASS -- TEST 'control_c384_intel' [15:02, 12:55](1961 MB) +PASS -- TEST 'control_c384gdas_intel' [12:39, 09:55](1342 MB) +PASS -- TEST 'control_stochy_intel' [02:25, 01:51](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:07](476 MB) +PASS -- TEST 'control_lndp_intel' [02:25, 01:46](644 MB) +PASS -- TEST 'control_iovr4_intel' [03:28, 02:45](639 MB) +PASS -- TEST 'control_iovr5_intel' [03:29, 02:43](642 MB) +PASS -- TEST 'control_p8_intel' [05:14, 03:30](1884 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 03:34](1884 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:36, 03:25](1891 MB) +PASS -- TEST 'control_restart_p8_intel' [03:20, 02:00](1091 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:19, 03:23](1877 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 02:00](1133 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:19, 03:29](1865 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:09, 03:35](1949 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:55, 05:54](1878 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:34, 04:52](1939 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:33, 03:30](1890 MB) +PASS -- TEST 'merra2_thompson_intel' [05:42, 03:51](1879 MB) +PASS -- TEST 'regional_control_intel' [07:41, 06:27](1078 MB) +PASS -- TEST 'regional_restart_intel' [04:40, 03:35](1076 MB) +PASS -- TEST 'regional_decomp_intel' [07:35, 06:46](1072 MB) +PASS -- TEST 'regional_2threads_intel' [05:41, 04:36](1070 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 06:26](1382 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:35, 06:26](1076 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 06:30](1078 MB) +PASS -- TEST 'regional_wofs_intel' [08:34, 07:51](1903 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:57] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:05, 08:29](1051 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:03, 05:15](1256 MB) +PASS -- TEST 'rap_decomp_intel' [10:05, 08:45](1030 MB) +PASS -- TEST 'rap_2threads_intel' [10:05, 08:33](1156 MB) +PASS -- TEST 'rap_restart_intel' [06:35, 04:27](1042 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:06, 08:20](1055 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:06, 08:39](1016 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 06:16](1073 MB) +PASS -- TEST 'hrrr_control_intel' [06:03, 04:23](1031 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:03, 04:28](1025 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:03, 04:11](1094 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:45, 02:18](945 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:28, 08:19](1046 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 10:02](1986 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:30, 09:47](2029 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 12:44] +PASS -- TEST 'control_csawmg_intel' [07:40, 06:32](1018 MB) +PASS -- TEST 'control_ras_intel' [04:26, 03:29](718 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 12:27] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:45, 12:40](1664 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 13:04] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:21, 03:13](1880 MB) +PASS -- TEST 'regional_control_faster_intel' [07:36, 06:13](1077 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 09:54] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 03:14](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:44, 02:39](1616 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:26, 03:05](821 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:46](815 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:21](1131 MB) +PASS -- TEST 'control_ras_debug_intel' [03:20, 02:53](825 MB) +PASS -- TEST 'control_diag_debug_intel' [03:46, 02:48](1676 MB) +PASS -- TEST 'control_debug_p8_intel' [04:43, 03:09](1918 MB) +PASS -- TEST 'regional_debug_intel' [17:41, 17:07](1083 MB) +PASS -- TEST 'rap_control_debug_intel' [05:25, 04:59](1208 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:31, 04:50](1204 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:57](1203 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:28, 04:58](1212 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 04:53](1210 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:15](1293 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 05:02](1213 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 05:01](1210 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:25, 04:56](1207 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:56](1211 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:57](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:20, 04:55](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 07:58](1199 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 04:54](1202 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 06:07](1209 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:57](1206 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:28, 08:42](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 06:22] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [13:43, 13:08](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 12:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:54](1130 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:21, 07:14](996 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:13, 03:47](922 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:02, 07:20](1064 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:06, 03:41](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:46, 03:56](897 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [27:33, 05:23](977 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:11, 02:10](874 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:29] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:54, 02:42](1165 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:15](1121 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:49, 01:34](1071 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:10, 12:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:48, 04:35](973 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 06:35] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 04:55](1086 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:26, 04:45](1081 MB) +PASS -- TEST 'conus13km_debug_intel' [15:55, 14:53](1235 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:44](934 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:18](1171 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:49, 14:40](1302 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:13] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 05:04](1135 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 15:41] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:13, 06:24](744 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 07:23](1113 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 07:44](820 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:18, 24:37](848 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:21, 28:09](871 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:07, 07:15](496 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 08:36](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:06, 03:36](378 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:24, 09:57](475 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:59](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 04:48](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 06:04](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:39](408 MB) +PASS -- TEST 'gnv1_nested_intel' [26:26, 04:24](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:11, 08:06] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [33:14, 13:05](584 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:11, 15:09] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:17, 13:02](641 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [34:27, 13:20](733 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 14:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:09, 08:46](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 14:28] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [29:19, 07:34](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:23, 07:31](796 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:12, 16:22](1198 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:47] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:30, 02:58](1153 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:54](1107 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:19, 02:50](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [22:19, 02:55](1019 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [22:24, 02:53](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [22:20, 02:59](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:19, 02:59](1145 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [23:20, 04:21](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [26:13, 06:31](1027 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [25:15, 06:28](1005 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [23:21, 04:33](1156 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 04:25](2451 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [22:21, 04:20](2442 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 04:46] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [24:21, 06:31](1078 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:41] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [19:20, 02:59](1142 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:24] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [14:34, 01:01](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [14:26, 00:56](321 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:32, 00:37](319 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 13:04] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [17:16, 04:08](1978 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 12:52] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [17:08, 03:56](1944 MB) + +PASS -- COMPILE 'atml_intel' [14:12, 13:27] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [18:34, 04:49](1862 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [16:33, 04:50](1861 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:12, 02:49](1070 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:11, 08:14] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:34, 05:53](1889 MB) + +PASS -- COMPILE 'atmw_intel' [13:12, 12:55] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:23, 02:07](1908 MB) + +PASS -- COMPILE 'atmaero_intel' [13:12, 12:50] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:20, 04:36](1990 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 05:20](1775 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 05:25](1787 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:39] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:11, 21:06](4568 MB) SYNOPSIS: -Starting Date/Time: 20240805 07:55:58 -Ending Date/Time: 20240805 09:26:43 -Total Time: 01h:31m:48s +Starting Date/Time: 20240806 15:14:51 +Ending Date/Time: 20240806 17:05:39 +Total Time: 01h:51m:39s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 55875c3ebc..1be8a7287f 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,31 +1,31 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -1d72e10c471068cdf993bc535757009c7d8230d0 +e875df6009b3d0da5f8808467e1127a1740672e1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e4) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop-64-g0495c19) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (201912_public_release-415-g55182e9) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (v0.1.0-1698-g0f82327) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (EP4-850-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,238 +36,238 @@ 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-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46672 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24943 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:30, 11:18] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [39:29, 01:41](3099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:30, 12:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [39:29, 02:01](1820 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 01:51](1836 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [21:14, 02:11](985 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:30, 01:31](1801 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:34, 17:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [34:25, 01:06](1820 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:42] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [46:40, 01:40](1836 MB) - -PASS -- COMPILE 's2swa_intel' [11:29, 11:13] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [40:30, 01:34](3135 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:30, 01:52](3133 MB) -PASS -- TEST 'cpld_restart_p8_intel' [32:17, 01:01](3064 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [40:30, 01:31](3152 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [32:16, 00:56](3082 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [40:30, 01:08](3369 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [40:30, 01:34](3128 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [40:31, 01:40](3077 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:30, 01:53](3129 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [40:39, 04:31](4129 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:38, 05:44](4273 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [40:30, 01:53](3114 MB) - -PASS -- COMPILE 's2sw_intel' [14:36, 13:53] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [51:12, 00:52](1830 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [51:12, 00:59](1896 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [22:41, 21:51] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:17, 01:10](1899 MB) - -PASS -- COMPILE 's2s_intel' [11:29, 10:18] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [40:29, 01:04](2925 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [40:29, 01:28](2935 MB) -PASS -- TEST 'cpld_restart_c48_intel' [36:27, 01:04](2347 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:47, 27:26] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [24:11, 01:53](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:45, 21:13] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:08, 00:54](1837 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [26:43, 01:18](1000 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:44, 01:19](1806 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:29, 16:02] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:10, 01:50](1863 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [21:35, 21:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [18:53, 00:23](571 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [18:53, 00:28](1463 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:53, 00:24](1475 MB) -PASS -- TEST 'control_latlon_intel' [18:53, 00:24](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:53, 00:32](1468 MB) -PASS -- TEST 'control_c48_intel' [18:52, 01:00](1592 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [18:52, 00:51](716 MB) -PASS -- TEST 'control_c192_intel' [18:53, 00:28](1584 MB) -PASS -- TEST 'control_c384_intel' [18:57, 01:25](1900 MB) -PASS -- TEST 'control_c384gdas_intel' [18:57, 02:04](1086 MB) -PASS -- TEST 'control_stochy_intel' [17:46, 00:26](529 MB) -PASS -- TEST 'control_stochy_restart_intel' [15:18, 01:02](332 MB) -PASS -- TEST 'control_lndp_intel' [17:46, 00:27](524 MB) -PASS -- TEST 'control_iovr4_intel' [17:46, 00:42](525 MB) -PASS -- TEST 'control_iovr5_intel' [17:34, 00:43](522 MB) -PASS -- TEST 'control_p8_intel' [17:14, 02:02](1767 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [16:48, 02:04](1767 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [15:34, 01:56](1778 MB) -PASS -- TEST 'control_restart_p8_intel' [11:38, 00:40](919 MB) -PASS -- TEST 'control_noqr_p8_intel' [15:19, 01:34](1768 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [10:18, 01:05](922 MB) -PASS -- TEST 'control_decomp_p8_intel' [15:11, 01:30](1762 MB) -PASS -- TEST 'control_2threads_p8_intel' [15:07, 00:50](1850 MB) -PASS -- TEST 'control_p8_lndp_intel' [15:05, 01:16](1773 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [15:00, 02:01](1829 MB) -PASS -- TEST 'control_p8_mynn_intel' [14:27, 01:47](1774 MB) -PASS -- TEST 'merra2_thompson_intel' [14:21, 01:43](1770 MB) -PASS -- TEST 'regional_control_intel' [14:13, 01:14](851 MB) -PASS -- TEST 'regional_restart_intel' [07:27, 00:26](852 MB) -PASS -- TEST 'regional_decomp_intel' [14:04, 00:53](861 MB) -PASS -- TEST 'regional_2threads_intel' [13:51, 00:53](908 MB) -PASS -- TEST 'regional_noquilt_intel' [13:50, 00:19](1174 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [13:25, 01:15](851 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:16, 01:13](851 MB) -PASS -- TEST 'regional_wofs_intel' [13:16, 00:56](1576 MB) - -PASS -- COMPILE 'rrfs_intel' [17:33, 16:31] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [22:56, 01:36](911 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:57, 01:07](1098 MB) -PASS -- TEST 'rap_decomp_intel' [22:56, 01:23](913 MB) -PASS -- TEST 'rap_2threads_intel' [22:56, 01:41](998 MB) -PASS -- TEST 'rap_restart_intel' [13:13, 01:15](783 MB) -PASS -- TEST 'rap_sfcdiff_intel' [22:56, 02:14](909 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:56, 02:00](913 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [13:13, 01:40](782 MB) -PASS -- TEST 'hrrr_control_intel' [22:56, 01:03](906 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [22:56, 00:56](908 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [22:57, 01:23](990 MB) -PASS -- TEST 'hrrr_control_restart_intel' [12:51, 01:09](739 MB) -PASS -- TEST 'rrfs_v1beta_intel' [22:56, 02:11](906 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [22:56, 00:55](1872 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [22:56, 01:08](1859 MB) - -PASS -- COMPILE 'csawmg_intel' [14:29, 14:07] -PASS -- TEST 'control_csawmg_intel' [24:59, 00:30](875 MB) -PASS -- TEST 'control_ras_intel' [24:59, 00:56](564 MB) - -PASS -- COMPILE 'wam_intel' [14:30, 13:25] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [24:58, 00:55](1565 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:30, 16:15] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [12:09, 01:56](1761 MB) -PASS -- TEST 'regional_control_faster_intel' [12:00, 00:27](847 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [23:38, 23:17] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:30, 01:19](1498 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:30, 01:25](1504 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:30, 00:47](700 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:30, 01:05](701 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:30, 00:24](1009 MB) -PASS -- TEST 'control_ras_debug_intel' [06:30, 01:03](710 MB) -PASS -- TEST 'control_diag_debug_intel' [06:30, 01:18](1562 MB) -PASS -- TEST 'control_debug_p8_intel' [06:30, 00:56](1794 MB) -PASS -- TEST 'regional_debug_intel' [06:29, 01:05](890 MB) -PASS -- TEST 'rap_control_debug_intel' [06:30, 00:46](1086 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:30, 00:56](1077 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:30, 00:47](1085 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 00:47](1088 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:06, 00:45](1086 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:00, 00:28](1166 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:50, 00:34](1082 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:23, 00:30](1087 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:14, 00:37](1087 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:08, 00:41](1084 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:57, 00:48](1080 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:30, 00:41](1084 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [04:29, 00:26](1078 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [03:30, 00:45](1081 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [03:17, 00:29](1093 MB) -PASS -- TEST 'rap_flake_debug_intel' [03:12, 00:42](1088 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [02:58, 01:54](1090 MB) - -PASS -- COMPILE 'wam_debug_intel' [23:46, 23:14] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [02:30, 01:13](1595 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:30, 13:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:16, 01:29](957 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:59, 01:29](787 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:54, 02:10](787 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:14, 01:35](858 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:10, 02:25](847 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:00, 01:52](789 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:20, 01:41](692 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:55, 00:19](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:44, 14:38] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:12, 01:11](1005 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:56, 00:50](1011 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:54, 00:40](884 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:32, 15:14] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:38, 01:44](809 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [29:05, 28:07] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [53:50, 00:57](962 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [53:50, 01:00](958 MB) -PASS -- TEST 'conus13km_debug_intel' [53:50, 01:08](1049 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [53:50, 00:43](723 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [53:50, 00:21](1051 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [53:50, 01:06](1122 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:26, 10:24] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:26, 00:50](996 MB) - -PASS -- COMPILE 'hafsw_intel' [16:33, 15:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [01:22, 01:58](616 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [01:23, 00:58](964 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [01:20, 01:34](661 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [01:20, 01:30](703 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [00:54, 01:25](715 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:37, 01:23](396 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [59:53, 01:58](403 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [59:42, 01:25](287 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [59:45, 02:00](374 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:40, 01:17](426 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:28, 01:10](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:27, 00:59](496 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:20, 00:55](318 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:42, 09:07] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [01:36, 01:13](523 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:41, 18:52] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [49:35, 00:47](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [49:35, 01:39](713 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:30, 14:54] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:10, 00:57](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:42, 18:15] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [48:45, 01:16](660 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [48:45, 02:09](647 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [48:43, 00:26](882 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:38, 09:59] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [55:51, 01:35](1827 MB) - -PASS -- COMPILE 'atml_intel' [21:52, 21:07] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [14:30, 13:53] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [22:36, 21:56] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [38:44, 01:21](3025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [38:44, 01:51](2906 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [38:44, 01:43](2921 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:22, 08:54] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [46:29, 00:53](4438 MB) +PASS -- COMPILE 's2swa_32bit_intel' [38:03, 31:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [52:01, 02:24](3103 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:41, 12:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:09, 02:46](1817 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [50:26, 02:11](1846 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [49:37, 02:25](974 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [12:10, 03:01](1782 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:48, 18:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [06:01, 02:02](1808 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:33, 05:58] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [18:17, 02:42](1838 MB) + +PASS -- COMPILE 's2swa_intel' [30:55, 24:35] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [59:55, 02:10](3131 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [59:55, 02:39](3130 MB) +PASS -- TEST 'cpld_restart_p8_intel' [49:22, 02:39](3057 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [59:55, 01:57](3151 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [49:24, 02:05](3076 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [59:55, 02:38](3374 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [59:55, 02:13](3126 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [59:56, 02:05](3075 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [59:55, 02:24](3138 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [00:04, 06:43](4129 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:33, 05:13](4264 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [59:55, 02:26](3108 MB) + +PASS -- COMPILE 's2sw_intel' [22:45, 16:06] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:04, 01:46](1822 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:04, 02:57](1894 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:41, 10:43] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:08, 02:51](1887 MB) + +PASS -- COMPILE 's2s_intel' [16:40, 10:29] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:08, 02:18](2869 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [14:08, 01:56](2878 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:54, 02:03](2285 MB) + +PASS -- COMPILE 's2swa_faster_intel' [32:58, 26:57] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [57:51, 02:14](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [30:53, 23:58] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [59:56, 02:33](1816 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [39:28, 02:29](999 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:00, 02:30](1804 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [26:43, 22:50] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [49:24, 02:06](1854 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [20:41, 15:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [53:28, 02:09](569 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [53:28, 02:20](1466 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [49:19, 01:42](1481 MB) +PASS -- TEST 'control_latlon_intel' [49:15, 01:34](1476 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [49:11, 01:53](1473 MB) +PASS -- TEST 'control_c48_intel' [48:57, 01:41](1561 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [48:07, 01:56](689 MB) +PASS -- TEST 'control_c192_intel' [47:45, 02:21](1578 MB) +PASS -- TEST 'control_c384_intel' [47:26, 02:49](1873 MB) +PASS -- TEST 'control_c384gdas_intel' [47:26, 04:00](1071 MB) +PASS -- TEST 'control_stochy_intel' [47:22, 02:11](525 MB) +PASS -- TEST 'control_stochy_restart_intel' [40:49, 02:00](326 MB) +PASS -- TEST 'control_lndp_intel' [47:19, 02:13](524 MB) +PASS -- TEST 'control_iovr4_intel' [46:43, 01:45](525 MB) +PASS -- TEST 'control_iovr5_intel' [45:55, 01:24](520 MB) +PASS -- TEST 'control_p8_intel' [45:14, 02:18](1758 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [43:53, 02:44](1753 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [43:53, 02:45](1761 MB) +PASS -- TEST 'control_restart_p8_intel' [38:36, 02:24](910 MB) +PASS -- TEST 'control_noqr_p8_intel' [43:46, 02:23](1751 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [36:36, 01:55](921 MB) +PASS -- TEST 'control_decomp_p8_intel' [43:46, 02:17](1752 MB) +PASS -- TEST 'control_2threads_p8_intel' [43:25, 02:34](1836 MB) +PASS -- TEST 'control_p8_lndp_intel' [43:23, 01:58](1769 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [43:19, 02:50](1812 MB) +PASS -- TEST 'control_p8_mynn_intel' [42:53, 02:14](1761 MB) +PASS -- TEST 'merra2_thompson_intel' [42:52, 03:08](1760 MB) +PASS -- TEST 'regional_control_intel' [42:27, 01:25](844 MB) +PASS -- TEST 'regional_restart_intel' [34:44, 01:19](841 MB) +PASS -- TEST 'regional_decomp_intel' [42:20, 02:11](840 MB) +PASS -- TEST 'regional_2threads_intel' [41:14, 01:41](895 MB) +PASS -- TEST 'regional_noquilt_intel' [40:49, 01:18](1170 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [40:20, 02:27](844 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [40:05, 01:19](840 MB) +PASS -- TEST 'regional_wofs_intel' [39:42, 02:13](1572 MB) + +PASS -- COMPILE 'rrfs_intel' [18:33, 14:31] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [54:35, 02:33](911 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [54:36, 02:36](1059 MB) +PASS -- TEST 'rap_decomp_intel' [54:35, 02:27](909 MB) +PASS -- TEST 'rap_2threads_intel' [54:35, 02:54](992 MB) +PASS -- TEST 'rap_restart_intel' [38:21, 02:21](779 MB) +PASS -- TEST 'rap_sfcdiff_intel' [54:35, 02:17](910 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [54:35, 02:32](909 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [37:22, 02:46](778 MB) +PASS -- TEST 'hrrr_control_intel' [54:35, 02:21](908 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [54:35, 02:21](906 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [54:36, 02:48](982 MB) +PASS -- TEST 'hrrr_control_restart_intel' [37:21, 02:15](734 MB) +PASS -- TEST 'rrfs_v1beta_intel' [54:35, 02:18](904 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [54:35, 02:02](1870 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [54:35, 02:23](1856 MB) + +PASS -- COMPILE 'csawmg_intel' [30:54, 27:28] +PASS -- TEST 'control_csawmg_intel' [36:49, 01:29](864 MB) +PASS -- TEST 'control_ras_intel' [36:36, 01:54](561 MB) + +PASS -- COMPILE 'wam_intel' [14:34, 12:43] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [53:30, 01:39](1558 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:36, 16:57] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [36:26, 02:58](1751 MB) +PASS -- TEST 'regional_control_faster_intel' [36:21, 01:21](835 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:32, 11:25] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [36:18, 02:15](1499 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [36:17, 02:21](1495 MB) +PASS -- TEST 'control_stochy_debug_intel' [35:39, 01:49](703 MB) +PASS -- TEST 'control_lndp_debug_intel' [35:20, 02:01](705 MB) +PASS -- TEST 'control_csawmg_debug_intel' [35:07, 01:30](1006 MB) +PASS -- TEST 'control_ras_debug_intel' [34:54, 02:08](707 MB) +PASS -- TEST 'control_diag_debug_intel' [34:37, 02:34](1561 MB) +PASS -- TEST 'control_debug_p8_intel' [34:12, 01:36](1786 MB) +PASS -- TEST 'regional_debug_intel' [33:41, 02:11](884 MB) +PASS -- TEST 'rap_control_debug_intel' [33:07, 01:36](1084 MB) +PASS -- TEST 'hrrr_control_debug_intel' [32:31, 01:53](1080 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [32:24, 01:49](1081 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [32:22, 01:44](1080 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [32:20, 01:43](1084 MB) +PASS -- TEST 'rap_diag_debug_intel' [31:30, 01:28](1166 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [31:17, 01:32](1084 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [31:08, 01:39](1084 MB) +PASS -- TEST 'rap_lndp_debug_intel' [31:06, 01:42](1088 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [30:31, 01:40](1085 MB) +PASS -- TEST 'rap_noah_debug_intel' [30:28, 01:48](1082 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [30:27, 01:40](1083 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [30:25, 01:25](1080 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [30:07, 01:45](1080 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [30:04, 01:23](1084 MB) +PASS -- TEST 'rap_flake_debug_intel' [30:02, 01:38](1088 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [29:53, 02:43](1087 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:26, 07:27] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [29:40, 01:40](1580 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:29, 07:54] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [29:13, 01:59](923 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [29:01, 02:16](786 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [28:42, 02:52](781 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [28:23, 02:25](843 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [28:18, 03:03](830 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:00, 02:41](780 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:57, 03:03](677 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:51, 01:20](664 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:29, 09:27] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [27:38, 01:47](998 MB) +PASS -- TEST 'conus13km_2threads_intel' [22:40, 01:58](996 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [22:30, 01:43](866 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:30, 10:58] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [26:57, 02:14](814 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:23, 06:32] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [25:34, 01:50](962 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [24:36, 01:50](960 MB) +PASS -- TEST 'conus13km_debug_intel' [24:36, 01:49](1052 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:36, 01:38](716 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [24:37, 01:35](1047 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:46, 02:11](1114 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [30:53, 28:52] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [21:25, 01:52](982 MB) + +PASS -- COMPILE 'hafsw_intel' [14:29, 12:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [23:41, 03:05](601 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [23:32, 02:07](943 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [23:29, 03:00](648 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [22:53, 02:49](674 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:53, 02:43](695 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [22:52, 02:07](377 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [22:30, 03:12](388 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [20:56, 02:34](282 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:56, 04:52](370 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [20:42, 01:42](401 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:07, 01:52](411 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:51, 01:56](479 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:05, 01:55](315 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [19:33, 16:58] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:50, 02:28](517 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:50, 20:07] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:44, 02:29](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:04, 02:14](703 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:31, 13:23] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:31, 03:41](701 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:29, 11:12] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [17:26, 02:28](651 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:22, 04:02](627 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:02, 02:13](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:38, 12:01] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [16:29, 01:44](1816 MB) + +PASS -- COMPILE 'atml_intel' [17:37, 14:56] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [11:25, 09:03] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [17:46, 14:43] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [14:55, 02:59](3028 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:50, 02:22](2907 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:39, 02:22](2925 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:27, 10:01] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [14:30, 02:45](4443 MB) SYNOPSIS: -Starting Date/Time: 20240805 16:07:37 -Ending Date/Time: 20240805 17:54:48 -Total Time: 01h:47m:56s +Starting Date/Time: 20240807 17:28:56 +Ending Date/Time: 20240807 19:15:26 +Total Time: 01h:47m:05s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/rt.conf b/tests/rt.conf index be3a401f72..07fa091e1b 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -429,7 +429,7 @@ COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DP RUN | cpld_control_pdlib_p8 | + hera hercules | baseline | COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | + hera hercules | fv3 | -RUN | cpld_debug_pdlib_p8 | + hera hercules | baseline | +RUN | cpld_debug_pdlib_p8 | + hercules | baseline | ### CDEPS Data Atmosphere test ### COMPILE | datm_cdeps | gnu | -DAPP=NG-GODAS | + hera hercules | fv3 | diff --git a/tests/test_changes.list b/tests/test_changes.list index c413127f2a..e498af5875 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,77 +1 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 intel -cpld_control_sfs intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_control_c192_p8 intel -cpld_restart_c192_p8 intel -cpld_bmark_p8 intel -cpld_restart_bmark_p8 intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_noaero_p8_agrid intel -cpld_control_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -control_CubedSphereGrid intel -control_CubedSphereGrid_parallel intel -control_latlon intel -control_wrtGauss_netcdf_parallel intel -control_c48 intel -control_c192 intel -control_c384 intel -control_p8 intel -control_p8.v2.sfc intel -control_p8_ugwpv1 intel -control_restart_p8 intel -control_noqr_p8 intel -control_restart_noqr_p8 intel -control_decomp_p8 intel -control_2threads_p8 intel -control_p8_lndp intel -control_p8_rrtmgp intel -control_p8_mynn intel -control_wam intel -control_p8_faster intel -control_CubedSphereGrid_debug intel -control_wrtGauss_netcdf_parallel_debug intel -control_diag_debug intel -control_debug_p8 intel -atm_ds2s_docn_pcice intel -atm_ds2s_docn_dice intel -control_p8_atmlnd_sbs intel -control_p8_atmlnd intel -control_restart_p8_atmlnd intel -control_p8_atmlnd_debug intel -atmwav_control_noaero_p8 intel -atmaero_control_p8 intel -atmaero_control_p8_rad intel -control_c48 gnu -control_p8 gnu -control_p8_ugwpv1 gnu -control_diag_debug gnu -control_debug_p8 gnu -control_wam_debug gnu -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu cpld_debug_pdlib_p8 gnu - diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index 7cfe2f8489..30783d3b52 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -97,7 +97,7 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 - WLCLK=45 + WLCLK=60 elif [[ $MACHINE_ID = gaea ]]; then TPN=16 fi From a1143ccf8618310639fd31c76c2ba83a1d859749 Mon Sep 17 00:00:00 2001 From: JONG KIM Date: Mon, 12 Aug 2024 19:03:48 -0400 Subject: [PATCH 14/33] Addition of python script to add yaml-based test option + Creation of FV3 diag table documentation #2277 + SKEB fix with d_con = zero #2374 (#2278) * UFSWM - python scripts for yaml and rocoto-xml conversion, experiment setup, and test log output * Add python superlint option * Documentation update: doc/UsersGuide/source/tables/fv3_diag_table.rst * FV3 - * atmos_cubed_sphere - bugfix: allocates heat_source when skeb is True and d_con is zero --- .github/linters/.python-lint | 473 +++ .github/linters/.yaml-lint.yml | 28 + .github/workflows/aux.yml | 65 +- .github/workflows/superlinter.yml | 6 +- FV3 | 2 +- doc/UsersGuide/source/Glossary.rst | 3 +- doc/UsersGuide/source/InputsOutputs.rst | 20 + doc/UsersGuide/source/conf.py | 1 + .../source/tables/fv3_diag_table.rst | 13 + doc/UsersGuide/source/tables/fv3diagtable.csv | 422 +++ tests-dev/baseline_setup.yaml | 104 + tests-dev/create_log.py | 209 ++ tests-dev/create_xml.py | 477 ++++ tests-dev/logs/RegressionTests_derecho.log | 324 +++ tests-dev/logs/RegressionTests_hera.log | 416 +++ tests-dev/logs/RegressionTests_hercules.log | 415 +++ .../machine_config/machine_derecho.config | 20 + tests-dev/machine_config/machine_gaea.config | 15 + tests-dev/machine_config/machine_hera.config | 14 + .../machine_config/machine_hercules.config | 17 + tests-dev/machine_config/machine_jet.config | 14 + .../machine_config/machine_noaacloud.config | 15 + tests-dev/machine_config/machine_orion.config | 17 + tests-dev/machine_config/machine_s4.config | 14 + tests-dev/ufs_error-test.yaml | 20 + tests-dev/ufs_test.sh | 276 ++ tests-dev/ufs_test.yaml | 583 ++++ tests-dev/ufs_test_utils.py | 338 +++ tests-dev/ufs_test_utils.sh | 34 + tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_derecho.log | 625 ++-- tests/logs/RegressionTests_gaea.log | 643 ++--- tests/logs/RegressionTests_hera.log | 727 +++-- tests/logs/RegressionTests_hercules.log | 735 ++--- tests/logs/RegressionTests_jet.log | 563 ++-- tests/logs/RegressionTests_orion.log | 528 ++-- tests/logs/RegressionTests_wcoss2.log | 460 +-- tests/parm/fd_ufs.yaml | 2532 ++++++++--------- tests/rt_utils.sh | 2 +- 41 files changed, 7735 insertions(+), 3537 deletions(-) create mode 100644 .github/linters/.python-lint create mode 100644 .github/linters/.yaml-lint.yml create mode 100644 doc/UsersGuide/source/tables/fv3_diag_table.rst create mode 100644 doc/UsersGuide/source/tables/fv3diagtable.csv create mode 100644 tests-dev/baseline_setup.yaml create mode 100644 tests-dev/create_log.py create mode 100644 tests-dev/create_xml.py create mode 100644 tests-dev/logs/RegressionTests_derecho.log create mode 100644 tests-dev/logs/RegressionTests_hera.log create mode 100644 tests-dev/logs/RegressionTests_hercules.log create mode 100644 tests-dev/machine_config/machine_derecho.config create mode 100644 tests-dev/machine_config/machine_gaea.config create mode 100644 tests-dev/machine_config/machine_hera.config create mode 100644 tests-dev/machine_config/machine_hercules.config create mode 100644 tests-dev/machine_config/machine_jet.config create mode 100644 tests-dev/machine_config/machine_noaacloud.config create mode 100644 tests-dev/machine_config/machine_orion.config create mode 100644 tests-dev/machine_config/machine_s4.config create mode 100644 tests-dev/ufs_error-test.yaml create mode 100755 tests-dev/ufs_test.sh create mode 100644 tests-dev/ufs_test.yaml create mode 100644 tests-dev/ufs_test_utils.py create mode 100644 tests-dev/ufs_test_utils.sh diff --git a/.github/linters/.python-lint b/.github/linters/.python-lint new file mode 100644 index 0000000000..748b19b49c --- /dev/null +++ b/.github/linters/.python-lint @@ -0,0 +1,473 @@ +[MASTER] +errors-only= + +# A comma-separated list of package or module names from where C extensions may +# be loaded. Extensions are loading into the active Python interpreter and may +# run arbitrary code +extension-pkg-whitelist= + +# Add files or directories to the blacklist. They should be base names, not +# paths. +ignore=CVS + +# Add files or directories matching the regex patterns to the blacklist. The +# regex matches against base names, not paths. +ignore-patterns= + +# Python code to execute, usually for sys.path manipulation such as +# pygtk.require(). +#init-hook= + +# Use multiple processes to speed up Pylint. +jobs=1 + +# List of plugins (as comma separated values of python modules names) to load, +# usually to register additional checkers. +load-plugins= + +# Pickle collected data for later comparisons. +persistent=yes + +# Specify a configuration file. +#rcfile= + +# When enabled, pylint would attempt to guess common misconfiguration and emit +# user-friendly hints instead of false-positive error messages +suggestion-mode=yes + +# Allow loading of arbitrary C extensions. Extensions are imported into the +# active Python interpreter and may run arbitrary code. +unsafe-load-any-extension=no + + +[MESSAGES CONTROL] + +# Only show warnings with the listed confidence levels. Leave empty to show +# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED +confidence= + +# Disable the message, report, category or checker with the given id(s). You +# can either give multiple identifiers separated by comma (,) or put this +# option multiple times (only on the command line, not in the configuration +# file where it should appear only once).You can also use "--disable=all" to +# disable everything first and then reenable specific checks. For example, if +# you want to run only the similarities checker, you can use "--disable=all +# --enable=similarities". If you want to run only the classes checker, but have +# no Warning level messages displayed, use"--disable=all --enable=classes +# --disable=W" +disable=raw-checker-failed, + bad-inline-option, + locally-disabled, + file-ignored, + suppressed-message, + useless-suppression, + deprecated-pragma, + E0401, + +# Enable the message, report, category or checker with the given id(s). You can +# either give multiple identifier separated by comma (,) or put this option +# multiple time (only on the command line, not in the configuration file where +# it should appear only once). See also the "--disable" option for examples. +enable=c-extension-no-member + + +[REPORTS] + +# Python expression which should return a note less than 10 (10 is the highest +# note). You have access to the variables errors warning, statement which +# respectively contain the number of errors / warnings messages and the total +# number of statements analyzed. This is used by the global evaluation report +# (RP0004). +evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) + +# Template used to display messages. This is a python new-style format string +# used to format the message information. See doc for all details +#msg-template= + +# Set the output format. Available formats are text, parseable, colorized, json +# and msvs (visual studio).You can also give a reporter class, eg +# mypackage.mymodule.MyReporterClass. +output-format=text + +# Tells whether to display a full report or only the messages +reports=no + +# Activate the evaluation score. +score=no + + +[REFACTORING] + +# Maximum number of nested blocks for function / method body +max-nested-blocks=5 + +# Complete name of functions that never returns. When checking for +# inconsistent-return-statements if a never returning function is called then +# it will be considered as an explicit return statement and no message will be +# printed. +never-returning-functions=optparse.Values,sys.exit + + +[VARIABLES] + +# List of additional names supposed to be defined in builtins. Remember that +# you should avoid to define new builtins when possible. +additional-builtins= + +# Tells whether unused global variables should be treated as a violation. +allow-global-unused-variables=yes + +# List of strings which can identify a callback function by name. A callback +# name must start or end with one of those strings. +callbacks=cb_, + _cb + +# A regular expression matching the name of dummy variables (i.e. expectedly +# not used). +dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_ + +# Argument names that match this expression will be ignored. Default to name +# with leading underscore +ignored-argument-names=_.*|^ignored_|^unused_ + +# Tells whether we should check for unused import in __init__ files. +init-import=no + +# List of qualified module names which can have objects that can redefine +# builtins. +redefining-builtins-modules=six.moves,past.builtins,future.builtins + + +[LOGGING] + +# Logging modules to check that the string format arguments are in logging +# function parameter format +logging-modules=logging + + +[TYPECHECK] + +# List of decorators that produce context managers, such as +# contextlib.contextmanager. Add to this list to register other decorators that +# produce valid context managers. +contextmanager-decorators=contextlib.contextmanager + +# List of members which are set dynamically and missed by pylint inference +# system, and so shouldn't trigger E1101 when accessed. Python regular +# expressions are accepted. +generated-members= + +# Tells whether missing members accessed in mixin class should be ignored. A +# mixin class is detected if its name ends with "mixin" (case insensitive). +ignore-mixin-members=yes + +# This flag controls whether pylint should warn about no-member and similar +# checks whenever an opaque object is returned when inferring. The inference +# can return multiple potential results while evaluating a Python object, but +# some branches might not be evaluated, which results in partial inference. In +# that case, it might be useful to still emit no-member and other checks for +# the rest of the inferred objects. +ignore-on-opaque-inference=yes + +# List of class names for which member attributes should not be checked (useful +# for classes with dynamically set attributes). This supports the use of +# qualified names. +ignored-classes=optparse.Values,thread._local,_thread._local + +# List of module names for which member attributes should not be checked +# (useful for modules/projects where namespaces are manipulated during runtime +# and thus existing member attributes cannot be deduced by static analysis. It +# supports qualified module names, as well as Unix pattern matching. +ignored-modules= + +# Show a hint with possible names when a member name was not found. The aspect +# of finding the hint is based on edit distance. +missing-member-hint=yes + +# The minimum edit distance a name should have in order to be considered a +# similar match for a missing member name. +missing-member-hint-distance=1 + +# The total number of similar names that should be taken in consideration when +# showing a hint for a missing member. +missing-member-max-choices=1 + + +[MISCELLANEOUS] + +# List of note tags to take in consideration, separated by a comma. +notes=FIXME, + XXX, + TODO + + +[BASIC] + +# Naming style matching correct argument names +argument-naming-style=snake_case + +# Regular expression matching correct argument names. Overrides argument- +# naming-style +#argument-rgx= + +# Naming style matching correct attribute names +attr-naming-style=snake_case + +# Regular expression matching correct attribute names. Overrides attr-naming- +# style +#attr-rgx= + +# Bad variable names which should always be refused, separated by a comma +bad-names=foo, + bar, + baz, + toto, + tutu, + tata + +# Naming style matching correct class attribute names +class-attribute-naming-style=any + +# Regular expression matching correct class attribute names. Overrides class- +# attribute-naming-style +#class-attribute-rgx= + +# Naming style matching correct class names +class-naming-style=PascalCase + +# Regular expression matching correct class names. Overrides class-naming-style +#class-rgx= + +# Naming style matching correct constant names +const-naming-style=UPPER_CASE + +# Regular expression matching correct constant names. Overrides const-naming- +# style +#const-rgx= + +# Minimum line length for functions/classes that require docstrings, shorter +# ones are exempt. +docstring-min-length=-1 + +# Naming style matching correct function names +function-naming-style=snake_case + +# Regular expression matching correct function names. Overrides function- +# naming-style +#function-rgx= + +# Good variable names which should always be accepted, separated by a comma +good-names=i, + j, + k, + ex, + Run, + _ + +# Include a hint for the correct naming format with invalid-name +include-naming-hint=no + +# Naming style matching correct inline iteration names +inlinevar-naming-style=any + +# Regular expression matching correct inline iteration names. Overrides +# inlinevar-naming-style +#inlinevar-rgx= + +# Naming style matching correct method names +method-naming-style=snake_case + +# Regular expression matching correct method names. Overrides method-naming- +# style +#method-rgx= + +# Naming style matching correct module names +module-naming-style=snake_case + +# Regular expression matching correct module names. Overrides module-naming- +# style +#module-rgx= + +# Colon-delimited sets of names that determine each other's naming style when +# the name regexes allow several styles. +name-group= + +# Regular expression which should only match function or class names that do +# not require a docstring. +no-docstring-rgx=^_ + +# List of decorators that produce properties, such as abc.abstractproperty. Add +# to this list to register other decorators that produce valid properties. +property-classes=abc.abstractproperty + +# Naming style matching correct variable names +variable-naming-style=snake_case + +# Regular expression matching correct variable names. Overrides variable- +# naming-style +#variable-rgx= + + +[SPELLING] + +# Limits count of emitted suggestions for spelling mistakes +max-spelling-suggestions=4 + +# Spelling dictionary name. Available dictionaries: none. To make it working +# install python-enchant package. +spelling-dict= + +# List of comma separated words that should not be checked. +spelling-ignore-words= + +# A path to a file that contains private dictionary; one word per line. +spelling-private-dict-file= + +# Tells whether to store unknown words to indicated private dictionary in +# --spelling-private-dict-file option instead of raising a message. +spelling-store-unknown-words=no + + +[FORMAT] + +# Expected format of line ending, e.g. empty (any line ending), LF or CRLF. +expected-line-ending-format= + +# Regexp for a line that is allowed to be longer than the limit. +ignore-long-lines=^\s*(# )??$ + +# Number of spaces of indent required inside a hanging or continued line. +indent-after-paren=4 + +# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 +# tab). +indent-string=' ' + +# Maximum number of characters on a single line. +max-line-length=150 + +# Maximum number of lines in a module +max-module-lines=1000 + +# Allow the body of a class to be on the same line as the declaration if body +# contains single statement. +single-line-class-stmt=no + +# Allow the body of an if to be on the same line as the test if there is no +# else. +single-line-if-stmt=no + + +[SIMILARITIES] + +# Ignore comments when computing similarities. +ignore-comments=yes + +# Ignore docstrings when computing similarities. +ignore-docstrings=yes + +# Ignore imports when computing similarities. +ignore-imports=no + +# Minimum lines number of a similarity. +min-similarity-lines=4 + + +[DESIGN] + +# Maximum number of arguments for function / method +max-args=5 + +# Maximum number of attributes for a class (see R0902). +max-attributes=7 + +# Maximum number of boolean expressions in a if statement +max-bool-expr=5 + +# Maximum number of branch for function / method body +max-branches=12 + +# Maximum number of locals for function / method body +max-locals=15 + +# Maximum number of parents for a class (see R0901). +max-parents=7 + +# Maximum number of public methods for a class (see R0904). +max-public-methods=20 + +# Maximum number of return / yield for function / method body +max-returns=6 + +# Maximum number of statements in function / method body +max-statements=50 + +# Minimum number of public methods for a class (see R0903). +min-public-methods=2 + + +[IMPORTS] + +# Allow wildcard imports from modules that define __all__. +allow-wildcard-with-all=no + +# Analyse import fallback blocks. This can be used to support both Python 2 and +# 3 compatible code, which means that the block might have code that exists +# only in one or another interpreter, leading to false positives when analysed. +analyse-fallback-blocks=no + +# Deprecated modules which should not be used, separated by a comma +deprecated-modules=regsub, + TERMIOS, + Bastion, + rexec + +# Create a graph of external dependencies in the given file (report RP0402 must +# not be disabled) +ext-import-graph= + +# Create a graph of every (i.e. internal and external) dependencies in the +# given file (report RP0402 must not be disabled) +import-graph= + +# Create a graph of internal dependencies in the given file (report RP0402 must +# not be disabled) +int-import-graph= + +# Force import order to recognize a module as part of the standard +# compatibility libraries. +known-standard-library= + +# Force import order to recognize a module as part of a third party library. +known-third-party=enchant + + +[CLASSES] + +# List of method names used to declare (i.e. assign) instance attributes. +defining-attr-methods=__init__, + __new__, + setUp + +# List of member names, which should be excluded from the protected access +# warning. +exclude-protected=_asdict, + _fields, + _replace, + _source, + _make + +# List of valid names for the first argument in a class method. +valid-classmethod-first-arg=cls + +# List of valid names for the first argument in a metaclass class method. +valid-metaclass-classmethod-first-arg=mcs + + +[EXCEPTIONS] + +# Exceptions that will emit a warning when being caught. Defaults to +# "Exception" +overgeneral-exceptions=builtins.Exception + + diff --git a/.github/linters/.yaml-lint.yml b/.github/linters/.yaml-lint.yml new file mode 100644 index 0000000000..afcac43957 --- /dev/null +++ b/.github/linters/.yaml-lint.yml @@ -0,0 +1,28 @@ +--- + +extends: default + +rules: + braces: + level: warning + max-spaces-inside: 1 + brackets: + level: warning + max-spaces-inside: 1 + colons: + level: warning + commas: disable + comments: disable + comments-indentation: disable + document-start: disable + empty-lines: + level: warning + hyphens: + level: warning + indentation: + level: warning + indent-sequences: consistent + line-length: disable + truthy: disable + trailing-spaces: disable + diff --git a/.github/workflows/aux.yml b/.github/workflows/aux.yml index 49449097a3..b9262bd816 100644 --- a/.github/workflows/aux.yml +++ b/.github/workflows/aux.yml @@ -18,43 +18,42 @@ jobs: runs-on: ubuntu-20.04 steps: - - name: Share helper id - run: echo -n ${{ github.run_id }} >~/id_file + - name: Share helper id + run: echo -n ${{ github.run_id }} >~/id_file - - uses: actions/cache@v2 - with: - path: ~/id_file - key: helperid-${{ github.event.workflow_run.id }} + - uses: actions/cache@v2 + with: + path: ~/id_file + key: helperid-${{ github.event.workflow_run.id }} repocheck: name: Repo check runs-on: ubuntu-20.04 steps: - - name: Check up-to-dateness and post comment - run: | - trap 'echo "exit-code=$?" >> "$GITHUB_OUTPUT"' EXIT - head_sha=${{ github.event.pull_request.head.sha }} - head_brc=${{ github.event.pull_request.head.ref }} - head_url=${{ github.event.pull_request.head.repo.html_url }} - git clone -q -b $head_brc $head_url . - git checkout -q $head_sha - git submodule -q update --init --recursive - cd ${{ github.workspace }}/tests/ci - url=$GITHUB_API_URL/repos/$GITHUB_REPOSITORY - pr_number=$(curl -sS -H $app $url/pulls \ - | jq -r '.[] | select(.head.sha == "'"$head_sha"'") | .number') - echo "pr_number is $pr_number" - pr_uid=${{ github.event.pull_request.head.repo.owner.login }} - echo "pr_uid is $pr_uid" - ./repo_check.sh - #comment="$(./repo_check.sh 2>/dev/null)" - #echo "comment is $comment" - #if [[ -n $comment ]]; then - # curl -sS -X POST -H $app -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ - # $url/issues/$pr_number/comments -d '{"body": "'"${comment}"'"}' - # echo -n "failure" >~/repocheck_file - #else - # echo -n "success" >~/repocheck_file - #fi - + - name: Check up-to-dateness and post comment + run: | + trap 'echo "exit-code=$?" >> "$GITHUB_OUTPUT"' EXIT + head_sha=${{ github.event.pull_request.head.sha }} + head_brc=${{ github.event.pull_request.head.ref }} + head_url=${{ github.event.pull_request.head.repo.html_url }} + git clone -q -b $head_brc $head_url . + git checkout -q $head_sha + git submodule -q update --init --recursive + cd ${{ github.workspace }}/tests/ci + url=$GITHUB_API_URL/repos/$GITHUB_REPOSITORY + pr_number=$(curl -sS -H $app $url/pulls \ + | jq -r '.[] | select(.head.sha == "'"$head_sha"'") | .number') + echo "pr_number is $pr_number" + pr_uid=${{ github.event.pull_request.head.repo.owner.login }} + echo "pr_uid is $pr_uid" + ./repo_check.sh + #comment="$(./repo_check.sh 2>/dev/null)" + #echo "comment is $comment" + #if [[ -n $comment ]]; then + # curl -sS -X POST -H $app -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ + # $url/issues/$pr_number/comments -d '{"body": "'"${comment}"'"}' + # echo -n "failure" >~/repocheck_file + #else + # echo -n "success" >~/repocheck_file + #fi diff --git a/.github/workflows/superlinter.yml b/.github/workflows/superlinter.yml index 4b1ffea8d2..a3d92fc835 100644 --- a/.github/workflows/superlinter.yml +++ b/.github/workflows/superlinter.yml @@ -24,7 +24,7 @@ jobs: - name: Super-Linter uses: super-linter/super-linter@v6.3.0 env: - LINTER_RULES_PATH: / + LINTER_RULES_PATH: '.github/linters/' DEFAULT_BRANCH: origin/develop GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} FILTER_REGEX_EXCLUDE: .*(tests/fv3_conf/.*|tests/ci/.*|tests/auto/.*|tests/auto-jenkins/.*|tests/opnReqTests/.*|tests/opnReqTest|tests/atparse.bash).* @@ -33,5 +33,5 @@ jobs: #VALIDATE_GITHUB_ACTIONS: true #VALIDATE_LUA: true #VALIDATE_MARKDOWN: true - #VALIDATE_PYTHON_PYLINT: true - #VALIDATE_YAML: true + VALIDATE_PYTHON_PYLINT: true + VALIDATE_YAML: true diff --git a/FV3 b/FV3 index aa1484378d..66bded5b3e 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit aa1484378de6cc665910b63a691a1475809f6bb3 +Subproject commit 66bded5b3e6fefc181f7df433acd18c392267311 diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst index 0ac0044002..d43ca7943a 100644 --- a/doc/UsersGuide/source/Glossary.rst +++ b/doc/UsersGuide/source/Glossary.rst @@ -68,7 +68,8 @@ Glossary Global atmospheric model based on fluid dynamics principles, including Euler's equations of motion. EMC - The `Environmental Modeling Center `_ is one of :term:`NCEP`'s nine centers and leads the :term:`National Weather Service `'s modeling efforts. + The `Environmental Modeling Center `__ is one of :term:`NCEP`'s nine centers and leads the :term:`National Weather Service `'s modeling efforts. + ESMF `Earth System Modeling Framework `__. The ESMF defines itself as "a suite of software tools for developing high-performance, multi-component Earth science modeling applications." It is a community-developed software infrastructure for building and coupling models. diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst index fbf767c263..c4a79ed5f8 100644 --- a/doc/UsersGuide/source/InputsOutputs.rst +++ b/doc/UsersGuide/source/InputsOutputs.rst @@ -1304,6 +1304,26 @@ These field section entries are described in :numref:`Table %s ` contains links to the full set of options for each WM component. + +.. _diag-table-options: + +.. list-table:: * *diag_table* Options for WM Components* + :widths: 16 24 24 + :header-rows: 1 + + * - WM Component + - Diag Table + - Source File + * - FV3 + - :ref:`FV3 Variables ` + - `GFS_diagnostics.F90 `_ + * - MOM6 + - `MOM6 Variables `_ + - `MOM_diagnostics.F90 `_ + + A brief example of the diag_table is shown below. ``"..."`` denotes where lines have been removed. .. _code-block-fv3-diag-table: diff --git a/doc/UsersGuide/source/conf.py b/doc/UsersGuide/source/conf.py index 546afb385f..ea5e7cf860 100644 --- a/doc/UsersGuide/source/conf.py +++ b/doc/UsersGuide/source/conf.py @@ -92,6 +92,7 @@ ] # Ignore working links that cause a linkcheck 403 error. linkcheck_ignore = [r'https://agupubs\.onlinelibrary\.wiley\.com/doi/10\.1029/2020MS002260', + r'https://glossary.ametsoc.org/wiki/*', ] # -- Options for HTML output ------------------------------------------------- diff --git a/doc/UsersGuide/source/tables/fv3_diag_table.rst b/doc/UsersGuide/source/tables/fv3_diag_table.rst new file mode 100644 index 0000000000..38435af1b3 --- /dev/null +++ b/doc/UsersGuide/source/tables/fv3_diag_table.rst @@ -0,0 +1,13 @@ +:orphan: + +.. _fv3diagtable: + +**************************** +FV3 Weather Model Variables +**************************** + + +.. csv-table:: + :file: fv3diagtable.csv + :widths: 10, 15 + :header-rows: 1 diff --git a/doc/UsersGuide/source/tables/fv3diagtable.csv b/doc/UsersGuide/source/tables/fv3diagtable.csv new file mode 100644 index 0000000000..6016da5c6b --- /dev/null +++ b/doc/UsersGuide/source/tables/fv3diagtable.csv @@ -0,0 +1,422 @@ +Variable,Description +cldfra2d,Instantaneous 2D (max-in-column) fraction +total_albedo,Total sky albedo at top of atmosphere +lwp_ex,Total liquid water path from explicit microphysics +iwp_ex,Total ice water path from explicit microphysics +lwp_fc,Total liquid water path from cloud fraction scheme +iwp_fc,Total ice water path from cloud fraction scheme +ALBDO_ave,Surface albedo +DLWRF,Surface downward longwave flux +DLWRFI,Instantanous surface downward longwave flux +ULWRF,Surface upward longwave flux +DSWRFItoa,Instantaneous top of atmosphere downward shortwave flux +USWRFtoa,Instantaneous top of atmosphere upward shortwave flux +ULWRFtoa,Instantaneous top of atmosphere upward longwave flux +ULWRFI,Instantaneous surface upward longwave flux +DSWRF,Averaged surface downward shortwave flux +DSWRFI,Instantaneous surface downward shortwave flux +USWRF,Averaged surface upward shortwave flux +USWRFI,Instantaneous surface upward shortwave flux +duvb_ave,UV-B downward solar flux +cduvb_ave,Clear sky UV-B downward solar flux +vbdsf_ave,Visible beam downward solar flux +vddsf_ave,Visible diffuse downward solar flux +nbdsf_ave,Near infrared beam downward solar flux +nddsf_ave,Near infrared diffuse downward solar flux +csulf_avetoa,Clear sky upward longwave flux at top of atmosphere +csusf_avetoa,Clear sky upward shortwave flux at top of atmosphere +csdlf_ave,Clear sky downward longwave flux +csusf_ave,Clear sky upward shortwave flux +csdsf_ave,Clear sky downward shortwave flux +csulf_ave,Clear sky upward longwave flux +DSWRFtoa,Top of atmosphere downward shortwave flux +USWRFtoa,Top of atmosphere upward shortwave flux +ULWRFtoa,Top of atmosphere upward longwave flux +TCDC-aveclm,Atmosphere column total cloud cover +TCDC_avebndcl,Boundary layer cloud layer total cloud cover +TCDCcnvcl,Convective cloud layer total cloud cover +PREScnvclt,Pressure at convective cloud top level +PREScnvclb,Pressure at convective cloud bottom level +TCDC_avehcl,High cloud level total cloud cover +PRES_avehct,Pressure high cloud top level +PRES_avehcb,Pressure high cloud bottom level +TEMP_avehct,Temperature at high cloud top level +TCDC_avemcl,Mid-cloud level total cloud cover +PRES_avemct,Pressure at middle cloud top level +PRES_avemcb,Pressure at middle cloud bottom level +TEMP_avemct,Temperature middle cloud top level +TCDC_avelcl,Low cloud level total cloud cover +PRES_avelct,Pressure low cloud top level +PRES_avelcb,Pressure at low cloud bottom level +TEMP_avelct,Temperature at low cloud top level +AOD_550,Total aerosol optical depth at 550 nm +DU_AOD_550,Dust aerosol optical depth at 550 nm +BC_AOD_550,Soot aerosol optical depth at 550 nm +OC_AOD_550,Water soluble aerosol optical depth at 550 nm +SU_AOD_550,Sulfate aerosol optical depth at 550 nm +SS_AOD_550,Salt aerosol optical depth at 550 nm +aod,Total aerosol optical depth at 550 nm +fluxr,Fluxr diagnostic - GFS radiation +sw_upfxc,Total sky upward shortwave flux at top of atmosphere - GFS radiation +sw_dnfxc,Total sky downward shortwave flux at top of atmosphere - GFS radiation +sw_upfx0,Clear sky upward shortwave flux at top of atmosphere - GFS radiation +lw_upfxc,Total sky upward longwave flux at top of atmosphere - GFS radiation +lw_upfx0,Clear sky upward longwave flux at top of atmosphere - GFS radiation +ssrun_acc,Accumulated surface storm water runoff +evbs_ave,Direct evaporation from bare soil +evcw_ave,Canopy water evaporation +snohf,Snow phase change heat flux +pah_ave,Total precipitation advected heat +trans_ave,Transpiration +sbsno_ave,Sublimation (evaporation from snow) +snowc_ave,Snow cover - GFS lsm +snowc,Snow cover +soilm,Total column soil moisture content +tmpmin2m,Min temperature at 2 meters (height) +tmpmax2m,Max temperature at 2 meters (height) +dusfc,Surface zonal momentum flux +dvsfc,Surface meridional momentum flux +shtfl_ave,Surface sensible heat flux +lhtfl_ave,Surface latent heat flux +totprcp_ave,Surface precipitation rate +totprcpb_ave,Bucket surface precipitation rate +gflux_ave,Surface ground heat flux +dlwsfc,Time-accumulated downward longwave flux at surface +ulwsfc,Time-accumulated upward longwave flux at surface +sunsd_acc,Sunshine duration +watr_acc,Total water runoff +ecan_acc,Total evaporation of intercepted water +etran_acc,Total plant transpiration +edir_acc,Total soil surface evaporation +wa_acc,Total water storage in aquifer +pevpr_ave,Averaged potential evaporation rate +cwork_ave,Cloud work function (valid only with sas) +u-gwd_ave,Surface zonal gravity wave stress +v-gwd_ave,Surface meridional gravity wave stress +psmean,Surface pressure +cnvprcp_ave,Averaged surface convective precipitation rate +cnvprcpb_ave,Averaged bucket surface convective precipitation rate +cnvprcp,Surface convective precipitation rate +spfhmin2m,Minimum specific humidity at 2m +spfhmax2m,Maximum specific humidity at 2m +u10mmax,Maximum (magnitude) u-wind at 10m above ground level (AGL) +v10mmax,Maximum (magnitude) v-wind at 10m AGL +wind10mmax,Maximum wind speed at 10m AGL +u10max,Hourly maximum (magnitude) u-wind +v10max,Hourly maximum (magnitude) v-wind +spd10max,Hourly maximum wind speed +t02max,Maximum hourly temperature at 2 meters +t02min,Minimum hourly temperature at 2 meters +rh02max,Maximum hourly relative humidity at 2 meters +rh02min,Minimum hourly relative humidity at 2 meters +pratemax,Maximum hourly precipitation rate +frzr,Accumulated surface freezing rain +frzrb,Accumulated surface freezing rain in bucket +frozr,Accumulated surface graupel +frozrb,Accumulated surface graupel in bucket +tsnowp,Accumulated surface snow +tsnowpb,Accumulated surface snow in bucket +rhonewsn,Precipitation ice density +rain,Total rain at this time step +rainc,Convective rain at this time step +ice,Ice fall at this time step +snow,Snow fall at this time step +graupel,Graupel fall at this time step +totice_ave,Surface ice precipitation rate +toticeb_ave,Bucket surface ice precipitation rate +totsnw_ave,Surface snow precipitation rate +totsnwb_ave,Bucket surface snow precipitation rate +totgrp_ave,Surface graupel precipitation rate +totgrpb_ave,Bucket surface graupel precipitation rate +sfcdlw,Total sky to surface downward longwave flux +htrlw,Total sky longwave heating rate +lwhc,Clear sky longwave heating rate +u10m,10 meter u wind +v10m,10 meter v wind +dpt2m,2 meter dewpoint temperature +hgt_hyblev1,Layer 1 height +psurf,Surface pressure +hpbl,Surface planetary boundary layer height +pwat,Atmosphere column precipitable water +tmp_hyblev1,Layer 1 temperature +spfh_hyblev1,Layer 1 specific humidity +ugrd-hyblev1,Layer 1 zonal wind +vgrd-hyblev1,Layer 1 meridional wind +sfexc,Exchange coefficient +acond,Aerodynamic conductance +dlwsfci,Instantaneous surface downward longwave flux +ulwsfci,Instantaneous surface upward longwave flux +dswsfci,Instantaneous surface downward shortwave flux +uswsfci,Instantaneous surface upward shortwave flux +dusfci,Instantaneous u component of surface stress +dvsfci,Instantaneous v component of surface stress +shtfl,Instantaneous surface sensible heat net flux +lhtfl,Instantaneous surface latent heat net flux +gfluxi,Instantaneous surface ground heat flux +wilt,Wilting point (volumetric) +fldcp,Field capacity (volumetric) +pahi,Instantaneous precipitation advected heat flux +pevpr,Instantaneous surface potential evaporation +wet1,Normalized soil wetness +cpofp,Precent frozen precipitation +crain_ave,Averaged categorical rain +csnow_ave,Averaged categorical snow +cfrzr_ave,Averaged categorical freezing rain +cicep_ave,Averaged categorical sleet +refl_10cm,Radar reflectivity +max_hail_diam_sfc,Maximum hail diameter at lowest model level +dkt,Atmospheric heat diffusivity +dku,Atmospheric momentum diffusivity +cldfra,Instantaneous 3D cloud fraction +cnvw,Subgrid scale convective cloud water +skebu_wts,Perturbation velocity - u component +skebv_wts,Perturbation velocity - v component +zmtnblck,Level of dividing streamline +refdmax,Max hourly 1-kilometer above ground level reflectivity +refdmax263k,Max hourly -10C reflectivity +sppt_wts,Perturbation velocity (from the SPPT `stochastic physics `_ scheme) +shum_wts,Perturbation velocity (from the SHUM `stochastic physics `_ scheme) +spp_wts_pbl,Stochastically perturbed parameterization weights (magnitude) - planetary boundary layer +spp_wts_sfc,Stochastically perturbed parameterization weights (magnitude) - surface physics + +spp_wts_mp,Stochastically perturbed parameterization weights (magnitude) - microphysics +spp_wts_gwd,Stochastically perturbed parameterization - gravity wave drag +spp_wts_rad,Stochastically perturbed parameterization weights (magnitude) - radiation +spp_wts_cu_deep,Stochastically perturbed parameterization weights (magnitude) for deep convection +sfc_wts,Perturbation amplitude +ca1,Cellular automata +ca_deep,Cellular automaton deep convection +ca_turb,Cellular automaton turbulence +ca_shal,Cellular automaton shallow convection +ca_rad,Cellular automaton radiation +ca_micro,Cellular automaton microphysics +lakefrac,Lake fraction +lakedepth,Lake depth +T_snow,Temperature of snow on a lake +T_ice,Temperature of ice on a lake +use_lake_model,Lake model flag +lake_is_salty,Lake point is considered salty by CLM lake model +lake_cannot_freeze,CLM lake model considers the point to be so salty it cannot freeze +lake_t2m,Temperature at 2 meters from lake model +lake_q2m,2m specific humidity from lake model +lake_albedo,Mid-day surface albedo over lake +lake_h2osno2d,Water equivalent of accumulated snow depth over lake +lake_sndpth2d,Actual accumulated snow depth over lake in CLM lake model +lake_snl2d,Snow layers in CLM lake model (treated as integer) +lake_tsfc,Skin temperature from CLM lake model +lake_savedtke12d,Top level eddy conductivity from previous timestep in CLM lake model +lake_ht,Lake height +zmtb,Height of dividing streamline +zogw,Height of orographic gravity wave (OGW) launch +zlwb,Height of low-level wave breaking +tau_ogw,Orographic gravity wave vertical momentum flux at launch level +tau_mtb,Orographic mountain blocking integrated flux from surface +tau_tofd,Turbulent orographic form drag integrated flux from surface +tau_ngw,Non-stationary gravity waves momentum flux at launch level +du3dt_pbl_ugwp,U-tendency due to planetary boundary layer physics +dv3dt_pbl_ugwp,V-tendency due to planetary boundary layer physics +dt3dt_pbl_ugwp,T-tendency due to planetary boundary layer physics +uav_ugwp,U-daily mean for unified gravity wave physics +tav_ugwp,T-daily mean for unified gravity wave physics +du3dt_ogw,Averaged E-W orographic gravity wave tendency +du3dt_ngw,Averaged E-W non-stationary gravity waves tendency +du3dt_mtb,Averaged E-W mountain blocking tendency +du3dt_tms,Averaged E-W turbulent orographic form drag tendency +dudt_tot,Averaged E-W dycore-tendency +dtdt_tot,Averaged temperature dycore-tendency +dudt_ogw,X wind tendency from mesoscale orographic gravity wave form drag +dvdt_ogw,Y wind tendency from mesoscale orographic gravity wave form drag +dudt_obl,X wind tendency from blocking drag +dvdt_obl,Y wind tendency from blocking drag +du_ogwcol,Integrated x momentum flux from mesoscale orographic gravity wave +dv_ogwcol,Integrated y momentum flux from mesoscale orographic gravity wave +du_oblcol,Integrated x momentum flux from blocking drag +dv_oblcol,Integrated y momentum flux from blocking drag +dws3dt_ogw,Averaged wind speed tendency due to mesoscale gravity wave drag +dws3dt_obl,Averaged wind speed tendency due to blocking drag +dudt_oss,X wind tendency from small scale gravity wave drag +dvdt_oss,Y wind tendency from small scale gravity wave drag +dudt_ofd,X wind tendency from form drag +dcdt_ofd,Y wind tendency from form drag +dws3dt_oss,Averaged wind speed tendency due to small-scale gravity wave drag +dws3dt_ofd,Averaged wind speed tendency due to turbulent orographic form drag +ldu3dt_ogw,Averaged x wind tendency due to mesoscale orographic gravity wave drag +ldu3dt_obl,Averaged x wind tendency due to blocking drag +ldu3dt_ofd,Averaged x wind tendency due to form drag +ldu3dt_oss,Averaged x wind tendency due to small-scale gravity wave drag +du_osscol,Integrated x momentum flux from small-scale gravity wave drag +dv_osscol,Integrated y momentum flux from small-scale gravity wave drag +du_ofdcol,Integrated x momentum flux from form drag +dv_ofdcol,Integrated y momentum flux from form drag +du3_ogwcol,Time averaged surface x momentum flux from mesoscale orographic gravity wave drag +dv3_ogwcol,Time averaged surface y momentum flux from mesoscale orographic gravity wave drag +du3_oblcol,Time averaged surface x momentum flux from blocking drag +dv3_oblcol,Time averaged surface y momentum flux from blocking drag +du3_osscol,Time averaged surface x momentum flux from small-scale gravity wave drag +dv3_osscol,Time averaged surface y momentum flux from small-scale gravity wave drag +du3_ofdcol,Time averaged surface x momentum flux from form drag +dv3_ofdcol,Time averaged surface y momentum flux from form drag +ldu3dt_ngw,Time averaged u momentum tendency due to non-stationary gravity wave drag +ldv3dt_ngw,Time averaged v momentum tendency due to non-stationary gravity wave drag +ldt3dt_ngw,Time averaged temperature tendency due to non-stationary gravity wave drag +upd_mf,Updraft convective mass flux +dwn_mf,Downdraft convective mass flux +det_mf,Detrainment convective mass flux +alnsf,Mean near-infrared albedo with strong cos(z) dependency +alnwf,Mean near-infrared albedo with weak cos(z) dependency +alvsf,Mean visible albedo with strong cos(z) dependency +alvwf,Mean visible albedo with weak cos(z) dependency +canopy,Canopy water (``cnwat`` in GFS data) +f10m,10-meter wind speed divided by lowest model wind speed +facsf,Fractional coverage with strong cos(z) dependency +facwf,Fractional coverage with weak cos(z) dependency +ffhh,FH parameter from planetary boundary layer scheme +ffmm,FM parameter from planetary boundary layer scheme +uustar,U-uStar surface frictional wind +slope,Surface slope type +fice,Surface ice concentration (ice=1; no ice=0) +hice,Sea ice thickness (``icetk`` in ``gfs_data``) +snoalb,Maximum snow albedo in fraction +shdmax,Maximum fractional coverage of green vegetation +shdmin,Minimum fractional coverage of green vegetation +snowd,Surface snow depth +sbsno,Instantaneous sublimation (evaporation from snow) +evbs,Instantaneous direct evaporation over land +evcw,Instantaneous canopy evaporation +trans,Instantaneous transpiration +sfalb,Surface albedo over land +rhofr,Density of frozen precipitation +snowfall_acc_land,Total accumulated frozen precipitation over land +acsnow_land,Total accumulated SWE (snow water equivalent) of frozen precipitation over land +snowmt_land,Accumulated snow melt over land +snowfall_acc_ice,Total accumulated frozen precipitation over ice +acsnow_ice,Total accumulated SWE (snow water equivalent) of frozen precipitaton over ice +snowmt_ice,Accumulated snow melt over ice +crain,Instantaneous categorical rain +stype,Soil type in integer 1-9 +scolor,Soil color in integer 1-20 +lfrac,Land fraction +q2m,2 meter specific humidity +t2m,2 meter temperature +tsfc,Surface temperature +usfco,Surface zonal current +vsfco,Surface meridional current +tiice,Internal ice temperature layer +tg3,Deep soil temperature +tisfc,Surface temperature over ice fraction +tprcp,Total time-step precipitation +vtype,Vegetation type in integer +weasd,Surface snow water equivalent +weasdi,Surface snow water equivalent over ice +snodi,Snow depth over ice +hgtsfc,Surface geopotential height +slmsksfc,"Sea-land-ice mask (0-sea, 1-land, 2-ice)" +zorlsfc,Surface roughness +vfracsfc,Vegetation fraction +wetness,Soil moisture availability in top soil layer +nirbmdi,Surface near infrared beam shortwave downward flux +nirdfdi,Surface near infrared differential shortwave downward flux +visbmdi,Surface uv+visible beam shortwave downward flux +visdfdi,Surface uv+visible differential shortwave downward flux +xlaixy,Leaf area index +vfrac,Fraction of vegetation category +sfrac,Fraction of soil category +slc,Liquid soil moisture +soill,Liquid soil moisture +soilw,Volumetric soil moisture +soilt,Soil temperature +tref, Near Sea Surface Temperature (NSST) reference or foundation temperature +z_c,NSST sub-layer cooling thickness +c_0,NSST coefficient1 to calculate d(tz)/d(ts) +c_d,NSST coefficient2 to calculate d(tz)/d(ts) +w_0,NSST coefficient3 to calculate d(tz)/d(ts) +w_d,NSST coefficient4 to calculate d(tz)/d(ts) +xt,NSST heat content in diurnal thermocline layer +xs,NSST salinity content in diurnal thermocline layer +xu,NSST u-current content in diurnal thermocline layer +xv,NSST v-current content in diurnal thermocline layer +xz,NSST diurnal thermocline layer thickness +zm,NSST mixed layer thickness +xtts,NSST d(xt)/d(ts) +xzts,NSST d(xz)/d(ts) +d_conv,NSST thickness of free convection layer +ifd,NSST index to start diurnal thermocline layer model (DTLM) run or not +dt_cool,NSST sub-layer cooling amount +qrain,NSST sensible heat flux due to rainfall +nwfa,Number concentration of water-friendly aerosols +nwfa2d,Water-friendly surface aerosol source +nifa,Number concentration of ice-friendly aerosols +nifa2d,Ice-friendly surface aerosol source +thompson_diag3d,Thompson extended diagnostics array +fire_heat,Surface fire heat flux +burned,Ratio of the burnt area to the grid cell area +emdust,Emission of fine dust for smoke +emseas,Emission of sea salt for smoke +emanoc,Anthropogenic organic carbon (anoc) emission for Thompson microphysics +coef_bb_dc,Coefficient bb for smoke +min_fplume,Minimum smoke plume height +max_fplume,Maximum smoke plume height +HWP,Hourly fire weather potential +HWP_ave,Averaged fire weather potential +uspdavg,Boundary layer average wind speed +hpbl_thetav,Boundary layer depth modified parcel method +drydep_smoke,Dry deposition smoke +drydep_dust,Dry deposition dust +drydep_coarsepm,Dry deposition coarse pm +wetdpr_smoke,Resolved wet deposition smoke +wetdpr_dust,Resolved wet deposition dust +wetdpr_coarsepm,Resolved wet deposition coarse particulate matter +wetdpc_smoke,Convective wet deposition smoke +wetdpc_dust,Convective wet deposition dust +wetdpc_coarsepm,Convective wet deposition coarse particulate matter +peak_hr,Hour of peak smoke emissions +fire_type,Fire type +lu_nofire,Land use (lu) nofire pixes +lu_qfire,Land use (lu) qfire pixes +fhist,Coefficient to scale the fire activity depending on the fire duration +fire_end_hr,Hours since fire was last detected +ebb_smoke_in,Input smoke emission +frp_output,Output fire radiative power +ebb_rate,Total EBB carbon emissions +frp_davg,Daily mean fire radiative power +hwp_davg,Daily mean hourly wildfire potential +ebu_smoke,Smoke emission +ext550,3D total extinction at 550nm +radar_tten,Temperature tendency due to digital filter initialization (DFI) radar tendencies +ltg1_max,Max lightning threat 1 +ltg2_max,Max lightning threat 2 +ltg3_max,Max lightning threat 3 +cleffr,Effective radius of cloud liquid water particle in micrometers +cieffr,Effective radius of stratiform cloud ice particle in micrometers +cseffr,Effective radius of stratiform cloud snow particle in micrometers +ztop_plume,Height of highest plume +maxmf,Maximum mass-flux in column +maxwidth,Maximum width of plumes in grid column +zol,Monin-Obukhov surface stability parameter +flhc,Surface exchange coefficient for heat +flqc,Surface exchange coefficient for moisture +CLDFRA_BL,Subgrid cloud fraction +QC_BL,Subgrid cloud mixing ratio +EL_PBL,Turbulent mixing length +QKE,2 X TKE (Turbulent Kinetic Energy) (from MYNN) +edmf_a,Updraft area fraction (from MYNN) +edmf_w,Mean updraft vertical velocity (from MYNN) +edmf_qt,Updraft total water (from MYNN) +edmf_thl,Mean liquid potential temperature (from MYNN) +edmf_ent,Updraft entrainment rate (from MYNN) +edmf_qc,Mean updraft liquid water (from MYNN) +sub_thl,Subsidence temperature tendency (from MYNN) +sub_sqv,Subsidence water vapor tendency (from MYNN) +det_thl,Detrainment temperature tendency (from MYNN) +det_sqv,Detrainment water vapor tendency (from MYNN) +aux2d,Auxiliary 2D array +aux3d,Auxiliary 3D array +lake_snow_z3d,Lake snow level depth +lake_snow_dz3d,Lake snow level thickness +lake_snow_zi3d,Lake snow interface depth +lake_h2osoi_vol3d,Volumetric soil water +lake_h2osoi_liq3d,Soil liquid water content +lake_h2osoi_ice3d,Soil ice water content +lake_t_soisno3d,Snow or soil level temperature +lake_t_lake3d,Lake layer temperature +lake_icefrac3d,Lake fractional ice cover diff --git a/tests-dev/baseline_setup.yaml b/tests-dev/baseline_setup.yaml new file mode 100644 index 0000000000..18acbf67c5 --- /dev/null +++ b/tests-dev/baseline_setup.yaml @@ -0,0 +1,104 @@ +hera: + QUEUE: batch + COMPILE_QUEUE: batch + PARTITION: + dprefix: /scratch1/NCEPDEV + DISKNM: /scratch2/NAGAPE/epic/UFS-WM_RT + STMP: /scratch1/NCEPDEV/stmp4 + PTMP: /scratch1/NCEPDEV/stmp2 + RUNDIR_ROOT: + SCHEDULER: slurm + INPUTDATA_ROOT: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/input-data-20240501 + INPUTDATA_ROOT_WW3: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/input-data-20240501/WW3_input_data_20240214 + INPUTDATA_ROOT_BMIC: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/BM_IC-20220207 +orion: + QUEUE: batch + COMPILE_QUEUE: batch + PARTITION: orion + dprefix: /work/noaa/stmp/${USER} + DISKNM: /work/noaa/epic/UFS-WM_RT + STMP: /work/noaa/stmp/${USER}/stmp + PTMP: /work/noaa/stmp/${USER}/stmp + RUNDIR_ROOT: + SCHEDULER: slurm + INPUTDATA_ROOT: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/input-data-20240501 + INPUTDATA_ROOT_WW3: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/input-data-20240501/WW3_input_data_20240214 + INPUTDATA_ROOT_BMIC: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/BM_IC-20220207 +hercules: + QUEUE: batch + COMPILE_QUEUE: batch + PARTITION: hercules + dprefix: /work2/noaa/stmp/${USER} + DISKNM: /work/noaa/epic/hercules/UFS-WM_RT + STMP: /work2/noaa/stmp/${USER} + PTMP: /work2/noaa/stmp/${USER} + RUNDIR_ROOT: + SCHEDULER: slurm + INPUTDATA_ROOT: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/input-data-20240501 + INPUTDATA_ROOT_WW3: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/input-data-20240501/WW3_input_data_20240214 + INPUTDATA_ROOT_BMIC: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/BM_IC-20220207 +gaea: + QUEUE: normal + COMPILE_QUEUE: normal + PARTITION: c5 + dprefix: /gpfs/f5/${ACCNR}/scratch/${USER} + DISKNM: /gpfs/f5/epic/world-shared/UFS-WM_RT + STMP: /gpfs/f5/${ACCNR}/scratch/${USER}/RT_BASELINE + PTMP: /gpfs/f5/${ACCNR}/scratch/${USER}/RT_RUNDIR + RUNDIR_ROOT: + SCHEDULER: slurm + INPUTDATA_ROOT: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/input-data-20240501 + INPUTDATA_ROOT_WW3: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/input-data-20240501/WW3_input_data_20240214 + INPUTDATA_ROOT_BMIC: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/BM_IC-20220207 +jet: + QUEUE: batch + COMPILE_QUEUE: batch + PARTITION: xjet + dprefix: /mnt/lfs4/HFIP/hfv3gfs/${USER} + DISKNM: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT + STMP: /mnt/lfs4/HFIP/hfv3gfs/${USER}/RT_BASELINE + PTMP: /mnt/lfs4/HFIP/hfv3gfs/${USER}/RT_RUNDIRS + RUNDIR_ROOT: + SCHEDULER: slurm + INPUTDATA_ROOT: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/input-data-20240501 + INPUTDATA_ROOT_WW3: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/input-data-20240501/WW3_input_data_20240214 + INPUTDATA_ROOT_BMIC: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/BM_IC-20220207 +derecho: + QUEUE: main + COMPILE_QUEUE: main + PARTITION: + dprefix: /glade/derecho/scratch + DISKNM: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT + STMP: /glade/derecho/scratch + PTMP: /glade/derecho/scratch + RUNDIR_ROOT: + SCHEDULER: pbs + INPUTDATA_ROOT: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/NEMSfv3gfs/input-data-20240501 + INPUTDATA_ROOT_WW3: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/NEMSfv3gfs/input-data-20240501/WW3_input_data_20240214 + INPUTDATA_ROOT_BMIC: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/NEMSfv3gfs/BM_IC-20220207 +noaacloud: + QUEUE: batch + COMPILE_QUEUE: batch + PARTITION: + dprefix: /lustre + DISKNM: /contrib/ufs-weather-model/RT + STMP: /lustre/stmp4 + PTMP: /lustre/stmp2 + RUNDIR_ROOT: + SCHEDULER: slurm + INPUTDATA_ROOT: /contrib/ufs-weather-model/RT/NEMSfv3gfs/input-data-20240501 + INPUTDATA_ROOT_WW3: /contrib/ufs-weather-model/RT/NEMSfv3gfs/input-data-20240501/WW3_input_data_20240214 + INPUTDATA_ROOT_BMIC: /contrib/ufs-weather-model/RT/NEMSfv3gfs/BM_IC-20220207 +s4: + QUEUE: s4 + COMPILE_QUEUE: s4 + PARTITION: s4 + dprefix: /data/prod + DISKNM: /data/prod/emc.nemspara/RT + STMP: /scratch/short/users + PTMP: /scratch/users + RUNDIR_ROOT: + SCHEDULER: slurm + INPUTDATA_ROOT: /data/prod/emc.nemspara/RT/NEMSfv3gfs/input-data-20240501 + INPUTDATA_ROOT_WW3: /data/prod/emc.nemspara/RT/NEMSfv3gfs/input-data-20240501/WW3_input_data_20240214 + INPUTDATA_ROOT_BMIC: /data/prod/emc.nemspara/RT/NEMSfv3gfs/BM_IC-20220207 diff --git a/tests-dev/create_log.py b/tests-dev/create_log.py new file mode 100644 index 0000000000..72ebd5ae70 --- /dev/null +++ b/tests-dev/create_log.py @@ -0,0 +1,209 @@ +import os +import sys +import subprocess +import yaml +from datetime import datetime +from ufs_test_utils import get_testcase, write_logfile, delete_files, machine_check_off + +def finish_log(): + """Collect regression test results and generate log file. + """ + UFS_TEST_YAML = str(os.getenv('UFS_TEST_YAML')) + PATHRT = os.getenv('PATHRT') + MACHINE_ID = os.getenv('MACHINE_ID') + REGRESSIONTEST_LOG = PATHRT+'/logs/RegressionTests_'+MACHINE_ID+'.log' + filename = REGRESSIONTEST_LOG + KEEP_RUNDIR= str(os.getenv('KEEP_RUNDIR')) + ROCOTO = str(os.getenv('ROCOTO')) + CREATE_BASELINE = str(os.getenv('CREATE_BASELINE')) + COMPILE_ONLY = str(os.getenv('COMPILE_ONLY')) + + run_logs= f""" +""" + COMPILE_PASS= 0 + COMPILE_NR = 0 + JOB_NR = 0 + PASS_NR= 0 + FAIL_NR= 0 + failed_list= [] + test_changes_list= PATHRT+'/test_changes.list' + with open(UFS_TEST_YAML, 'r') as f: + rt_yaml = yaml.load(f, Loader=yaml.FullLoader) + for apps, jobs in rt_yaml.items(): + for key, val in jobs.items(): + if (str(key) == 'build'): + machine_check = machine_check_off(MACHINE_ID, val) + PASS_TESTS = False + if machine_check: + COMPILE_NR += 1 + RT_COMPILER = val['compiler'] + COMPILE_ID = apps + COMPILE_LOG = 'compile_'+COMPILE_ID+'.log' + COMPILE_LOG_TIME ='compile_'+COMPILE_ID+'_timestamp.txt' + with open('./logs/log_'+MACHINE_ID+'/'+COMPILE_LOG) as f: + if "[100%] Linking Fortran executable" in f.read(): + COMPILE_PASS += 1 + f.seek(0) + for line in f: + if 'export RUNDIR_ROOT=' in line: + RUNDIR_ROOT=line.split("=")[1] + break + compile_err = RUNDIR_ROOT.strip('\n')+'/compile_'+COMPILE_ID+'/err' + with open(compile_err) as ferr: + contents = ferr.read() + count_warning = contents.count(": warning #") + count_remarks = contents.count(": remark #") + ferr.close() + warning_log = "" + if count_warning > 0: + warning_log = "("+str(count_warning)+" warnings" + if count_remarks > 0: + warning_log+= ","+str(count_remarks)+" remarks)" + flog = open('./logs/log_'+MACHINE_ID+'/'+COMPILE_LOG_TIME) + timing_data = flog.read() + first_line = timing_data.split('\n', 1)[0] + etime = int(first_line.split(",")[4].strip()) - int(first_line.split(",")[1].strip()) + btime = int(first_line.split(",")[3].strip()) - int(first_line.split(",")[2].strip()) + etime_min, etime_sec = divmod(int(etime), 60) + etime_min = f"{etime_min:02}"; etime_sec = f"{etime_sec:02}" + btime_min, btime_sec = divmod(int(btime), 60) + btime_min = f"{btime_min:02}"; btime_sec = f"{btime_sec:02}" + time_log = " ["+etime_min+':'+etime_sec+', '+btime_min+':'+btime_sec+"]" + flog.close() + compile_log = "PASS -- COMPILE "+COMPILE_ID+time_log+warning_log+"\n" + else: + compile_log = "FAIL -- COMPILE "+COMPILE_ID+"\n" + f.close() + run_logs += compile_log + else: + PASS_TESTS = True + if (str(key) == 'tests' and COMPILE_ONLY == 'false' and not PASS_TESTS): + for test in val: + case, config = get_testcase(test) + machine_check = machine_check_off(MACHINE_ID, config) + if machine_check: + JOB_NR+=1 + TEST_NAME = case + TEST_ID = TEST_NAME+'_'+RT_COMPILER + TEST_LOG = 'rt_'+TEST_ID+'.log' + TEST_LOG_TIME= 'run_'+TEST_ID+'_timestamp.txt' + if 'dependency' in config.keys(): + DEP_RUN = str(config['dependency'])+'_'+RT_COMPILER + else: + DEP_RUN = "" + PASS_CHECK = 'Test '+TEST_ID+' PASS' + MAXS_CHECK = 'The maximum resident set size (KB)' + pass_flag = False + create_dep_flag = False + if (CREATE_BASELINE == 'true' and not DEP_RUN == ""): + create_dep_flag = True + if not create_dep_flag: + with open('./logs/log_'+MACHINE_ID+'/'+TEST_LOG) as f: + if PASS_CHECK in f.read(): + pass_flag = True + f.close() + if pass_flag: + f = open('./logs/log_'+MACHINE_ID+'/'+TEST_LOG_TIME) + timing_data = f.read() + first_line = timing_data.split('\n', 1)[0] + etime = str(int(first_line.split(",")[4].strip()) - int(first_line.split(",")[1].strip())) + rtime = str(int(first_line.split(",")[3].strip()) - int(first_line.split(",")[2].strip())) + etime_min, etime_sec = divmod(int(etime), 60) + etime_min = f"{etime_min:02}"; etime_sec = f"{etime_sec:02}" + rtime_min, rtime_sec = divmod(int(rtime), 60) + rtime_min = f"{rtime_min:02}"; rtime_sec = f"{rtime_sec:02}" + time_log = " ["+etime_min+':'+etime_sec+', '+rtime_min+':'+rtime_sec+"]" + f.close() + with open('./logs/log_'+MACHINE_ID+'/'+TEST_LOG) as f: + if pass_flag : + rtlog_file = f.readlines() + for line in rtlog_file: + if MAXS_CHECK in line: + memsize= line.split('=')[1].strip() + test_log = 'PASS -- TEST '+TEST_ID+time_log+' ('+memsize+' MB)\n' + PASS_NR += 1 + else: + test_log = 'FAIL -- TEST '+TEST_ID+'\n' + failed_list.append(TEST_NAME+' '+RT_COMPILER) + FAIL_NR += 1 + run_logs += test_log + f.close() + run_logs += '\n' + write_logfile(filename, "a", output=run_logs) + + TEST_START_TIME = os.getenv('TEST_START_TIME') + TEST_END_TIME = os.getenv('TEST_END_TIME') + start_time = datetime.strptime(TEST_START_TIME, "%Y%m%d %H:%M:%S") + end_time = datetime.strptime(TEST_END_TIME, "%Y%m%d %H:%M:%S") + hours, remainder= divmod((end_time - start_time).total_seconds(), 3600) + minutes, seconds= divmod(remainder, 60) + hours = int(hours); minutes=int(minutes); seconds =int(seconds) + hours = f"{hours:02}"; minutes= f"{minutes:02}"; seconds= f"{seconds:02}" + elapsed_time = hours+'h:'+minutes+'m:'+seconds+'s' + + COMPILE_PASS = str(int(COMPILE_PASS)) + COMPILE_NR = str(int(COMPILE_NR)) + JOB_NR = str(int(JOB_NR)) + PASS_NR = str(int(PASS_NR)) + FAIL_NR = str(int(FAIL_NR)) + synop_log = f""" +SYNOPSIS: +Starting Date/Time: {TEST_START_TIME} +Ending Date/Time: {TEST_END_TIME} +Total Time: {elapsed_time} +Compiles Completed: {COMPILE_PASS}/{COMPILE_NR} +Tests Completed: {PASS_NR}/{JOB_NR} + +""" + write_logfile(filename, "a", output=synop_log) + + if (int(FAIL_NR) == 0): + if os.path.isfile(test_changes_list): + delete_files(test_changes_list) + open(test_changes_list, 'a').close() + SUCCESS = "SUCCESS" + comment_log = f""" +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +Result: {SUCCESS} + +====END OF {MACHINE_ID} REGRESSION TESTING LOG==== +""" + write_logfile(filename, "a", output=comment_log) + else: + with open(test_changes_list, 'w') as listfile: + for line in failed_list: + listfile.write(f"{line}\n") + listfile.close() + SUCCESS = "FAILED" + comment_log = f""" +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 {MACHINE_ID} REGRESSION TESTING LOG==== +""" + write_logfile(filename, "a", output=comment_log) + + print("Performing Cleanup...") + exefiles= PATHRT+'/fv3_*.*x*'; delete_files(exefiles) + modfiles= PATHRT+'/modules.fv3_*'; delete_files(modfiles) + modfiles= PATHRT+'modulefiles/modules.fv3_*'; delete_files(modfiles) + tmpfiles= PATHRT+'/keep_tests.tmp'; delete_files(tmpfiles) + if KEEP_RUNDIR == 'false': + rundir = PATHRT+'/run_dir' + os.unlink(rundir) + if ROCOTO == 'true': + rocotofiles=PATHRT+'/rocoto*' + delete_files(rocotofiles) + lockfiles=PATHRT+'/*_lock.db' + delete_files(lockfiles) + print("REGRESSION TEST RESULT: SUCCESS") + +#if __name__ == '__main__': + diff --git a/tests-dev/create_xml.py b/tests-dev/create_xml.py new file mode 100644 index 0000000000..2d567cec4e --- /dev/null +++ b/tests-dev/create_xml.py @@ -0,0 +1,477 @@ +import os +import sys +import subprocess +import yaml +from ufs_test_utils import get_testcase, write_logfile, rrmdir, machine_check_off + +def rocoto_create_entries(RTPWD,MACHINE_ID,INPUTDATA_ROOT,INPUTDATA_ROOT_WW3,INPUTDATA_ROOT_BMIC,RUNDIR_ROOT,NEW_BASELINE,ROCOTO_XML): + """Generate header information for Rocoto xml file + + Args: + RTPWD (str): Baseline directory + MACHINE_ID (str): Machine ID i.e. Hera, Gaea, Jet, etc. + INPUTDATA_ROOT (str): Input data directory + INPUTDATA_ROOT_WW3 (str): WW3 input data directory + INPUTDATA_ROOT_BMIC (str): BMIC input data directory + RUNDIR_ROOT (str): Test run directory + NEW_BASELINE (str): Directory for newly generated baselines + ROCOTO_XML (str): Rocoto .xml filename to write to + """ + PATHRT = os.getenv('PATHRT') + LOG_DIR= PATHRT+'/logs/log_'+MACHINE_ID + PATHTR, tail = os.path.split(PATHRT) + ROCOTO_SCHEDULER = os.getenv('ROCOTO_SCHEDULER') + rocoto_entries = f""" + + + + + + + + + +]> + + 197001010000 197001010000 01:00:00 + &LOG;/workflow.log +""" + with open(ROCOTO_XML,"w") as f: + f.writelines(rocoto_entries) + f.close() + +def rocoto_create_compile_task(MACHINE_ID,COMPILE_ID,ROCOTO_COMPILE_MAXTRIES,MAKE_OPT,ACCNR,COMPILE_QUEUE,PARTITION,ROCOTO_XML): + """Generate and append compile task into Rocoto xml file + + Args: + MACHINE_ID (str): Machine ID i.e. Hera, Gaea, Jet, etc. + COMPILE_ID (str): Compile identifier e.g. s2swa_intel + ROCOTO_COMPILE_MAXTRIES (str): Max attempts for compile + MAKE_OPT (str): Make build options + ACCNR (str): Account to run the job with + COMPILE_QUEUE (str): QOS i.e. batch, windfall, normal, etc. + PARTITION (str): System partition i.e. xjet, c5 + ROCOTO_XML (str): Rocoto .xml filename to write to + """ + NATIVE="" + BUILD_CORES="8" + BUILD_WALLTIME="00:30:00" + if ( MACHINE_ID == 'jet' ): BUILD_WALLTIME="02:00:00" + if ( MACHINE_ID == 'hera'): BUILD_WALLTIME="01:00:00" + if ( MACHINE_ID == 'orion'): BUILD_WALLTIME="01:00:00" + if ( MACHINE_ID == 'hercules'): BUILD_WALLTIME="01:00:00" + if ( MACHINE_ID == 's4' ): BUILD_WALLTIME="01:00:00" + if ( MACHINE_ID == 'gaea' ): BUILD_WALLTIME="01:00:00" + compile_task = f""" + &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "{MAKE_OPT}" {COMPILE_ID} 2>&1 | tee &LOG;/compile_{COMPILE_ID}.log + compile_{COMPILE_ID} + {ACCNR} + {COMPILE_QUEUE} +""" + if ( MACHINE_ID == 'gaea' ): + compile_task+=f""" --clusters=es + eslogin_c5 +""" + PARTITION= "" + if ( PARTITION != "" and MACHINE_ID != "hera" ): + compile_task+=f""" {PARTITION} +""" + compile_task+=f""" 1:ppn={BUILD_CORES} + {BUILD_WALLTIME} + &RUNDIR_ROOT;/compile_{COMPILE_ID}.log + {NATIVE} + +""" + with open(ROCOTO_XML,"a") as f: + f.writelines(compile_task) + f.close() + +def write_metatask_begin(COMPILE_METATASK_NAME, filename): + """Write compile task metadata to Rocoto xml file + + Args: + COMPILE_METATASK_NAME (str): Compile job name e.g. s2swa_intel + filename (str): Rocoto xml filename to append to + """ + metatask_name = f""" 0 +""" + with open(filename,"a") as f: + f.writelines(metatask_name) + f.close() + +def write_metatask_end(filename): + """Append closing metatask element to Rocoto xml + + Args: + filename (str): Rocoto xml filename + """ + metatask_name = f""" +""" + with open(filename,"a") as f: + f.writelines(metatask_name) + f.close() + +def write_compile_env(SCHEDULER,PARTITION,JOB_NR,COMPILE_QUEUE,RUNDIR_ROOT): + """Generate compile task .env file + + Args: + SCHEDULER (str): Job scheduler e.g. pbs, slurm + PARTITION (str): System partition i.e. xjet, c5 + JOB_NR (str): Job number + COMPILE_QUEUE (str): QOS i.e. batch, windfall, normal, etc. + RUNDIR_ROOT (str): Test run directory + """ + filename = RUNDIR_ROOT+"/compile_"+str(os.getenv('COMPILE_ID'))+".env" + COMPILE_ID = os.getenv('COMPILE_ID') + MACHINE_ID = os.getenv('MACHINE_ID') + RT_COMPILER= os.getenv('RT_COMPILER') + PATHRT = os.getenv('PATHRT') + PATHTR, tail = os.path.split(PATHRT) + ACCNR = os.getenv('ACCNR') + ROCOTO = os.getenv('ROCOTO') + ECFLOW = os.getenv('ECFLOW') + REGRESSIONTEST_LOG = PATHRT+'/logs/RegressionTests_'+MACHINE_ID+'.log' + LOG_DIR = PATHRT+'/logs/log_'+MACHINE_ID + compile_envs = f"""export JOB_NR={JOB_NR} +export COMPILE_ID={COMPILE_ID} +export MACHINE_ID={MACHINE_ID} +export RT_COMPILER={RT_COMPILER} +export PATHRT={PATHRT} +export PATHTR={PATHTR} +export SCHEDULER={SCHEDULER} +export ACCNR={ACCNR} +export QUEUE={COMPILE_QUEUE} +export PARTITION={PARTITION} +export ROCOTO={ROCOTO} +export ECFLOW={ECFLOW} +export REGRESSIONTEST_LOG={REGRESSIONTEST_LOG} +export LOG_DIR={LOG_DIR} +""" + with open(filename,"w+") as f: + f.writelines(compile_envs) + f.close() + +def write_runtest_env(): + """Generate run task .env file + """ + filename = str(os.getenv('RUNDIR_ROOT'))+"/run_test_"+str(os.getenv('TEST_ID'))+".env" + JOB_NR = str(os.getenv('JOB_NR')) + TEST_ID = str(os.getenv('TEST_ID')) + MACHINE_ID = str(os.getenv('MACHINE_ID')) + RT_COMPILER= str(os.getenv('RT_COMPILER')) + RTPWD = str(os.getenv('RTPWD')) + INPUTDATA_ROOT = str(os.getenv('INPUTDATA_ROOT')) + INPUTDATA_ROOT_WW3 = str(os.getenv('INPUTDATA_ROOT_WW3')) + INPUTDATA_ROOT_BMIC= str(os.getenv('INPUTDATA_ROOT_BMIC')) + PATHRT = str(os.getenv('PATHRT')) + PATHTR, tail = os.path.split(PATHRT) + NEW_BASELINE = str(os.getenv('NEW_BASELINE')) + CREATE_BASELINE =str(os.getenv('CREATE_BASELINE')) + RT_SUFFIX = str(os.getenv('RT_SUFFIX')) + BL_SUFFIX = str(os.getenv('BL_SUFFIX')) + SCHEDULER = str(os.getenv('SCHEDULER')) + ACCNR = str(os.getenv('ACCNR')) + QUEUE = str(os.getenv('QUEUE')) + PARTITION = str(os.getenv('PARTITION')) + ROCOTO = str(os.getenv('ROCOTO')) + ECFLOW = str(os.getenv('ECFLOW')) + REGRESSIONTEST_LOG = PATHRT+'/logs/RegressionTests_'+MACHINE_ID+'.log' + LOG_DIR = PATHRT+'/logs/log_'+MACHINE_ID + DEP_RUN = str(os.getenv('DEP_RUN')) + skip_check_results = str(os.getenv('skip_check_results')) + delete_rundir = str(os.getenv('delete_rundir')) + WLCLK = str(os.getenv('WLCLK')) + MACHINE_ID = str(os.getenv('MACHINE_ID')) + runtest_envs = f""" +export JOB_NR={JOB_NR} +export TEST_ID={TEST_ID} +export MACHINE_ID={MACHINE_ID} +export RT_COMPILER={RT_COMPILER} +export RTPWD={RTPWD} +export INPUTDATA_ROOT={INPUTDATA_ROOT} +export INPUTDATA_ROOT_WW3={INPUTDATA_ROOT_WW3} +export INPUTDATA_ROOT_BMIC={INPUTDATA_ROOT_BMIC} +export PATHRT={PATHRT} +export PATHTR={PATHTR} +export NEW_BASELINE={NEW_BASELINE} +export CREATE_BASELINE={CREATE_BASELINE} +export RT_SUFFIX={RT_SUFFIX} +export BL_SUFFIX={BL_SUFFIX} +export SCHEDULER={SCHEDULER} +export ACCNR={ACCNR} +export QUEUE={QUEUE} +export PARTITION={PARTITION} +export ROCOTO={ROCOTO} +export ECFLOW={ECFLOW} +export REGRESSIONTEST_LOG={REGRESSIONTEST_LOG} +export LOG_DIR={LOG_DIR} +export DEP_RUN={DEP_RUN} +export skip_check_results={skip_check_results} +export delete_rundir={delete_rundir} +export WLCLK={WLCLK} +export RTVERBOSE=false +""" + if ( MACHINE_ID == 'jet' ): + runtest_envs+="export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH" + runtest_envs+="export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages" + + with open(filename,"w+") as f: + f.writelines(runtest_envs) + f.close() + +def make_loghead(ACCNR,MACHINE_ID,RUNDIR_ROOT,RTPWD,REGRESSIONTEST_LOG): + """Generate log header information + + Args: + ACCNR (str): Account to run the job with + MACHINE_ID (str): Machine ID i.e. Hera, Gaea, Jet, etc. + RUNDIR_ROOT (str): Test run directory + RTPWD (str): Baseline directory + REGRESSIONTEST_LOG (str): Regression Test log filename + """ + filename = REGRESSIONTEST_LOG + TESTS_FILE = str(os.getenv('TESTS_FILE')) + NEW_BASELINES_FILE = str(os.getenv('NEW_BASELINES_FILE')) + CREATE_BASELINE = str(os.getenv('CREATE_BASELINE')) + DEFINE_CONF_FILE = str(os.getenv('DEFINE_CONF_FILE')) + RTPWD_NEW_BASELINE = str(os.getenv('RTPWD_NEW_BASELINE')) + RUN_SINGLE_TEST = str(os.getenv('RUN_SINGLE_TEST')) + COMPILE_ONLY = str(os.getenv('COMPILE_ONLY')) + delete_rundir = str(os.getenv('delete_rundir')) + skip_check_results = str(os.getenv('skip_check_results')) + KEEP_RUNDIR = str(os.getenv('KEEP_RUNDIR')) + ROCOTO = str(os.getenv('ROCOTO')) + ECFLOW = str(os.getenv('ECFLOW')) + RTVERBOSE = str(os.getenv('RTVERBOSE')) + SRT_NAME = str(os.getenv('SRT_NAME')) + SRT_COMPILER= str(os.getenv('SRT_COMPILER')) + + rtlog_head=f"""====START OF {MACHINE_ID} REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +""" + rtlog_submod=f""" +Submodule hashes used in testing: +""" + write_logfile(filename, "w", output= rtlog_head) + write_logfile(filename, "a", subproc="git rev-parse HEAD") + write_logfile(filename, "a", output= rtlog_submod) + write_logfile(filename, "a", subproc="git submodule status --recursive") + + with open(filename, 'r') as rtlog: + filedata = rtlog.read(); rtlog.close() + + filedata = filedata.replace('../', '') + write_logfile(filename, "w", output= filedata) + + info_note=f""" +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: {RTPWD} +COMPARISON DIRECTORY: {RUNDIR_ROOT} + +UFS_TEST.SH OPTIONS USED: +""" + write_logfile(filename, "a", output= info_note) + + write_logfile(filename, "a", output="* (-a) - HPC PROJECT ACCOUNT: "+ACCNR+"\n") + if (not NEW_BASELINES_FILE == ""): + write_logfile(filename, "a", output="* (-b) - NEW BASELINES FROM FILE: "+NEW_BASELINES_FILE+"\n") + if (CREATE_BASELINE == "true"): + write_logfile(filename, "a", output="* (-c) - CREATE NEW BASELINES"+"\n") + if (DEFINE_CONF_FILE == "true"): + write_logfile(filename, "a", output="* (-l) - USE CONFIG FILE: "+TESTS_FILE+"\n") + if (RTPWD_NEW_BASELINE == "true"): + write_logfile(filename, "a", output="* (-m) - COMPARE AGAINST CREATED BASELINES"+"\n") + if (RUN_SINGLE_TEST == "true"): + write_logfile(filename, "a", output="* (-n) - RUN SINGLE TEST: "+SRT_NAME+" "+SRT_COMPILER+"\n") + if (COMPILE_ONLY == "true"): + write_logfile(filename, "a", output="* (-o) - COMPILE ONLY, SKIP TESTS"+"\n") + if (delete_rundir == "true"): + write_logfile(filename, "a", output="* (-d) - DELETE RUN DIRECTORY"+"\n") + if (skip_check_results == "true"): + write_logfile(filename, "a", output="* (-w) - SKIP RESULTS CHECK"+"\n") + if (KEEP_RUNDIR == "true"): + write_logfile(filename, "a", output="* (-k) - KEEP RUN DIRECTORY"+"\n") + if (ROCOTO == "true"): + write_logfile(filename, "a", output="* (-r) - USE ROCOTO"+"\n") + if (ECFLOW == "true"): + write_logfile(filename, "a", output="* (-e) - USE ECFLOW"+"\n") + if (RTVERBOSE == "true"): + write_logfile(filename, "a", output="* (-v) - VERBOSE OUTPUT"+"\n") + +def xml_loop(): + ACCNR = str(os.getenv('ACCNR')) + PATHRT = str(os.getenv('PATHRT')) + MACHINE_ID = str(os.getenv('MACHINE_ID')) + RTPWD_NEW_BASELINE = str(os.getenv('RTPWD_NEW_BASELINE')) + NEW_BASELINE = str(os.getenv('NEW_BASELINE')) + CREATE_BASELINE = str(os.getenv('CREATE_BASELINE')) + COMPILE_ONLY = str(os.getenv('COMPILE_ONLY')) + delete_rundir = str(os.getenv('delete_rundir')) + if (delete_rundir == "true"): dependency_list= [] + + with open('bl_date.conf', 'r') as bldate: + bl_date = str(bldate.readline()) + BL_DATE = bl_date.split("=")[1].strip() + with open("baseline_setup.yaml", 'r') as f: + exp_config = yaml.load(f, Loader=yaml.FullLoader) + base = exp_config[MACHINE_ID] + USER = str(os.environ.get('USER')) #os.environ.get('USERNAME')) #os.getlogin() + pid = str(os.getpid()) + + QUEUE = str(base['QUEUE']) + COMPILE_QUEUE = str(base['COMPILE_QUEUE']) + PARTITION = str(base['PARTITION']) + if (PARTITION == "None"): PARTITION = "" + dprefix = str(base['dprefix']).replace("${USER}", str(USER)) + dprefix = dprefix.replace("${ACCNR}", str(ACCNR)) + DISKNM = str(base['DISKNM']) + STMP = str(base['STMP']).replace("${USER}", str(USER)) + STMP = STMP.replace("${ACCNR}", str(ACCNR)) + PTMP = str(base['PTMP']).replace("${USER}", str(USER)) + PTMP = PTMP.replace("${ACCNR}", str(ACCNR)) + RUNDIR_ROOT = str(base['RUNDIR_ROOT']) + SCHEDULER = str(base['SCHEDULER']) + INPUTDATA_ROOT= str(base['INPUTDATA_ROOT']) + INPUTDATA_ROOT_WW3 = str(base['INPUTDATA_ROOT_WW3']) + INPUTDATA_ROOT_BMIC= str(base['INPUTDATA_ROOT_BMIC']) + + path = STMP+'/'+USER + os.makedirs(path, exist_ok=True) + NEW_BASELINE = path + '/FV3_RT/REGRESSION_TEST' + if (RUNDIR_ROOT == "None"): RUNDIR_ROOT=PTMP+'/'+USER+'/FV3_RT/rt_'+pid + os.makedirs(RUNDIR_ROOT, exist_ok=True) + if (os.path.islink(PATHRT+'/run_dir')): os.unlink(PATHRT+'/run_dir') + if (os.path.isfile(PATHRT+'/run_dir')): os.remove(PATHRT+'/run_dir') + if (os.path.isdir(PATHRT+'/run_dir')): rrmdir(PATHRT+'/run_dir') + print('Linking ',RUNDIR_ROOT,' to ',PATHRT,'/run_dir') + os.symlink(RUNDIR_ROOT,PATHRT+'/run_dir') + print('Run regression test in: ',RUNDIR_ROOT) + LOG_DIR = PATHRT+'/logs/log_'+MACHINE_ID + os.makedirs(LOG_DIR, exist_ok=True) + + if ( RTPWD_NEW_BASELINE == 'true' ): + RTPWD = NEW_BASELINE + else: + RTPWD = DISKNM+'/NEMSfv3gfs/develop-'+BL_DATE + + if (CREATE_BASELINE == 'false'): + if ( not os.path.isdir(RTPWD) ) : + print("Baseline directory does not exist:",RTPWD) + sys.exit("***Baseline directory trouble***") + elif (len(os.listdir(RTPWD)) == 0): + print("Baseline directory is empty:",RTPWD) + sys.exit("***Baseline directory trouble***") + else: + if ( not os.path.isdir(NEW_BASELINE) ) : + os.makedirs(NEW_BASELINE, exist_ok=True) + else: + rrmdir(NEW_BASELINE) + os.makedirs(NEW_BASELINE, exist_ok=True) + + ROCOTO_TEST_MAXTRIES = "3" + RTVERBOSE = False + os.environ["MACHINE_ID"] = MACHINE_ID + os.environ["ROCOTO_TEST_MAXTRIES"] = ROCOTO_TEST_MAXTRIES + os.environ["NEW_BASELINE"] = NEW_BASELINE + os.environ["RUNDIR_ROOT"] = RUNDIR_ROOT + os.environ["QUEUE"] = QUEUE + os.environ["INPUTDATA_ROOT"] = INPUTDATA_ROOT + os.environ["INPUTDATA_ROOT_WW3"] = INPUTDATA_ROOT_WW3 + os.environ["INPUTDATA_ROOT_BMIC"]= INPUTDATA_ROOT_BMIC + os.environ["PARTITION"] = PARTITION + os.environ["SCHEDULER"] = SCHEDULER + os.environ["RTPWD"] = RTPWD + os.environ["RTVERBOSE"] = str(RTVERBOSE) + + JOB_NR = 0 + ROCOTO = True + ROCOTO_XML = os.getenv('ROCOTO_XML') + rocoto_create_entries(RTPWD,MACHINE_ID,INPUTDATA_ROOT,INPUTDATA_ROOT_WW3,INPUTDATA_ROOT_BMIC,RUNDIR_ROOT,NEW_BASELINE,ROCOTO_XML) + UFS_TEST_YAML = str(os.getenv('UFS_TEST_YAML')) + with open(UFS_TEST_YAML, 'r') as f: + rt_yaml = yaml.load(f, Loader=yaml.FullLoader) + for apps, jobs in rt_yaml.items(): + for key, val in jobs.items(): + if (str(key) == 'build'): + machine_check = machine_check_off(MACHINE_ID, val) + PASS_TESTS = False + if machine_check: + RT_COMPILER = val['compiler'] + COMPILE_ID = apps + MAKE_OPT = val['option'] + os.environ["COMPILE_ID"] = str(COMPILE_ID) + os.environ["MAKE_OPT"] = str(MAKE_OPT) + ROCOTO_COMPILE_MAXTRIES = "3" + os.environ["RT_COMPILER"] = str(RT_COMPILER) + write_compile_env(SCHEDULER,PARTITION,str(JOB_NR),COMPILE_QUEUE,RUNDIR_ROOT) + rocoto_create_compile_task \ + (MACHINE_ID,COMPILE_ID,ROCOTO_COMPILE_MAXTRIES,MAKE_OPT,ACCNR,COMPILE_QUEUE,PARTITION,ROCOTO_XML) + else: + PASS_TESTS = True + if (str(key) == 'tests' and COMPILE_ONLY == 'false' and not PASS_TESTS): + JOB_NR+=1 + if ( ROCOTO ): + write_metatask_begin(COMPILE_ID, ROCOTO_XML) + case_count=0 + for test in val: + case, config = get_testcase(test) + machine_check = machine_check_off(MACHINE_ID, config) + if machine_check: + TEST_NAME = case + TEST_ID = TEST_NAME+'_'+RT_COMPILER + if 'dependency' in config.keys(): + DEP_RUN = str(config['dependency'])+'_'+RT_COMPILER + if (delete_rundir == "true"): dependency_list.append(config['dependency']) + else: + DEP_RUN = "" + RT_SUFFIX = "" + BL_SUFFIX = "" + os.environ["TEST_NAME"] = TEST_NAME + os.environ["DEP_RUN"] = DEP_RUN + os.environ["TEST_ID"] = TEST_ID + os.environ["RT_SUFFIX"] = RT_SUFFIX + os.environ["BL_SUFFIX"] = BL_SUFFIX + os.environ["JOB_NR"] = str(JOB_NR) + if (CREATE_BASELINE == 'true'): + if (DEP_RUN == ""): + rc_set_run_task = subprocess.Popen(['bash', '-c', '. ufs_test_utils.sh; set_run_task']) + rc_set_run_task.wait() + case_count+=1 + else: + rc_set_run_task = subprocess.Popen(['bash', '-c', '. ufs_test_utils.sh; set_run_task']) + rc_set_run_task.wait() + case_count+=1 + if int(case_count) > 0: + write_metatask_end(ROCOTO_XML) + else: + lines = subprocess.check_output(['head', '-n', '-1', ROCOTO_XML]) + lines = lines.decode('utf-8') + with open(ROCOTO_XML, 'w') as filetowrite: + filetowrite.write(lines) + filetowrite.close + rocoto_close=f""" +""" + with open(ROCOTO_XML,"a") as f: + f.writelines(rocoto_close) + f.close() + + REGRESSIONTEST_LOG = PATHRT+'/logs/RegressionTests_'+MACHINE_ID+'.log' + make_loghead(ACCNR,MACHINE_ID,RUNDIR_ROOT,RTPWD,REGRESSIONTEST_LOG) + + if (delete_rundir == "true" and len(dependency_list) > 0): + with open('keep_tests.tmp', 'w+') as fdep: + for i in dependency_list: + fdep.write(str(i) + '\n') + fdep.close() + +#if __name__ == "__main__":6 + diff --git a/tests-dev/logs/RegressionTests_derecho.log b/tests-dev/logs/RegressionTests_derecho.log new file mode 100644 index 0000000000..34232feb9a --- /dev/null +++ b/tests-dev/logs/RegressionTests_derecho.log @@ -0,0 +1,324 @@ +====START OF derecho REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +93160247a9d4bf6a9adefc6fb876e37b8550fcf2 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_47118 + +UFS_TEST.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-r) - USE ROCOTO + +PASS -- COMPILE s2swa_32bit_intel [21:49, 21:49](6 warnings,10 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [06:34, 05:22] (3203236 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [23:43, 23:43](6 warnings,10 remarks) +PASS -- TEST cpld_control_gfsv17_intel [15:50, 14:23] (1911268 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [17:09, 15:24] (1956204 MB) +PASS -- TEST cpld_restart_gfsv17_intel [08:52, 07:14] (1063944 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [17:49, 16:18] (1888684 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [23:29, 23:29](6 warnings,10 remarks) +PASS -- TEST cpld_control_sfs_intel [14:44, 14:12] (1922428 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [12:00, 12:00](1530 warnings,1948 remarks) + +PASS -- COMPILE s2swa_intel [21:17, 21:17](5 warnings,10 remarks) +PASS -- TEST cpld_control_p8_intel [07:00, 05:51] (3225160 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [06:57, 05:43] (3225956 MB) +PASS -- TEST cpld_restart_p8_intel [04:57, 03:28] (3157132 MB) +PASS -- TEST cpld_control_qr_p8_intel [07:03, 05:49] (3254904 MB) +PASS -- TEST cpld_restart_qr_p8_intel [05:09, 03:44] (3181752 MB) +PASS -- TEST cpld_2threads_p8_intel [06:21, 05:21] (3731488 MB) +PASS -- TEST cpld_decomp_p8_intel [07:05, 05:49] (3220488 MB) +PASS -- TEST cpld_mpi_p8_intel [06:02, 04:56] (3538044 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [07:12, 06:05] (3234224 MB) +PASS -- TEST cpld_control_c192_p8_intel [11:15, 09:25] (3813104 MB) +PASS -- TEST cpld_restart_c192_p8_intel [08:54, 06:21] (3622076 MB) +PASS -- TEST cpld_bmark_p8_intel [17:25, 10:45] (4508432 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [16:14, 06:55] (4659692 MB) +PASS -- TEST cpld_s2sa_p8_intel [06:27, 05:23] (3210320 MB) + +PASS -- COMPILE s2sw_intel [19:31, 19:31](5 warnings,10 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [05:25, 04:29] (1928660 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [05:31, 04:27] (1991852 MB) + +PASS -- COMPILE s2swa_debug_intel [11:50, 11:50](1455 warnings,1209 remarks) +PASS -- TEST cpld_debug_p8_intel [09:21, 08:14] (3300200 MB) + +PASS -- COMPILE s2sw_debug_intel [11:12, 11:12](1455 warnings,1209 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [06:37, 05:39] (1960752 MB) + +PASS -- COMPILE s2s_aoflux_intel [15:40, 15:40](5 warnings,3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:43, 04:38] (1991868 MB) + +PASS -- COMPILE s2s_intel [15:40, 15:40](5 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [06:59, 06:14] (2940124 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:39, 01:53] (2940464 MB) +PASS -- TEST cpld_restart_c48_intel [01:52, 01:04] (2323524 MB) + +PASS -- COMPILE s2swa_faster_intel [25:33, 25:33](5 warnings,10 remarks) +PASS -- TEST cpld_control_p8_faster_intel [07:06, 05:54] (3233236 MB) + +PASS -- COMPILE s2sw_pdlib_intel [22:01, 22:00](5 warnings,10 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [15:52, 14:49] (1938892 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [09:15, 08:03] (1101660 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [17:41, 16:39] (1901196 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [11:00, 11:00](1565 warnings,1948 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [24:47, 23:39] (1959192 MB) + +PASS -- COMPILE atm_dyn32_intel [15:17, 15:17](6 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:39, 03:25] (669952 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:05, 02:29] (1571368 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [03:05, 02:26] (1578496 MB) +PASS -- TEST control_latlon_intel [02:57, 02:25] (1571048 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:08, 02:30] (1571156 MB) +PASS -- TEST control_c48_intel [06:33, 06:02] (1615012 MB) +PASS -- TEST control_c48.v2.sfc_intel [05:30, 05:15] (734072 MB) +PASS -- TEST control_c192_intel [09:45, 08:57] (1684744 MB) +PASS -- TEST control_c384_intel [10:37, 09:00] (2001884 MB) +PASS -- TEST control_c384gdas_intel [09:39, 07:10] (1198112 MB) +PASS -- TEST control_stochy_intel [01:39, 01:26] (625784 MB) +PASS -- TEST control_stochy_restart_intel [01:05, 00:52] (440844 MB) +PASS -- TEST control_lndp_intel [01:35, 01:21] (626396 MB) +PASS -- TEST control_iovr4_intel [02:16, 02:03] (620764 MB) +PASS -- TEST control_iovr5_intel [02:19, 02:05] (621112 MB) +PASS -- TEST control_p8_intel [04:13, 03:02] (1868600 MB) +PASS -- TEST control_p8.v2.sfc_intel [04:19, 03:04] (1866204 MB) +PASS -- TEST control_p8_ugwpv1_intel [04:21, 03:05] (1875488 MB) +PASS -- TEST control_restart_p8_intel [03:32, 02:19] (1017524 MB) +PASS -- TEST control_noqr_p8_intel [04:24, 03:15] (1853448 MB) +PASS -- TEST control_restart_noqr_p8_intel [03:13, 02:05] (1019644 MB) +PASS -- TEST control_decomp_p8_intel [04:18, 03:04] (1865376 MB) +PASS -- TEST control_2threads_p8_intel [04:32, 03:18] (1953660 MB) +PASS -- TEST control_p8_lndp_intel [05:58, 05:23] (1869296 MB) +PASS -- TEST control_p8_rrtmgp_intel [05:36, 04:12] (1920604 MB) +PASS -- TEST control_p8_mynn_intel [04:37, 03:23] (1868512 MB) +PASS -- TEST merra2_thompson_intel [05:05, 03:36] (1871024 MB) +PASS -- TEST regional_control_intel [05:09, 04:40] (872080 MB) +PASS -- TEST regional_restart_intel [03:04, 02:35] (870640 MB) +PASS -- TEST regional_decomp_intel [05:22, 04:51] (874728 MB) +PASS -- TEST regional_noquilt_intel [05:08, 04:34] (1188576 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:09, 04:37] (872044 MB) +PASS -- TEST regional_2dwrtdecomp_intel [05:18, 04:49] (878052 MB) +PASS -- TEST regional_wofs_intel [06:20, 05:51] (1602908 MB) + +PASS -- COMPILE rrfs_intel [13:01, 13:01](8 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:24, 06:19] (1008248 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:53, 03:59] (1198804 MB) +PASS -- TEST rap_decomp_intel [07:40, 06:34] (1010324 MB) +PASS -- TEST rap_2threads_intel [06:50, 05:43] (1094796 MB) +PASS -- TEST rap_restart_intel [04:16, 03:11] (883472 MB) +PASS -- TEST rap_sfcdiff_intel [07:19, 06:14] (1005324 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [07:28, 06:24] (1003512 MB) +PASS -- TEST rap_sfcdiff_restart_intel [05:50, 04:41] (881792 MB) +PASS -- TEST hrrr_control_intel [04:16, 03:10] (1004808 MB) +PASS -- TEST hrrr_control_decomp_intel [04:24, 03:15] (1002620 MB) +PASS -- TEST hrrr_control_2threads_intel [03:59, 02:47] (1091728 MB) +PASS -- TEST hrrr_control_restart_intel [02:03, 01:47] (837412 MB) +PASS -- TEST rrfs_v1beta_intel [07:03, 05:59] (1002872 MB) +PASS -- TEST rrfs_v1nssl_intel [07:42, 07:29] (1959488 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [07:25, 07:11] (1948428 MB) + +PASS -- COMPILE csawmg_intel [11:15, 11:15](5 warnings +PASS -- TEST control_csawmg_intel [07:11, 06:40] (963844 MB) +PASS -- TEST control_ras_intel [03:03, 02:51] (657856 MB) + +PASS -- COMPILE wam_intel [10:50, 10:49](5 warnings,1 remarks) +PASS -- TEST control_wam_intel [10:45, 10:14] (1665232 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [17:31, 17:31](5 warnings,1 remarks) +PASS -- TEST control_p8_faster_intel [04:17, 03:03] (1869744 MB) +PASS -- TEST regional_control_faster_intel [04:54, 04:26] (858376 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [13:04, 13:04](889 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [03:06, 02:31] (1615172 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [03:05, 02:28] (1602992 MB) +PASS -- TEST control_stochy_debug_intel [03:06, 02:53] (808768 MB) +PASS -- TEST control_lndp_debug_intel [02:47, 02:35] (813012 MB) +PASS -- TEST control_csawmg_debug_intel [05:00, 04:32] (1123068 MB) +PASS -- TEST control_ras_debug_intel [02:50, 02:36] (817036 MB) +PASS -- TEST control_diag_debug_intel [03:13, 02:35] (1669840 MB) +PASS -- TEST control_debug_p8_intel [03:39, 03:08] (1906380 MB) +PASS -- TEST regional_debug_intel [16:39, 16:10] (930060 MB) +PASS -- TEST rap_control_debug_intel [04:52, 04:40] (1197948 MB) +PASS -- TEST hrrr_control_debug_intel [04:48, 04:34] (1185156 MB) +PASS -- TEST hrrr_gf_debug_intel [04:55, 04:43] (1192180 MB) +PASS -- TEST hrrr_c3_debug_intel [04:52, 04:40] (1193720 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:55, 04:41] (1195636 MB) +PASS -- TEST rap_diag_debug_intel [05:19, 04:52] (1277036 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [05:06, 04:52] (1195152 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [05:00, 04:45] (1191324 MB) +PASS -- TEST rap_lndp_debug_intel [04:54, 04:41] (1195948 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:55, 04:44] (1196592 MB) +PASS -- TEST rap_noah_debug_intel [04:47, 04:32] (1190712 MB) +PASS -- TEST rap_sfcdiff_debug_intel [04:51, 04:38] (1196856 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:42, 07:28] (1190716 MB) +PASS -- TEST rrfs_v1beta_debug_intel [04:51, 04:35] (1185388 MB) +PASS -- TEST rap_clm_lake_debug_intel [05:59, 05:44] (1193440 MB) +PASS -- TEST rap_flake_debug_intel [04:54, 04:39] (1194012 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [09:15, 07:57] (1192380 MB) + +PASS -- COMPILE wam_debug_intel [06:46, 06:46](844 warnings,1 remarks) +PASS -- TEST control_wam_debug_intel [13:00, 12:26] (1698848 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [11:06, 11:06](8 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:27, 03:35] (1058912 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [06:24, 05:22] (882748 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [04:20, 02:48] (883804 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [05:47, 04:48] (956156 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [03:58, 02:25] (941780 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:25, 02:53] (881488 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [04:53, 03:52] (794252 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [01:50, 01:35] (780276 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [15:09, 15:09](8 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:40, 01:58] (1088192 MB) +PASS -- TEST conus13km_2threads_intel [01:34, 00:59] (1087084 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:47, 01:09] (977220 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [11:11, 11:11](8 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:04, 03:35] (906176 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [07:09, 07:09](792 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:52, 04:38] (1069432 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:44, 04:31] (1067992 MB) +PASS -- TEST conus13km_debug_intel [14:07, 13:26] (1151972 MB) +PASS -- TEST conus13km_debug_qr_intel [14:08, 13:28] (835884 MB) +PASS -- TEST conus13km_debug_2threads_intel [08:23, 07:46] (1152964 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [13:55, 13:19] (1222628 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [06:57, 06:57](792 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:58, 04:45] (1097584 MB) + +PASS -- COMPILE hafsw_intel [18:17, 18:17](6 warnings,9 remarks) +PASS -- TEST hafs_regional_atm_intel [05:21, 04:30] (717484 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:18, 04:57] (1071024 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [07:30, 06:24] (774896 MB) +PASS -- TEST hafs_regional_atm_wav_intel [11:50, 10:55] (793196 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [13:18, 12:08] (816260 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [05:17, 04:38] (481144 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [06:42, 05:43] (492940 MB) +PASS -- TEST hafs_global_1nest_atm_intel [02:51, 02:17] (392240 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [07:50, 06:07] (458060 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [03:54, 03:20] (513732 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [03:42, 03:01] (511248 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [04:34, 03:50] (588008 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:27, 01:13] (425212 MB) +PASS -- TEST gnv1_nested_intel [06:02, 04:00] (1712924 MB) + +PASS -- COMPILE hafsw_debug_intel [08:17, 08:17](1472 warnings,1481 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [13:00, 12:17] (632600 MB) + +PASS -- COMPILE hafsw_faster_intel [26:55, 26:55](5 warnings,8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [07:55, 07:07] (632268 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [08:00, 07:10] (693776 MB) + +PASS -- COMPILE hafs_mom6w_intel [19:00, 18:59](5 warnings,7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [06:07, 05:19] (682816 MB) + +PASS -- COMPILE hafs_all_intel [15:38, 15:38](5 warnings,8 remarks) +PASS -- TEST hafs_regional_docn_intel [06:40, 05:45] (759308 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [06:48, 05:48] (740812 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:00, 16:18] (894376 MB) + +PASS -- COMPILE datm_cdeps_intel [08:29, 08:29](5 warnings,2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [02:37, 02:31] (769544 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:39, 01:30] (757816 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [02:32, 02:25] (646652 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [02:33, 02:24] (647020 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:33, 02:25] (650428 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:41, 02:30] (768700 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:36, 02:31] (769452 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:27, 02:21] (650680 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [06:38, 05:34] (698620 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [06:33, 05:34] (680764 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:32, 02:29] (757388 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:03, 03:56] (2032516 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:00, 03:53] (2034936 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [05:54, 05:54](7 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [05:17, 05:09] (754740 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [08:28, 08:28](5 warnings,2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:37, 02:30] (769112 MB) + +PASS -- COMPILE datm_cdeps_land_intel [02:46, 02:46],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:27, 01:09] (311792 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:13, 01:01] (451292 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:56, 00:41] (450340 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [13:16, 13:16](5 warnings,3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [04:44, 03:44] (1921228 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [12:12, 12:12](5 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [04:52, 03:51] (1911260 MB) + +PASS -- COMPILE atml_intel [15:09, 15:08](13 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [08:20, 06:59] (1896040 MB) +PASS -- TEST control_p8_atmlnd_intel [08:17, 06:56] (1882936 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [04:43, 04:05] (1039484 MB) + +PASS -- COMPILE atml_debug_intel [09:44, 09:44](887 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [07:37, 06:12] (1937452 MB) + +PASS -- COMPILE atmw_intel [14:35, 14:35](5 warnings,8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [03:28, 02:12] (1887112 MB) + +PASS -- COMPILE atmaero_intel [12:31, 12:31](5 warnings,1 remarks) +PASS -- TEST atmaero_control_p8_intel [05:38, 04:15] (3122868 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:35, 04:20] (2998540 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [05:26, 04:23] (3009904 MB) + +PASS -- COMPILE atmaq_debug_intel [07:52, 07:52](889 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [23:54, 22:11] (4536424 MB) + + +SYNOPSIS: +Starting Date/Time: 20240729 12:53:57 +Ending Date/Time: 20240729 17:32:15 +Total Time: 04h:38m:18s +Compiles Completed: 41/41 +Tests Completed: 183/183 + + +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +Result: SUCCESS + +====END OF derecho REGRESSION TESTING LOG==== diff --git a/tests-dev/logs/RegressionTests_hera.log b/tests-dev/logs/RegressionTests_hera.log new file mode 100644 index 0000000000..9cec2a7896 --- /dev/null +++ b/tests-dev/logs/RegressionTests_hera.log @@ -0,0 +1,416 @@ +====START OF hera REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +5e659f10e5df1f1d1b5eda1c0706927953108f7e + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_852179 + +UFS_TEST.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE s2swa_32bit_intel [13:57, 13:55](1 warnings,8 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [06:54, 05:59] (3275484 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [16:22, 16:20](1 warnings,8 remarks) +PASS -- TEST cpld_control_gfsv17_intel [18:07, 17:19] (1995288 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [19:10, 18:10] (2156140 MB) +PASS -- TEST cpld_restart_gfsv17_intel [09:22, 08:21] (1244284 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [20:10, 19:27] (1853500 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [16:26, 16:24](1 warnings,8 remarks) +PASS -- TEST cpld_control_sfs_intel [17:29, 16:57] (1937068 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [05:41, 05:40](1525 warnings,1998 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [23:50, 23:02] (1923896 MB) + +PASS -- COMPILE s2swa_intel [13:57, 13:55],8 remarks) +PASS -- TEST cpld_control_p8_intel [06:58, 05:59] (3332484 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [07:38, 06:36] (3319044 MB) +PASS -- TEST cpld_restart_p8_intel [04:46, 03:45] (3253540 MB) +PASS -- TEST cpld_control_qr_p8_intel [07:03, 06:08] (3334096 MB) +PASS -- TEST cpld_restart_qr_p8_intel [04:46, 03:35] (3289136 MB) +PASS -- TEST cpld_2threads_p8_intel [06:20, 05:30] (3626160 MB) +PASS -- TEST cpld_decomp_p8_intel [06:54, 06:04] (3323856 MB) +PASS -- TEST cpld_mpi_p8_intel [06:00, 05:13] (3191556 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [06:55, 05:58] (3325868 MB) +PASS -- TEST cpld_control_c192_p8_intel [12:06, 10:18] (3515648 MB) +PASS -- TEST cpld_restart_c192_p8_intel [09:03, 06:38] (3634720 MB) +PASS -- TEST cpld_bmark_p8_intel [16:51, 10:24] (4265404 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [13:55, 06:10] (4366120 MB) +PASS -- TEST cpld_s2sa_p8_intel [06:19, 05:23] (3315468 MB) + +PASS -- COMPILE s2sw_intel [13:12, 13:10],8 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [05:47, 04:54] (1990872 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [05:24, 04:28] (2056176 MB) + +PASS -- COMPILE s2swa_debug_intel [05:44, 05:43](1450 warnings,1228 remarks) +PASS -- TEST cpld_debug_p8_intel [09:43, 08:48] (3359844 MB) + +PASS -- COMPILE s2sw_debug_intel [05:16, 05:15](1450 warnings,1228 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [06:59, 06:01] (1989136 MB) + +PASS -- COMPILE s2s_aoflux_intel [12:33, 12:32],1 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:17, 04:22] (2043880 MB) + +PASS -- COMPILE s2s_intel [12:34, 12:33],1 remarks) +PASS -- TEST cpld_control_c48_intel [09:32, 08:56] (3108564 MB) +PASS -- TEST cpld_warmstart_c48_intel [03:14, 02:38] (3095072 MB) +PASS -- TEST cpld_restart_c48_intel [02:06, 01:31] (2521764 MB) + +PASS -- COMPILE s2swa_faster_intel [17:43, 17:42],8 remarks) +PASS -- TEST cpld_control_p8_faster_intel [06:31, 05:32] (3329308 MB) + +PASS -- COMPILE s2sw_pdlib_intel [16:11, 16:11],8 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [18:28, 17:36] (2001816 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [09:26, 08:25] (1268892 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [20:58, 20:01] (1914436 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [05:21, 05:20](1560 warnings,1998 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [25:39, 24:52] (1945360 MB) + +PASS -- COMPILE atm_dyn32_intel [11:51, 11:50](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:40, 03:24] (709940 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:27, 02:58] (1602864 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [03:33, 03:00] (1603592 MB) +PASS -- TEST control_latlon_intel [03:22, 02:54] (1604196 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:29, 02:56] (1605116 MB) +PASS -- TEST control_c48_intel [08:03, 07:34] (1766076 MB) +PASS -- TEST control_c48.v2.sfc_intel [07:02, 06:32] (874424 MB) +PASS -- TEST control_c192_intel [11:19, 10:33] (1733616 MB) +PASS -- TEST control_c384_intel [11:55, 10:23] (2009184 MB) +PASS -- TEST control_c384gdas_intel [10:14, 07:52] (1404820 MB) +PASS -- TEST control_stochy_intel [01:53, 01:37] (662192 MB) +PASS -- TEST control_stochy_restart_intel [01:16, 00:59] (512280 MB) +PASS -- TEST control_lndp_intel [01:47, 01:33] (668412 MB) +PASS -- TEST control_iovr4_intel [03:11, 02:55] (659672 MB) +PASS -- TEST control_iovr5_intel [03:09, 02:55] (659496 MB) +PASS -- TEST control_p8_intel [04:05, 03:19] (1897244 MB) +PASS -- TEST control_p8.v2.sfc_intel [04:00, 03:10] (1896492 MB) +PASS -- TEST control_p8_ugwpv1_intel [03:44, 03:04] (1879792 MB) +PASS -- TEST control_restart_p8_intel [02:22, 01:45] (1142152 MB) +PASS -- TEST control_noqr_p8_intel [03:38, 03:04] (1874324 MB) +PASS -- TEST control_restart_noqr_p8_intel [02:20, 01:44] (1161668 MB) +PASS -- TEST control_decomp_p8_intel [03:43, 03:10] (1852628 MB) +PASS -- TEST control_2threads_p8_intel [03:27, 02:54] (1984284 MB) +PASS -- TEST control_p8_lndp_intel [05:57, 05:26] (1876244 MB) +PASS -- TEST control_p8_rrtmgp_intel [04:45, 04:07] (1950676 MB) +PASS -- TEST control_p8_mynn_intel [03:52, 03:09] (1901556 MB) +PASS -- TEST merra2_thompson_intel [04:11, 03:33] (1889680 MB) +PASS -- TEST regional_control_intel [05:58, 05:27] (1094840 MB) +PASS -- TEST regional_restart_intel [03:24, 03:00] (1099188 MB) +PASS -- TEST regional_decomp_intel [06:15, 05:48] (1096988 MB) +PASS -- TEST regional_2threads_intel [03:52, 03:27] (1094616 MB) +PASS -- TEST regional_noquilt_intel [05:42, 05:16] (1396724 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:52, 05:27] (1101484 MB) +PASS -- TEST regional_2dwrtdecomp_intel [05:45, 05:21] (1105076 MB) +PASS -- TEST regional_wofs_intel [07:24, 06:55] (1897552 MB) + +PASS -- COMPILE rrfs_intel [11:25, 11:23](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [08:12, 07:44] (1113888 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [05:02, 04:11] (1303848 MB) +PASS -- TEST rap_decomp_intel [08:40, 08:09] (1045768 MB) +PASS -- TEST rap_2threads_intel [07:53, 07:25] (1186000 MB) +PASS -- TEST rap_restart_intel [04:32, 04:01] (1105316 MB) +PASS -- TEST rap_sfcdiff_intel [08:18, 07:44] (1112948 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [08:36, 08:09] (1033808 MB) +PASS -- TEST rap_sfcdiff_restart_intel [06:20, 05:48] (1137476 MB) +PASS -- TEST hrrr_control_intel [04:26, 03:58] (1041044 MB) +PASS -- TEST hrrr_control_decomp_intel [04:38, 04:13] (1031336 MB) +PASS -- TEST hrrr_control_2threads_intel [04:03, 03:39] (1116748 MB) +PASS -- TEST hrrr_control_restart_intel [02:30, 02:10] (999008 MB) +PASS -- TEST rrfs_v1beta_intel [08:07, 07:35] (1103292 MB) +PASS -- TEST rrfs_v1nssl_intel [09:37, 09:22] (1976260 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:20, 09:04] (2071088 MB) + +PASS -- COMPILE csawmg_intel [10:28, 10:26] +PASS -- TEST control_csawmg_intel [06:36, 06:09] (1021928 MB) +PASS -- TEST control_ras_intel [03:27, 03:15] (750380 MB) + +PASS -- COMPILE csawmg_gnu [04:22, 04:20] +PASS -- TEST control_csawmg_gnu [08:54, 08:26] (750412 MB) + +PASS -- COMPILE wam_intel [10:34, 10:33],1 remarks) +PASS -- TEST control_wam_intel [11:23, 10:50] (1665804 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [14:47, 14:46],1 remarks) +PASS -- TEST control_p8_faster_intel [03:30, 02:52] (1877100 MB) +PASS -- TEST regional_control_faster_intel [05:15, 04:51] (1091668 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [06:39, 06:37](884 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [03:16, 02:47] (1604436 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [03:12, 02:38] (1623716 MB) +PASS -- TEST control_stochy_debug_intel [03:21, 03:06] (833528 MB) +PASS -- TEST control_lndp_debug_intel [03:11, 02:55] (832248 MB) +PASS -- TEST control_csawmg_debug_intel [04:42, 04:19] (1155312 MB) +PASS -- TEST control_ras_debug_intel [03:08, 02:55] (844692 MB) +PASS -- TEST control_diag_debug_intel [03:26, 02:52] (1668648 MB) +PASS -- TEST control_debug_p8_intel [03:42, 03:13] (1889836 MB) +PASS -- TEST regional_debug_intel [18:09, 17:43] (1103940 MB) +PASS -- TEST rap_control_debug_intel [05:11, 04:58] (1218676 MB) +PASS -- TEST hrrr_control_debug_intel [05:16, 05:01] (1213800 MB) +PASS -- TEST hrrr_gf_debug_intel [05:17, 05:04] (1217072 MB) +PASS -- TEST hrrr_c3_debug_intel [05:17, 05:05] (1171408 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [05:18, 05:05] (1213252 MB) +PASS -- TEST rap_diag_debug_intel [05:37, 05:11] (1306372 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [05:21, 05:09] (1221840 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [05:20, 05:07] (1222464 MB) +PASS -- TEST rap_lndp_debug_intel [05:13, 04:59] (1222344 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [05:21, 05:06] (1219020 MB) +PASS -- TEST rap_noah_debug_intel [05:03, 04:48] (1218732 MB) +PASS -- TEST rap_sfcdiff_debug_intel [05:16, 05:04] (1211628 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:22, 08:07] (1220132 MB) +PASS -- TEST rrfs_v1beta_debug_intel [05:16, 05:03] (1224268 MB) +PASS -- TEST rap_clm_lake_debug_intel [06:21, 06:06] (1216008 MB) +PASS -- TEST rap_flake_debug_intel [05:13, 04:57] (1221016 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [09:09, 08:41] (1229176 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:54, 04:53] +PASS -- TEST control_csawmg_debug_gnu [02:53, 02:23] (737988 MB) + +PASS -- COMPILE wam_debug_intel [03:59, 03:58](839 warnings,1 remarks) +PASS -- TEST control_wam_debug_intel [14:14, 13:35] (1691584 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [10:30, 10:30](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:40, 03:52] (1169156 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [06:53, 06:28] (1058076 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [03:49, 03:23] (989796 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [06:28, 06:05] (1097024 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [03:37, 03:10] (964200 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:06, 03:41] (927508 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [05:24, 04:53] (1037848 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:11, 01:53] (928612 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [13:59, 13:58](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:46, 02:06] (1214948 MB) +PASS -- TEST conus13km_2threads_intel [01:27, 00:55] (1125956 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:57, 01:23] (1113700 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [10:39, 10:39](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:42, 04:12] (988812 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [04:07, 04:06](787 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:12, 04:59] (1094828 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:09, 04:52] (1102540 MB) +PASS -- TEST conus13km_debug_intel [15:11, 14:37] (1250436 MB) +PASS -- TEST conus13km_debug_qr_intel [15:23, 14:52] (946604 MB) +PASS -- TEST conus13km_debug_2threads_intel [10:16, 09:45] (1163920 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [15:08, 14:38] (1306500 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [04:07, 04:06](787 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:44, 05:27] (1141900 MB) + +PASS -- COMPILE hafsw_intel [12:30, 12:30](1 warnings,8 remarks) +PASS -- TEST hafs_regional_atm_intel [06:04, 04:59] (742632 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:06, 05:47] (1111736 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [08:02, 06:53] (848972 MB) +PASS -- TEST hafs_regional_atm_wav_intel [14:31, 13:24] (871644 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [16:33, 15:18] (885820 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [06:15, 05:28] (503956 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [07:49, 06:41] (523248 MB) +PASS -- TEST hafs_global_1nest_atm_intel [03:15, 02:41] (376832 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [08:52, 07:07] (486708 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:24, 03:51] (533848 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:17, 03:36] (530244 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [04:52, 04:09] (594000 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:27, 01:08] (409712 MB) +PASS -- TEST gnv1_nested_intel [05:17, 04:01] (1744792 MB) + +PASS -- COMPILE hafsw_debug_intel [04:38, 04:37](1467 warnings,1501 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [13:59, 13:11] (595672 MB) + +PASS -- COMPILE hafsw_faster_intel [16:34, 16:33],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [09:29, 08:41] (684072 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [09:46, 08:50] (749224 MB) + +PASS -- COMPILE hafs_mom6w_intel [12:27, 12:25],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [07:14, 06:24] (742820 MB) + +PASS -- COMPILE hafs_all_intel [11:44, 11:43],7 remarks) +PASS -- TEST hafs_regional_docn_intel [07:30, 06:29] (837364 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [07:31, 06:28] (807508 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [16:49, 16:08] (1222660 MB) + +PASS -- COMPILE datm_cdeps_intel [06:40, 06:39] +PASS -- TEST datm_cdeps_control_cfsr_intel [02:53, 02:44] (1147328 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:53, 01:43] (1099196 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [02:42, 02:35] (1024148 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [03:00, 02:42] (1033352 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:46, 02:39] (1024528 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:54, 02:42] (1160140 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:57, 02:46] (1168368 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:47, 02:40] (1022220 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:57, 06:39] (1070768 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [07:58, 06:39] (1042496 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:48, 02:41] (1160968 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:10, 04:02] (2452188 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:14, 04:03] (2496684 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:20, 03:19](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intel [06:28, 06:20] (1093840 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [06:38, 06:37] +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [03:04, 02:53] (1148448 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:12, 01:12],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:12, 00:49] (260324 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:09, 00:51] (328172 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:46, 00:30] (321732 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [11:21, 11:19],1 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [04:35, 03:42] (1970100 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [11:08, 11:05],1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [04:31, 03:35] (1954524 MB) + +PASS -- COMPILE atml_intel [12:25, 12:24](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [05:14, 04:21] (1851548 MB) +PASS -- TEST control_p8_atmlnd_intel [05:08, 04:22] (1879560 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:04, 02:26] (1106320 MB) + +PASS -- COMPILE atml_debug_intel [05:01, 05:00](882 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [06:47, 05:51] (1891340 MB) + +PASS -- COMPILE atmw_intel [11:32, 11:31],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:34, 01:55] (1906440 MB) + +PASS -- COMPILE atmaero_intel [11:23, 11:22],1 remarks) +PASS -- TEST atmaero_control_p8_intel [04:53, 04:09] (3182560 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:38, 04:54] (3084264 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [06:26, 05:41] (3044004 MB) + +PASS -- COMPILE atmaq_debug_intel [04:16, 04:15](884 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [23:00, 21:09] (4478468 MB) + +PASS -- COMPILE atm_gnu [04:45, 04:43] +PASS -- TEST control_c48_gnu [11:43, 11:12] (1539040 MB) +PASS -- TEST control_stochy_gnu [03:34, 03:18] (505064 MB) +PASS -- TEST control_ras_gnu [05:01, 04:46] (514472 MB) +PASS -- TEST control_p8_gnu [05:40, 04:51] (1463300 MB) +PASS -- TEST control_p8_ugwpv1_gnu [05:31, 04:47] (1463428 MB) +PASS -- TEST control_flake_gnu [10:25, 10:10] (549156 MB) + +PASS -- COMPILE rrfs_gnu [04:42, 04:40] +PASS -- TEST rap_control_gnu [11:15, 10:48] (816436 MB) +PASS -- TEST rap_decomp_gnu [11:18, 10:54] (851764 MB) +PASS -- TEST rap_2threads_gnu [10:12, 09:46] (932332 MB) +PASS -- TEST rap_restart_gnu [06:01, 05:28] (578728 MB) +PASS -- TEST rap_sfcdiff_gnu [11:21, 10:47] (814476 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [11:32, 11:06] (813696 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [08:37, 08:01] (582772 MB) +PASS -- TEST hrrr_control_gnu [05:59, 05:31] (814048 MB) +PASS -- TEST hrrr_control_noqr_gnu [05:59, 05:31] (799468 MB) +PASS -- TEST hrrr_control_2threads_gnu [05:24, 04:59] (921020 MB) +PASS -- TEST hrrr_control_decomp_gnu [06:01, 05:32] (850092 MB) +PASS -- TEST hrrr_control_restart_gnu [03:12, 02:51] (566496 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [03:10, 02:48] (656112 MB) +PASS -- TEST rrfs_v1beta_gnu [11:05, 10:27] (813500 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [07:53, 07:52] +PASS -- TEST control_diag_debug_gnu [02:17, 01:40] (1275460 MB) +PASS -- TEST regional_debug_gnu [11:22, 10:54] (748640 MB) +PASS -- TEST rap_control_debug_gnu [02:56, 02:41] (825548 MB) +PASS -- TEST hrrr_control_debug_gnu [02:57, 02:39] (816988 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:58, 02:41] (824812 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:54, 02:41] (828356 MB) +PASS -- TEST rap_diag_debug_gnu [03:16, 02:50] (911492 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [04:23, 04:07] (825672 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:53, 02:38] (825244 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [03:02, 02:38] (818684 MB) +PASS -- TEST control_ras_debug_gnu [01:49, 01:35] (456872 MB) +PASS -- TEST control_stochy_debug_gnu [02:02, 01:45] (452296 MB) +PASS -- TEST control_debug_p8_gnu [02:26, 01:48] (1442360 MB) +PASS -- TEST rap_flake_debug_gnu [02:58, 02:42] (820440 MB) +PASS -- TEST rap_clm_lake_debug_gnu [03:16, 03:00] (821680 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:50, 04:21] (832912 MB) + +PASS -- COMPILE wam_debug_gnu [03:19, 03:18] + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:55, 04:54] +PASS -- TEST rap_control_dyn32_phy32_gnu [09:51, 09:21] (707504 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [05:25, 04:58] (710952 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [09:08, 08:38] (753076 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [04:56, 04:30] (745716 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [05:31, 05:03] (707868 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [07:30, 06:59] (553380 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:57, 02:32] (536668 MB) +PASS -- TEST conus13km_control_gnu [03:59, 03:13] (878456 MB) +PASS -- TEST conus13km_2threads_gnu [06:44, 06:06] (882028 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [02:22, 01:48] (555420 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [10:58, 10:57] +PASS -- TEST rap_control_dyn64_phy32_gnu [06:11, 05:39] (738904 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [07:43, 07:42] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:54, 02:37] (714828 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:48, 02:31] (714776 MB) +PASS -- TEST conus13km_debug_gnu [07:47, 07:09] (893464 MB) +PASS -- TEST conus13km_debug_qr_gnu [07:38, 06:58] (582268 MB) +PASS -- TEST conus13km_debug_2threads_gnu [07:56, 07:26] (900368 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [07:37, 07:08] (960144 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [07:41, 07:40] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:53, 02:39] (734672 MB) + +PASS -- COMPILE s2swa_gnu [16:44, 16:43] +PASS -- COMPILE s2s_gnu [15:45, 15:44] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [08:31, 07:29] (1536368 MB) + +PASS -- COMPILE s2swa_debug_gnu [03:24, 03:23] +PASS -- COMPILE s2sw_pdlib_gnu [16:15, 16:14] +PASS -- TEST cpld_control_pdlib_p8_gnu [20:46, 19:54] (1458072 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [03:13, 03:12] +PASS -- TEST cpld_debug_pdlib_p8_gnu [14:31, 13:36] (1451368 MB) + +PASS -- COMPILE datm_cdeps_gnu [15:42, 15:41] +PASS -- TEST datm_cdeps_control_cfsr_gnu [03:16, 03:06] (682964 MB) + + +SYNOPSIS: +Starting Date/Time: 20240727 20:11:02 +Ending Date/Time: 20240728 00:59:44 +Total Time: 04h:48m:42s +Compiles Completed: 57/57 +Tests Completed: 245/245 + + +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +Result: SUCCESS + +====END OF hera REGRESSION TESTING LOG==== diff --git a/tests-dev/logs/RegressionTests_hercules.log b/tests-dev/logs/RegressionTests_hercules.log new file mode 100644 index 0000000000..cae5c403c8 --- /dev/null +++ b/tests-dev/logs/RegressionTests_hercules.log @@ -0,0 +1,415 @@ +====START OF hercules REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +17a83e2be289181af20ba9fec4ce683393447809 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/hercules/nandoam/FV3_RT/rt_543959 + +UFS_TEST.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE s2swa_32bit_intel [10:14, 10:13](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [08:21, 07:40] (2129484 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [15:43, 15:42](1 warnings,10 remarks) +PASS -- TEST cpld_control_gfsv17_intel [14:09, 13:33] (2005816 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [15:05, 14:01] (2293032 MB) +PASS -- TEST cpld_restart_gfsv17_intel [07:00, 06:31] (1328388 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [15:42, 14:57] (1914440 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [17:07, 17:07](1 warnings,10 remarks) +PASS -- TEST cpld_control_sfs_intel [13:19, 13:04] (1998772 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [04:12, 04:11](1525 warnings,2000 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [21:53, 21:05] (1975984 MB) + +PASS -- COMPILE s2swa_intel [11:05, 11:04],10 remarks) +PASS -- TEST cpld_control_p8_intel [08:37, 07:52] (2191088 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [08:25, 07:42] (2186660 MB) +PASS -- TEST cpld_restart_p8_intel [05:05, 04:25] (1991300 MB) +PASS -- TEST cpld_control_qr_p8_intel [08:28, 07:42] (2220256 MB) +PASS -- TEST cpld_restart_qr_p8_intel [05:15, 04:25] (1742124 MB) +PASS -- TEST cpld_2threads_p8_intel [09:28, 08:59] (2544432 MB) +PASS -- TEST cpld_decomp_p8_intel [08:13, 07:36] (2175668 MB) +PASS -- TEST cpld_mpi_p8_intel [07:02, 06:23] (2098072 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [08:19, 07:37] (2189656 MB) +PASS -- TEST cpld_control_c192_p8_intel [16:51, 15:43] (2970344 MB) +PASS -- TEST cpld_restart_c192_p8_intel [07:24, 05:47] (2929308 MB) +PASS -- TEST cpld_bmark_p8_intel [12:59, 08:57] (3813308 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [11:32, 05:32] (3641116 MB) +PASS -- TEST cpld_s2sa_p8_intel [05:31, 05:02] (2159060 MB) + +PASS -- COMPILE s2sw_intel [10:22, 10:22],10 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [07:52, 07:19] (2019944 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [04:55, 04:24] (2090540 MB) + +PASS -- COMPILE s2swa_debug_intel [05:33, 05:32](1450 warnings,1230 remarks) +PASS -- TEST cpld_debug_p8_intel [09:09, 08:25] (2211636 MB) + +PASS -- COMPILE s2sw_debug_intel [05:08, 05:08](1450 warnings,1230 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [05:48, 05:14] (2054848 MB) + +PASS -- COMPILE s2s_aoflux_intel [09:18, 09:18],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:39, 04:59] (2076360 MB) + +PASS -- COMPILE s2s_intel [08:47, 08:47],3 remarks) +PASS -- TEST cpld_control_c48_intel [10:27, 10:01] (3112160 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:56, 02:31] (3083164 MB) +PASS -- TEST cpld_restart_c48_intel [01:41, 01:27] (2547716 MB) + +PASS -- COMPILE s2swa_faster_intel [15:23, 15:23],10 remarks) +PASS -- TEST cpld_control_p8_faster_intel [08:57, 08:11] (2183292 MB) + +PASS -- COMPILE s2sw_pdlib_intel [18:10, 18:10],10 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [14:16, 13:42] (2036988 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [07:18, 06:44] (1389792 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [15:54, 15:14] (1967980 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [05:25, 05:25](1560 warnings,2000 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [23:00, 22:22] (2023460 MB) + +PASS -- COMPILE atm_dyn32_intel [09:30, 09:30](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:46, 03:34] (714964 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:04, 02:39] (1610580 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [03:04, 02:34] (1617392 MB) +PASS -- TEST control_latlon_intel [02:42, 02:25] (1604492 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [02:53, 02:30] (1613924 MB) +PASS -- TEST control_c48_intel [07:12, 06:53] (1745244 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:08, 05:56] (861908 MB) +PASS -- TEST control_c192_intel [09:34, 09:08] (1755128 MB) +PASS -- TEST control_c384_intel [10:31, 09:30] (2053240 MB) +PASS -- TEST control_c384gdas_intel [11:00, 09:39] (1529356 MB) +PASS -- TEST control_stochy_intel [01:52, 01:44] (662764 MB) +PASS -- TEST control_stochy_restart_intel [01:17, 01:03] (543352 MB) +PASS -- TEST control_lndp_intel [01:45, 01:35] (690228 MB) +PASS -- TEST control_iovr4_intel [02:45, 02:37] (670316 MB) +PASS -- TEST control_iovr5_intel [02:45, 02:38] (663084 MB) +PASS -- TEST control_p8_intel [03:12, 02:38] (1909624 MB) +PASS -- TEST control_p8.v2.sfc_intel [03:14, 02:38] (1911236 MB) +PASS -- TEST control_p8_ugwpv1_intel [03:11, 02:34] (1898624 MB) +PASS -- TEST control_restart_p8_intel [02:01, 01:34] (1171084 MB) +PASS -- TEST control_noqr_p8_intel [03:01, 02:34] (1908472 MB) +PASS -- TEST control_restart_noqr_p8_intel [01:54, 01:31] (1216572 MB) +PASS -- TEST control_decomp_p8_intel [03:10, 02:40] (1888532 MB) +PASS -- TEST control_2threads_p8_intel [02:58, 02:28] (1986460 MB) +PASS -- TEST control_p8_lndp_intel [04:50, 04:33] (1909972 MB) +PASS -- TEST control_p8_rrtmgp_intel [04:11, 03:36] (1976124 MB) +PASS -- TEST control_p8_mynn_intel [03:13, 02:41] (1917140 MB) +PASS -- TEST merra2_thompson_intel [03:36, 02:56] (1919508 MB) +PASS -- TEST regional_control_intel [05:00, 04:41] (1201416 MB) +PASS -- TEST regional_restart_intel [02:49, 02:36] (1174616 MB) +PASS -- TEST regional_decomp_intel [05:17, 04:57] (1196052 MB) +PASS -- TEST regional_2threads_intel [03:16, 03:02] (1158360 MB) +PASS -- TEST regional_noquilt_intel [04:46, 04:31] (1527012 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:13, 04:47] (1207656 MB) +PASS -- TEST regional_2dwrtdecomp_intel [05:00, 04:39] (1198288 MB) +PASS -- TEST regional_wofs_intel [07:37, 07:17] (2088288 MB) + +PASS -- COMPILE rrfs_intel [07:26, 07:26](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:12, 06:39] (1213496 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:00, 03:28] (1408956 MB) +PASS -- TEST rap_decomp_intel [07:28, 06:56] (1153196 MB) +PASS -- TEST rap_2threads_intel [06:48, 06:10] (1369584 MB) +PASS -- TEST rap_restart_intel [03:56, 03:28] (1160520 MB) +PASS -- TEST rap_sfcdiff_intel [07:12, 06:39] (1228628 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [07:28, 06:57] (1167808 MB) +PASS -- TEST rap_sfcdiff_restart_intel [05:30, 05:02] (1219400 MB) +PASS -- TEST hrrr_control_intel [03:59, 03:26] (1102540 MB) +PASS -- TEST hrrr_control_decomp_intel [04:10, 03:35] (1056660 MB) +PASS -- TEST hrrr_control_2threads_intel [08:53, 08:15] (1124332 MB) +PASS -- TEST hrrr_control_restart_intel [02:13, 01:58] (1042628 MB) +PASS -- TEST rrfs_v1beta_intel [07:02, 06:27] (1204596 MB) +PASS -- TEST rrfs_v1nssl_intel [07:46, 07:37] (2004728 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [07:38, 07:26] (2178328 MB) + +PASS -- COMPILE csawmg_intel [07:01, 07:01] +PASS -- TEST control_csawmg_intel [06:32, 06:14] (1059284 MB) +PASS -- TEST control_ras_intel [03:04, 02:55] (860612 MB) + +PASS -- COMPILE csawmg_gnu [03:50, 03:50] +PASS -- TEST control_csawmg_gnu [07:20, 06:58] (1071576 MB) + +PASS -- COMPILE wam_intel [07:30, 07:30],1 remarks) +PASS -- TEST control_wam_intel [10:49, 10:06] (1681804 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [14:01, 14:01],1 remarks) +PASS -- TEST control_p8_faster_intel [02:59, 02:24] (1906392 MB) +PASS -- TEST regional_control_faster_intel [05:26, 05:09] (1192036 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [05:20, 05:19](884 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:46, 02:20] (1644528 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:40, 02:15] (1638648 MB) +PASS -- TEST control_stochy_debug_intel [02:49, 02:36] (843852 MB) +PASS -- TEST control_lndp_debug_intel [02:26, 02:18] (842612 MB) +PASS -- TEST control_csawmg_debug_intel [03:48, 03:36] (1164396 MB) +PASS -- TEST control_ras_debug_intel [02:26, 02:19] (851764 MB) +PASS -- TEST control_diag_debug_intel [02:42, 02:20] (1701584 MB) +PASS -- TEST control_debug_p8_intel [02:55, 02:37] (1938140 MB) +PASS -- TEST regional_debug_intel [16:40, 16:25] (1161000 MB) +PASS -- TEST rap_control_debug_intel [04:05, 03:59] (1238112 MB) +PASS -- TEST hrrr_control_debug_intel [04:24, 04:15] (1231056 MB) +PASS -- TEST hrrr_gf_debug_intel [04:12, 04:05] (1238764 MB) +PASS -- TEST hrrr_c3_debug_intel [04:13, 04:07] (1244492 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:20, 04:13] (1233992 MB) +PASS -- TEST rap_diag_debug_intel [04:28, 04:16] (1311912 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [04:24, 04:18] (1241964 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [04:37, 04:23] (1237336 MB) +PASS -- TEST rap_lndp_debug_intel [04:22, 04:07] (1232572 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:21, 04:10] (1237704 MB) +PASS -- TEST rap_noah_debug_intel [04:07, 04:00] (1234280 MB) +PASS -- TEST rap_sfcdiff_debug_intel [04:17, 04:09] (1236752 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:10, 07:00] (1230752 MB) +PASS -- TEST rrfs_v1beta_debug_intel [04:16, 04:05] (1239552 MB) +PASS -- TEST rap_clm_lake_debug_intel [05:25, 05:13] (1230492 MB) +PASS -- TEST rap_flake_debug_intel [04:10, 04:02] (1230676 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [07:52, 07:16] (1239252 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [05:43, 05:43] +PASS -- TEST control_csawmg_debug_gnu [02:08, 01:54] (1062516 MB) + +PASS -- COMPILE wam_debug_intel [03:33, 03:33](839 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [07:17, 07:17](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:06, 03:33] (1268824 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [07:41, 07:06] (1179780 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [04:21, 03:34] (1053716 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [06:31, 06:00] (1297048 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [03:49, 03:04] (1049296 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:33, 03:51] (1007912 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [05:53, 05:17] (1135840 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:11, 01:53] (959756 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [11:47, 11:46](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:08, 01:44] (1320540 MB) +PASS -- TEST conus13km_2threads_intel [01:04, 00:45] (1211848 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:23, 01:03] (1156444 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [07:41, 07:41](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:00, 03:43] (1070280 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:35, 03:35](787 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:17, 04:09] (1120284 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:03, 03:54] (1109828 MB) +PASS -- TEST conus13km_debug_intel [13:12, 12:45] (1362828 MB) +PASS -- TEST conus13km_debug_qr_intel [13:34, 13:11] (1012732 MB) +PASS -- TEST conus13km_debug_2threads_intel [08:39, 08:24] (1259788 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [12:56, 12:37] (1433524 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:29, 03:29](787 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:21, 04:14] (1158140 MB) + +PASS -- COMPILE hafsw_intel [10:40, 10:40](1 warnings,9 remarks) +PASS -- TEST hafs_regional_atm_intel [06:05, 05:15] (871548 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:04, 04:51] (1266756 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [07:26, 06:24] (947688 MB) +PASS -- TEST hafs_regional_atm_wav_intel [14:45, 13:54] (989996 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [16:06, 15:02] (1015140 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [05:57, 05:24] (611612 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [07:54, 06:55] (627516 MB) +PASS -- TEST hafs_global_1nest_atm_intel [02:59, 02:34] (442256 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [08:56, 07:33] (554560 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:20, 03:51] (626152 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:07, 03:35] (617620 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:26, 04:46] (685628 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:25, 01:09] (455740 MB) + +PASS -- COMPILE hafsw_debug_intel [03:38, 03:38](1467 warnings,1502 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:05, 13:37] (687668 MB) + +PASS -- COMPILE hafsw_faster_intel [15:37, 15:36],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [16:45, 16:06] (765496 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [16:41, 15:57] (851620 MB) + +PASS -- COMPILE hafs_mom6w_intel [11:18, 11:17],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [10:51, 10:08] (823680 MB) + +PASS -- COMPILE hafs_all_intel [09:56, 09:56],8 remarks) +PASS -- TEST hafs_regional_docn_intel [06:16, 05:24] (935040 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [06:24, 05:34] (940492 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [16:58, 16:25] (1343520 MB) + +PASS -- COMPILE datm_cdeps_intel [05:17, 05:17],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [02:14, 02:09] (1153520 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:24, 01:18] (1096412 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [03:02, 02:57] (1017844 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [02:11, 02:07] (1021472 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:12, 02:06] (1021720 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:10, 03:04] (1121116 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:11, 02:07] (1160100 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:06, 02:02] (1021784 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:27, 04:56] (1174944 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [05:22, 04:50] (1162748 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:12, 02:08] (1123180 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:13, 04:06] (2360116 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:08, 04:01] (2429888 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:07, 03:07](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [05:10, 05:05] (1063444 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [05:19, 05:19],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:15, 02:07] (1171280 MB) + +PASS -- COMPILE datm_cdeps_land_intel [00:46, 00:46],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:06, 00:50] (334496 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:03, 00:49] (572520 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:41, 00:31] (571540 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [07:43, 07:43],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [04:17, 03:38] (2015268 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [08:55, 08:54],1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [04:52, 04:12] (1988396 MB) + +PASS -- COMPILE atml_intel [09:41, 09:41](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [07:57, 07:07] (1903416 MB) +PASS -- TEST control_p8_atmlnd_intel [07:32, 06:42] (1902872 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:50, 03:19] (1146648 MB) + +PASS -- COMPILE atml_debug_intel [04:18, 04:17](882 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [06:27, 05:42] (1936600 MB) + +PASS -- COMPILE atmw_intel [09:38, 09:38],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:36, 01:54] (1954912 MB) + +PASS -- COMPILE atmaero_intel [07:34, 07:33],1 remarks) +PASS -- TEST atmaero_control_p8_intel [05:22, 04:47] (2030936 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:07, 04:29] (1803268 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [05:00, 04:31] (1822764 MB) + +PASS -- COMPILE atmaq_debug_intel [03:09, 03:08](884 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [17:49, 16:42] (4563588 MB) + +PASS -- COMPILE atm_gnu [04:18, 04:17] +PASS -- TEST control_c48_gnu [09:41, 09:16] (1555776 MB) +PASS -- TEST control_stochy_gnu [02:50, 02:39] (731092 MB) +PASS -- TEST control_ras_gnu [03:57, 03:46] (737984 MB) +PASS -- TEST control_p8_gnu [04:34, 03:53] (1729072 MB) +PASS -- TEST control_p8_ugwpv1_gnu [04:26, 03:52] (1757840 MB) +PASS -- TEST control_flake_gnu [04:44, 04:32] (820784 MB) + +PASS -- COMPILE rrfs_gnu [04:09, 04:09] +PASS -- TEST rap_control_gnu [08:20, 07:46] (1089052 MB) +PASS -- TEST rap_decomp_gnu [08:31, 07:57] (1093316 MB) +PASS -- TEST rap_2threads_gnu [07:44, 07:08] (1149416 MB) +PASS -- TEST rap_restart_gnu [04:40, 03:58] (885348 MB) +PASS -- TEST rap_sfcdiff_gnu [08:25, 07:48] (1083964 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [08:33, 07:56] (1083656 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [06:40, 05:55] (884976 MB) +PASS -- TEST hrrr_control_gnu [04:35, 03:59] (1076288 MB) +PASS -- TEST hrrr_control_noqr_gnu [04:31, 04:01] (1135484 MB) +PASS -- TEST hrrr_control_2threads_gnu [07:28, 06:49] (1047856 MB) +PASS -- TEST hrrr_control_decomp_gnu [04:38, 04:02] (1070560 MB) +PASS -- TEST hrrr_control_restart_gnu [02:27, 02:06] (883068 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [02:27, 02:06] (934272 MB) +PASS -- TEST rrfs_v1beta_gnu [08:47, 08:02] (1094156 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [07:50, 07:50] +PASS -- TEST control_diag_debug_gnu [01:48, 01:23] (1632584 MB) +PASS -- TEST regional_debug_gnu [07:07, 06:45] (1117388 MB) +PASS -- TEST rap_control_debug_gnu [02:15, 02:02] (1109016 MB) +PASS -- TEST hrrr_control_debug_gnu [02:15, 02:03] (1095784 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:17, 02:04] (1104804 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:17, 02:02] (1104648 MB) +PASS -- TEST rap_diag_debug_gnu [02:32, 02:11] (1277556 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:32, 03:23] (1102024 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:11, 01:58] (1110572 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:11, 02:02] (1100628 MB) +PASS -- TEST control_ras_debug_gnu [01:28, 01:18] (731496 MB) +PASS -- TEST control_stochy_debug_gnu [01:31, 01:20] (728128 MB) +PASS -- TEST control_debug_p8_gnu [01:54, 01:32] (1711472 MB) +PASS -- TEST rap_flake_debug_gnu [02:15, 02:05] (1107168 MB) +PASS -- TEST rap_clm_lake_debug_gnu [02:28, 02:20] (1108844 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:06, 03:29] (1109808 MB) + +PASS -- COMPILE wam_debug_gnu [02:35, 02:35] +PASS -- TEST control_wam_debug_gnu [05:52, 05:26] (1576324 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [03:57, 03:57] +PASS -- TEST rap_control_dyn32_phy32_gnu [08:00, 07:27] (965284 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:38, 03:57] (958072 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:13, 06:42] (975416 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [16:29, 15:45] (891176 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:37, 03:55] (952988 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [06:09, 05:42] (861924 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:23, 02:04] (857836 MB) +PASS -- TEST conus13km_control_gnu [02:56, 02:33] (1267340 MB) +PASS -- TEST conus13km_2threads_gnu [01:29, 01:10] (1179252 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [01:53, 01:29] (932556 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [10:33, 10:33] +PASS -- TEST rap_control_dyn64_phy32_gnu [04:57, 04:33] (990892 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [07:51, 07:50] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:21, 02:09] (978076 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:23, 02:10] (972500 MB) +PASS -- TEST conus13km_debug_gnu [06:33, 06:06] (1295040 MB) +PASS -- TEST conus13km_debug_qr_gnu [06:33, 06:07] (962368 MB) +PASS -- TEST conus13km_debug_2threads_gnu [04:01, 03:39] (1200568 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [06:27, 06:03] (1356340 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [07:53, 07:53] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:09, 02:02] (1007056 MB) + +PASS -- COMPILE s2swa_gnu [16:40, 16:39] +PASS -- COMPILE s2s_gnu [15:48, 15:48] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [05:31, 04:51] (3081940 MB) + +PASS -- COMPILE s2swa_debug_gnu [03:23, 03:22] +PASS -- COMPILE s2sw_pdlib_gnu [15:58, 15:57] +PASS -- TEST cpld_control_pdlib_p8_gnu [26:28, 25:52] (3032616 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [03:24, 03:24] +PASS -- TEST cpld_debug_pdlib_p8_gnu [12:32, 11:56] (2907888 MB) + +PASS -- COMPILE datm_cdeps_gnu [14:30, 14:30] +PASS -- TEST datm_cdeps_control_cfsr_gnu [02:19, 02:14] (773052 MB) + + +SYNOPSIS: +Starting Date/Time: 20240801 11:12:36 +Ending Date/Time: 20240801 15:37:09 +Total Time: 04h:24m:33s +Compiles Completed: 57/57 +Tests Completed: 244/244 + + +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +Result: SUCCESS + +====END OF hercules REGRESSION TESTING LOG==== diff --git a/tests-dev/machine_config/machine_derecho.config b/tests-dev/machine_config/machine_derecho.config new file mode 100644 index 0000000000..0896f7aa1c --- /dev/null +++ b/tests-dev/machine_config/machine_derecho.config @@ -0,0 +1,20 @@ +#!/bin/bash +set -eux + +module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles +module load rocoto + +module use -a /glade/work/epicufsrt/conda/modulefiles.derecho +module load anaconda/23.7.4 + +cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN +cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN + +ROCOTORUN=/glade/work/epicufsrt/contrib/derecho/rocoto/bin/rocotorun +ROCOTOSTAT=/glade/work/epicufsrt/contrib/derecho/rocoto/bin/rocotostat +ROCOTOCOMPLETE=/glade/work/epicufsrt/contrib/derecho/rocoto/bin/rocotocomplete +ROCOTO_SCHEDULER=pbspro +export ROCOTORUN +export ROCOTOSTAT +export ROCOTOCOMPLETE +export ROCOTO_SCHEDULER diff --git a/tests-dev/machine_config/machine_gaea.config b/tests-dev/machine_config/machine_gaea.config new file mode 100644 index 0000000000..266d1200bc --- /dev/null +++ b/tests-dev/machine_config/machine_gaea.config @@ -0,0 +1,15 @@ +#!/bin/bash +set -eux + +module use /ncrc/proj/epic/rocoto/modulefiles +module load rocoto +ROCOTORUN=/ncrc/proj/epic/rocoto/1.3.6/bin/rocotorun +ROCOTOSTAT=/ncrc/proj/epic/rocoto/1.3.6/bin/rocotostat +ROCOTOCOMPLETE=/ncrc/proj/epic/rocoto/1.3.6/bin/rocotocomplete +ROCOTO_SCHEDULER=slurm +export ROCOTORUN +export ROCOTOSTAT +export ROCOTOCOMPLETE +export ROCOTO_SCHEDULER + +module load python/3.9 diff --git a/tests-dev/machine_config/machine_hera.config b/tests-dev/machine_config/machine_hera.config new file mode 100644 index 0000000000..cc083c162b --- /dev/null +++ b/tests-dev/machine_config/machine_hera.config @@ -0,0 +1,14 @@ +#!/bin/bash +set -eux + +module load rocoto +ROCOTORUN=/apps/rocoto/1.3.7/bin/rocotorun +ROCOTOSTAT=/apps/rocoto/1.3.7/bin/rocotostat +ROCOTOCOMPLETE=/apps/rocoto/1.3.7/bin/rocotocomplete +ROCOTO_SCHEDULER=slurm +export ROCOTORUN +export ROCOTOSTAT +export ROCOTOCOMPLETE +export ROCOTO_SCHEDULER + +module load intelpython/2023.2.0 diff --git a/tests-dev/machine_config/machine_hercules.config b/tests-dev/machine_config/machine_hercules.config new file mode 100644 index 0000000000..9aa4404ffa --- /dev/null +++ b/tests-dev/machine_config/machine_hercules.config @@ -0,0 +1,17 @@ +#!/bin/bash +set -eux + +module load contrib rocoto +ROCOTORUN=/apps/contrib/rocoto/1.3.7/bin/rocotorun +ROCOTOSTAT=/apps/contrib/rocoto/1.3.7/bin/rocotostat +ROCOTOCOMPLETE=/apps/contrib/rocoto/1.3.7/bin/rocotocomplete +ROCOTO_SCHEDULER=slurm +export ROCOTORUN +export ROCOTOSTAT +export ROCOTOCOMPLETE +export ROCOTO_SCHEDULER + +module use -a /work/noaa/epic/conda/modulefiles.hercules +module load anaconda/23.7.4 + + diff --git a/tests-dev/machine_config/machine_jet.config b/tests-dev/machine_config/machine_jet.config new file mode 100644 index 0000000000..09e72f8841 --- /dev/null +++ b/tests-dev/machine_config/machine_jet.config @@ -0,0 +1,14 @@ +#!/bin/bash +set -eux + +module load rocoto +ROCOTORUN=/apps/rocoto/1.3.7/bin/rocotorun +ROCOTOSTAT=/apps/rocoto/1.3.7/bin/rocotostat +ROCOTOCOMPLETE=/apps/rocoto/1.3.7/bin/rocotocomplete +ROCOTO_SCHEDULER=slurm +export ROCOTORUN +export ROCOTOSTAT +export ROCOTOCOMPLETE +export ROCOTO_SCHEDULER + +module load intelpython/2023.2.0 diff --git a/tests-dev/machine_config/machine_noaacloud.config b/tests-dev/machine_config/machine_noaacloud.config new file mode 100644 index 0000000000..31333c256e --- /dev/null +++ b/tests-dev/machine_config/machine_noaacloud.config @@ -0,0 +1,15 @@ +#!/bin/bash +set -eux + +export PATH=/contrib/EPIC/bin:${PATH} +module use /apps/modules/modulefiles +module load rocoto/1.3.3 + +ROCOTORUN=/apps/rocoto/1.3.3/bin/rocotorun +ROCOTOSTAT=/apps/rocoto/1.3.3/bin/rocotostat +ROCOTOCOMPLETE=/apps/rocoto/1.3.3/bin/rocotocomplete +ROCOTO_SCHEDULER=slurm +export ROCOTORUN +export ROCOTOSTAT +export ROCOTOCOMPLETE +export ROCOTO_SCHEDULER diff --git a/tests-dev/machine_config/machine_orion.config b/tests-dev/machine_config/machine_orion.config new file mode 100644 index 0000000000..09487fa9ab --- /dev/null +++ b/tests-dev/machine_config/machine_orion.config @@ -0,0 +1,17 @@ +#!/bin/bash +set -eux + +module load gcc/12.2.0 +module load python/3.10.8 + +module load contrib ruby/3.2.3 rocoto/1.3.7 +ROCOTORUN=/apps/contrib/rocoto/1.3.7/bin/rocotorun +ROCOTOSTAT=/apps/contrib/rocoto/1.3.7/bin/rocotostat +ROCOTOCOMPLETE=/apps/contrib/rocoto/1.3.7/bin//rocotocomplete +ROCOTO_SCHEDULER=slurm +export ROCOTORUN +export ROCOTOSTAT +export ROCOTOCOMPLETE +export ROCOTO_SCHEDULER + + diff --git a/tests-dev/machine_config/machine_s4.config b/tests-dev/machine_config/machine_s4.config new file mode 100644 index 0000000000..0a432d5eb7 --- /dev/null +++ b/tests-dev/machine_config/machine_s4.config @@ -0,0 +1,14 @@ +#!/bin/bash +set -eux + +module load rocoto/1.3.2 +#ROCOTORUN=$(which rocotorun) +#ROCOTOSTAT=$(which rocotostat) +#ROCOTOCOMPLETE=$(which rocotocomplete) +ROCOTO_SCHEDULER=slurm +#export ROCOTORUN +#export ROCOTOSTAT +#export ROCOTOCOMPLETE +export ROCOTO_SCHEDULER + +module load miniconda/3.8-s4 diff --git a/tests-dev/ufs_error-test.yaml b/tests-dev/ufs_error-test.yaml new file mode 100644 index 0000000000..7bcf6f4c1f --- /dev/null +++ b/tests-dev/ufs_error-test.yaml @@ -0,0 +1,20 @@ +atm_dyn32_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON' + tests: + - control_c48.v2.sfc: {'project':['daily']} + - fail_to_copy: {'project':['daily']} + - fail_to_run: {'project':['daily']} +atm_dyn64_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1' + tests: + - control_c48: {'project':['daily']} +fail_to_compile_intel: + build: + compiler: 'intel' + option: '--invalid-argument -DAPP=ATM -DCCPP_SUITES=whatever' + tests: + - dependency_unmet: {'project':['daily']} diff --git a/tests-dev/ufs_test.sh b/tests-dev/ufs_test.sh new file mode 100755 index 0000000000..47bc6568c9 --- /dev/null +++ b/tests-dev/ufs_test.sh @@ -0,0 +1,276 @@ +#!/bin/bash +set -eux + +SECONDS=0 + +hostname + +die() { echo "$@" >&2; exit 1; } + +usage() { + set +x + echo + echo "Usage: $0 -a | -b | -c | -d | -e | -h | -k | -l | -m | -n | -o | -r | -w | -s" + echo + echo " -a to use on for HPC queue" + echo " -b create new baselines only for tests listed in " + echo " -c create new baseline results" + echo " -d delete run direcotries that are not used by other tests" + echo " -e use ecFlow workflow manager (this option is not fully functional yet)" + echo " -h display this help" + echo " -k keep run directory after ufs_test.sh is completed" + echo " -l runs test specified in " + echo " -m compare against new baseline results" + echo " -n run single test " + echo " -o compile only, skip tests" + echo " -r use Rocoto workflow manager" + echo " -w for weekly_test, skip comparing baseline results" + echo " -s for use tests-dev, symlink sharable tests scripts" + echo + set -x + exit 1 +} + +[[ $# -eq 0 ]] && usage + +rt_trap() { + [[ ${ROCOTO:-false} == true ]] && rocoto_kill + [[ ${ECFLOW:-false} == true ]] && ecflow_kill + cleanup +} + +cleanup() { + PID_LOCK=$(awk '{print $2}' < "${LOCKDIR}/PID") + [[ ${PID_LOCK} == "$$" ]] && rm -rf "${LOCKDIR}" + [[ ${ECFLOW:-false} == true ]] && ecflow_stop + trap 0 + exit +} + +trap '{ echo "ufs_test.sh interrupted"; rt_trap ; }' INT +trap '{ echo "ufs_test.sh quit"; rt_trap ; }' QUIT +trap '{ echo "ufs_test.sh terminated"; rt_trap ; }' TERM +trap '{ echo "ufs_test.sh error on line $LINENO"; cleanup ; }' ERR +trap '{ echo "ufs_test.sh finished"; cleanup ; }' EXIT + +# PATHRT - Path to regression tests directory +PATHRT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd -P )" +readonly PATHRT +cd "${PATHRT}" +[[ -f "${PATHRT}"/detect_machine.sh ]] || cp "${PATHRT}"/../tests/detect_machine.sh "${PATHRT}" +[[ -f "${PATHRT}"/rt_utils.sh ]] || cp "${PATHRT}"/../tests/rt_utils.sh "${PATHRT}" +[[ -f "${PATHRT}"/module-setup.sh ]] || cp "${PATHRT}"/../tests/module-setup.sh "${PATHRT}" + +# make sure only one instance of ufs_test.sh is running +readonly LOCKDIR="${PATHRT}"/lock +if mkdir "${LOCKDIR}" ; then + HOSTNAME=$(hostname) + echo "${HOSTNAME} $$" > "${LOCKDIR}/PID" +else + echo "Only one instance of ufs_test.sh can be running at a time" + exit 1 +fi + +CREATE_BASELINE=false +ROCOTO=false +ECFLOW=false +KEEP_RUNDIR=false +export skip_check_results=false +export delete_rundir=false +COMPILE_ONLY=false +RTPWD_NEW_BASELINE=false +TESTS_FILE='ufs_test.yaml' +NEW_BASELINES_FILE='' +RUN_SINGLE_TEST=false +ACCNR=${ACCNR:-""} +UFS_TEST_YAML="ufs_test.yaml" +export UFS_TEST_YAML +LINK_TESTS=false + +while getopts ":a:b:cl:mn:dwkreohs" opt; do + case ${opt} in + a) + ACCNR=${OPTARG} + ;; + b) + NEW_BASELINES_FILE=${OPTARG} + export NEW_BASELINES_FILE + python -c "import ufs_test_utils; ufs_test_utils.update_testyaml_b()" + UFS_TEST_YAML="ufs_test_temp.yaml" + export UFS_TEST_YAML + ;; + c) + CREATE_BASELINE=true + ;; + l) + TESTS_FILE=${OPTARG} + grep -q '[^[:space:]]' < "${TESTS_FILE}" || die "${TESTS_FILE} empty, exiting..." + UFS_TEST_YAML=${TESTS_FILE} + export UFS_TEST_YAML + ;; + o) + COMPILE_ONLY=true + ;; + m) + # redefine RTPWD to point to newly created baseline outputs + RTPWD_NEW_BASELINE=true + ;; + n) + RUN_SINGLE_TEST=true + IFS=' ' read -r -a SINGLE_OPTS <<< "${OPTARG}" + + if [[ ${#SINGLE_OPTS[@]} != 2 ]]; then + die 'The -n option needs AND in quotes, i.e. -n "control_p8 intel"' + fi + + SRT_NAME="${SINGLE_OPTS[0]}" + SRT_COMPILER="${SINGLE_OPTS[1]}" + + if [[ "${SRT_COMPILER}" != "intel" ]] && [[ "${SRT_COMPILER}" != "gnu" ]]; then + die "COMPILER MUST BE 'intel' OR 'gnu'" + fi + + export SRT_NAME + export SRT_COMPILER + python -c "import ufs_test_utils; ufs_test_utils.update_testyaml_n()" + UFS_TEST_YAML="ufs_test_temp.yaml" + export UFS_TEST_YAML + ;; + d) + export delete_rundir=true + ;; + w) + export skip_check_results=true + ;; + k) + KEEP_RUNDIR=true + ;; + r) + ROCOTO=true + ECFLOW=false + ;; + e) + ECFLOW=true + ROCOTO=false + die "Work-in-progress to support for ECFLOW. Please, use the ROCOTO workflow manamegment option (-r)" + ;; + s) + LINK_TESTS=true + ;; + h) + usage + ;; + :) + die "Option -${OPTARG} requires an argument." + ;; + ?) + die "Invalid option: -${OPTARG}" + ;; + *) + die "Invalid runtime options: no parameter included with argument-${OPTARG}" + ;; + esac +done + +source detect_machine.sh # Note: this does not set ACCNR. The "if" block below does. +source rt_utils.sh +source module-setup.sh + +check_machine=false +platforms=( hera orion hercules gaea jet derecho noaacloud s4 ) +for name in "${platforms[@]}" +do + if [[ ${MACHINE_ID} == "${name}" ]]; then + check_machine=true + break + fi +done + +if [[ ${check_machine} == true ]]; then + source "${PATHRT}"/machine_config/machine_"${MACHINE_ID}".config +else + echo "*** Current support of ufs_test.sh only for ${platforms[*]} ! ***" + exit 1 +fi + +# If -s; link sharable test scripts from tests directory +if [[ ${LINK_TESTS} == true ]]; then + if ! python -c "import ufs_test_utils; ufs_test_utils.sync_testscripts()" + then + echo "*** error: python sync_testscripts! ***" + exit 1 + fi +fi + +#Check to error out if incompatible options are chosen together +[[ ${KEEP_RUNDIR} == true && ${delete_rundir} == true ]] && die "-k and -d options cannot be used at the same time" +[[ ${ECFLOW} == true && ${ROCOTO} == true ]] && die "-r and -e options cannot be used at the same time" +[[ ${CREATE_BASELINE} == true && ${RTPWD_NEW_BASELINE} == true ]] && die "-c and -m options cannot be used at the same time" + +if [[ -z "${ACCNR}" ]]; then + echo "Please use -a to set group account to use on HPC" + exit 1 +fi + +# Display the machine and account using the format detect_machine.sh used: +echo "Machine: ""${MACHINE_ID}"" Account: ""${ACCNR}"" " + +shift $((OPTIND-1)) +[[ $# -gt 1 ]] && usage + +TEST_START_TIME="$(date '+%Y%m%d %T')" +export TEST_START_TIME + +rm -f fail_test* fail_compile* + +if [[ ${ROCOTO} == true ]]; then + ROCOTO_XML="${PATHRT}"/rocoto_workflow.xml + ROCOTO_STATE="${PATHRT}"/rocoto_workflow.state + ROCOTO_DB="${PATHRT}"/rocoto_workflow.db + rm -f "${ROCOTO_XML}" "${ROCOTO_DB}" "${ROCOTO_STATE}" ./*_lock.db* +fi + +[[ -f ${TESTS_FILE} ]] || die "${TESTS_FILE} does not exist" + +export ROCOTO_SCHEDULER +export ACCNR +export ROCOTO_XML +export PATHRT +export ROCOTO +export ECFLOW +export MACHINE_ID +export RTPWD_NEW_BASELINE +export CREATE_BASELINE +export RTVERBOSE + +export TESTS_FILE +export NEW_BASELINES_FILE +export RUN_SINGLE_TEST +export COMPILE_ONLY +export delete_rundir +export skip_check_results +export KEEP_RUNDIR + +if ! python -c "import create_xml; create_xml.xml_loop()" +then + echo "*** experiment setup didn't run successfully! ***" + exit 1 +fi + +## +## run regression test workflow (currently Rocoto or ecFlow are supported) +## +if [[ ${ROCOTO} == true ]]; then + rocoto_run +fi + +# IF -c AND -b; LINK VERIFIED BASELINES TO NEW_BASELINE +if [[ ${CREATE_BASELINE} == true && ${NEW_BASELINES_FILE} != '' ]]; then + python -c "import ufs_test_utils; ufs_test_utils.link_new_baselines()" +fi + +TEST_END_TIME="$(date '+%Y%m%d %T')" +export TEST_END_TIME + +## Lets verify all tests were run and that they passed +python -c "import create_log; create_log.finish_log()" diff --git a/tests-dev/ufs_test.yaml b/tests-dev/ufs_test.yaml new file mode 100644 index 0000000000..cfd80ab693 --- /dev/null +++ b/tests-dev/ufs_test.yaml @@ -0,0 +1,583 @@ +s2swa_32bit_intel: + build: + compiler: 'intel' + option: '-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1' + tests: + - cpld_control_p8_mixedmode: {'project':['daily'],'turnoff':['noaacloud']} +s2swa_32bit_pdlib_intel: + build: + compiler: 'intel' + option: '-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' + turnoff: ['noaacloud'] + tests: + - cpld_control_gfsv17: {'project':['daily'],'turnoff':['noaacloud']} +# - cpld_control_gfsv17_iau: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_restart_gfsv17: {'project':['daily'],'dependency':'cpld_control_gfsv17','turnoff':['noaacloud']} + - cpld_mpi_gfsv17: {'project':['daily'],'dependency':'cpld_control_gfsv17','turnoff':['noaacloud']} +s2swa_32bit_pdlib_sfs_intel: + build: + compiler: 'intel' + option: '-DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' + turnoff: ['noaacloud'] + tests: + - cpld_control_sfs: {'project':['daily'],'turnoff':['noaacloud']} +s2swa_32bit_pdlib_debug_intel: + build: + compiler: 'intel' + option: '-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON' + turnoff: ['noaacloud','jet'] + tests: + - cpld_debug_gfsv17: {'project':['daily'],'turnoff':['noaacloud','jet']} +s2swa_intel: + build: + compiler: 'intel' + option: '-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + tests: + - cpld_control_p8: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_control_p8.v2.sfc: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_restart_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} + - cpld_control_qr_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} + - cpld_restart_qr_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} + - cpld_2threads_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} + - cpld_decomp_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} + - cpld_mpi_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} + - cpld_control_ciceC_p8: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_control_c192_p8: {'project':['daily'],'turnoff':['wcoss2','jet','acorn','s4','noaacloud']} + - cpld_restart_c192_p8: {'project':['daily'],'dependency':'cpld_control_c192_p8','turnoff':['wcoss2','jet','acorn','s4','noaacloud']} + - cpld_bmark_p8: {'project':['daily'],'turnoff':['s4','jet','acorn','noaacloud']} + - cpld_restart_bmark_p8: {'project':['daily'],'dependency':'cpld_bmark_p8','turnoff':['s4','jet','acorn','noaacloud']} + - cpld_s2sa_p8: {'project':['daily'],'turnoff':['noaacloud']} +s2sw_intel: + build: + compiler: 'intel' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + tests: + - cpld_control_noaero_p8: {'project':['daily']} + - cpld_control_nowave_noaero_p8: {'project':['daily'],'turnoff':['noaacloud']} +s2swa_debug_intel: + build: + compiler: 'intel' + option: '-DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + turnoff: ['wcoss2','noaacloud','acorn'] + tests: + - cpld_debug_p8: {'project':['daily'],'turnoff':['wcoss2','acorn','noaacloud']} +s2sw_debug_intel: + build: + compiler: 'intel' + option: '-DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + turnoff: ['wcoss2','noaacloud','acorn'] + tests: + - cpld_debug_noaero_p8: {'project':['daily'],'turnoff':['wcoss2','acorn','noaacloud']} +s2s_aoflux_intel: + build: + compiler: 'intel' + option: '-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON' + tests: + - cpld_control_noaero_p8_agrid: {'project':['daily']} +s2s_intel: + build: + compiler: 'intel' + option: '-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + tests: + - cpld_control_c48: {'project':['daily']} + - cpld_warmstart_c48: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_restart_c48: {'project':['daily'],'dependency':'cpld_warmstart_c48','turnoff':['noaacloud']} +s2swa_faster_intel: + build: + compiler: 'intel' + option: '-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON' + turnoff: ['noaacloud'] + tests: + - cpld_control_p8_faster: {'project':['daily'],'turnoff':['noaacloud']} +s2sw_pdlib_intel: + build: + compiler: 'intel' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON' + turnoff: ['noaacloud'] + tests: + - cpld_control_pdlib_p8: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_restart_pdlib_p8: {'project':['daily'],'dependency':'cpld_control_pdlib_p8','turnoff':['noaacloud']} + - cpld_mpi_pdlib_p8: {'project':['daily'],'dependency':'cpld_control_pdlib_p8','turnoff':['noaacloud']} +s2sw_pdlib_debug_intel: + build: + compiler: 'intel' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON' + turnoff: ['noaacloud'] + tests: + - cpld_debug_pdlib_p8: {'project':['daily'],'turnoff':['noaacloud']} +atm_dyn32_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON' + tests: + - control_flake: {'project':['daily']} + - control_CubedSphereGrid: {'project':['daily']} + - control_CubedSphereGrid_parallel: {'project':['daily'],'turnoff':['noaacloud']} + - control_latlon: {'project':['daily'],'turnoff':['noaacloud']} + - control_wrtGauss_netcdf_parallel: {'project':['daily'],'turnoff':['noaacloud']} + - control_c48: {'project':['daily'],'turnoff':['noaacloud']} + - control_c48.v2.sfc: {'project':['daily'],'turnoff':['noaacloud']} + - control_c192: {'project':['daily'],'turnoff':['noaacloud']} + - control_c384: {'project':['daily'],'turnoff':['noaacloud']} + - control_c384gdas: {'project':['daily'],'turnoff':['noaacloud']} + - control_stochy: {'project':['daily'],'turnoff':['noaacloud']} + - control_stochy_restart: {'project':['daily'],'dependency':'control_stochy','turnoff':['noaacloud']} + - control_lndp: {'project':['daily'],'turnoff':['noaacloud']} + - control_iovr4: {'project':['daily'],'turnoff':['noaacloud']} + - control_iovr5: {'project':['daily'],'turnoff':['noaacloud']} + - control_p8: {'project':['daily'],'turnoff':['noaacloud']} + - control_p8.v2.sfc: {'project':['daily'],'turnoff':['noaacloud']} + - control_p8_ugwpv1: {'project':['daily'],'turnoff':['noaacloud']} + - control_restart_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} + - control_noqr_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} + - control_restart_noqr_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} + - control_decomp_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} + - control_2threads_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} + - control_p8_lndp: {'project':['daily'],'turnoff':['noaacloud']} + - control_p8_rrtmgp: {'project':['daily'],'turnoff':['noaacloud']} + - control_p8_mynn: {'project':['daily'],'turnoff':['noaacloud']} + - merra2_thompson: {'project':['daily'],'turnoff':['noaacloud']} + - regional_control: {'project':['daily'],'turnoff':['noaacloud']} + - regional_restart: {'project':['daily'],'dependency':'regional_control','turnoff':['noaacloud']} + - regional_decomp: {'project':['daily'],'dependency':'regional_control','turnoff':['noaacloud']} + - regional_2threads: {'project':['daily'],'dependency':'regional_control','turnoff':['derecho','noaacloud']} + - regional_noquilt: {'project':['daily'],'turnoff':['jet','s4']} + - regional_netcdf_parallel: {'project':['daily'],'turnoff':['acorn']} + - regional_2dwrtdecomp: {'project':['daily'],'dependency':'regional_control','turnoff':['acorn']} + - regional_wofs: {'project':['daily'],'turnoff':['jet','s4']} +ifi_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON' + turnon: ['acorn'] + tests: + - regional_ifi_control: {'project':['daily'],'turnon':['acorn']} + - regional_ifi_decomp: {'project':['daily'],'dependency':'regional_ifi_control','turnon':['acorn']} + - regional_ifi_2threads: {'project':['daily'],'dependency':'regional_ifi_control','turnon':['acorn']} +rrfs_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON' + tests: + - rap_control: {'project':['daily']} + - regional_spp_sppt_shum_skeb: {'project':['daily']} + - rap_decomp: {'project':['daily'],'dependency':'rap_control','turnoff':['noaacloud']} + - rap_2threads: {'project':['daily'],'dependency':'rap_control','turnoff':['noaacloud']} + - rap_restart: {'project':['daily'],'dependency':'rap_control','turnoff':['noaacloud']} + - rap_sfcdiff: {'project':['daily'],'turnoff':['noaacloud']} + - rap_sfcdiff_decomp: {'project':['daily'],'dependency':'rap_sfcdiff','turnoff':['noaacloud']} + - rap_sfcdiff_restart: {'project':['daily'],'dependency':'rap_sfcdiff','turnoff':['noaacloud']} + - hrrr_control: {'project':['daily'],'turnoff':['noaacloud']} + - hrrr_control_decomp: {'project':['daily'],'dependency':'hrrr_control','turnoff':['noaacloud']} + - hrrr_control_2threads: {'project':['daily'],'dependency':'hrrr_control','turnoff':['noaacloud']} + - hrrr_control_restart: {'project':['daily'],'dependency':'hrrr_control','turnoff':['noaacloud']} + - rrfs_v1beta: {'project':['daily'],'turnoff':['noaacloud']} + - rrfs_v1nssl: {'project':['daily'],'turnoff':['noaacloud']} + - rrfs_v1nssl_nohailnoccn: {'project':['daily'],'turnoff':['noaacloud']} +csawmg_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras' + turnoff: ['noaacloud'] + tests: + - control_csawmg: {'project':['daily'],'turnoff':['noaacloud']} + - control_ras: {'project':['daily'],'turnoff':['noaacloud']} +csawmg_gnu: + build: + compiler: 'gnu' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras' + turnon: ['hera','hercules'] + tests: + - control_csawmg: {'project':['daily'],'turnon':['hera','hercules']} +wam_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON' + turnoff: ['noaacloud'] + tests: + - control_wam: {'project':['daily'],'turnoff':['noaacloud']} +atm_faster_dyn32_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON' + tests: + - control_p8_faster: {'project':['daily'],'turnoff':['noaacloud']} + - regional_control_faster: {'project':['daily'],'turnoff':['noaacloud']} +atm_debug_dyn32_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1' + turnoff: ['noaacloud'] + tests: + - control_CubedSphereGrid_debug: {'project':['daily'],'turnoff':['noaacloud']} + - control_wrtGauss_netcdf_parallel_debug: {'project':['daily'],'turnoff':['noaacloud']} + - control_stochy_debug: {'project':['daily'],'turnoff':['noaacloud']} + - control_lndp_debug: {'project':['daily'],'turnoff':['noaacloud']} + - control_csawmg_debug: {'project':['daily'],'turnoff':['noaacloud']} + - control_ras_debug: {'project':['daily'],'turnoff':['noaacloud']} + - control_diag_debug: {'project':['daily'],'turnoff':['noaacloud']} + - control_debug_p8: {'project':['daily'],'turnoff':['noaacloud']} + - regional_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_control_debug: {'project':['daily'],'turnoff':['noaacloud']} + - hrrr_control_debug: {'project':['daily'],'turnoff':['noaacloud']} + - hrrr_gf_debug: {'project':['daily'],'turnoff':['noaacloud']} + - hrrr_c3_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_unified_drag_suite_debug: {'project':['daily'],'dependency':'rap_control_debug','turnoff':['noaacloud']} + - rap_diag_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_cires_ugwp_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_unified_ugwp_debug: {'project':['daily'],'dependency':'rap_cires_ugwp_debug','turnoff':['noaacloud']} + - rap_lndp_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_progcld_thompson_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_noah_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_sfcdiff_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_noah_sfcdiff_cires_ugwp_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rrfs_v1beta_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_clm_lake_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_flake_debug: {'project':['daily'],'turnoff':['noaacloud']} + - gnv1_c96_no_nest_debug: {'project':['daily'],'turnoff':['noaacloud']} +atm_debug_dyn32_gnu: + build: + compiler: 'gnu' + option: '-DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1' + turnon: ['hera','hercules'] + tests: + - control_csawmg_debug: {'project':['daily'],'turnon':['hera','hercules']} +wam_debug_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON' + turnoff: ['noaacloud'] + tests: + - control_wam_debug: {'project':['daily'],'turnoff':['noaacloud','hercules']} +rrfs_dyn32_phy32_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' + turnoff: ['noaacloud'] + tests: + - regional_spp_sppt_shum_skeb_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} + - rap_control_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} + - hrrr_control_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} + - rap_2threads_dyn32_phy32: {'project':['daily'],'dependency':'rap_control_dyn32_phy32','turnoff':['noaacloud']} + - hrrr_control_2threads_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnoff':['noaacloud']} + - hrrr_control_decomp_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnoff':['noaacloud']} + - rap_restart_dyn32_phy32: {'project':['daily'],'dependency':'rap_control_dyn32_phy32','turnoff':['noaacloud']} + - hrrr_control_restart_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnoff':['noaacloud']} +rrfs_dyn32_phy32_faster_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' + turnoff: ['noaacloud'] + tests: + - conus13km_control: {'project':['daily'],'turnoff':['noaacloud']} + - conus13km_2threads: {'project':['daily'],'dependency':'conus13km_control','turnoff':['noaacloud']} + - conus13km_restart_mismatch: {'project':['daily'],'dependency':'conus13km_control','turnoff':['noaacloud']} +rrfs_dyn64_phy32_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON' + turnoff: ['noaacloud'] + tests: + - rap_control_dyn64_phy32: {'project':['daily'],'turnoff':['noaacloud']} +rrfs_dyn32_phy32_debug_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON' + turnoff: ['noaacloud'] + tests: + - rap_control_debug_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} + - hrrr_control_debug_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} + - conus13km_debug: {'project':['daily'],'turnoff':['noaacloud']} + - conus13km_debug_qr: {'project':['daily'],'dependency':'conus13km_debug','turnoff':['noaacloud']} + - conus13km_debug_2threads: {'project':['daily'],'dependency':'conus13km_debug','turnoff':['noaacloud']} + - conus13km_radar_tten_debug: {'project':['daily'],'turnoff':['noaacloud']} +rrfs_dyn64_phy32_debug_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON' + turnoff: ['noaacloud'] + tests: + - rap_control_dyn64_phy32_debug: {'project':['daily'],'turnoff':['noaacloud']} +hafsw_intel: + build: + compiler: 'intel' + option: '-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON' + tests: + - hafs_regional_atm: {'project':['daily']} + - hafs_regional_atm_thompson_gfdlsf: {'project':['daily']} + - hafs_regional_atm_ocn: {'project':['daily']} + - hafs_regional_atm_wav: {'project':['daily']} + - hafs_regional_atm_ocn_wav: {'project':['daily'],'turnoff':['noaacloud']} + - hafs_regional_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_regional_telescopic_2nests_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_global_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_global_multiple_4nests_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_regional_specified_moving_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm_ocn: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_global_storm_following_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - gnv1_nested: {'project':['daily'],'turnoff':['hercules','wcoss2','s4','noaacloud']} +hafsw_debug_intel: + build: + compiler: 'intel' + option: '-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON' + turnoff: ['jet','noaacloud','s4'] + tests: + - hafs_regional_storm_following_1nest_atm_ocn_debug: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} +hafsw_faster_intel: + build: + compiler: 'intel' + option: '-DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON' + turnoff: ['jet','noaacloud','s4'] + tests: + - hafs_regional_storm_following_1nest_atm_ocn_wav: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm_ocn_wav_inline: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} +hafs_mom6w_intel: + build: + compiler: 'intel' + option: '-DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON' + turnoff: ['jet','noaacloud','s4'] + tests: + - hafs_regional_storm_following_1nest_atm_ocn_wav_mom6: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} +hafs_all_intel: + build: + compiler: 'intel' + option: '-DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON' + turnoff: ['noaacloud'] + tests: + - hafs_regional_docn: {'project':['daily'],'turnoff':['noaacloud']} + - hafs_regional_docn_oisst: {'project':['daily'],'turnoff':['noaacloud']} + - hafs_regional_datm_cdeps: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} +datm_cdeps_intel: + build: + compiler: 'intel' + option: '-DAPP=NG-GODAS' + turnoff: ['wcoss2'] + tests: + - datm_cdeps_control_cfsr: {'project':['daily'],'turnoff':['wcoss2']} + - datm_cdeps_restart_cfsr: {'project':['daily'],'dependency':'datm_cdeps_control_cfsr','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_control_gefs: {'project':['daily'],'turnoff':['wcoss2']} + - datm_cdeps_iau_gefs: {'project':['daily'],'turnoff':['wcoss2']} + - datm_cdeps_stochy_gefs: {'project':['daily'],'turnoff':['wcoss2']} + - datm_cdeps_ciceC_cfsr: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} + - datm_cdeps_bulk_cfsr: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} + - datm_cdeps_bulk_gefs: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} + - datm_cdeps_mx025_cfsr: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} + - datm_cdeps_mx025_gefs: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} + - datm_cdeps_multiple_files_cfsr: {'project':['daily'],'dependency':'datm_cdeps_control_cfsr','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_3072x1536_cfsr: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} + - datm_cdeps_gfs: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} +datm_cdeps_debug_intel: + build: + compiler: 'intel' + option: '-DAPP=NG-GODAS -DDEBUG=ON' + turnoff: ['wcoss2','acorn','noaacloud'] + tests: + - datm_cdeps_debug_cfsr: {'project':['daily'],'turnoff':['wcoss2','acorn','noaacloud']} +datm_cdeps_faster_intel: + build: + compiler: 'intel' + option: '-DAPP=NG-GODAS -DFASTER=ON' + turnoff: ['wcoss2'] + tests: + - datm_cdeps_control_cfsr_faster: {'project':['daily'],'turnoff':['wcoss2']} +datm_cdeps_land_intel: + build: + compiler: 'intel' + option: '-DAPP=LND' + turnoff: ['wcoss2'] + tests: + - datm_cdeps_lnd_gswp3: {'project':['daily'],'turnoff':['wcoss2']} + - datm_cdeps_lnd_era5: {'project':['daily'],'turnoff':['wcoss2']} + - datm_cdeps_lnd_era5_rst: {'project':['daily'],'dependency':'datm_cdeps_lnd_era5','turnoff':['wcoss2','noaacloud']} +atm_ds2s_docn_pcice_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + tests: + - atm_ds2s_docn_pcice: {'project':['daily'],'turnoff':['noaacloud']} +atm_ds2s_docn_dice_intel: + build: + compiler: 'intel' + option: '-DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + turnoff: ['wcoss2','acorn'] + tests: + - atm_ds2s_docn_dice: {'project':['daily'],'dependency':'cpld_control_nowave_noaero_p8','turnoff':['noaacloud','wcoss2','acorn']} +atml_intel: + build: + compiler: 'intel' + option: '-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON' + tests: + - control_p8_atmlnd_sbs: {'project':['daily'],'turnoff':['noaacloud','wcoss2']} + - control_p8_atmlnd: {'project':['daily'],'turnoff':['noaacloud','wcoss2']} + - control_restart_p8_atmlnd: {'project':['daily'],'dependency':'control_p8_atmlnd','turnoff':['noaacloud','wcoss2']} +atml_debug_intel: + build: + compiler: 'intel' + option: '-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DDEBUG=ON' + tests: + - control_p8_atmlnd_debug: {'project':['daily'],'turnoff':['noaacloud','wcoss2']} +atmw_intel: + build: + compiler: 'intel' + option: '-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' + turnoff: ['wcoss2'] + tests: + - atmwav_control_noaero_p8: {'project':['daily'],'turnoff':['wcoss2']} +atmaero_intel: + build: + compiler: 'intel' + option: '-DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' + turnoff: ['noaacloud'] + tests: + - atmaero_control_p8: {'project':['daily'],'turnoff':['noaacloud']} + - atmaero_control_p8_rad: {'project':['daily'],'turnoff':['noaacloud']} + - atmaero_control_p8_rad_micro: {'project':['daily'],'turnoff':['noaacloud']} +atmaq_debug_intel: + build: + compiler: 'intel' + option: '-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON' + turnoff: ['jet','noaacloud','s4'] + tests: + - regional_atmaq_debug: {'project':['daily'],'turnoff':['hera','jet','s4','noaacloud']} +atm_gnu: + build: + compiler: 'gnu' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1' + turnon: ['hera','hercules'] + tests: + - control_c48: {'project':['daily'],'turnon':['hera','hercules']} + - control_stochy: {'project':['daily'],'turnon':['hera','hercules']} + - control_ras: {'project':['daily'],'turnon':['hera','hercules']} + - control_p8: {'project':['daily'],'turnon':['hera','hercules']} + - control_p8_ugwpv1: {'project':['daily'],'turnon':['hera','hercules']} + - control_flake: {'project':['daily'],'turnon':['hera','hercules']} +rrfs_gnu: + build: + compiler: 'gnu' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON' + turnon: ['hera','hercules'] + tests: + - rap_control: {'project':['daily'],'turnon':['hera','hercules']} + - rap_decomp: {'project':['daily'],'dependency':'rap_control','turnon':['hera','hercules']} + - rap_2threads: {'project':['daily'],'dependency':'rap_control','turnon':['hera','hercules']} + - rap_restart: {'project':['daily'],'dependency':'rap_control','turnon':['hera','hercules']} + - rap_sfcdiff: {'project':['daily'],'turnon':['hera','hercules']} + - rap_sfcdiff_decomp: {'project':['daily'],'dependency':'rap_sfcdiff','turnon':['hera','hercules']} + - rap_sfcdiff_restart: {'project':['daily'],'dependency':'rap_sfcdiff','turnon':['hera','hercules']} + - hrrr_control: {'project':['daily'],'turnon':['hera','hercules']} + - hrrr_control_noqr: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} + - hrrr_control_2threads: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} + - hrrr_control_decomp: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} + - hrrr_control_restart: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} + - hrrr_control_restart_noqr: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} + - rrfs_v1beta: {'project':['daily'],'turnon':['hera','hercules']} +atm_dyn32_debug_gnu: + build: + compiler: 'gnu' + option: '-DAPP=ATM -D32BIT=ON -DDEBUG=ON' + turnon: ['hera','hercules'] + tests: + - control_diag_debug: {'project':['daily'],'turnon':['hera','hercules']} + - regional_debug: {'project':['daily'],'turnon':['hera','hercules']} + - rap_control_debug: {'project':['daily'],'turnon':['hera','hercules']} + - hrrr_control_debug: {'project':['daily'],'turnon':['hera','hercules']} + - hrrr_gf_debug: {'project':['daily'],'turnon':['hera','hercules']} + - hrrr_c3_debug: {'project':['daily'],'turnon':['hera','hercules']} + - rap_diag_debug: {'project':['daily'],'turnon':['hera','hercules']} + - rap_noah_sfcdiff_cires_ugwp_debug: {'project':['daily'],'turnon':['hera','hercules']} + - rap_progcld_thompson_debug: {'project':['daily'],'turnon':['hera','hercules']} + - rrfs_v1beta_debug: {'project':['daily'],'turnon':['hera','hercules']} + - control_ras_debug: {'project':['daily'],'turnon':['hera','hercules']} + - control_stochy_debug: {'project':['daily'],'turnon':['hera','hercules']} + - control_debug_p8: {'project':['daily'],'turnon':['hera','hercules']} + - rap_flake_debug: {'project':['daily'],'turnon':['hera','hercules']} + - rap_clm_lake_debug: {'project':['daily'],'turnon':['hera','hercules']} + - gnv1_c96_no_nest_debug: {'project':['daily'],'turnon':['hera','hercules']} +wam_debug_gnu: + build: + compiler: 'gnu' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON' + turnon: ['hera','hercules'] + tests: + - control_wam_debug: {'project':['daily'],'turnon':['hercules']} +rrfs_dyn32_phy32_gnu: + build: + compiler: 'gnu' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' + turnon: ['hera','hercules'] + tests: + - rap_control_dyn32_phy32: {'project':['daily'],'turnon':['hera','hercules']} + - hrrr_control_dyn32_phy32: {'project':['daily'],'turnon':['hera','hercules']} + - rap_2threads_dyn32_phy32: {'project':['daily'],'dependency':'rap_control_dyn32_phy32','turnon':['hera','hercules']} + - hrrr_control_2threads_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnon':['hera','hercules']} + - hrrr_control_decomp_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnon':['hera','hercules']} + - rap_restart_dyn32_phy32: {'project':['daily'],'dependency':'rap_control_dyn32_phy32','turnon':['hera','hercules']} + - hrrr_control_restart_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnon':['hera','hercules']} + - conus13km_control: {'project':['daily'],'turnon':['hera','hercules']} + - conus13km_2threads: {'project':['daily'],'dependency':'conus13km_control','turnon':['hera','hercules']} + - conus13km_restart_mismatch: {'project':['daily'],'dependency':'conus13km_control','turnon':['hera','hercules']} +atm_dyn64_phy32_gnu: + build: + compiler: 'gnu' + option: '-DAPP=ATM -DCCPP_32BIT=ON' + turnon: ['hera','hercules'] + tests: + - rap_control_dyn64_phy32: {'project':['daily'],'turnon':['hera','hercules']} +atm_dyn32_phy32_debug_gnu: + build: + compiler: 'gnu' + option: '-DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON' + turnon: ['hera','hercules'] + tests: + - rap_control_debug_dyn32_phy32: {'project':['daily'],'turnon':['hera','hercules']} + - hrrr_control_debug_dyn32_phy32: {'project':['daily'],'turnon':['hera','hercules']} + - conus13km_debug: {'project':['daily'],'turnon':['hera','hercules']} + - conus13km_debug_qr: {'project':['daily'],'dependency':'conus13km_debug','turnon':['hera','hercules']} + - conus13km_debug_2threads: {'project':['daily'],'dependency':'conus13km_debug','turnon':['hera','hercules']} + - conus13km_radar_tten_debug: {'project':['daily'],'turnon':['hera','hercules']} +atm_dyn64_phy32_debug_gnu: + build: + compiler: 'gnu' + option: '-DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON' + turnon: ['hera','hercules'] + tests: + - rap_control_dyn64_phy32_debug: {'project':['daily'],'turnon':['hera','hercules']} +s2swa_gnu: + build: + compiler: 'gnu' + option: '-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + turnon: ['hera','hercules'] +s2s_gnu: + build: + compiler: 'gnu' + option: '-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + turnon: ['hera','hercules'] + tests: + - cpld_control_nowave_noaero_p8: {'project':['daily'],'turnon':['hera','hercules']} +s2swa_debug_gnu: + build: + compiler: 'gnu' + option: '-DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + turnon: ['hera','hercules'] +s2sw_pdlib_gnu: + build: + compiler: 'gnu' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON' + turnon: ['hera','hercules'] + tests: + - cpld_control_pdlib_p8: {'project':['daily'],'turnon':['hera','hercules']} +s2sw_pdlib_debug_gnu: + build: + compiler: 'gnu' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON' + turnon: ['hera','hercules'] + tests: + - cpld_debug_pdlib_p8: {'project':['daily'],'turnon':['hercules']} +datm_cdeps_gnu: + build: + compiler: 'gnu' + option: '-DAPP=NG-GODAS' + turnon: ['hera','hercules'] + tests: + - datm_cdeps_control_cfsr: {'project':['daily'],'turnon':['hera','hercules']} diff --git a/tests-dev/ufs_test_utils.py b/tests-dev/ufs_test_utils.py new file mode 100644 index 0000000000..9a0f8a2faa --- /dev/null +++ b/tests-dev/ufs_test_utils.py @@ -0,0 +1,338 @@ +import os +import sys +import re +import glob +import yaml +import shutil +import subprocess + +def update_testyaml(input_list): + """Generate temporary test yaml based on list of tests received + + Args: + input_list (list): list of tests to run + """ + UFS_TEST_YAML = "ufs_test.yaml" # default ufs_test.yaml + new_yaml = {} + yaml_item_count = None + with open(UFS_TEST_YAML, 'r') as file_yaml: + rt_yaml = yaml.load(file_yaml)#, Loader=yaml.FullLoader) + for apps, jobs in rt_yaml.items(): + app_temp = None + build_temp = None + for key, val in jobs.items(): + if (str(key) == 'build'): + #--- build information --- + build_val = val + compiler_val= val['compiler'] + if (str(key) == 'tests'): + #--- serach for test cases given with -n or -b option --- + test_list = [] + temp_list = [] + app_temp = None + build_temp = None + test_temp = None + test_temp_dep = None + for test in val: + case, config = get_testcase(test) + i=0 + ilist= None + #--- search input_list test cases from ufs_test.yaml --- + for line in input_list: + case_check = line.split(" ")[0] + compiler_check= line.split(" ")[1] + if case == case_check and compiler_val == compiler_check: + ilist=i + app_temp = apps + build_temp= build_val + test_temp = {case:config} + temp_list.append(str(case)) + if 'dependency' in config.keys(): + if not str(config['dependency']) in temp_list: + test_temp_dep = get_testdep(str(config['dependency']),val) + i+=1 + #--- pop input_list element if a test case is found --- + if not ilist is None: + input_list.pop(ilist) + #--- append test cases to new test list --- + if not test_temp_dep is None: + test_list.append(test_temp_dep) + test_temp_dep = None + if not test_temp is None: + test_list.append(test_temp) + test_temp = None + if not app_temp is None: + new_yaml[app_temp]={'build':build_temp,'tests':test_list} + #--- check all search is done for input_list --- + if len(input_list) == 0: + break + #--- dump into temporary test yaml file --- + if len(new_yaml) > 0: + yaml_item_count = len(new_yaml) + try: + yaml_item_count + except NameError: + print("*** Test cases given with runtime options -n or -b are not found in ufs_test.yaml! ***") + else: + with open(r'ufs_test_temp.yaml', 'w') as yaml_file: + outputs = yaml.dump(new_yaml, yaml_file) + yaml_file.close() + file_yaml.close() + +def update_testyaml_n(): + """Update test yaml file for a single test specified in -n + """ + try: + SRT_NAME = str(os.getenv('SRT_NAME')) + SRT_COMPILER = str(os.getenv('SRT_COMPILER')) + except NameError: + print("*** SRT_NAME or SRT_COMPILER are not given with runtime option -n! ***") + input_list=[SRT_NAME+" "+SRT_COMPILER] + update_testyaml(input_list) + +def update_testyaml_b(): + """Update test yaml file for tests specified in -b + """ + NEW_BASELINES_FILE = str(os.getenv('NEW_BASELINES_FILE')) + input_list=[] + with open(NEW_BASELINES_FILE) as input_file: + for line in input_file: + line=line.strip('\n') + line=line.strip() + input_list.append(str(line)) + input_file.close() + update_testyaml(input_list) + +def string_clean(str_in): + """Strip out RUN or COMPILE whitespace and separate with commas. + + Args: + str_in (str): RUN or COMPILE line read in from rt.conf + + Returns: + str: whitespace stripped and comma separated values + """ + return "'"+("','".join(str_in.split()))+"'" + +def parse_line(str_in): + """Parse rt.conf line into list + + Args: + str_in (str): RUN or COMPILE line from rt.conf + + Returns: + list: list of RUN or COMPILE test attributes + """ + build_attr = " ".join(str_in.split()).split('|') + build_attr = [attr.strip() for attr in build_attr] + return build_attr + +def create_yaml(): + """Parse default rt.conf into ufs_test.yaml + + """ + with open('ufs_test.yaml', 'w') as yaml_file, open("rt.conf") as conf_file: + for line in conf_file: + line = line.strip() + if not line: # skip: line is blank + continue + if line.startswith("#"): # skip: comment line + continue + if line.startswith("COMPILE"): # COMPILE line + build = parse_line(line) + apps = build[1] + compiler = f"'{build[2]}'" + options = f"'{build[3]}'" + machine = build[4] + off_machine = None + on_machine = None + if (machine.find('-') != -1): + off_machine = machine.replace("-", "").strip() + off_machine = string_clean(off_machine) + if (machine.find('+') != -1): + on_machine = machine.replace("+", "").strip() + on_machine = string_clean(on_machine) + yaml_file.write(f"{apps}_{build[2].strip()}:\n") + yaml_file.write(f" build: \n") + yaml_file.write(f" compiler: {compiler}\n") + yaml_file.write(f" option: {options}\n") + if not (off_machine is None): + yaml_file.write(f" turnoff: [{off_machine}]\n") + if not (on_machine is None): + yaml_file.write(f" turnon: [{on_machine}]\n") + prev_line = 'COMPILE' + if line.startswith("RUN"): # RUN line + build = parse_line(line) + test = build[1] + machine = build[2] + baseline = f"'{build[3]}'" + depend = build[4] + if (machine.find('-') != -1): + off_machine = machine.replace("-", "").strip() + off_machine = string_clean(off_machine) + if (machine.find('+') != -1): + on_machine = machine.replace("+", "").strip() + on_machine = string_clean(on_machine) + tests = f" - {test}: {{'project':['daily']" + if baseline.isalnum(): + tests += f",'baseline': {baseline}" + if depend and depend.strip(): + tests += f",'dependency':'{depend}'" + if not (off_machine is None): + tests += f",'turnoff':[{off_machine}]" + if not (on_machine is None): + tests += f",'turnon':[{on_machine}]" + if prev_line == "COMPILE": + yaml_file.write(" tests: \n") + yaml_file.write(tests+"}\n") + prev_line = 'RUN' + + yaml_file.close(); conf_file.close() + +def sync_testscripts(): + """symlink sharable rt.sh test scripts + """ + dst= os.getcwd() + src= os.path.split(os.getcwd())[0]+'/tests' + for name in os.listdir(src): + src_name= src +'/'+ name + dst_name= dst +'/'+ name + if not os.path.exists(dst_name): + if "/compile.sh" in dst_name: + shutil.copyfile(src_name, dst_name) + subprocess.call(['chmod', '755', dst_name]) + with open(dst_name) as rfile: + buildsh = rfile.read().replace("${PATHTR}/tests/", "${PATHTR}/tests-dev/") + rfile.close() + with open(dst_name, "w") as wfile: + wfile.write(buildsh) + wfile.close() + else: + os.symlink(src_name, dst_name) + +def machine_check_off(machine_id, val): + """Check turned-off machine from yaml configuration + + Args: + machine_id (str): local machine name + val (dic): build and test config dictionary list + Returns: + pass_machine: logical flag to pass local machine + """ + pass_machine = True + if 'turnoff' in val.keys(): + if machine_id in val['turnoff']: + pass_machine = False + if 'turnon' in val.keys(): + if not machine_id in val['turnon']: + pass_machine = False + return pass_machine + +def delete_files(deletefiles): + """Remove specified filepath + + Args: + deletefiles (str): filepath to remove e.g. tests/rocoto.* + """ + fileList = glob.glob(deletefiles, recursive=True) + for filePath in fileList: + try: + os.remove(filePath) + except OSError: + print("Error while deleting ",deletefiles) + +def link_new_baselines(): + """Create symlinks for newly generated baselines. + """ + USER = str(os.environ.get('USER')) + MACHINE_ID = os.getenv('MACHINE_ID') + PATHRT = os.getenv('PATHRT') + with open("baseline_setup.yaml", 'r') as f: + exp_config = yaml.load(f) #, Loader=yaml.FullLoader) + base = exp_config[MACHINE_ID] + DISKNM= str(base['DISKNM']) + STMP = str(base['STMP']) + PTMP = str(base['PTMP']) + path = STMP+'/'+USER + RTPWD = path + '/FV3_RT/REGRESSION_TEST' + f.close() + #--- capture user's NEW_BASELINE location ---- + logfile = PATHRT+'/logs/RegressionTests_'+MACHINE_ID+'.log' + with open(logfile,'r') as flog: + logheads= flog.readlines() + for line in logheads: + if "BASELINE DIRECTORY:" in line: + NEW_BASELINE=line.split(" ")[1] + break + flog.close() + #--- symlink verified baseline cases to users new baseline --- + os.environ["RTPWD"] = RTPWD + os.environ["NEW_BASELINE"] = NEW_BASELINE + symlink_baselines = subprocess.Popen(['bash', '-c', '. ufs_test_utils.sh; link_new_baselines']) + symlink_baselines.wait() + +def get_testdep(casename,val): + """Retrieve test case dependencies + + Args: + casename (str): Test case name + val (dict): Test case attributes e.g. val['compiler'] + + Returns: + dict: Test case and config for the specified dependency + """ + test_dep = None + for test in val: + case, config = get_testcase(test) + if case == casename: + test_dep = {case:config} + return test_dep + +def get_testcase(test): + """Retrieve test case names and configs from given dict from pyaml + + Args: + test (dict): dict retrieved from reading in yaml test file + + Returns: + str, dict: test name and python dict of test configuration + """ + case_name = None + case_config = None + for case, configs in test.items(): + case_name=case + case_config=configs + return case_name, case_config + +def write_logfile(logfile, openmod, output="", subproc=""): + """Append given output into log file + + Args: + logfile (str): Log filename + openmod (str): mode to open file in + output (str): Content to append to log file. Defaults to "". + subproc (str): Command to run within the shell. Defaults to "". + """ + with open(logfile, openmod) as rtlog: + if (not subproc == "") : + subprocess.call(subproc, shell=True, stdout=rtlog) + if (not output == "") : + rtlog.writelines(output) + rtlog.close() + +def rrmdir(path): + """Remove all files and directories in specified path. + + Args: + path (str): File path to remove + """ + shutil.rmtree(path) + #for entry in os.scandir(path): + # if entry.is_dir(): + # rrmdir(entry) + # else: + # os.remove(entry) + # os.rmdir(path) + +#if __name__ == "__main__": +# create_yaml() diff --git a/tests-dev/ufs_test_utils.sh b/tests-dev/ufs_test_utils.sh new file mode 100644 index 0000000000..4b103dc39f --- /dev/null +++ b/tests-dev/ufs_test_utils.sh @@ -0,0 +1,34 @@ +#!/bin/bash +set -eux + +function set_run_task() { + source default_vars.sh + source rt_utils.sh + source "${PATHRT}"/tests/"${TEST_NAME}" + compute_petbounds_and_tasks + + TPN=$(( TPN / THRD )) + NODES=$(( TASKS / TPN )) + if (( NODES * TPN < TASKS )); then + NODES=$(( NODES + 1 )) + fi + + PPN=$(( TASKS / NODES )) + if (( TASKS - ( PPN * NODES ) > 0 )); then + PPN=$((PPN + 1)) + fi + + export WLCLK + + python -c "import create_xml; create_xml.write_runtest_env()" + rocoto_create_run_task + +} + +function link_new_baselines() { + for dir in "${RTPWD}"/*/; do + dir=${dir%*/} + [[ -d "${NEW_BASELINE}/${dir##*/}" ]] && continue + ln -s "${dir%*/}" "${NEW_BASELINE}/" + done +} diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index a79ca74ba1..5fc896fd29 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Aug 7 16:04:22 UTC 2024 +Fri Aug 9 04:00:06 UTC 2024 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_3245717/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/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 = 291.553157 - 0: The maximum resident set size (KB) = 1432740 + 0: The total amount of wall time = 279.679964 + 0: The maximum resident set size (KB) = 1460412 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_3245717/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/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 = 978.453839 - 0: The maximum resident set size (KB) = 1404508 + 0: The total amount of wall time = 986.199169 + 0: The maximum resident set size (KB) = 1426460 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_3245717/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/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 = 250.835851 - 0: The maximum resident set size (KB) = 1418368 + 0: The total amount of wall time = 250.630229 + 0: The maximum resident set size (KB) = 1408568 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_3245717/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/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 = 251.336453 - 0: The maximum resident set size (KB) = 1419812 + 0: The total amount of wall time = 248.429764 + 0: The maximum resident set size (KB) = 1428500 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_3245717/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/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 = 250.225330 - 0: The maximum resident set size (KB) = 1419120 + 0: The total amount of wall time = 255.808429 + 0: The maximum resident set size (KB) = 1426564 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_3245717/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/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 = 251.764603 - 0: The maximum resident set size (KB) = 1418912 + 0: The total amount of wall time = 248.579185 + 0: The maximum resident set size (KB) = 1433372 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_3245717/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3660377/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 = 250.616791 - 0: The maximum resident set size (KB) = 1405864 + 0: The total amount of wall time = 253.035278 + 0: The maximum resident set size (KB) = 1426628 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 7 17:12:51 UTC 2024 -Elapsed time: 01h:08m:29s. Have a nice day! +Fri Aug 9 05:05:03 UTC 2024 +Elapsed time: 01h:04m:57s. 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 e61bb4928d..fbada5b633 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Wed Aug 7 14:58:27 UTC 2024 +Fri Aug 9 02:56:32 UTC 2024 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_1523760/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2767517/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 = 1347.758320 - 0: The maximum resident set size (KB) = 1508348 + 0: The total amount of wall time = 1360.287918 + 0: The maximum resident set size (KB) = 1522784 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_1523760/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2767517/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 = 427.699439 - 0: The maximum resident set size (KB) = 1502940 + 0: The total amount of wall time = 431.635030 + 0: The maximum resident set size (KB) = 1531952 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_1523760/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2767517/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 = 461.709298 - 0: The maximum resident set size (KB) = 1511784 + 0: The total amount of wall time = 432.002387 + 0: The maximum resident set size (KB) = 1541276 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 7 16:04:22 UTC 2024 -Elapsed time: 01h:05m:56s. Have a nice day! +Fri Aug 9 04:00:06 UTC 2024 +Elapsed time: 01h:03m:35s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 61c8ee0c7e..b99fa78e5c 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Aug 7 12:28:17 UTC 2024 +Fri Aug 9 00:27:51 UTC 2024 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_538515/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2714443/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 = 1405.955778 - 0: The maximum resident set size (KB) = 767568 + 0: The total amount of wall time = 1379.789847 + 0: The maximum resident set size (KB) = 770252 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_538515/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2714443/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 = 2160.154552 - 0: The maximum resident set size (KB) = 703612 + 0: The total amount of wall time = 2222.469710 + 0: The maximum resident set size (KB) = 742740 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_538515/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2714443/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 = 2253.393184 - 0: The maximum resident set size (KB) = 716020 + 0: The total amount of wall time = 2152.921801 + 0: The maximum resident set size (KB) = 742124 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_538515/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2714443/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 = 2176.355099 - 0: The maximum resident set size (KB) = 724868 + 0: The total amount of wall time = 2261.335740 + 0: The maximum resident set size (KB) = 720504 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 7 14:58:26 UTC 2024 -Elapsed time: 02h:30m:10s. Have a nice day! +Fri Aug 9 02:56:30 UTC 2024 +Elapsed time: 02h:28m:41s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 5062b3ac4e..a80a8b4b99 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: -c34693f57b7804adb9fae55d41f8519a32801059 +8cb23af867d56961352ff5fab97656c3a4c6b936 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) - 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) + fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) + d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,285 +36,362 @@ 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-20240730 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_62932 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_85245 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [55:29, 20:54] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:15, 05:37](3206 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [57:29, 22:54] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:20, 14:38](1910 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:17, 15:54](1933 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:12, 07:53](1077 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:51, 16:25](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [57:30, 22:55] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:19, 14:10](1905 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [47:48, 11:21] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:36, 22:39](1941 MB) - -PASS -- COMPILE 's2swa_intel' [54:30, 20:47] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [59:22, 06:21](3220 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:17, 06:15](3219 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:50, 04:05](3146 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:40, 06:14](3250 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [13:09, 04:01](3179 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [30:17, 05:58](3734 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:20, 06:09](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:08, 05:08](3536 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:35, 06:19](3228 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:10, 09:37](3816 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:53, 06:24](3619 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:08, 10:20](4518 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:20, 06:59](4672 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [17:14, 06:07](3208 MB) - -PASS -- COMPILE 's2sw_intel' [53:29, 19:24] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:50, 04:45](1929 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:58, 05:06](1981 MB) - -PASS -- COMPILE 's2swa_debug_intel' [47:48, 11:18] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:00, 08:10](3304 MB) - -PASS -- COMPILE 's2sw_debug_intel' [46:29, 10:38] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [40:33, 05:56](1956 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [51:29, 15:44] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:06, 04:46](1986 MB) - -PASS -- COMPILE 's2s_intel' [51:31, 15:45] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [44:37, 06:39](2886 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [39:38, 02:21](2893 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:18, 01:33](2311 MB) - -PASS -- COMPILE 's2swa_faster_intel' [07:45, 23:26] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:22, 06:16](3234 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [04:47, 21:33] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:01, 14:44](1924 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:05, 07:46](1103 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:48, 16:34](1894 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [53:44, 10:43] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:46, 24:35](1947 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [53:42, 13:46] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:37, 03:28](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:56, 02:26](1565 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:19, 02:28](1563 MB) -PASS -- TEST 'control_latlon_intel' [05:57, 02:24](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:02, 02:26](1565 MB) -PASS -- TEST 'control_c48_intel' [09:04, 06:07](1573 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:40, 05:15](710 MB) -PASS -- TEST 'control_c192_intel' [11:40, 08:48](1679 MB) -PASS -- TEST 'control_c384_intel' [16:20, 08:53](1946 MB) -PASS -- TEST 'control_c384gdas_intel' [14:12, 07:10](1177 MB) -PASS -- TEST 'control_stochy_intel' [02:40, 01:27](622 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:43, 00:52](440 MB) -PASS -- TEST 'control_lndp_intel' [02:40, 01:22](621 MB) -PASS -- TEST 'control_iovr4_intel' [04:49, 02:06](617 MB) -PASS -- TEST 'control_iovr5_intel' [04:35, 02:06](622 MB) -PASS -- TEST 'control_p8_intel' [06:38, 03:02](1855 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:35, 03:04](1858 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:34, 03:02](1850 MB) -PASS -- TEST 'control_restart_p8_intel' [04:14, 01:59](1003 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:17, 03:10](1855 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:13, 02:07](1002 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:16, 03:04](1844 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:27, 03:03](1936 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:13, 05:01](1853 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:33, 03:56](1909 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:34, 03:12](1866 MB) -PASS -- TEST 'merra2_thompson_intel' [06:30, 03:32](1861 MB) -PASS -- TEST 'regional_control_intel' [06:54, 04:54](865 MB) -PASS -- TEST 'regional_restart_intel' [04:50, 02:56](858 MB) -PASS -- TEST 'regional_decomp_intel' [06:53, 05:04](865 MB) -PASS -- TEST 'regional_noquilt_intel' [06:54, 04:45](1178 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 04:46](870 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:00, 04:51](864 MB) -PASS -- TEST 'regional_wofs_intel' [08:00, 05:39](1595 MB) - -PASS -- COMPILE 'rrfs_intel' [51:40, 12:30] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:20, 06:10](1004 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:43, 03:42](1163 MB) -PASS -- TEST 'rap_decomp_intel' [11:20, 06:24](1002 MB) -PASS -- TEST 'rap_2threads_intel' [10:28, 05:42](1092 MB) -PASS -- TEST 'rap_restart_intel' [05:13, 03:15](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:21, 06:07](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:22, 06:25](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:12, 04:36](875 MB) -PASS -- TEST 'hrrr_control_intel' [14:14, 03:12](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [14:14, 03:21](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:17, 02:47](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:41, 01:46](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:28, 06:00](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:53, 07:26](1952 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:53, 07:12](1944 MB) - -PASS -- COMPILE 'csawmg_intel' [48:41, 11:24] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [12:09, 06:27](957 MB) -PASS -- TEST 'control_ras_intel' [07:34, 02:54](656 MB) - -PASS -- COMPILE 'wam_intel' [47:39, 11:09] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:16, 10:10](1655 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [47:40, 11:38] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [13:32, 02:49](1853 MB) -PASS -- TEST 'regional_control_faster_intel' [07:02, 04:43](859 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [47:40, 13:52] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:12, 02:34](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:15, 02:33](1612 MB) -PASS -- TEST 'control_stochy_debug_intel' [11:39, 02:54](807 MB) -PASS -- TEST 'control_lndp_debug_intel' [10:39, 02:37](807 MB) -PASS -- TEST 'control_csawmg_debug_intel' [13:11, 04:32](1114 MB) -PASS -- TEST 'control_ras_debug_intel' [10:38, 02:39](815 MB) -PASS -- TEST 'control_diag_debug_intel' [11:41, 02:39](1662 MB) -PASS -- TEST 'control_debug_p8_intel' [12:14, 03:27](1902 MB) -PASS -- TEST 'regional_debug_intel' [19:04, 16:31](915 MB) -PASS -- TEST 'rap_control_debug_intel' [13:40, 04:54](1186 MB) -PASS -- TEST 'hrrr_control_debug_intel' [12:49, 04:37](1184 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 04:42](1188 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:43](1189 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:42, 04:40](1186 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:05, 04:59](1269 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:31, 04:46](1188 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:33, 04:44](1189 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:46, 04:44](1192 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:41, 04:44](1192 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:36, 04:43](1185 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:40, 04:47](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:31](1184 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:37, 04:36](1185 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:43, 05:32](1189 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:41, 04:44](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:09, 07:57](1191 MB) - -PASS -- COMPILE 'wam_debug_intel' [40:35, 07:01] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [13:57, 12:22](1684 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:23, 11:10] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:46, 03:28](1016 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:06, 05:07](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:04, 02:46](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:09, 04:46](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:12, 02:24](935 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:19, 02:53](876 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 03:54](793 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:48, 01:32](778 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:30, 11:02] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:48, 01:53](1075 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:33, 00:58](1071 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:33, 01:06](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [24:24, 11:07] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:13, 03:39](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [20:22, 07:22] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 04:38](1062 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:27](1060 MB) -PASS -- TEST 'conus13km_debug_intel' [15:35, 13:28](1147 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:24, 13:39](826 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:29, 07:50](1140 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:28, 13:52](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [18:26, 07:00] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:39, 04:35](1086 MB) - -PASS -- COMPILE 'hafsw_intel' [29:23, 17:09] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:31, 04:33](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:59, 05:02](1047 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:03, 06:26](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:24, 10:58](766 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:41, 12:10](797 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:35, 04:39](460 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:44, 05:41](477 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:06, 02:17](383 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:35, 06:05](452 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:03, 03:17](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 03:03](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:21, 03:48](570 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:33, 01:13](421 MB) -PASS -- TEST 'gnv1_nested_intel' [07:33, 04:12](1701 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [18:20, 08:24] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:39, 12:00](625 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [27:22, 16:52] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:19, 07:10](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:27, 07:14](674 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [23:22, 18:17] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:26, 05:23](668 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:15, 15:31] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:46, 05:41](740 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:53, 05:44](722 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:07](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:17, 08:10] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:44, 02:28](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:25, 01:32](759 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:35, 02:21](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:31, 02:24](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:44, 02:25](648 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:43, 02:28](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:38, 02:29](766 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:38, 02:19](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:52, 05:43](698 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:18, 05:42](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:29](756 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 03:54](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:30, 03:53](2035 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:17, 05:37] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:27, 05:10](752 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:22, 08:15] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:29](756 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:17, 02:37] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:44, 01:09](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 01:05](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:41, 00:45](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:19, 13:16] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:38, 03:50](1902 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:18, 12:14] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:30, 03:45](1898 MB) - -PASS -- COMPILE 'atml_intel' [15:19, 14:17] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:37, 07:14](1883 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:40, 07:06](1878 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:12, 04:13](1033 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:18, 10:26] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:35, 06:24](1919 MB) - -PASS -- COMPILE 'atmw_intel' [14:20, 13:22] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:22, 02:21](1875 MB) - -PASS -- COMPILE 'atmaero_intel' [13:18, 12:37] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:48, 04:12](3122 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:46, 04:19](3000 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:12, 04:23](3007 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:19, 07:52] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:13, 21:53](4538 MB) +PASS -- COMPILE 's2swa_32bit_intel' [26:18, 24:28] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:33, 06:05](3203 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:22, 26:54] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:09, 15:04](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:04, 16:38](1937 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:08, 08:13](1072 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:09, 16:55](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:23, 26:26] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:24, 14:34](1910 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:15, 15:08] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:13, 23:04](1933 MB) + +PASS -- COMPILE 's2swa_intel' [25:21, 24:03] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:15, 06:30](3221 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:39, 06:44](3221 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:05, 04:19](3149 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:15, 06:38](3247 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:03, 04:06](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:32, 06:12](3732 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:47, 06:39](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:27, 05:38](3534 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:37, 06:38](3228 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:14, 09:52](3816 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:01, 07:00](3618 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [34:56, 10:59](4518 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:24, 06:10](3202 MB) + +PASS -- COMPILE 's2sw_intel' [24:21, 22:14] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:56, 05:03](1919 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:08, 05:21](1986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [18:20, 14:52] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:14, 08:23](3304 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:19, 13:52] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:00, 06:10](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [21:20, 18:17] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:08, 05:11](1991 MB) + +PASS -- COMPILE 's2s_intel' [22:18, 18:46] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [35:35, 07:02](2891 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [31:33, 02:44](2902 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:42, 01:46](2309 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:20, 26:11] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:56, 06:29](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [26:24, 24:46] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:17, 15:03](1929 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:29, 08:30](1088 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:01, 16:58](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:25, 13:32] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:06, 24:45](1944 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:26, 15:20] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [08:03, 03:33](671 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:48, 02:29](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:10, 02:35](1571 MB) +PASS -- TEST 'control_latlon_intel' [09:47, 02:32](1562 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:45, 02:33](1562 MB) +PASS -- TEST 'control_c48_intel' [19:47, 06:10](1575 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [18:59, 05:22](708 MB) +PASS -- TEST 'control_c192_intel' [16:56, 08:51](1674 MB) +PASS -- TEST 'control_c384_intel' [19:16, 09:02](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [19:56, 07:31](1175 MB) +PASS -- TEST 'control_stochy_intel' [06:06, 01:36](621 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:47, 00:55](438 MB) +PASS -- TEST 'control_lndp_intel' [06:07, 01:26](622 MB) +PASS -- TEST 'control_iovr4_intel' [07:08, 02:12](622 MB) +PASS -- TEST 'control_iovr5_intel' [07:08, 02:14](623 MB) +PASS -- TEST 'control_p8_intel' [09:19, 03:19](1858 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:22, 03:21](1859 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:03, 03:15](1861 MB) +PASS -- TEST 'control_restart_p8_intel' [05:47, 02:08](1004 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:43, 03:15](1851 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:30, 02:17](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:40, 03:26](1852 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:01, 03:12](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:41, 05:08](1857 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:54, 04:09](1912 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:59, 03:18](1863 MB) +PASS -- TEST 'merra2_thompson_intel' [07:55, 03:28](1858 MB) +PASS -- TEST 'regional_control_intel' [08:30, 05:03](858 MB) +PASS -- TEST 'regional_restart_intel' [05:11, 03:29](862 MB) +PASS -- TEST 'regional_decomp_intel' [08:58, 05:27](870 MB) +PASS -- TEST 'regional_noquilt_intel' [07:56, 05:02](1181 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:02, 05:03](863 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:03, 05:18](868 MB) +PASS -- TEST 'regional_wofs_intel' [08:13, 05:46](1595 MB) + +PASS -- COMPILE 'rrfs_intel' [42:28, 14:11] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:16, 06:18](1004 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:26, 03:57](1156 MB) +PASS -- TEST 'rap_decomp_intel' [11:16, 06:32](1004 MB) +PASS -- TEST 'rap_2threads_intel' [09:26, 05:52](1081 MB) +PASS -- TEST 'rap_restart_intel' [05:27, 03:17](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:15, 06:16](1002 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:15, 06:32](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:25, 04:47](875 MB) +PASS -- TEST 'hrrr_control_intel' [07:40, 03:18](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:39, 03:29](996 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:14, 02:55](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:01, 01:56](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:30, 06:10](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:50, 07:32](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:54, 07:14](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [39:31, 13:00] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:22, 06:31](955 MB) +PASS -- TEST 'control_ras_intel' [04:39, 03:00](658 MB) + +PASS -- COMPILE 'wam_intel' [38:32, 12:52] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:20, 10:23](1644 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [37:22, 13:24] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:46, 03:15](1857 MB) +PASS -- TEST 'regional_control_faster_intel' [07:14, 05:06](858 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [37:32, 15:50] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:22, 02:43](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:18, 02:34](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:47, 02:57](808 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:49, 02:46](807 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:23, 04:48](1115 MB) +PASS -- TEST 'control_ras_debug_intel' [03:58, 02:43](815 MB) +PASS -- TEST 'control_diag_debug_intel' [06:57, 02:43](1660 MB) +PASS -- TEST 'control_debug_p8_intel' [06:17, 03:28](1906 MB) +PASS -- TEST 'regional_debug_intel' [19:34, 16:34](919 MB) +PASS -- TEST 'rap_control_debug_intel' [06:51, 04:56](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:54, 04:46](1186 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:54, 04:49](1189 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:39, 04:46](1193 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:51, 04:45](1193 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:18, 04:58](1271 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:51, 04:54](1192 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:49, 04:58](1192 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:51, 04:46](1196 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:57, 04:46](1188 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:53, 04:42](1187 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:49, 04:45](1189 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:45, 07:32](1186 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:50, 04:42](1185 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:01, 05:52](1193 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:52, 04:54](1187 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:27, 08:02](1199 MB) + +PASS -- COMPILE 'wam_debug_intel' [30:27, 08:42] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:09, 12:08](1694 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:26, 12:50] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:10, 03:47](1019 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:25, 05:11](884 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:36, 02:57](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:25, 04:55](944 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:38, 02:33](938 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:36, 03:00](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:33, 03:59](790 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:47, 01:37](775 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [26:23, 12:50] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:35, 02:04](1073 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:59, 01:12](1070 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:56, 01:15](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [21:18, 13:09] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 03:43](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [17:17, 09:08] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:46, 04:39](1068 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:45, 04:30](1070 MB) +PASS -- TEST 'conus13km_debug_intel' [17:24, 13:50](1148 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:30, 14:23](830 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:14, 08:16](1145 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:12, 13:54](1215 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:13, 09:00] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:49, 04:47](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [21:21, 19:58] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:49, 04:51](704 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:40, 05:25](1043 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:57, 06:45](756 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:11, 11:15](770 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:28, 12:29](794 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 04:47](461 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:58, 05:55](475 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:18, 02:27](387 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_global_multiple_4nests_atm_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:20, 03:28](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:58, 03:15](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:54, 04:05](567 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:43, 01:21](418 MB) +PASS -- TEST 'gnv1_nested_intel' [08:48, 04:30](1713 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [12:22, 10:46] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:45, 12:38](620 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:25, 18:59] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:55, 07:27](614 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:24, 07:25](679 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:24, 20:24] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:32, 05:33](665 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:18, 17:52] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:25, 06:03](737 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:27, 06:00](720 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:42, 16:24](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:22, 09:42] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:47, 02:34](757 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:04, 01:36](759 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:52, 02:25](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:55, 02:29](653 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:49, 02:27](649 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:51, 02:32](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:55, 02:36](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:48, 02:26](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:46, 05:50](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:44, 05:51](680 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:34](770 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 03:59](2033 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:07, 04:02](2033 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [13:19, 07:30] ( 7 warnings 2 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'datm_cdeps_debug_cfsr_intel' [, ]( MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:15, 09:59] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:46, 02:34](767 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [08:19, 03:20] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:58, 01:26](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:09, 01:17](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:00, 01:12](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:36, 15:38] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:09, 04:25](1906 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:20, 14:24] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:52, 04:06](1902 MB) + +PASS -- COMPILE 'atml_intel' [17:31, 16:32] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:30, 08:44](1891 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:37, 08:16](1889 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:06, 04:01](1037 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:27, 12:28] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:38, 06:45](1927 MB) + +PASS -- COMPILE 'atmw_intel' [16:21, 15:23] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:07, 02:31](1882 MB) + +PASS -- COMPILE 'atmaero_intel' [15:23, 14:46] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:20, 04:32](3122 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:26, 04:29](3003 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:20, 04:33](3008 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:14, 09:50] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:41, 22:29](4542 MB) SYNOPSIS: -Starting Date/Time: 20240806 14:30:46 -Ending Date/Time: 20240806 18:20:14 -Total Time: 03h:50m:18s +Starting Date/Time: 20240808 18:27:21 +Ending Date/Time: 20240808 20:33:18 +Total Time: 02h:07m:14s Compiles Completed: 41/41 -Tests Completed: 184/184 +Tests Completed: 181/184 +Failed Tests: +* TEST cpld_restart_bmark_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2278/tests/logs/log_derecho/run_cpld_restart_bmark_p8_intel.log +* TEST hafs_global_multiple_4nests_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2278/tests/logs/log_derecho/run_hafs_global_multiple_4nests_atm_intel.log +* TEST datm_cdeps_debug_cfsr_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2278/tests/logs/log_derecho/run_datm_cdeps_debug_cfsr_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +be00f82a5b69e02f347d8334d4b13292804e83f5 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) + d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_65928 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_intel' [25:26, 23:56] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_bmark_p8_intel' [26:43, 11:15](4518 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:58, 07:56](4664 MB) + +PASS -- COMPILE 'hafsw_intel' [21:24, 19:55] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:03, 06:30](449 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 07:28] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:15](738 MB) + +SYNOPSIS: +Starting Date/Time: 20240809 07:25:10 +Ending Date/Time: 20240809 08:43:35 +Total Time: 01h:18m:42s +Compiles Completed: 3/3 +Tests Completed: 4/4 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 0b77498111..f9064a2595 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -b40a0f095bb14723f1a8be990d19a22972f356d6 +8cb23af867d56961352ff5fab97656c3a4c6b936 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,340 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) - 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) + fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) + d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240806 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_214339 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [22:12, 21:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:04, 07:24](3207 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:15, 25:07] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:40, 14:00](1914 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:38, 14:59](1935 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:31, 07:46](1072 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:40, 14:58](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:12, 25:03] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:47, 13:49](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:15, 15:52] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:59, 25:08](1939 MB) - -PASS -- COMPILE 's2swa_intel' [22:12, 21:58] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:54, 08:27](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:56, 08:28](3221 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:58, 05:12](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:54, 08:31](3247 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:56, 05:14](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:36, 06:56](3460 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:43, 08:26](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:56, 07:26](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:05, 08:29](3223 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:11, 10:34](3453 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:43, 08:21](3604 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:36, 13:10](4209 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:04, 09:17](4360 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:56, 08:00](3211 MB) - -PASS -- COMPILE 's2sw_intel' [21:16, 20:08] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:40, 06:02](1929 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:50, 06:45](1996 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:11, 16:28] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:38, 09:58](3280 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:15, 15:53] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:11, 06:36](1954 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [20:11, 18:38] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:40, 05:32](1993 MB) - -PASS -- COMPILE 's2s_intel' [19:11, 19:04] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:14, 06:29](2870 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:27, 01:56](2877 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:18, 01:08](2288 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:17, 22:16] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:50, 08:41](3223 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:14, 24:56] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:44, 16:17](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:41, 08:00](1085 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:41, 17:58](1903 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:15, 16:58] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:30, 26:56](1959 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:16, 16:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:45, 03:54](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:47, 03:12](1565 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:27, 03:12](1565 MB) -PASS -- TEST 'control_latlon_intel' [05:45, 03:08](1567 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:17, 03:09](1563 MB) -PASS -- TEST 'control_c48_intel' [09:15, 06:32](1561 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:48, 05:51](696 MB) -PASS -- TEST 'control_c192_intel' [12:52, 10:11](1671 MB) -PASS -- TEST 'control_c384_intel' [21:09, 18:34](1927 MB) -PASS -- TEST 'control_c384gdas_intel' [18:37, 14:35](1151 MB) -PASS -- TEST 'control_stochy_intel' [02:48, 02:04](619 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:31, 01:03](425 MB) -PASS -- TEST 'control_lndp_intel' [02:51, 01:51](618 MB) -PASS -- TEST 'control_iovr4_intel' [03:54, 02:41](616 MB) -PASS -- TEST 'control_iovr5_intel' [03:54, 02:43](616 MB) -PASS -- TEST 'control_p8_intel' [07:38, 03:26](1849 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:50, 03:32](1848 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:42, 03:21](1852 MB) -PASS -- TEST 'control_restart_p8_intel' [04:18, 02:17](996 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:38, 03:26](1844 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:15, 01:47](1013 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:30, 03:21](1849 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:13, 02:51](1926 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:50, 05:46](1849 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:30, 04:15](1905 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:27, 03:44](1863 MB) -PASS -- TEST 'merra2_thompson_intel' [06:11, 04:09](1856 MB) -PASS -- TEST 'regional_control_intel' [06:11, 05:05](848 MB) -PASS -- TEST 'regional_restart_intel' [03:38, 02:33](847 MB) -PASS -- TEST 'regional_decomp_intel' [06:53, 04:52](851 MB) -PASS -- TEST 'regional_2threads_intel' [05:00, 02:55](989 MB) -PASS -- TEST 'regional_noquilt_intel' [06:24, 04:39](1175 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:23, 04:33](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:00, 04:39](832 MB) -PASS -- TEST 'regional_wofs_intel' [06:45, 06:07](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [17:16, 16:46] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:08, 07:04](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:15, 04:10](1152 MB) -PASS -- TEST 'rap_decomp_intel' [10:19, 07:13](1007 MB) -PASS -- TEST 'rap_2threads_intel' [08:41, 06:18](1087 MB) -PASS -- TEST 'rap_restart_intel' [06:53, 03:28](878 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:24, 06:57](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:07, 07:37](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:13, 04:58](877 MB) -PASS -- TEST 'hrrr_control_intel' [05:14, 03:55](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:04, 03:54](997 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:01, 03:14](1081 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:42, 01:59](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:34, 06:45](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:34, 08:38](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:37, 07:54](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [16:16, 15:46] -PASS -- TEST 'control_csawmg_intel' [07:42, 06:47](958 MB) -PASS -- TEST 'control_ras_intel' [05:20, 03:33](654 MB) - -PASS -- COMPILE 'wam_intel' [16:11, 15:58] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:19, 12:04](1649 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:35] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:30, 03:11](1846 MB) -PASS -- TEST 'regional_control_faster_intel' [05:44, 04:35](844 MB) - -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 'atm_debug_dyn32_intel' [, ] -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_stochy_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_lndp_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_csawmg_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_ras_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_diag_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_debug_p8_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'regional_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_control_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'hrrr_control_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'hrrr_gf_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'hrrr_c3_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_unified_drag_suite_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_diag_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_unified_ugwp_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_lndp_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_progcld_thompson_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_noah_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_sfcdiff_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rrfs_v1beta_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_clm_lake_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_flake_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'gnv1_c96_no_nest_debug_intel' [, ]( MB) - -PASS -- COMPILE 'wam_debug_intel' [12:12, 11:29] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:17, 13:32](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 13:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:18, 04:13](1010 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:15, 05:48](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:05, 03:32](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:13, 05:06](932 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:11, 02:53](922 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:07, 03:33](875 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:12, 04:24](774 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 01:41](757 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 15:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:05, 02:36](1086 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:21, 01:10](1062 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:27, 01:26](963 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:15, 14:47] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:21](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:14, 10:47] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 05:07](1051 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 05:46](1052 MB) -PASS -- TEST 'conus13km_debug_intel' [17:52, 14:11](1136 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:27, 15:08](807 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:14, 08:36](1115 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:15, 15:06](1200 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:15, 13:11] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:40, 05:22](1079 MB) - -PASS -- COMPILE 'hafsw_intel' [20:11, 19:57] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:37, 05:31](685 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:00, 04:41](1034 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:03, 07:57](725 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:41, 11:48](762 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:30, 12:52](781 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:32, 05:30](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 06:50](482 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:37, 03:06](368 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:20, 08:05](429 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:19, 04:01](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:37, 03:38](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:27, 04:59](557 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:49, 01:53](399 MB) -PASS -- TEST 'gnv1_nested_intel' [09:16, 06:00](1706 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:11, 14:43] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:26, 13:10](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:14, 18:59] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:40, 07:48](605 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:33, 07:51](777 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:12, 20:45] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:28, 06:08](776 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:12, 19:52] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:25, 06:19](720 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 06:25](705 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:19, 20:07](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:13, 14:50] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:28, 02:34](761 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:34, 01:35](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:27](638 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:34, 02:27](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:33, 02:36](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:35, 02:37](750 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:28](638 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:50, 06:12](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:51, 06:03](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:23, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:29, 04:40](2028 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:58, 04:42](2028 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [11:11, 10:26] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:35, 05:31](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [16:13, 15:09] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:27, 02:34](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:20, 04:43] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:11, 01:59](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:10, 01:38](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:50, 01:04](456 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:18, 17:19] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:38, 05:07](1910 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:12, 14:33] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:16](1897 MB) - -PASS -- COMPILE 'atml_intel' [17:16, 16:20] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:47, 07:20](1881 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:47, 07:20](1881 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 04:17](1031 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:16, 12:26] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:33, 06:42](1921 MB) - -PASS -- COMPILE 'atmw_intel' [16:14, 15:50] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:11, 02:24](1883 MB) - -PASS -- COMPILE 'atmaero_intel' [15:11, 14:54] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:32, 06:19](3117 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 06:44](3008 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:29, 06:48](3018 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:11, 11:10] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:39, 18:18](4492 MB) - -SYNOPSIS: -Starting Date/Time: 20240806 23:36:46 -Ending Date/Time: 20240807 01:14:37 -Total Time: 01h:38m:56s -Compiles Completed: 40/41 -Tests Completed: 159/185 -Failed Compiles: -* COMPILE atm_debug_dyn32_intel: FAILED: UNABLE TO FINISH COMPILE --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2183/ufs-weather-model/tests/logs/log_gaea/compile_atm_debug_dyn32_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF GAEA REGRESSION TESTING LOG==== -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -43fce6b201a8bffe7e346b1dfb5c724bfc053722 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) - 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -366,47 +36,286 @@ 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-20240730 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233535 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_110577 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 'atm_debug_dyn32_intel' [41:24, 41:03] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:37, 03:00](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:36, 03:13](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:44, 03:17](795 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:04, 02:52](794 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:19, 04:37](1098 MB) -PASS -- TEST 'control_ras_debug_intel' [05:04, 02:53](801 MB) -PASS -- TEST 'control_diag_debug_intel' [10:23, 03:16](1652 MB) -PASS -- TEST 'control_debug_p8_intel' [10:21, 03:27](1887 MB) -PASS -- TEST 'regional_debug_intel' [23:19, 17:06](889 MB) -PASS -- TEST 'rap_control_debug_intel' [10:04, 05:39](1178 MB) -PASS -- TEST 'hrrr_control_debug_intel' [11:04, 05:29](1173 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [12:09, 05:53](1177 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [12:09, 05:46](1177 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:05, 05:08](1179 MB) -PASS -- TEST 'rap_diag_debug_intel' [14:16, 05:20](1261 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:08, 05:31](1176 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [11:08, 05:46](1182 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:05, 05:10](1182 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:09, 05:43](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:05, 04:56](1176 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:05, 05:23](1180 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:09, 08:04](1174 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [11:05, 05:37](1170 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:09, 06:14](1181 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:09, 05:42](1179 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:38, 09:20](1179 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:13, 18:58] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:58, 08:02](3205 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:15, 22:46] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:37, 14:17](1913 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [34:13, 14:16](1935 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [26:36, 06:52](1070 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:27, 14:54](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 23:42] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:53, 14:19](1910 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:16, 13:04] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [40:21, 25:16](1917 MB) + +PASS -- COMPILE 's2swa_intel' [19:13, 18:42] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:53, 08:33](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:51, 08:39](3220 MB) +PASS -- TEST 'cpld_restart_p8_intel' [31:08, 05:21](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:41, 08:32](3247 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [30:07, 05:06](3172 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:46, 06:59](3464 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:35, 08:32](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:33, 07:54](3167 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:59, 08:38](3224 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [22:06, 11:38](3449 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [29:26, 07:27](3607 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [46:33, 13:06](4208 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:29, 09:15](4359 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [16:40, 08:18](3211 MB) + +PASS -- COMPILE 's2sw_intel' [19:13, 18:14] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:41, 05:33](1929 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:41, 05:59](1988 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:37] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [23:35, 10:08](3281 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:16, 12:18] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [21:13, 06:14](1954 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:14, 15:42] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [17:49, 05:42](1995 MB) + +PASS -- COMPILE 's2s_intel' [15:14, 15:02] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [19:17, 06:32](2871 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [14:30, 02:07](2876 MB) +PASS -- TEST 'cpld_restart_c48_intel' [13:13, 01:13](2288 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:15, 19:40] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [28:55, 07:57](3223 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:17, 22:35] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [40:48, 15:19](1927 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:18, 07:47](1090 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:40, 17:37](1904 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:10, 14:23] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:22, 27:07](1956 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:12, 14:26] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [21:47, 04:04](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [25:17, 03:26](1560 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:15, 03:10](1565 MB) +PASS -- TEST 'control_latlon_intel' [25:05, 03:07](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:17, 03:05](1563 MB) +PASS -- TEST 'control_c48_intel' [27:23, 06:37](1568 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [16:56, 05:42](697 MB) +PASS -- TEST 'control_c192_intel' [31:07, 09:49](1670 MB) +PASS -- TEST 'control_c384_intel' [40:31, 18:39](1928 MB) +PASS -- TEST 'control_c384gdas_intel' [38:25, 14:39](1153 MB) +PASS -- TEST 'control_stochy_intel' [23:35, 02:02](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:40, 01:02](425 MB) +PASS -- TEST 'control_lndp_intel' [23:41, 01:49](619 MB) +PASS -- TEST 'control_iovr4_intel' [25:39, 02:48](616 MB) +PASS -- TEST 'control_iovr5_intel' [25:37, 02:40](616 MB) +PASS -- TEST 'control_p8_intel' [28:42, 03:19](1848 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [29:02, 03:36](1850 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [27:46, 03:22](1852 MB) +PASS -- TEST 'control_restart_p8_intel' [06:36, 02:37](997 MB) +PASS -- TEST 'control_noqr_p8_intel' [27:05, 03:17](1843 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:37, 02:22](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [18:30, 03:25](1850 MB) +PASS -- TEST 'control_2threads_p8_intel' [17:30, 02:49](1928 MB) +PASS -- TEST 'control_p8_lndp_intel' [17:58, 05:16](1849 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:37, 04:11](1905 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:46, 03:21](1863 MB) +PASS -- TEST 'merra2_thompson_intel' [11:35, 03:38](1856 MB) +PASS -- TEST 'regional_control_intel' [09:42, 04:35](848 MB) +PASS -- TEST 'regional_restart_intel' [07:01, 02:56](849 MB) +PASS -- TEST 'regional_decomp_intel' [09:43, 04:45](851 MB) +PASS -- TEST 'regional_2threads_intel' [08:45, 02:59](987 MB) +PASS -- TEST 'regional_noquilt_intel' [07:45, 04:27](1179 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 04:38](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:20, 04:42](849 MB) +PASS -- TEST 'regional_wofs_intel' [08:38, 06:26](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [15:14, 14:32] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:46, 07:14](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:21, 04:13](1152 MB) +PASS -- TEST 'rap_decomp_intel' [09:25, 07:34](1006 MB) +PASS -- TEST 'rap_2threads_intel' [09:33, 06:42](1087 MB) +PASS -- TEST 'rap_restart_intel' [05:06, 03:48](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:52, 07:26](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:50, 07:33](1004 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:43, 05:25](877 MB) +PASS -- TEST 'hrrr_control_intel' [06:22, 04:20](1001 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:22, 04:19](1001 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:20, 03:10](1075 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:48, 02:16](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:41, 06:50](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:54, 09:10](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:47, 08:46](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [16:12, 15:37] +PASS -- TEST 'control_csawmg_intel' [10:56, 07:03](957 MB) +PASS -- TEST 'control_ras_intel' [06:37, 03:32](653 MB) + +PASS -- COMPILE 'wam_intel' [14:12, 13:52] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:21, 11:58](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:12, 14:07] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:59, 03:42](1847 MB) +PASS -- TEST 'regional_control_faster_intel' [06:54, 04:30](844 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:15, 14:33] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:26, 03:03](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:06, 03:13](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:42, 03:27](793 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:34, 03:07](794 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:45, 04:30](1099 MB) +PASS -- TEST 'control_ras_debug_intel' [04:43, 03:04](801 MB) +PASS -- TEST 'control_diag_debug_intel' [03:56, 03:02](1652 MB) +PASS -- TEST 'control_debug_p8_intel' [04:43, 03:17](1888 MB) +PASS -- TEST 'regional_debug_intel' [17:52, 16:21](888 MB) +PASS -- TEST 'rap_control_debug_intel' [07:08, 05:22](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:53, 05:16](1173 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 05:09](1177 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:35, 05:08](1177 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:45, 05:11](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:54, 05:18](1261 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:44, 05:14](1176 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:52, 05:15](1182 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:53, 05:08](1182 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:00, 05:05](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:01, 04:58](1176 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:49, 05:04](1180 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:55, 07:56](1175 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:03, 04:55](1170 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:41, 05:52](1178 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:41, 05:05](1179 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:53, 09:21](1179 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:12, 10:18] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:16, 14:15](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:12, 14:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:21, 04:40](1004 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:02, 06:54](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:21, 04:14](875 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:11, 06:18](933 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:42, 03:47](924 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:20, 04:01](875 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:19, 05:13](773 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:42, 02:07](757 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 13:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:06, 02:13](1086 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:42, 01:16](1062 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:08, 02:40](964 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 14:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:25, 04:34](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 10:37] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:45, 04:56](1051 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:48, 05:08](1052 MB) +PASS -- TEST 'conus13km_debug_intel' [17:11, 14:12](1136 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:35](807 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:27, 08:25](1113 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:37, 14:07](1200 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:12, 10:30] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:48, 05:07](1079 MB) + +PASS -- COMPILE 'hafsw_intel' [18:11, 17:42] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:00, 05:30](683 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:42, 04:37](1033 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:38, 07:43](728 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:24, 11:54](758 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:02, 13:17](784 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:09, 05:28](462 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:57, 06:48](484 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:00, 03:04](369 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:48, 08:04](430 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:28, 03:56](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:48, 03:36](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:32, 05:00](557 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:32, 01:47](399 MB) +PASS -- TEST 'gnv1_nested_intel' [12:01, 06:51](1706 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:11, 13:08] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:11, 14:04](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:14, 17:25] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:04, 08:34](598 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:15, 08:01](777 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:13, 18:10] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:48, 06:10](778 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:19, 17:20] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:03, 06:19](719 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:55, 06:24](707 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:43, 20:04](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:13, 13:06] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:31, 02:39](761 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:42](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:28, 02:27](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:35, 02:28](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:26, 02:31](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:26, 02:34](749 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:27, 02:36](749 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:38, 02:25](640 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:09, 06:09](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:33, 06:00](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:30, 02:34](761 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:48, 04:39](2029 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:34, 04:39](2029 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 08:36] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:03, 05:36](733 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 13:20] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:29, 02:33](752 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 03:25] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:24, 02:30](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:15, 01:34](455 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:14, 02:11](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:15, 15:37] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:02, 04:31](1917 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:14, 14:55] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:09, 04:17](1903 MB) + +PASS -- COMPILE 'atml_intel' [16:12, 15:46] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:58, 08:20](1881 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:54, 08:31](1882 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:56, 05:16](1023 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:17, 11:39] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:48, 06:37](1922 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 14:04] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:20, 02:23](1884 MB) + +PASS -- COMPILE 'atmaero_intel' [16:15, 15:29] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:25, 07:16](3118 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 07:15](3009 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:19, 07:12](3018 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:15, 11:37] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:59, 18:16](4485 MB) SYNOPSIS: -Starting Date/Time: 20240807 15:32:30 -Ending Date/Time: 20240807 16:39:53 -Total Time: 01h:07m:48s -Compiles Completed: 1/1 -Tests Completed: 26/26 +Starting Date/Time: 20240808 20:31:36 +Ending Date/Time: 20240808 22:33:34 +Total Time: 02h:03m:10s +Compiles Completed: 41/41 +Tests Completed: 185/185 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 29aadba024..c585b44b12 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -b40a0f095bb14723f1a8be990d19a22972f356d6 +47a543052e09892e0825465e5699e061faf068cb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) @@ -24,375 +24,374 @@ 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240806 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_763542 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2101635 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:12, 12:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:21, 05:41](3286 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:05, 17:29](1957 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:22, 18:11](2132 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:17, 08:23](1217 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:04, 19:30](1856 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:46, 17:15](1936 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:12, 05:44] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:02, 23:32](1888 MB) - -PASS -- COMPILE 's2swa_intel' [13:12, 12:22] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:21, 06:00](3315 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:26, 06:02](3316 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:28, 03:36](3219 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:17, 05:58](3344 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:31, 03:35](3246 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:11, 05:38](3606 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:17, 06:01](3306 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:15, 04:52](3192 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:26, 05:55](3320 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:13, 10:28](3503 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:06, 06:23](3600 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:49, 09:33](4265 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:54, 06:07](4356 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:19, 05:31](3294 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 11:47] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:11, 04:55](1957 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:15, 04:26](2035 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:12, 05:43] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:05, 08:37](3319 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:39] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:57, 05:51](1956 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:12, 10:53] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:04, 04:24](2033 MB) - -PASS -- COMPILE 's2s_intel' [12:12, 11:11] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:42, 09:08](3031 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:43](3018 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:38](2450 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:12, 16:35] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:21, 05:32](3319 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:19] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:13, 17:34](1988 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:24](1246 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:22, 20:01](1886 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:28] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:11, 25:51](1921 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:12, 10:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:26, 03:21](679 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:44, 02:57](1583 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:49, 02:59](1591 MB) -PASS -- TEST 'control_latlon_intel' [06:40, 02:54](1578 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:48, 02:57](1586 MB) -PASS -- TEST 'control_c48_intel' [08:45, 07:38](1693 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:29, 06:32](831 MB) -PASS -- TEST 'control_c192_intel' [14:04, 10:46](1737 MB) -PASS -- TEST 'control_c384_intel' [13:05, 10:59](1943 MB) -PASS -- TEST 'control_c384gdas_intel' [11:22, 08:07](1355 MB) -PASS -- TEST 'control_stochy_intel' [02:24, 01:39](638 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:06](477 MB) -PASS -- TEST 'control_lndp_intel' [02:27, 01:37](640 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:28](631 MB) -PASS -- TEST 'control_iovr5_intel' [03:26, 02:30](629 MB) -PASS -- TEST 'control_p8_intel' [04:57, 03:08](1880 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:01, 03:06](1864 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:57, 03:00](1872 MB) -PASS -- TEST 'control_restart_p8_intel' [02:52, 01:48](1106 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:56, 03:06](1865 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:48](1145 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:51, 03:10](1862 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:47, 02:54](1938 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:42, 05:28](1868 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:55, 04:07](1928 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:58, 03:09](1874 MB) -PASS -- TEST 'merra2_thompson_intel' [04:51, 03:40](1874 MB) -PASS -- TEST 'regional_control_intel' [06:44, 05:23](1073 MB) -PASS -- TEST 'regional_restart_intel' [03:43, 02:53](1067 MB) -PASS -- TEST 'regional_decomp_intel' [06:39, 05:41](1067 MB) -PASS -- TEST 'regional_2threads_intel' [04:39, 03:27](1056 MB) -PASS -- TEST 'regional_noquilt_intel' [06:42, 05:18](1370 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:25](1074 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 05:25](1079 MB) -PASS -- TEST 'regional_wofs_intel' [07:42, 06:59](1891 MB) - -PASS -- COMPILE 'rrfs_intel' [10:12, 10:00] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:42, 07:49](1086 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:14, 04:08](1237 MB) -PASS -- TEST 'rap_decomp_intel' [11:46, 08:13](1019 MB) -PASS -- TEST 'rap_2threads_intel' [11:46, 07:22](1148 MB) -PASS -- TEST 'rap_restart_intel' [05:48, 04:09](1078 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:45, 07:48](1078 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:45, 08:15](1018 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:48, 05:56](1112 MB) -PASS -- TEST 'hrrr_control_intel' [08:47, 04:01](1024 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:47, 04:09](1009 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:47, 03:42](1081 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:35, 02:14](984 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:57, 07:44](1070 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 09:23](1978 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:30, 09:06](2056 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:54] -PASS -- TEST 'control_csawmg_intel' [07:42, 06:11](995 MB) -PASS -- TEST 'control_ras_intel' [04:24, 03:19](729 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:11, 04:23] -PASS -- TEST 'control_csawmg_gnu' [09:45, 08:31](729 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 09:55] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:56, 11:12](1653 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:12, 10:13] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:58, 02:49](1876 MB) -PASS -- TEST 'regional_control_faster_intel' [06:39, 04:59](1066 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:43] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:38](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:40](1590 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:24, 03:09](795 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:46](795 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:20](1105 MB) -PASS -- TEST 'control_ras_debug_intel' [03:25, 02:51](798 MB) -PASS -- TEST 'control_diag_debug_intel' [03:53, 02:48](1645 MB) -PASS -- TEST 'control_debug_p8_intel' [04:46, 03:03](1885 MB) -PASS -- TEST 'regional_debug_intel' [18:43, 17:46](1058 MB) -PASS -- TEST 'rap_control_debug_intel' [05:27, 04:55](1177 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:27, 05:00](1169 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:54](1177 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:26, 04:55](1181 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 05:01](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:19](1262 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 05:06](1174 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:01](1173 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:24, 05:03](1180 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:56](1183 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:53](1178 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 04:59](1183 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:12](1174 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 05:00](1177 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:28, 05:58](1175 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:25, 04:59](1176 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:44, 08:30](1186 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:14] -PASS -- TEST 'control_csawmg_debug_gnu' [03:41, 02:18](696 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:12, 04:45] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:49, 13:47](1664 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 03:53](1111 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 06:27](1037 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:37, 03:26](969 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:32, 06:12](1071 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 03:10](938 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:38](913 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:55, 04:52](1030 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:52](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 09:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:01, 02:07](1177 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:51, 00:53](1093 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:49, 01:14](1086 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:12, 09:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:18](962 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:29] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 04:56](1057 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:29, 04:53](1055 MB) -PASS -- TEST 'conus13km_debug_intel' [16:52, 15:11](1175 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:47, 15:12](896 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:41, 08:29](1106 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 15:15](1242 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:42] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:02](1097 MB) - -PASS -- COMPILE 'hafsw_intel' [12:12, 11:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:16, 05:10](703 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 06:19](1070 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 07:01](792 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:13, 13:41](828 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:28, 15:17](860 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:37](474 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:27, 06:49](487 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:46, 02:41](356 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:08, 07:23](466 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:47](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 03:31](503 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:55, 04:11](551 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:10](386 MB) -PASS -- TEST 'gnv1_nested_intel' [06:45, 04:16](1723 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 05:00] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:56, 12:54](533 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:03] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:01, 08:44](640 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:08, 08:45](699 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:11, 11:03] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:07, 06:39](701 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:55] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:39](797 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:14, 06:41](772 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:55, 16:03](1212 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:27] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:43](1167 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:42](1095 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:19, 02:33](1041 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:24, 02:40](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:39](1025 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:20, 02:46](1140 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:47](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:36](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:29, 06:52](1067 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:22, 06:11](1033 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 03:08](1150 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:23, 04:02](2506 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:33, 03:59](2441 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:22] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:23](1078 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:26] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:41](1135 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:38] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:47](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:49](315 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:27, 00:33](314 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:12, 10:54] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:06, 03:46](1964 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 10:41] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:03, 03:37](1921 MB) - -PASS -- COMPILE 'atml_intel' [11:11, 10:56] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:03, 04:19](1838 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:02, 04:16](1840 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:25](1066 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:12, 05:47] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:58, 05:54](1841 MB) - -PASS -- COMPILE 'atmw_intel' [11:12, 10:52] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:52](1897 MB) - -PASS -- COMPILE 'atmaero_intel' [11:12, 10:25] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:01, 04:10](3176 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:56, 04:57](3071 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 05:00](3089 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 05:02] ( 884 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [05:11, 04:35] -PASS -- TEST 'control_c48_gnu' [14:39, 11:11](1493 MB) -PASS -- TEST 'control_stochy_gnu' [04:24, 03:27](474 MB) -PASS -- TEST 'control_ras_gnu' [08:23, 04:50](490 MB) -PASS -- TEST 'control_p8_gnu' [08:58, 04:47](1437 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [08:54, 04:40](1425 MB) -PASS -- TEST 'control_flake_gnu' [14:25, 10:31](519 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:34] -PASS -- TEST 'rap_control_gnu' [14:33, 10:49](792 MB) -PASS -- TEST 'rap_decomp_gnu' [13:32, 11:09](796 MB) -PASS -- TEST 'rap_2threads_gnu' [12:39, 09:55](898 MB) -PASS -- TEST 'rap_restart_gnu' [06:43, 05:30](557 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 10:51](792 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:07](828 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:50, 08:13](563 MB) -PASS -- TEST 'hrrr_control_gnu' [07:40, 05:35](791 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:33, 05:32](784 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:36, 05:05](886 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:34, 05:34](787 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:33, 02:54](547 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:31, 02:50](635 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:42, 10:33](792 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 06:23] -PASS -- TEST 'control_diag_debug_gnu' [04:52, 01:38](1245 MB) -PASS -- TEST 'regional_debug_gnu' [13:41, 11:11](724 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:26, 02:41](800 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [05:26, 02:34](795 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:37](810 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:23, 02:38](804 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:38, 02:53](885 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:10](794 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:37](794 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:23, 02:38](795 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:20, 01:35](433 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:47](429 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:49](1402 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:23, 02:39](796 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:23, 02:53](799 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:23](807 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:49] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:14] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:28](692 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:35, 04:59](688 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:34, 08:35](733 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:29, 04:28](725 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:29, 05:03](688 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:41, 07:04](536 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 02:33](520 MB) -PASS -- TEST 'conus13km_control_gnu' [03:57, 03:09](854 MB) -PASS -- TEST 'conus13km_2threads_gnu' [10:47, 05:45](856 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:48](536 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:12, 09:32] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:57](708 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:12, 06:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:25, 02:36](685 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:24, 02:32](687 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:47, 07:11](853 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:50, 07:06](552 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:44, 07:29](861 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:44, 07:00](923 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 06:31] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:24, 02:41](706 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:30] - -PASS -- COMPILE 's2s_gnu' [16:11, 15:48] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:15, 07:26](1518 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:11] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:53] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:14, 20:57](1430 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:59] - -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:30] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 03:02](680 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:13, 13:08] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:24, 05:44](3306 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:41] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [41:08, 17:26](1979 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:10, 18:00](2148 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:06, 08:20](1246 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:05, 19:28](1876 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 16:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [40:45, 16:56](1966 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:25] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:10, 23:16](1931 MB) + +PASS -- COMPILE 's2swa_intel' [14:13, 13:09] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [23:12, 05:51](3338 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:30, 05:58](3333 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:16, 03:34](3255 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [24:09, 05:54](3378 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:15, 03:30](3282 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [23:13, 05:29](3635 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [24:08, 05:50](3335 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [25:09, 04:47](3222 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [25:19, 05:51](3356 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [37:17, 10:15](3537 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:40, 06:23](3631 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [41:40, 09:31](4298 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:41, 06:03](4378 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [23:10, 05:26](3304 MB) + +PASS -- COMPILE 's2sw_intel' [13:14, 12:13] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:53, 04:53](2001 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:00, 04:22](2061 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:24] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [20:16, 08:38](3391 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:18] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:03, 05:52](1965 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:13, 12:01] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:01, 04:19](2058 MB) + +PASS -- COMPILE 's2s_intel' [13:13, 11:30] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:48, 09:05](3051 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [08:48, 02:41](3042 MB) +PASS -- TEST 'cpld_restart_c48_intel' [14:39, 01:33](2491 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:35] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [22:08, 05:31](3333 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:12] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [34:02, 17:30](1999 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:07, 08:21](1267 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:00, 20:00](1923 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:40] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [52:12, 26:05](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:13, 11:07] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [16:26, 03:21](699 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [14:39, 02:54](1601 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:42, 03:01](1605 MB) +PASS -- TEST 'control_latlon_intel' [08:33, 02:55](1593 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:49, 02:58](1600 MB) +PASS -- TEST 'control_c48_intel' [12:45, 07:34](1722 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:29, 06:28](846 MB) +PASS -- TEST 'control_c192_intel' [13:57, 10:48](1740 MB) +PASS -- TEST 'control_c384_intel' [14:13, 10:39](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [11:50, 08:01](1378 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:40](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:22, 01:00](499 MB) +PASS -- TEST 'control_lndp_intel' [02:23, 01:36](662 MB) +PASS -- TEST 'control_iovr4_intel' [03:23, 02:30](656 MB) +PASS -- TEST 'control_iovr5_intel' [03:22, 02:30](657 MB) +PASS -- TEST 'control_p8_intel' [04:54, 03:07](1885 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:00, 03:11](1877 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:51, 03:02](1887 MB) +PASS -- TEST 'control_restart_p8_intel' [03:48, 01:46](1124 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:51, 03:02](1881 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:49, 01:45](1167 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:47, 03:13](1873 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:47, 02:56](1975 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:25](1886 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:54, 04:06](1949 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:52, 03:10](1891 MB) +PASS -- TEST 'merra2_thompson_intel' [04:46, 03:29](1888 MB) +PASS -- TEST 'regional_control_intel' [06:32, 05:33](1087 MB) +PASS -- TEST 'regional_restart_intel' [03:31, 02:50](1090 MB) +PASS -- TEST 'regional_decomp_intel' [06:33, 05:48](1081 MB) +PASS -- TEST 'regional_2threads_intel' [04:37, 03:30](1090 MB) +PASS -- TEST 'regional_noquilt_intel' [06:37, 05:17](1392 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:39, 05:19](1095 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:32, 05:22](1099 MB) +PASS -- TEST 'regional_wofs_intel' [07:34, 06:52](1906 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 10:02] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [23:39, 07:49](1112 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:06, 04:12](1258 MB) +PASS -- TEST 'rap_decomp_intel' [23:39, 08:11](1033 MB) +PASS -- TEST 'rap_2threads_intel' [22:45, 07:21](1170 MB) +PASS -- TEST 'rap_restart_intel' [04:46, 04:07](1098 MB) +PASS -- TEST 'rap_sfcdiff_intel' [22:43, 07:47](1104 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:40, 08:11](1040 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:44, 05:55](1136 MB) +PASS -- TEST 'hrrr_control_intel' [19:41, 04:01](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [17:52, 04:10](1026 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:43, 03:47](1104 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:15](994 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:52, 07:42](1095 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:21](1991 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:10](2073 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 09:54] +PASS -- TEST 'control_csawmg_intel' [07:37, 06:09](1019 MB) +PASS -- TEST 'control_ras_intel' [04:21, 03:17](748 MB) + +PASS -- COMPILE 'csawmg_gnu' [18:13, 04:20] +PASS -- TEST 'control_csawmg_gnu' [09:37, 08:30](742 MB) + +PASS -- COMPILE 'wam_intel' [20:14, 09:50] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:53, 11:13](1675 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [24:15, 10:11] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:54, 02:48](1889 MB) +PASS -- TEST 'regional_control_faster_intel' [05:36, 04:50](1084 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [23:12, 07:28] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:42, 02:40](1629 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:42, 02:40](1631 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:22, 03:05](833 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:52](830 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:33, 04:27](1142 MB) +PASS -- TEST 'control_ras_debug_intel' [03:23, 02:51](831 MB) +PASS -- TEST 'control_diag_debug_intel' [03:44, 02:46](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [03:39, 03:05](1915 MB) +PASS -- TEST 'regional_debug_intel' [18:35, 17:57](1091 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 05:09](1217 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:24, 05:01](1214 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:22, 04:59](1221 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 05:04](1216 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 05:09](1218 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:36, 05:17](1300 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:13](1216 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 05:06](1222 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:22, 05:01](1223 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 05:06](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:26, 05:01](1213 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 04:59](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 08:14](1213 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 05:00](1214 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 06:10](1215 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:25, 05:04](1219 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:39, 08:53](1222 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [20:12, 04:29] +PASS -- TEST 'control_csawmg_debug_gnu' [03:32, 02:19](724 MB) + +PASS -- COMPILE 'wam_debug_intel' [17:12, 04:46] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:49, 13:43](1697 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:12, 09:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:02, 03:53](1121 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:31, 06:26](1068 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:36, 03:23](988 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 06:08](1088 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 03:08](963 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:29, 03:36](935 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:46, 04:54](1037 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:51](931 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:11, 09:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:52, 02:08](1195 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:45, 00:53](1111 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:44, 01:15](1101 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [24:12, 09:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:37, 04:10](985 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:13, 04:42] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 05:03](1096 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:52](1105 MB) +PASS -- TEST 'conus13km_debug_intel' [16:51, 15:11](1240 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 15:15](944 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:26](1168 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 15:08](1315 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:11, 04:31] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 05:01](1141 MB) + +PASS -- COMPILE 'hafsw_intel' [19:12, 11:31] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:14, 04:55](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:27, 05:54](1093 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:52](808 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:15, 13:36](856 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:30, 15:08](869 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 05:27](487 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:19, 06:35](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:45, 02:41](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:03, 07:08](483 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:47, 03:40](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:51, 03:28](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:54, 04:04](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:30, 01:14](404 MB) +PASS -- TEST 'gnv1_nested_intel' [11:34, 04:04](1726 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:12, 05:09] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:51, 12:42](589 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:12, 11:07] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:57, 08:36](627 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:04, 08:35](734 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 11:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:59, 06:22](736 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:12, 10:40] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [17:19, 06:27](814 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:22, 06:27](806 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:57, 16:02](1218 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:57] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:45](1175 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:20, 01:37](1126 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:38](1034 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 02:40](1023 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:19, 02:36](1028 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:19, 02:39](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:19, 02:44](1162 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:22, 02:32](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:23, 06:09](1073 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:13, 06:02](1054 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:16, 02:43](1163 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:18, 03:49](2473 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 03:53](2464 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:40] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:20](1089 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:15] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:38](1146 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:32] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:47](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:49](330 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:32](329 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:12, 10:35] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:58, 03:56](1975 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 10:18] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:58, 03:33](1956 MB) + +PASS -- COMPILE 'atml_intel' [11:12, 10:44] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:58, 04:16](1871 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:00, 04:14](1862 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:45, 02:23](1100 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:12, 05:51] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:54, 05:46](1902 MB) + +PASS -- COMPILE 'atmw_intel' [11:12, 10:53] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:47, 01:50](1923 MB) + +PASS -- COMPILE 'atmaero_intel' [11:12, 10:12] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:58, 04:11](3208 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:52, 04:54](3104 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:42, 04:54](3114 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 04:39] ( 884 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [05:11, 04:39] +PASS -- TEST 'control_c48_gnu' [12:41, 11:17](1513 MB) +PASS -- TEST 'control_stochy_gnu' [04:20, 03:27](472 MB) +PASS -- TEST 'control_ras_gnu' [05:21, 04:47](500 MB) +PASS -- TEST 'control_p8_gnu' [05:54, 04:48](1455 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:48, 04:38](1455 MB) +PASS -- TEST 'control_flake_gnu' [11:24, 10:15](539 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:12, 04:34] +PASS -- TEST 'rap_control_gnu' [11:37, 10:47](844 MB) +PASS -- TEST 'rap_decomp_gnu' [11:35, 10:58](844 MB) +PASS -- TEST 'rap_2threads_gnu' [10:42, 09:56](931 MB) +PASS -- TEST 'rap_restart_gnu' [06:44, 05:33](575 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:41, 10:52](810 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:38, 11:06](807 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:43, 08:12](583 MB) +PASS -- TEST 'hrrr_control_gnu' [06:38, 05:37](814 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:33, 05:39](798 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:29, 05:01](908 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:31, 05:37](844 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:28, 02:54](563 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:26, 02:53](655 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:44, 10:35](809 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:12, 06:23] +PASS -- TEST 'control_diag_debug_gnu' [02:48, 01:40](1275 MB) +PASS -- TEST 'regional_debug_gnu' [12:40, 11:53](758 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:24, 02:36](827 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:23, 02:36](824 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:21, 02:33](831 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:39](829 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:36, 02:51](909 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 04:05](828 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:21, 02:37](826 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 03:03](818 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:35](457 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:45](450 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:37, 01:53](1433 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:21, 02:38](828 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:20, 02:51](832 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:40, 04:19](833 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:34] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:08] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:31, 09:28](711 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 04:54](706 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 08:29](758 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:30, 04:30](752 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:28, 05:04](703 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:33, 07:01](554 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:26, 02:34](539 MB) +PASS -- TEST 'conus13km_control_gnu' [03:57, 03:09](874 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:49, 05:58](879 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:48, 01:56](567 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 09:43] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:36, 05:44](731 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:30] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:33](717 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:22, 02:30](714 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:47, 06:53](888 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:41, 06:59](583 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:39, 07:30](889 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:40, 07:07](958 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 06:28] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:36](747 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 16:29] + +PASS -- COMPILE 's2s_gnu' [16:13, 15:53] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:03, 07:17](1529 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:09] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:14, 15:58] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [20:54, 19:58](1462 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:55] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 15:37] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:58](698 MB) SYNOPSIS: -Starting Date/Time: 20240807 03:42:14 -Ending Date/Time: 20240807 05:17:49 -Total Time: 01h:36m:42s +Starting Date/Time: 20240808 21:45:57 +Ending Date/Time: 20240808 23:40:22 +Total Time: 01h:54m:44s Compiles Completed: 57/57 Tests Completed: 243/243 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index f3c8e7df2c..48ebe99b39 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: -316fa2afafdaabcdf9c024689e0f5f117395bce5 +8cb23af867d56961352ff5fab97656c3a4c6b936 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) - 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) + fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) + d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,374 +36,375 @@ 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-20240730 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2147705 +COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3225805 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [12:51, 12:51] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:27, 07:45](2117 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [41:47, 41:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [13:51, 13:16](2006 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:44, 13:55](2282 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:22, 06:29](1316 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:42, 14:56](1920 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:17, 16:17] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:35, 13:07](1984 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:40, 04:40] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [21:51, 21:02](1975 MB) - -PASS -- COMPILE 's2swa_intel' [10:52, 10:52] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:34, 07:50](2175 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:34, 07:46](2182 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:59, 04:22](1980 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:40, 07:53](2197 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:13, 04:30](1743 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:47, 09:08](2547 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:12, 07:34](2174 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:03, 06:34](2089 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:34, 07:50](2179 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:32, 15:22](2993 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:30, 05:59](2918 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:22, 10:05](3834 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:25, 05:59](3642 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:20, 05:51](2159 MB) - -PASS -- COMPILE 's2sw_intel' [10:23, 10:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:01, 07:26](2018 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:50, 04:11](2087 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:30, 05:30] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [07:55, 07:16](2221 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:19, 05:19] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:22, 04:50](2043 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:42, 12:42] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:41, 04:03](2080 MB) - -PASS -- COMPILE 's2s_intel' [09:43, 09:43] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:27, 07:01](3055 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:23, 01:57](3031 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:40, 01:07](2490 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:54, 12:54] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:11, 07:26](2182 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:27, 15:27] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:17, 13:49](2039 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:14, 06:48](1381 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:54, 15:18](1959 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [03:59, 03:59] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:06, 22:36](2005 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:10, 08:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:07, 03:58](714 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:44, 03:24](1607 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:46, 03:24](1610 MB) -PASS -- TEST 'control_latlon_intel' [03:32, 03:21](1611 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:49, 03:29](1606 MB) -PASS -- TEST 'control_c48_intel' [07:35, 07:09](1713 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:17, 06:05](837 MB) -PASS -- TEST 'control_c192_intel' [13:52, 13:25](1744 MB) -PASS -- TEST 'control_c384_intel' [14:02, 13:07](2007 MB) -PASS -- TEST 'control_c384gdas_intel' [11:39, 10:17](1492 MB) -PASS -- TEST 'control_stochy_intel' [02:05, 01:56](663 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:25, 01:10](552 MB) -PASS -- TEST 'control_lndp_intel' [01:49, 01:41](663 MB) -PASS -- TEST 'control_iovr4_intel' [03:06, 02:55](673 MB) -PASS -- TEST 'control_iovr5_intel' [02:57, 02:50](665 MB) -PASS -- TEST 'control_p8_intel' [04:12, 03:40](1904 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:20, 03:42](1898 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:14, 03:32](1902 MB) -PASS -- TEST 'control_restart_p8_intel' [02:29, 02:05](1162 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:13, 03:39](1899 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:19, 01:58](1211 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:41, 04:04](1880 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:41, 03:08](1978 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:36, 06:22](1898 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:25, 04:44](1965 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:46, 03:11](1924 MB) -PASS -- TEST 'merra2_thompson_intel' [04:40, 04:02](1902 MB) -PASS -- TEST 'regional_control_intel' [06:42, 06:29](1198 MB) -PASS -- TEST 'regional_restart_intel' [03:49, 03:35](1156 MB) -PASS -- TEST 'regional_decomp_intel' [06:50, 06:36](1175 MB) -PASS -- TEST 'regional_2threads_intel' [04:26, 04:13](1160 MB) -PASS -- TEST 'regional_noquilt_intel' [06:54, 06:41](1518 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 06:38](1190 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:45, 06:30](1189 MB) -PASS -- TEST 'regional_wofs_intel' [08:29, 08:16](2078 MB) - -PASS -- COMPILE 'rrfs_intel' [08:33, 08:33] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:47, 08:12](1239 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:57, 04:26](1347 MB) -PASS -- TEST 'rap_decomp_intel' [09:33, 09:01](1158 MB) -PASS -- TEST 'rap_2threads_intel' [08:34, 07:56](1373 MB) -PASS -- TEST 'rap_restart_intel' [04:56, 04:22](1166 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:43, 08:11](1239 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:31, 08:59](1167 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:55, 06:17](1236 MB) -PASS -- TEST 'hrrr_control_intel' [05:04, 04:26](1104 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:10, 04:35](1055 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:25, 03:52](1112 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:35, 02:28](1047 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:38, 09:01](1226 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:04, 08:55](2009 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:52, 08:42](2196 MB) - -PASS -- COMPILE 'csawmg_intel' [07:37, 07:37] -PASS -- TEST 'control_csawmg_intel' [05:47, 05:33](1045 MB) -PASS -- TEST 'control_ras_intel' [03:04, 02:57](827 MB) - -PASS -- COMPILE 'csawmg_gnu' [03:53, 03:53] -PASS -- TEST 'control_csawmg_gnu' [07:34, 07:19](1073 MB) - -PASS -- COMPILE 'wam_intel' [12:15, 12:15] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:15, 09:51](1669 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:54, 07:54] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [02:58, 02:24](1891 MB) -PASS -- TEST 'regional_control_faster_intel' [04:35, 04:18](1198 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:34, 05:34] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:47, 02:25](1635 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:49, 02:30](1653 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:00, 02:53](849 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:28, 02:22](848 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:07, 03:46](1150 MB) -PASS -- TEST 'control_ras_debug_intel' [02:39, 02:28](847 MB) -PASS -- TEST 'control_diag_debug_intel' [02:42, 02:26](1696 MB) -PASS -- TEST 'control_debug_p8_intel' [03:15, 03:00](1942 MB) -PASS -- TEST 'regional_debug_intel' [16:05, 15:46](1150 MB) -PASS -- TEST 'rap_control_debug_intel' [04:35, 04:23](1227 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:32, 04:22](1230 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:28, 04:19](1237 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:46, 04:38](1226 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:52, 04:43](1247 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:58, 04:37](1316 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:41, 04:29](1240 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:57, 04:42](1233 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:43, 04:36](1239 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:34, 04:27](1236 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:16](1233 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:31, 04:21](1247 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:13, 07:06](1235 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:29, 04:22](1225 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:30, 05:20](1234 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:39, 04:29](1235 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:23, 07:45](1231 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:02, 04:02] -PASS -- TEST 'control_csawmg_debug_gnu' [02:53, 02:33](1050 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:29, 03:29] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:24, 08:23] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:53, 03:15](1243 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:58, 05:22](1146 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:31, 02:52](1020 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:32, 05:01](1261 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:24, 02:37](1028 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:48, 03:02](1001 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:38, 04:01](1079 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:59, 01:37](944 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:31, 08:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:11, 01:44](1279 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:04, 00:43](1196 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:18, 01:04](1145 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:58, 07:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:30, 04:12](1098 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:47, 04:47] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:49, 04:35](1099 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:20, 04:08](1098 MB) -PASS -- TEST 'conus13km_debug_intel' [13:23, 13:00](1340 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:35, 13:12](991 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:21, 07:58](1248 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:47, 12:22](1401 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:23, 03:22] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:19, 04:08](1168 MB) - -PASS -- COMPILE 'hafsw_intel' [09:29, 09:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:12, 05:17](857 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:09, 04:51](1259 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:25, 06:24](938 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:04, 14:15](979 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:35, 15:31](981 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:58, 05:23](595 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:44, 06:46](602 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:01, 02:33](436 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:49, 07:26](547 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:18, 03:47](601 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:08, 03:35](611 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:23, 04:45](659 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:27, 01:11](451 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [03:59, 03:59] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:09, 11:29](633 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:44, 09:44] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:58, 16:21](763 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:28, 15:37](845 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:04, 13:04] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:47, 10:03](815 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:08, 11:08] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:17, 05:28](949 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:20, 05:31](908 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:06, 16:32](1338 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:48, 07:47] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:18, 02:12](1149 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:52, 01:45](1102 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:11, 04:06](1025 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:18, 02:09](1023 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:54, 02:51](1028 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:39, 03:32](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:18, 02:13](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:10, 02:05](1022 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:30, 04:53](1164 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:22, 04:50](1157 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:58, 02:55](1146 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:13, 03:07](2384 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:12, 03:06](2402 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:16, 03:15] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:12, 05:08](1080 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:04, 06:04] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:43, 02:38](1142 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:46, 00:46] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:07, 00:53](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:02, 00:50](558 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:47, 00:33](561 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:03, 09:02] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:07, 03:30](2018 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:15, 09:15] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:22, 03:36](1989 MB) - -PASS -- COMPILE 'atml_intel' [08:39, 08:39] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:19, 05:33](1901 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:40, 05:52](1891 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:39, 03:12](1139 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:11, 04:11] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:40, 05:53](1921 MB) - -PASS -- COMPILE 'atmw_intel' [09:55, 09:55] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:18, 01:38](1939 MB) - -PASS -- COMPILE 'atmaero_intel' [08:33, 08:33] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:33, 03:54](2026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:18, 04:37](1806 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:05, 04:36](1815 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:21, 04:21] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [17:07, 16:01](4575 MB) - -PASS -- COMPILE 'atm_gnu' [04:40, 04:40] -PASS -- TEST 'control_c48_gnu' [09:52, 09:28](1529 MB) -PASS -- TEST 'control_stochy_gnu' [02:37, 02:26](721 MB) -PASS -- TEST 'control_ras_gnu' [04:05, 03:56](734 MB) -PASS -- TEST 'control_p8_gnu' [04:45, 04:02](1722 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:30, 03:55](1729 MB) -PASS -- TEST 'control_flake_gnu' [05:07, 04:54](802 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:05, 04:05] -PASS -- TEST 'rap_control_gnu' [09:58, 09:27](1080 MB) -PASS -- TEST 'rap_decomp_gnu' [10:05, 09:29](1082 MB) -PASS -- TEST 'rap_2threads_gnu' [08:52, 08:14](1138 MB) -PASS -- TEST 'rap_restart_gnu' [05:21, 04:51](887 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:10, 09:36](1082 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:27, 08:55](1083 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:50, 07:08](883 MB) -PASS -- TEST 'hrrr_control_gnu' [05:41, 05:03](1070 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:06, 04:41](1135 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:56, 04:24](1045 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:14, 04:44](1068 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:49, 02:30](883 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:38, 02:19](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:46, 09:02](1076 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:59, 05:58] -PASS -- TEST 'control_diag_debug_gnu' [01:31, 01:14](1625 MB) -PASS -- TEST 'regional_debug_gnu' [06:48, 06:27](1122 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:05](1098 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:01, 01:55](1086 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:07, 01:58](1094 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:03, 01:57](1093 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:18, 02:04](1266 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:23, 03:14](1094 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:06, 01:59](1095 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:03, 01:57](1089 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:17, 01:09](721 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:22, 01:17](720 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:45, 01:24](1698 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:21, 02:08](1096 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:20, 02:13](1105 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [03:50, 03:16](1098 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:34, 02:34] -PASS -- TEST 'control_wam_debug_gnu' [05:47, 05:25](1565 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:50, 04:50] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:20, 08:46](962 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:08, 04:21](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:35, 08:04](994 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:47, 04:04](899 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:09, 04:28](954 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:10, 06:32](862 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:46, 02:22](863 MB) -PASS -- TEST 'conus13km_control_gnu' [03:28, 03:01](1271 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:32, 01:13](1176 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:59, 01:41](928 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:15, 09:14] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:52, 04:33](990 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:02, 06:02] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:15, 02:05](977 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:06, 01:59](969 MB) -PASS -- TEST 'conus13km_debug_gnu' [05:55, 05:34](1285 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:10, 05:49](962 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [03:33, 03:19](1195 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:56, 05:36](1354 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:12, 06:12] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:19, 02:13](1001 MB) - -PASS -- COMPILE 's2swa_gnu' [15:34, 15:34] - -PASS -- COMPILE 's2s_gnu' [14:31, 14:31] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [05:47, 05:07](3117 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:31, 04:31] - -PASS -- COMPILE 's2sw_pdlib_gnu' [20:49, 20:49] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:04, 27:04](2921 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:27, 04:27] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:45, 12:02](2924 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [24:37, 24:36] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:59, 02:49](770 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:50, 07:35](2128 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:56] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:58, 14:11](2001 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:44, 15:42](2301 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [20:37, 07:19](1316 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:55, 15:28](1918 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:10, 15:29] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:30, 14:19](1996 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:45] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:00, 21:32](1982 MB) + +PASS -- COMPILE 's2swa_intel' [15:10, 14:11] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:49, 08:47](2175 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:56, 08:25](2179 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:05, 05:08](1971 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:54, 09:03](2201 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:13, 04:31](1734 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:50, 09:49](2542 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:53, 08:40](2184 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:51, 07:08](2094 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:56, 08:43](2171 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:42, 16:13](2988 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:07, 07:14](2920 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:24, 11:54](3835 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:27, 07:00](3625 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:47, 06:18](2157 MB) + +PASS -- COMPILE 's2sw_intel' [10:10, 10:08] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:52, 07:49](2017 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:54, 04:27](2087 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:44] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:56, 08:10](2211 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:58] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:56, 05:21](2049 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:18] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:53, 04:21](2088 MB) + +PASS -- COMPILE 's2s_intel' [10:10, 09:51] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:40, 07:41](3056 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:37, 02:10](3036 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:31, 01:16](2466 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:12] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:59, 08:23](2184 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:10, 20:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:49, 14:38](2029 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:58, 07:51](1401 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:48, 16:16](1949 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 06:00] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:47, 23:07](2012 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [08:23, 02:55](720 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:32, 02:29](1603 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:35, 02:35](1628 MB) +PASS -- TEST 'control_latlon_intel' [08:29, 02:29](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:37, 02:36](1604 MB) +PASS -- TEST 'control_c48_intel' [12:33, 06:54](1713 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:26, 05:51](841 MB) +PASS -- TEST 'control_c192_intel' [15:44, 09:20](1749 MB) +PASS -- TEST 'control_c384_intel' [22:42, 10:19](2008 MB) +PASS -- TEST 'control_c384gdas_intel' [18:47, 07:23](1493 MB) +PASS -- TEST 'control_stochy_intel' [12:19, 01:28](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:26, 00:53](540 MB) +PASS -- TEST 'control_lndp_intel' [12:18, 01:25](669 MB) +PASS -- TEST 'control_iovr4_intel' [11:19, 02:12](661 MB) +PASS -- TEST 'control_iovr5_intel' [10:21, 02:11](662 MB) +PASS -- TEST 'control_p8_intel' [11:45, 03:37](1905 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:57, 03:22](1914 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:56, 03:30](1901 MB) +PASS -- TEST 'control_restart_p8_intel' [02:40, 01:39](1148 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:52, 03:25](1890 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:23](1220 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:49, 03:43](1886 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:43, 03:17](1973 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:29, 05:28](1903 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:56, 03:46](1964 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:03, 02:40](1901 MB) +PASS -- TEST 'merra2_thompson_intel' [04:55, 03:03](1894 MB) +PASS -- TEST 'regional_control_intel' [05:25, 04:38](1203 MB) +PASS -- TEST 'regional_restart_intel' [09:25, 03:46](1168 MB) +PASS -- TEST 'regional_decomp_intel' [06:24, 05:07](1187 MB) +PASS -- TEST 'regional_2threads_intel' [04:27, 03:01](1151 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 05:15](1514 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:30, 04:36](1201 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 05:07](1198 MB) +PASS -- TEST 'regional_wofs_intel' [09:30, 08:32](2078 MB) + +PASS -- COMPILE 'rrfs_intel' [09:10, 08:37] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:58, 07:25](1236 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:05, 04:07](1348 MB) +PASS -- TEST 'rap_decomp_intel' [08:40, 07:59](1175 MB) +PASS -- TEST 'rap_2threads_intel' [09:51, 07:16](1369 MB) +PASS -- TEST 'rap_restart_intel' [15:07, 03:55](1159 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:49, 07:37](1225 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:06](1159 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [13:00, 05:38](1208 MB) +PASS -- TEST 'hrrr_control_intel' [06:59, 03:50](1099 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:40, 03:58](1049 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:44, 03:36](1116 MB) +PASS -- TEST 'hrrr_control_restart_intel' [12:28, 02:15](1040 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:54, 06:50](1223 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [17:21, 08:15](2019 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:23, 07:52](2169 MB) + +PASS -- COMPILE 'csawmg_intel' [09:10, 08:21] +PASS -- TEST 'control_csawmg_intel' [16:27, 06:31](1062 MB) +PASS -- TEST 'control_ras_intel' [14:19, 02:57](851 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 04:01] +PASS -- TEST 'control_csawmg_gnu' [16:31, 08:00](1068 MB) + +PASS -- COMPILE 'wam_intel' [12:10, 11:16] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [21:35, 09:57](1663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:10, 08:16] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [13:52, 03:10](1908 MB) +PASS -- TEST 'regional_control_faster_intel' [10:25, 05:10](1194 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:10, 06:07] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:29, 02:26](1644 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [14:33, 02:13](1639 MB) +PASS -- TEST 'control_stochy_debug_intel' [14:23, 02:51](844 MB) +PASS -- TEST 'control_lndp_debug_intel' [14:22, 02:23](842 MB) +PASS -- TEST 'control_csawmg_debug_intel' [16:29, 04:40](1145 MB) +PASS -- TEST 'control_ras_debug_intel' [14:27, 02:31](850 MB) +PASS -- TEST 'control_diag_debug_intel' [14:35, 02:22](1699 MB) +PASS -- TEST 'control_debug_p8_intel' [13:31, 03:20](1940 MB) +PASS -- TEST 'regional_debug_intel' [26:30, 16:16](1132 MB) +PASS -- TEST 'rap_control_debug_intel' [13:20, 04:14](1227 MB) +PASS -- TEST 'hrrr_control_debug_intel' [12:24, 04:20](1221 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [11:17, 04:15](1230 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:18, 04:15](1224 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:21, 04:14](1232 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:27, 04:29](1312 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:17, 04:26](1235 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:25](1230 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:17, 04:23](1237 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:17, 04:28](1236 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:17, 04:20](1230 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:11](1241 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:19, 07:34](1230 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:17, 04:31](1221 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 05:18](1232 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:17, 04:43](1238 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 07:18](1238 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:10, 04:12] +PASS -- TEST 'control_csawmg_debug_gnu' [02:28, 02:03](1045 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:10] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 07:53] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:16](1234 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:37, 05:25](1161 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:02, 02:53](1038 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:35, 05:02](1292 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:42, 02:45](1041 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:38, 03:03](974 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [24:51, 04:04](1094 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [22:28, 01:35](961 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 08:03] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:38, 01:45](1282 MB) +PASS -- TEST 'conus13km_2threads_intel' [16:34, 00:52](1206 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [16:36, 01:06](1148 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:10, 08:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:35, 04:04](1080 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:10, 03:46] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 04:05](1106 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:18, 03:58](1106 MB) +PASS -- TEST 'conus13km_debug_intel' [13:33, 12:32](1328 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 12:44](997 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:28, 07:16](1241 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:35, 12:28](1409 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:54] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:20](1171 MB) + +PASS -- COMPILE 'hafsw_intel' [12:11, 10:53] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:03, 05:26](854 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:21, 05:07](1260 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:20, 06:36](950 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [29:04, 14:12](975 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:10, 15:17](1117 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [21:47, 05:33](596 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [23:16, 07:01](609 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [21:38, 02:41](431 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [26:53, 07:38](547 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [24:38, 03:52](606 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [23:42, 03:42](605 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [26:42, 05:00](666 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [21:28, 01:15](447 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:10, 03:57] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [32:51, 11:58](640 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:11, 10:15] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [36:47, 16:11](738 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [36:48, 16:26](894 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 10:14] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:50, 09:27](809 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:11, 15:04] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [26:05, 05:44](931 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:03, 05:56](916 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:47, 16:30](1348 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 05:10] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [22:18, 02:11](1169 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [16:20, 01:21](1096 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [22:16, 02:06](1025 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [25:18, 02:08](1013 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [24:16, 02:09](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [26:16, 02:12](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [30:18, 02:16](1162 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [29:19, 02:09](1016 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [27:52, 04:59](1167 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:52, 04:53](1151 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [24:21, 02:13](1160 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:15, 03:05](2406 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [22:17, 03:18](2405 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:48] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [24:16, 05:15](1067 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:01] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [21:18, 02:15](1153 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:45] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [18:27, 00:57](338 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [19:22, 00:52](574 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:24, 00:35](576 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:10, 09:03] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:46, 04:06](2015 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:11, 08:21] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [21:46, 04:15](1982 MB) + +PASS -- COMPILE 'atml_intel' [09:11, 08:41] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [22:53, 06:25](1890 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [21:56, 06:37](1897 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:34, 03:44](1154 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:42] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [20:51, 06:02](1914 MB) + +PASS -- COMPILE 'atmw_intel' [10:11, 09:34] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [17:47, 02:35](1939 MB) + +PASS -- COMPILE 'atmaero_intel' [09:10, 08:42] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [19:46, 04:38](2025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [19:43, 04:24](1822 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:40, 04:47](1820 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:48] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [30:31, 17:12](4607 MB) + +PASS -- COMPILE 'atm_gnu' [10:10, 05:37] +PASS -- TEST 'control_c48_gnu' [20:37, 09:27](1531 MB) +PASS -- TEST 'control_stochy_gnu' [12:21, 02:31](728 MB) +PASS -- TEST 'control_ras_gnu' [13:19, 03:50](731 MB) +PASS -- TEST 'control_p8_gnu' [13:44, 04:44](1750 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [12:40, 04:30](1708 MB) +PASS -- TEST 'control_flake_gnu' [12:20, 04:50](806 MB) + +PASS -- COMPILE 'rrfs_gnu' [10:10, 05:48] +PASS -- TEST 'rap_control_gnu' [17:47, 08:33](1085 MB) +PASS -- TEST 'rap_decomp_gnu' [17:35, 08:53](1085 MB) +PASS -- TEST 'rap_2threads_gnu' [16:47, 07:39](1138 MB) +PASS -- TEST 'rap_restart_gnu' [06:57, 04:28](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [15:48, 08:18](1084 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [17:21, 08:36](1081 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:53, 06:11](884 MB) +PASS -- TEST 'hrrr_control_gnu' [11:32, 04:17](1069 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [11:32, 04:24](1137 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:45, 03:54](1015 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [10:31, 04:14](1070 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [07:21, 02:53](883 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:21, 02:46](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [15:09, 08:02](1087 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:10, 07:35] +PASS -- TEST 'control_diag_debug_gnu' [07:40, 01:22](1626 MB) +PASS -- TEST 'regional_debug_gnu' [14:26, 08:34](1133 MB) +PASS -- TEST 'rap_control_debug_gnu' [07:19, 02:20](1097 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [07:20, 02:14](1088 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [08:21, 02:09](1097 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [09:17, 02:15](1095 MB) +PASS -- TEST 'rap_diag_debug_gnu' [09:26, 02:19](1271 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [12:21, 04:25](1098 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [10:32, 02:09](1101 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [10:23, 02:09](1092 MB) +PASS -- TEST 'control_ras_debug_gnu' [08:19, 01:13](727 MB) +PASS -- TEST 'control_stochy_debug_gnu' [08:17, 01:27](724 MB) +PASS -- TEST 'control_debug_p8_gnu' [10:34, 02:58](1699 MB) +PASS -- TEST 'rap_flake_debug_gnu' [09:37, 02:10](1097 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [10:18, 03:06](1099 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [11:52, 04:02](1103 MB) + +PASS -- COMPILE 'wam_debug_gnu' [08:10, 04:13] +PASS -- TEST 'control_wam_debug_gnu' [13:35, 05:55](1561 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:05] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:32, 07:59](963 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [09:40, 04:42](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:44, 07:25](1000 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [08:59, 04:17](889 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [09:37, 04:41](948 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:57, 05:54](865 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 02:06](875 MB) +PASS -- TEST 'conus13km_control_gnu' [07:40, 03:29](1268 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:34, 01:10](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:32, 01:38](933 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 08:48] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:32, 05:23](987 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:18] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:18, 02:47](978 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:38](969 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:35, 05:52](1286 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:31, 06:10](958 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:29, 04:26](1191 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:27, 06:09](1351 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [11:10, 06:46] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:20](1005 MB) + +PASS -- COMPILE 's2swa_gnu' [24:10, 19:14] + +PASS -- COMPILE 's2s_gnu' [20:11, 15:52] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:57, 06:07](3090 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:08] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:10, 16:44] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [30:53, 27:07](3046 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:10, 04:47] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:53, 12:39](2901 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [21:10, 17:15] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [07:17, 02:17](769 MB) SYNOPSIS: -Starting Date/Time: 20240807 07:47:32 -Ending Date/Time: 20240807 11:55:23 -Total Time: 04h:08m:40s +Starting Date/Time: 20240808 19:25:49 +Ending Date/Time: 20240808 21:56:56 +Total Time: 02h:32m:09s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 97fb2cfbbc..6afe601a58 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -b40a0f095bb14723f1a8be990d19a22972f356d6 +8cb23af867d56961352ff5fab97656c3a4c6b936 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,309 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) - 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) + fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) + d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240806 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_529651 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [45:17, 44:24] ( 1 warnings 1378 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:47, 08:34](2013 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:22, 50:00] ( 1 warnings 1425 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [37:36, 22:06](1886 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [44:10, 24:03](2009 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [33:06, 13:32](1112 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [38:50, 24:50](1846 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:19, 54:44] ( 1 warnings 1422 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [30:21, 21:36](1884 MB) - -PASS -- COMPILE 's2swa_intel' [43:17, 42:35] ( 1379 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:26, 09:19](2048 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:02, 09:42](2050 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:13, 05:39](1712 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:35, 09:52](2065 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:17, 05:39](1735 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:17, 09:42](2320 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:31, 09:14](2061 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [19:48, 08:21](1998 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:00, 09:26](2050 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [19:47, 08:51](2037 MB) - -PASS -- COMPILE 's2sw_intel' [42:17, 41:49] ( 1277 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [20:00, 07:44](1904 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:16, 08:09](1968 MB) - -PASS -- COMPILE 's2swa_debug_intel' [27:25, 07:44] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:39, 11:17](2083 MB) - -PASS -- COMPILE 's2sw_debug_intel' [26:20, 07:20] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [16:01, 08:21](1933 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [55:22, 38:13] ( 1008 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:59, 07:09](1951 MB) - -PASS -- COMPILE 's2s_intel' [51:25, 38:23] ( 1013 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [15:14, 12:43](3021 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:06, 04:01](3008 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:18, 02:33](2460 MB) - -PASS -- COMPILE 's2swa_faster_intel' [43:29, 34:13] ( 1607 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [42:19, 08:42](2043 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [53:16, 47:35] ( 1337 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:40, 22:29](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [55:24, 11:06](1132 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [56:42, 25:27](1882 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:13, 06:37] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:35, 33:59](1937 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [43:15, 38:37] ( 1 warnings 1124 remarks ) -PASS -- TEST 'control_flake_intel' [10:43, 04:43](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [48:34, 04:16](1550 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [32:34, 04:12](1548 MB) -PASS -- TEST 'control_latlon_intel' [10:16, 04:27](1546 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [39:34, 04:35](1547 MB) -PASS -- TEST 'control_c48_intel' [17:32, 11:47](1698 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:52, 10:22](830 MB) -PASS -- TEST 'control_c192_intel' [59:09, 14:49](1672 MB) -PASS -- TEST 'control_c384_intel' [01:08, 19:50](1800 MB) -PASS -- TEST 'control_c384gdas_intel' [59:24, 14:03](1008 MB) -PASS -- TEST 'control_stochy_intel' [08:39, 02:47](602 MB) -PASS -- TEST 'control_stochy_restart_intel' [48:46, 01:21](436 MB) -PASS -- TEST 'control_lndp_intel' [08:38, 02:38](599 MB) -PASS -- TEST 'control_iovr4_intel' [09:41, 03:58](604 MB) -PASS -- TEST 'control_iovr5_intel' [09:41, 03:52](600 MB) -PASS -- TEST 'control_p8_intel' [45:04, 06:11](1842 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [01:18, 04:43](1830 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [13:17, 05:07](1849 MB) -PASS -- TEST 'control_restart_p8_intel' [27:20, 02:57](1052 MB) -PASS -- TEST 'control_noqr_p8_intel' [43:05, 05:13](1835 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [27:31, 02:57](1072 MB) -PASS -- TEST 'control_decomp_p8_intel' [41:17, 05:44](1831 MB) -PASS -- TEST 'control_2threads_p8_intel' [41:16, 05:15](1920 MB) -PASS -- TEST 'control_p8_lndp_intel' [14:25, 08:10](1836 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [42:22, 06:27](1902 MB) -PASS -- TEST 'control_p8_mynn_intel' [34:06, 04:46](1850 MB) -PASS -- TEST 'merra2_thompson_intel' [42:29, 05:54](1842 MB) -PASS -- TEST 'regional_control_intel' [37:18, 08:09](1002 MB) -PASS -- TEST 'regional_restart_intel' [11:55, 04:39](986 MB) -PASS -- TEST 'regional_decomp_intel' [13:12, 09:13](1002 MB) -PASS -- TEST 'regional_2threads_intel' [09:16, 07:30](992 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [12:22, 08:50](1012 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [17:14, 08:14](1005 MB) - -PASS -- COMPILE 'rrfs_intel' [39:16, 38:18] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [02:39, 10:47](986 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [58:48, 06:06](1164 MB) -PASS -- TEST 'rap_decomp_intel' [56:39, 11:01](974 MB) -PASS -- TEST 'rap_2threads_intel' [58:19, 09:54](1074 MB) -PASS -- TEST 'rap_restart_intel' [10:00, 05:20](986 MB) -PASS -- TEST 'rap_sfcdiff_intel' [03:35, 11:01](985 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [59:01, 11:07](982 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:24, 08:24](998 MB) -PASS -- TEST 'hrrr_control_intel' [57:23, 05:32](989 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [57:23, 05:33](978 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [57:13, 05:05](1053 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:34, 03:19](918 MB) -PASS -- TEST 'rrfs_v1beta_intel' [04:00, 10:37](980 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [03:44, 13:06](1945 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [00:46, 13:03](1939 MB) - -PASS -- COMPILE 'csawmg_intel' [38:17, 35:54] ( 1089 remarks ) -PASS -- TEST 'control_csawmg_intel' [56:55, 09:41](960 MB) -PASS -- TEST 'control_ras_intel' [30:31, 04:43](657 MB) - -PASS -- COMPILE 'wam_intel' [36:16, 35:46] ( 992 remarks ) -FAILED: TEST TIMED OUT -- TEST 'control_wam_intel' [, ]( MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:17, 38:01] ( 1292 remarks ) -PASS -- TEST 'control_p8_faster_intel' [29:57, 04:34](1838 MB) -PASS -- TEST 'regional_control_faster_intel' [10:47, 07:58](997 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [26:15, 09:38] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [28:59, 03:41](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [24:02, 03:27](1574 MB) -PASS -- TEST 'control_stochy_debug_intel' [23:33, 04:01](772 MB) -PASS -- TEST 'control_lndp_debug_intel' [20:32, 03:36](772 MB) -PASS -- TEST 'control_csawmg_debug_intel' [18:43, 06:12](1082 MB) -PASS -- TEST 'control_ras_debug_intel' [14:32, 03:36](786 MB) -PASS -- TEST 'control_diag_debug_intel' [14:54, 03:32](1632 MB) -PASS -- TEST 'control_debug_p8_intel' [13:01, 04:11](1853 MB) -PASS -- TEST 'regional_debug_intel' [32:51, 23:12](1036 MB) -PASS -- TEST 'rap_control_debug_intel' [07:29, 06:16](1157 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:27, 06:05](1158 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 06:18](1161 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:26, 06:25](1160 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:28, 06:20](1156 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:44, 06:47](1242 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:29, 06:36](1160 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:29, 06:34](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:28, 06:20](1166 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:35, 06:27](1162 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:36, 06:11](1158 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:17](1157 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:32, 10:11](1160 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 06:07](1153 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:35, 07:33](1160 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:25, 06:14](1157 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:52, 10:54](1163 MB) - -PASS -- COMPILE 'wam_debug_intel' [33:19, 05:25] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [21:02, 16:59](1651 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [05:17, 31:55] ( 3 warnings 1024 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:18, 05:33](1042 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:11, 09:00](890 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:22, 04:46](867 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:11, 08:40](935 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:20, 04:24](899 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:20, 05:03](854 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:25, 06:46](895 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 02:32](840 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [06:18, 33:24] ( 3 warnings 1197 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:04, 03:15](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:33](1042 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:43](1011 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [58:17, 32:29] ( 3 warnings 1044 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:51, 05:52](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [31:13, 05:51] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:29, 06:10](1040 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:30, 06:01](1036 MB) -PASS -- TEST 'conus13km_debug_intel' [22:05, 19:03](1146 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:50, 19:09](859 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:44, 11:04](1093 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:52, 18:57](1222 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [28:14, 05:40] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:31, 06:32](1082 MB) - -PASS -- COMPILE 'hafsw_intel' [41:17, 40:27] ( 1 warnings 1416 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:31, 07:11](695 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:39, 07:15](1066 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:44, 10:14](752 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [20:05, 17:02](789 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:03, 19:07](801 MB) -PASS -- TEST 'gnv1_nested_intel' [12:15, 07:43](1682 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:15, 37:10] ( 1263 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:41, 09:12](744 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:37, 09:00](735 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:32] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:38](1072 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:11](1041 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:27, 03:31](926 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:29, 03:35](924 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:27, 03:39](920 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 03:36](1065 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:29, 03:54](1065 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:29, 03:32](928 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:21, 08:01](889 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:23, 08:00](845 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:24, 03:37](1062 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:44, 05:28](2359 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:41, 05:08](2411 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:41] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:25, 07:59](1025 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:24] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:24, 03:41](1074 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:54] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:39, 01:58](232 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:34, 02:05](270 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 01:12](254 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [39:16, 37:27] ( 1013 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:51, 08:06](1896 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:15, 36:37] ( 1013 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:12, 07:57](1891 MB) - -PASS -- COMPILE 'atml_intel' [38:16, 38:01] ( 8 warnings 1165 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [17:14, 11:50](1854 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [17:35, 12:10](1846 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:55, 06:15](1064 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 06:52] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:02, 08:14](1886 MB) - -PASS -- COMPILE 'atmw_intel' [39:28, 38:11] ( 1258 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:19, 03:47](1851 MB) - -PASS -- COMPILE 'atmaero_intel' [38:23, 36:43] ( 1096 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:52, 06:36](1939 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:04, 06:53](1725 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:37, 07:05](1730 MB) - -SYNOPSIS: -Starting Date/Time: 20240807 03:37:26 -Ending Date/Time: 20240807 09:38:56 -Total Time: 06h:02m:12s -Compiles Completed: 36/36 -Tests Completed: 163/164 -Failed Tests: -* TEST control_wam_intel: FAILED: TEST TIMED OUT --- LOG: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_529651/control_wam_intel/err - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -f53391f8414a033e03d4d59c3362d7bb8ff66d9f - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) - 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -335,22 +36,254 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4088889 +COMPARISON DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1259533 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-n) - RUN SINGLE TEST: control_wam -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_intel' [18:40, 35:42] ( 992 remarks ) -PASS -- TEST 'control_wam_intel' [24:20, 15:03](1616 MB) +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [43:50, 43:50] ( 1 warnings 1378 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:46, 08:18](2002 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:36, 51:36] ( 1 warnings 1425 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:13, 22:04](1884 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:57, 23:48](2021 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:18, 11:22](1114 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:08, 25:13](1849 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:59, 49:59] ( 1 warnings 1422 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:15, 21:38](1880 MB) + +PASS -- COMPILE 's2swa_intel' [44:02, 44:02] ( 1379 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:08, 08:29](2052 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:40, 08:55](2053 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:18, 05:22](1708 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:19, 08:48](2067 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:55, 05:02](1733 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:03, 08:38](2316 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:26, 09:04](2032 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:37, 07:37](2004 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:12, 08:42](1974 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:03, 08:37](2020 MB) + +PASS -- COMPILE 's2sw_intel' [41:26, 41:26] ( 1277 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 07:21](1892 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:13, 07:34](1953 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:08, 07:08] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:04, 11:18](2079 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:45, 06:45] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:27, 07:57](1918 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [37:28, 37:28] ( 1008 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:33, 06:51](1966 MB) + +PASS -- COMPILE 's2s_intel' [38:10, 38:10] ( 1013 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [13:18, 12:21](3013 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:31, 03:32](3006 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:15, 02:14](2431 MB) + +PASS -- COMPILE 's2swa_faster_intel' [33:32, 33:32] ( 1607 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:25, 08:52](2042 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [47:33, 47:33] ( 1337 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:52, 22:27](1915 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:51, 13:18](1123 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:51, 25:31](1885 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:27, 06:27] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:37, 34:03](1934 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:50, 38:50] ( 1 warnings 1124 remarks ) +PASS -- TEST 'control_flake_intel' [05:05, 04:45](643 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:05, 04:24](1543 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:25, 04:26](1552 MB) +PASS -- TEST 'control_latlon_intel' [05:03, 04:26](1545 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:21, 04:32](1545 MB) +PASS -- TEST 'control_c48_intel' [12:34, 11:51](1700 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:46, 10:25](834 MB) +PASS -- TEST 'control_c192_intel' [16:26, 15:27](1661 MB) +PASS -- TEST 'control_c384_intel' [20:53, 18:49](1794 MB) +PASS -- TEST 'control_c384gdas_intel' [17:08, 14:23](1001 MB) +PASS -- TEST 'control_stochy_intel' [02:56, 02:41](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:54, 01:34](426 MB) +PASS -- TEST 'control_lndp_intel' [02:58, 02:36](599 MB) +PASS -- TEST 'control_iovr4_intel' [04:21, 03:51](599 MB) +PASS -- TEST 'control_iovr5_intel' [04:03, 03:37](601 MB) +PASS -- TEST 'control_p8_intel' [06:54, 05:44](1838 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:47, 05:30](1833 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:10, 05:05](1840 MB) +PASS -- TEST 'control_restart_p8_intel' [04:23, 03:18](1048 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:24, 05:16](1837 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 03:09](1073 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:52, 05:45](1822 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:45, 05:34](1914 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:46, 08:26](1837 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:32, 06:24](1888 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:20, 05:09](1831 MB) +PASS -- TEST 'merra2_thompson_intel' [07:16, 05:43](1841 MB) +PASS -- TEST 'regional_control_intel' [09:22, 08:44](1012 MB) +PASS -- TEST 'regional_restart_intel' [05:15, 04:37](1002 MB) +PASS -- TEST 'regional_decomp_intel' [09:29, 08:50](1000 MB) +PASS -- TEST 'regional_2threads_intel' [07:09, 06:29](987 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 08:02](1003 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:50, 08:16](1000 MB) + +PASS -- COMPILE 'rrfs_intel' [38:59, 38:58] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [11:35, 10:26](988 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 05:48](1166 MB) +PASS -- TEST 'rap_decomp_intel' [12:04, 10:55](979 MB) +PASS -- TEST 'rap_2threads_intel' [11:19, 10:05](1070 MB) +PASS -- TEST 'rap_restart_intel' [06:40, 05:36](985 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:37, 10:27](985 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:17, 11:02](976 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:18, 08:08](994 MB) +PASS -- TEST 'hrrr_control_intel' [06:39, 05:19](986 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 05:47](976 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:14, 04:57](1056 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:19, 02:57](918 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:58, 10:32](981 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 13:00](1942 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:10, 12:54](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [35:25, 35:25] ( 1089 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:14, 09:36](957 MB) +PASS -- TEST 'control_ras_intel' [05:01, 04:42](667 MB) + +PASS -- COMPILE 'wam_intel' [35:56, 35:56] ( 992 remarks ) +PASS -- TEST 'control_wam_intel' [16:10, 15:21](1600 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [38:03, 38:03] ( 1292 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:04, 04:43](1825 MB) +PASS -- TEST 'regional_control_faster_intel' [08:50, 08:10](996 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 09:23] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:16, 03:39](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 03:34](1571 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:29, 04:08](778 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:59, 03:42](776 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:43, 06:06](1087 MB) +PASS -- TEST 'control_ras_debug_intel' [04:05, 03:43](784 MB) +PASS -- TEST 'control_diag_debug_intel' [04:43, 03:49](1621 MB) +PASS -- TEST 'control_debug_p8_intel' [05:25, 04:36](1870 MB) +PASS -- TEST 'regional_debug_intel' [23:43, 23:12](1037 MB) +PASS -- TEST 'rap_control_debug_intel' [07:03, 06:38](1161 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:53, 06:28](1155 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:06, 06:41](1166 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:17, 06:48](1159 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:01, 06:24](1160 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:10, 06:38](1243 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:44, 06:29](1160 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:49, 06:33](1162 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:41, 06:25](1173 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:44, 06:23](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 06:09](1161 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 06:16](1160 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 10:08](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 06:13](1164 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:48, 07:30](1159 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:31, 06:14](1158 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:58, 10:47](1162 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:47, 05:46] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:24, 16:42](1616 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:56, 31:56] ( 3 warnings 1024 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:47, 05:44](1044 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:05, 08:52](895 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:12, 04:36](871 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:42, 09:08](943 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:50, 04:14](902 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:00, 04:59](852 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:59, 06:40](892 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 02:51](845 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [27:44, 27:43] ( 3 warnings 1197 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:08, 03:16](1092 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:45](1037 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:57, 02:00](1007 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:25, 32:25] ( 3 warnings 1044 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:11, 05:52](905 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:47, 05:47] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:36, 06:14](1033 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:39, 06:16](1029 MB) +PASS -- TEST 'conus13km_debug_intel' [20:11, 19:05](1145 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:27, 19:34](853 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:46, 11:07](1088 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:33, 18:57](1207 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:46, 05:46] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 06:17](1078 MB) + +PASS -- COMPILE 'hafsw_intel' [40:45, 40:44] ( 1 warnings 1416 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:53, 07:21](676 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:58](1073 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:32, 09:43](754 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:46, 17:19](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:33, 18:43](800 MB) +PASS -- TEST 'gnv1_nested_intel' [10:32, 08:18](1678 MB) + +PASS -- COMPILE 'hafs_all_intel' [36:41, 36:41] ( 1263 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:48, 09:34](749 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:42, 09:26](730 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:56, 08:56] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 03:52](1060 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:34, 02:21](1031 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:53, 03:39](927 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:54, 03:40](928 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:53, 03:42](929 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:08, 03:41](1065 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:52, 03:42](1071 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:51, 03:41](936 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:37, 09:20](890 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:53, 08:48](842 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:53, 03:47](1068 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:24, 05:14](2357 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:24, 05:14](2299 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:50, 03:50] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 08:05](1029 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:30, 08:30] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:58, 03:48](1087 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:57, 01:57] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:40, 02:06](232 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:10, 01:43](259 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 01:09](257 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:14, 37:14] ( 1013 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:58, 06:29](1883 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [36:44, 36:44] ( 1013 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:45, 06:26](1880 MB) + +PASS -- COMPILE 'atml_intel' [42:33, 42:32] ( 8 warnings 1165 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:29, 10:02](1849 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:47, 10:29](1851 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:24, 06:37](1061 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 07:08] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:03, 08:19](1874 MB) + +PASS -- COMPILE 'atmw_intel' [38:43, 38:42] ( 1258 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:36, 03:22](1856 MB) + +PASS -- COMPILE 'atmaero_intel' [36:55, 36:54] ( 1096 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:19, 06:09](1924 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:02, 06:40](1701 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:56, 06:51](1724 MB) SYNOPSIS: -Starting Date/Time: 20240807 15:58:18 -Ending Date/Time: 20240807 19:42:39 -Total Time: 03h:44m:40s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Starting Date/Time: 20240809 11:54:43 +Ending Date/Time: 20240809 19:34:18 +Total Time: 07h:40m:12s +Compiles Completed: 36/36 +Tests Completed: 164/164 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index b08d50a9ee..df924a66e7 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: -c34693f57b7804adb9fae55d41f8519a32801059 +2ef6b2a03b85a89d4029566f29f0ad99dbdda7a0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) - 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) + fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) + d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,284 +36,284 @@ 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-20240730 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2683135 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2089570 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 17:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:45, 14:17](2083 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 23:57] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:50, 18:00](1954 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 18:58](2136 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:55](1208 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:50, 20:22](1865 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 21:51] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:46, 17:44](1944 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 09:46] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:53, 27:32](1937 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 17:31] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:33, 14:18](2131 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:45, 14:38](2131 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:46, 07:52](1818 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:33, 14:34](2155 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:46, 07:51](1707 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:40, 13:22](2421 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:33, 14:43](2124 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:36, 12:12](2042 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:46, 14:20](2126 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:30, 16:45](2713 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:25, 08:52](2721 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:44, 11:59](3717 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:23, 07:25](3506 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:29, 05:57](2103 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 15:01] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:15, 14:00](1972 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:50](2050 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 09:08] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:45, 08:42](2163 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:10, 08:53] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:09, 06:12](1991 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:18] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:29, 04:42](2042 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 15:06] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:01, 10:00](3051 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:03, 03:18](3027 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:02, 02:18](2474 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:10, 16:51] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:31, 14:47](2131 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:30] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:13, 18:19](1984 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 09:04](1230 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:13, 20:31](1921 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:10, 07:38] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:23, 29:28](1976 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:27, 03:43](687 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:47, 03:13](1587 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 03:18](1583 MB) -PASS -- TEST 'control_latlon_intel' [04:41, 03:11](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:52, 03:15](1584 MB) -PASS -- TEST 'control_c48_intel' [10:52, 09:27](1707 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:36, 08:07](840 MB) -PASS -- TEST 'control_c192_intel' [13:02, 11:49](1727 MB) -PASS -- TEST 'control_c384_intel' [15:02, 12:55](1961 MB) -PASS -- TEST 'control_c384gdas_intel' [12:39, 09:55](1342 MB) -PASS -- TEST 'control_stochy_intel' [02:25, 01:51](641 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:07](476 MB) -PASS -- TEST 'control_lndp_intel' [02:25, 01:46](644 MB) -PASS -- TEST 'control_iovr4_intel' [03:28, 02:45](639 MB) -PASS -- TEST 'control_iovr5_intel' [03:29, 02:43](642 MB) -PASS -- TEST 'control_p8_intel' [05:14, 03:30](1884 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 03:34](1884 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:36, 03:25](1891 MB) -PASS -- TEST 'control_restart_p8_intel' [03:20, 02:00](1091 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:19, 03:23](1877 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 02:00](1133 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:19, 03:29](1865 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:09, 03:35](1949 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:55, 05:54](1878 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:34, 04:52](1939 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:33, 03:30](1890 MB) -PASS -- TEST 'merra2_thompson_intel' [05:42, 03:51](1879 MB) -PASS -- TEST 'regional_control_intel' [07:41, 06:27](1078 MB) -PASS -- TEST 'regional_restart_intel' [04:40, 03:35](1076 MB) -PASS -- TEST 'regional_decomp_intel' [07:35, 06:46](1072 MB) -PASS -- TEST 'regional_2threads_intel' [05:41, 04:36](1070 MB) -PASS -- TEST 'regional_noquilt_intel' [07:35, 06:26](1382 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:35, 06:26](1076 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 06:30](1078 MB) -PASS -- TEST 'regional_wofs_intel' [08:34, 07:51](1903 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 12:57] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:05, 08:29](1051 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:03, 05:15](1256 MB) -PASS -- TEST 'rap_decomp_intel' [10:05, 08:45](1030 MB) -PASS -- TEST 'rap_2threads_intel' [10:05, 08:33](1156 MB) -PASS -- TEST 'rap_restart_intel' [06:35, 04:27](1042 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:06, 08:20](1055 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:06, 08:39](1016 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 06:16](1073 MB) -PASS -- TEST 'hrrr_control_intel' [06:03, 04:23](1031 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:03, 04:28](1025 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:03, 04:11](1094 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:45, 02:18](945 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:28, 08:19](1046 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 10:02](1986 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:30, 09:47](2029 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 12:44] -PASS -- TEST 'control_csawmg_intel' [07:40, 06:32](1018 MB) -PASS -- TEST 'control_ras_intel' [04:26, 03:29](718 MB) - -PASS -- COMPILE 'wam_intel' [13:11, 12:27] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:45, 12:40](1664 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 13:04] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:21, 03:13](1880 MB) -PASS -- TEST 'regional_control_faster_intel' [07:36, 06:13](1077 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 09:54] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 03:14](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:44, 02:39](1616 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:26, 03:05](821 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:46](815 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:21](1131 MB) -PASS -- TEST 'control_ras_debug_intel' [03:20, 02:53](825 MB) -PASS -- TEST 'control_diag_debug_intel' [03:46, 02:48](1676 MB) -PASS -- TEST 'control_debug_p8_intel' [04:43, 03:09](1918 MB) -PASS -- TEST 'regional_debug_intel' [17:41, 17:07](1083 MB) -PASS -- TEST 'rap_control_debug_intel' [05:25, 04:59](1208 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:31, 04:50](1204 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:57](1203 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:28, 04:58](1212 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 04:53](1210 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:15](1293 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 05:02](1213 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 05:01](1210 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:25, 04:56](1207 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:56](1211 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:57](1205 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:20, 04:55](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 07:58](1199 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 04:54](1202 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 06:07](1209 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:57](1206 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:28, 08:42](1211 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 06:22] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [13:43, 13:08](1685 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 12:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:54](1130 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:21, 07:14](996 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:13, 03:47](922 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:02, 07:20](1064 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:06, 03:41](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:46, 03:56](897 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [27:33, 05:23](977 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:11, 02:10](874 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:29] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:54, 02:42](1165 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:15](1121 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:49, 01:34](1071 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:10, 12:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:48, 04:35](973 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 06:35] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 04:55](1086 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:26, 04:45](1081 MB) -PASS -- TEST 'conus13km_debug_intel' [15:55, 14:53](1235 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:44](934 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:18](1171 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:49, 14:40](1302 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:13] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 05:04](1135 MB) - -PASS -- COMPILE 'hafsw_intel' [16:11, 15:41] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:13, 06:24](744 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 07:23](1113 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 07:44](820 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:18, 24:37](848 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:21, 28:09](871 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:07, 07:15](496 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 08:36](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:06, 03:36](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:24, 09:57](475 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:59](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 04:48](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 06:04](571 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:39](408 MB) -PASS -- TEST 'gnv1_nested_intel' [26:26, 04:24](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:11, 08:06] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [33:14, 13:05](584 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:11, 15:09] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:17, 13:02](641 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [34:27, 13:20](733 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 14:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:09, 08:46](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 14:28] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [29:19, 07:34](816 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:23, 07:31](796 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:12, 16:22](1198 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:47] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:30, 02:58](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:54](1107 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:19, 02:50](1020 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [22:19, 02:55](1019 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [22:24, 02:53](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [22:20, 02:59](1138 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:19, 02:59](1145 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [23:20, 04:21](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [26:13, 06:31](1027 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [25:15, 06:28](1005 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [23:21, 04:33](1156 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 04:25](2451 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [22:21, 04:20](2442 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 04:46] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [24:21, 06:31](1078 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:12, 15:46] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:43, 14:23](2084 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 25:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:46, 18:00](1952 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:16, 18:51](2134 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 08:52](1198 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:56, 20:17](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:40, 17:39](1944 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:21] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:48, 27:20](1938 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 15:58] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:33, 14:26](2123 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:43, 14:25](2132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:50, 07:57](1814 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:33, 14:28](2160 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:49, 08:01](1700 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:19, 13:07](2435 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:33, 14:15](2126 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:34, 11:50](2033 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:41, 14:04](2127 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:44, 16:33](2718 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:03, 09:00](2725 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [17:57, 11:35](3689 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:24, 07:18](3491 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:30, 05:56](2105 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 15:31] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:23, 13:44](1981 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:30, 04:43](2042 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:19] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:21, 09:08](2165 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:10] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:12, 06:20](1993 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:28] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:12, 04:43](2041 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 14:12] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:57, 10:03](3043 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:54, 03:14](3027 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:49, 02:18](2488 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:13, 16:26] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:27, 14:46](2131 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:12, 18:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:12, 18:18](1993 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:24, 09:04](1246 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:12, 20:25](1904 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 08:21] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:15, 29:21](1969 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:13, 13:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:27, 03:47](685 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:47, 03:10](1582 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 03:15](1592 MB) +PASS -- TEST 'control_latlon_intel' [03:38, 03:09](1583 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:55, 03:15](1584 MB) +PASS -- TEST 'control_c48_intel' [10:52, 09:28](1697 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:37, 08:05](838 MB) +PASS -- TEST 'control_c192_intel' [12:56, 11:43](1720 MB) +PASS -- TEST 'control_c384_intel' [14:57, 12:45](1967 MB) +PASS -- TEST 'control_c384gdas_intel' [12:40, 09:51](1327 MB) +PASS -- TEST 'control_stochy_intel' [02:33, 01:51](647 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:42, 01:05](478 MB) +PASS -- TEST 'control_lndp_intel' [02:30, 01:46](644 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:44](644 MB) +PASS -- TEST 'control_iovr5_intel' [03:31, 02:41](638 MB) +PASS -- TEST 'control_p8_intel' [05:25, 03:31](1876 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 03:42](1872 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:31, 03:30](1876 MB) +PASS -- TEST 'control_restart_p8_intel' [03:14, 02:02](1085 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:12, 03:29](1870 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:58](1129 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:16, 03:34](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:08, 03:38](1959 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:50, 05:57](1874 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:29, 05:01](1940 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:25, 03:34](1889 MB) +PASS -- TEST 'merra2_thompson_intel' [05:38, 03:57](1880 MB) +PASS -- TEST 'regional_control_intel' [07:40, 06:32](1086 MB) +PASS -- TEST 'regional_restart_intel' [04:42, 03:33](1073 MB) +PASS -- TEST 'regional_decomp_intel' [07:41, 06:57](1083 MB) +PASS -- TEST 'regional_2threads_intel' [05:37, 04:49](1064 MB) +PASS -- TEST 'regional_noquilt_intel' [07:41, 06:34](1389 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 06:36](1090 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 06:29](1078 MB) +PASS -- TEST 'regional_wofs_intel' [08:33, 07:50](1901 MB) + +PASS -- COMPILE 'rrfs_intel' [13:15, 13:10] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:01, 08:26](1053 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 05:09](1263 MB) +PASS -- TEST 'rap_decomp_intel' [10:02, 08:34](1026 MB) +PASS -- TEST 'rap_2threads_intel' [10:01, 08:32](1157 MB) +PASS -- TEST 'rap_restart_intel' [06:38, 04:23](1046 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:02, 08:21](1057 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:03, 08:40](1026 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:31, 06:18](1071 MB) +PASS -- TEST 'hrrr_control_intel' [06:00, 04:22](1026 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:02, 04:26](1024 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:01, 04:11](1094 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:40, 02:24](948 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:16, 08:20](1046 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:23, 10:00](1986 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:43](2026 MB) + +PASS -- COMPILE 'csawmg_intel' [12:12, 12:00] +PASS -- TEST 'control_csawmg_intel' [07:37, 06:35](1015 MB) +PASS -- TEST 'control_ras_intel' [04:24, 03:31](716 MB) + +PASS -- COMPILE 'wam_intel' [13:14, 12:33] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:47, 12:43](1665 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:13, 12:24] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:26, 03:19](1880 MB) +PASS -- TEST 'regional_control_faster_intel' [07:33, 06:11](1075 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 09:50] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 03:02](1615 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:38](1611 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:30, 03:07](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:49](817 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:32, 04:21](1134 MB) +PASS -- TEST 'control_ras_debug_intel' [03:25, 02:57](823 MB) +PASS -- TEST 'control_diag_debug_intel' [03:46, 02:47](1676 MB) +PASS -- TEST 'control_debug_p8_intel' [03:45, 03:07](1913 MB) +PASS -- TEST 'regional_debug_intel' [18:41, 17:27](1092 MB) +PASS -- TEST 'rap_control_debug_intel' [05:27, 04:58](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:25, 05:03](1198 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:28, 04:54](1208 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 05:24](1213 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 05:03](1209 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:32, 05:12](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 05:02](1205 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 05:00](1205 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:18](1204 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:54](1212 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:56](1208 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 05:03](1196 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:29, 07:55](1205 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 04:56](1203 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 06:13](1208 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:21, 05:01](1213 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 08:41](1213 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:12, 06:40] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:45, 13:17](1678 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 12:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:55, 04:51](1131 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:14, 07:09](1000 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:38, 03:47](932 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:14, 07:21](1074 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 03:41](945 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:17, 03:56](900 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:20, 05:24](969 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 02:02](880 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:13, 12:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:52, 02:37](1183 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:41, 01:13](1113 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:36](1067 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:12, 12:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:40, 04:36](972 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 07:04] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:49](1080 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:29, 04:49](1083 MB) +PASS -- TEST 'conus13km_debug_intel' [15:50, 14:48](1232 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 14:53](931 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 08:31](1175 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 15:09](1296 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 07:04] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:25, 05:02](1142 MB) + +PASS -- COMPILE 'hafsw_intel' [15:13, 15:04] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:12, 06:05](740 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:24](1116 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:25, 07:29](820 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:13, 24:07](851 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:20, 28:43](873 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 07:01](495 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:30, 08:23](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:56, 03:24](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:28, 09:30](479 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:40](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:57, 04:25](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 05:42](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:31](399 MB) +PASS -- TEST 'gnv1_nested_intel' [07:16, 04:23](1714 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:11, 08:01] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:02, 13:15](582 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:12, 14:39] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:09, 13:01](666 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:00, 12:58](731 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:13, 15:05] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:00, 08:32](711 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:12, 14:16] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:19, 07:28](818 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 07:30](799 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:22](1202 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:54] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 03:00](1149 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 02:01](1112 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:20, 02:49](1015 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:54](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:53](1023 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:57](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:59](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:49](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 06:31](1030 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:06, 06:28](999 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:58](1158 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:20](2449 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 04:21](2408 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:13, 05:01] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:31](1075 MB) PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:41] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [19:20, 02:59](1142 MB) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:58](1157 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:24] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [14:34, 01:01](254 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [14:26, 00:56](321 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:32, 00:37](319 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:23] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 01:01](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:57](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:35](321 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 13:04] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [17:16, 04:08](1978 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 13:12] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:06, 04:12](1969 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 12:52] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [17:08, 03:56](1944 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:12, 12:53] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:09, 03:56](1956 MB) -PASS -- COMPILE 'atml_intel' [14:12, 13:27] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [18:34, 04:49](1862 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [16:33, 04:50](1861 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:12, 02:49](1070 MB) +PASS -- COMPILE 'atml_intel' [14:12, 13:29] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:31, 04:54](1850 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:51](1863 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:48](1052 MB) -PASS -- COMPILE 'atml_debug_intel' [09:11, 08:14] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:34, 05:53](1889 MB) +PASS -- COMPILE 'atml_debug_intel' [08:12, 07:38] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:29, 05:50](1894 MB) -PASS -- COMPILE 'atmw_intel' [13:12, 12:55] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:23, 02:07](1908 MB) +PASS -- COMPILE 'atmw_intel' [14:12, 13:37] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:21, 02:08](1908 MB) -PASS -- COMPILE 'atmaero_intel' [13:12, 12:50] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:20, 04:36](1990 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 05:20](1775 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 05:25](1787 MB) +PASS -- COMPILE 'atmaero_intel' [14:11, 13:17] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:22, 04:33](1986 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:12, 05:18](1767 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:04, 05:24](1783 MB) -PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:39] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:11, 21:06](4568 MB) +PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:34] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:53, 20:23](4561 MB) SYNOPSIS: -Starting Date/Time: 20240806 15:14:51 -Ending Date/Time: 20240806 17:05:39 -Total Time: 01h:51m:39s +Starting Date/Time: 20240808 22:06:22 +Ending Date/Time: 20240808 23:39:07 +Total Time: 01h:33m:34s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 1be8a7287f..82b2351fcc 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: -e875df6009b3d0da5f8808467e1127a1740672e1 +2b4a599fc5da5cda16fc82974e07f353b6760f77 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) - 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (201912_public_release-415-g55182e9) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (v0.1.0-1698-g0f82327) - 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (EP4-850-g9e736da1) + fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/HEAD-5-gfd59004) + d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (201912_public_release-405-gd92b739) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,238 +36,238 @@ 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-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24943 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46914 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [38:03, 31:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [52:01, 02:24](3103 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:41, 12:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:09, 02:46](1817 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [50:26, 02:11](1846 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [49:37, 02:25](974 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [12:10, 03:01](1782 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:48, 18:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [06:01, 02:02](1808 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:33, 05:58] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [18:17, 02:42](1838 MB) - -PASS -- COMPILE 's2swa_intel' [30:55, 24:35] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [59:55, 02:10](3131 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [59:55, 02:39](3130 MB) -PASS -- TEST 'cpld_restart_p8_intel' [49:22, 02:39](3057 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [59:55, 01:57](3151 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [49:24, 02:05](3076 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [59:55, 02:38](3374 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [59:55, 02:13](3126 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [59:56, 02:05](3075 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [59:55, 02:24](3138 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [00:04, 06:43](4129 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:33, 05:13](4264 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [59:55, 02:26](3108 MB) - -PASS -- COMPILE 's2sw_intel' [22:45, 16:06] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:04, 01:46](1822 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:04, 02:57](1894 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:41, 10:43] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:08, 02:51](1887 MB) - -PASS -- COMPILE 's2s_intel' [16:40, 10:29] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:08, 02:18](2869 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [14:08, 01:56](2878 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:54, 02:03](2285 MB) - -PASS -- COMPILE 's2swa_faster_intel' [32:58, 26:57] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [57:51, 02:14](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [30:53, 23:58] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [59:56, 02:33](1816 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [39:28, 02:29](999 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:00, 02:30](1804 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [26:43, 22:50] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [49:24, 02:06](1854 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [20:41, 15:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [53:28, 02:09](569 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [53:28, 02:20](1466 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [49:19, 01:42](1481 MB) -PASS -- TEST 'control_latlon_intel' [49:15, 01:34](1476 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [49:11, 01:53](1473 MB) -PASS -- TEST 'control_c48_intel' [48:57, 01:41](1561 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [48:07, 01:56](689 MB) -PASS -- TEST 'control_c192_intel' [47:45, 02:21](1578 MB) -PASS -- TEST 'control_c384_intel' [47:26, 02:49](1873 MB) -PASS -- TEST 'control_c384gdas_intel' [47:26, 04:00](1071 MB) -PASS -- TEST 'control_stochy_intel' [47:22, 02:11](525 MB) -PASS -- TEST 'control_stochy_restart_intel' [40:49, 02:00](326 MB) -PASS -- TEST 'control_lndp_intel' [47:19, 02:13](524 MB) -PASS -- TEST 'control_iovr4_intel' [46:43, 01:45](525 MB) -PASS -- TEST 'control_iovr5_intel' [45:55, 01:24](520 MB) -PASS -- TEST 'control_p8_intel' [45:14, 02:18](1758 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [43:53, 02:44](1753 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [43:53, 02:45](1761 MB) -PASS -- TEST 'control_restart_p8_intel' [38:36, 02:24](910 MB) -PASS -- TEST 'control_noqr_p8_intel' [43:46, 02:23](1751 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [36:36, 01:55](921 MB) -PASS -- TEST 'control_decomp_p8_intel' [43:46, 02:17](1752 MB) -PASS -- TEST 'control_2threads_p8_intel' [43:25, 02:34](1836 MB) -PASS -- TEST 'control_p8_lndp_intel' [43:23, 01:58](1769 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [43:19, 02:50](1812 MB) -PASS -- TEST 'control_p8_mynn_intel' [42:53, 02:14](1761 MB) -PASS -- TEST 'merra2_thompson_intel' [42:52, 03:08](1760 MB) -PASS -- TEST 'regional_control_intel' [42:27, 01:25](844 MB) -PASS -- TEST 'regional_restart_intel' [34:44, 01:19](841 MB) -PASS -- TEST 'regional_decomp_intel' [42:20, 02:11](840 MB) -PASS -- TEST 'regional_2threads_intel' [41:14, 01:41](895 MB) -PASS -- TEST 'regional_noquilt_intel' [40:49, 01:18](1170 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [40:20, 02:27](844 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [40:05, 01:19](840 MB) -PASS -- TEST 'regional_wofs_intel' [39:42, 02:13](1572 MB) - -PASS -- COMPILE 'rrfs_intel' [18:33, 14:31] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [54:35, 02:33](911 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [54:36, 02:36](1059 MB) -PASS -- TEST 'rap_decomp_intel' [54:35, 02:27](909 MB) -PASS -- TEST 'rap_2threads_intel' [54:35, 02:54](992 MB) -PASS -- TEST 'rap_restart_intel' [38:21, 02:21](779 MB) -PASS -- TEST 'rap_sfcdiff_intel' [54:35, 02:17](910 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [54:35, 02:32](909 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [37:22, 02:46](778 MB) -PASS -- TEST 'hrrr_control_intel' [54:35, 02:21](908 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [54:35, 02:21](906 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [54:36, 02:48](982 MB) -PASS -- TEST 'hrrr_control_restart_intel' [37:21, 02:15](734 MB) -PASS -- TEST 'rrfs_v1beta_intel' [54:35, 02:18](904 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [54:35, 02:02](1870 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [54:35, 02:23](1856 MB) - -PASS -- COMPILE 'csawmg_intel' [30:54, 27:28] -PASS -- TEST 'control_csawmg_intel' [36:49, 01:29](864 MB) -PASS -- TEST 'control_ras_intel' [36:36, 01:54](561 MB) - -PASS -- COMPILE 'wam_intel' [14:34, 12:43] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [53:30, 01:39](1558 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:36, 16:57] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [36:26, 02:58](1751 MB) -PASS -- TEST 'regional_control_faster_intel' [36:21, 01:21](835 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:32, 11:25] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [36:18, 02:15](1499 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [36:17, 02:21](1495 MB) -PASS -- TEST 'control_stochy_debug_intel' [35:39, 01:49](703 MB) -PASS -- TEST 'control_lndp_debug_intel' [35:20, 02:01](705 MB) -PASS -- TEST 'control_csawmg_debug_intel' [35:07, 01:30](1006 MB) -PASS -- TEST 'control_ras_debug_intel' [34:54, 02:08](707 MB) -PASS -- TEST 'control_diag_debug_intel' [34:37, 02:34](1561 MB) -PASS -- TEST 'control_debug_p8_intel' [34:12, 01:36](1786 MB) -PASS -- TEST 'regional_debug_intel' [33:41, 02:11](884 MB) -PASS -- TEST 'rap_control_debug_intel' [33:07, 01:36](1084 MB) -PASS -- TEST 'hrrr_control_debug_intel' [32:31, 01:53](1080 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [32:24, 01:49](1081 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [32:22, 01:44](1080 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [32:20, 01:43](1084 MB) -PASS -- TEST 'rap_diag_debug_intel' [31:30, 01:28](1166 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [31:17, 01:32](1084 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [31:08, 01:39](1084 MB) -PASS -- TEST 'rap_lndp_debug_intel' [31:06, 01:42](1088 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [30:31, 01:40](1085 MB) -PASS -- TEST 'rap_noah_debug_intel' [30:28, 01:48](1082 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [30:27, 01:40](1083 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [30:25, 01:25](1080 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [30:07, 01:45](1080 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [30:04, 01:23](1084 MB) -PASS -- TEST 'rap_flake_debug_intel' [30:02, 01:38](1088 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [29:53, 02:43](1087 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:26, 07:27] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [29:40, 01:40](1580 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:29, 07:54] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [29:13, 01:59](923 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [29:01, 02:16](786 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [28:42, 02:52](781 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [28:23, 02:25](843 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [28:18, 03:03](830 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:00, 02:41](780 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:57, 03:03](677 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:51, 01:20](664 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:29, 09:27] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [27:38, 01:47](998 MB) -PASS -- TEST 'conus13km_2threads_intel' [22:40, 01:58](996 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [22:30, 01:43](866 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:30, 10:58] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [26:57, 02:14](814 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:23, 06:32] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [25:34, 01:50](962 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [24:36, 01:50](960 MB) -PASS -- TEST 'conus13km_debug_intel' [24:36, 01:49](1052 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:36, 01:38](716 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [24:37, 01:35](1047 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:46, 02:11](1114 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [30:53, 28:52] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [21:25, 01:52](982 MB) - -PASS -- COMPILE 'hafsw_intel' [14:29, 12:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [23:41, 03:05](601 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [23:32, 02:07](943 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [23:29, 03:00](648 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [22:53, 02:49](674 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:53, 02:43](695 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [22:52, 02:07](377 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [22:30, 03:12](388 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [20:56, 02:34](282 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:56, 04:52](370 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [20:42, 01:42](401 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:07, 01:52](411 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:51, 01:56](479 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:05, 01:55](315 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [19:33, 16:58] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:50, 02:28](517 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:50, 20:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:44, 02:29](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:04, 02:14](703 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:31, 13:23] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:31, 03:41](701 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:29, 11:12] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:26, 02:28](651 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:22, 04:02](627 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:02, 02:13](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:38, 12:01] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [16:29, 01:44](1816 MB) - -PASS -- COMPILE 'atml_intel' [17:37, 14:56] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [11:25, 09:03] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [17:46, 14:43] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [14:55, 02:59](3028 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [14:50, 02:22](2907 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:39, 02:22](2925 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:27, 10:01] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [14:30, 02:45](4443 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:28, 11:14] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:43, 02:10](3103 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [37:08, 35:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [44:03, 02:02](1806 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:56, 01:44](1839 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [25:51, 02:15](973 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:58, 01:37](1784 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:25, 23:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [56:46, 01:09](1806 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:39, 15:18] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [04:33, 01:19](1845 MB) + +PASS -- COMPILE 's2swa_intel' [12:28, 11:22] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:43, 01:23](3132 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:43, 01:29](3132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [00:23, 02:10](3059 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:43, 01:20](3154 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [00:23, 02:09](3080 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:43, 01:47](3367 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:43, 01:29](3127 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:44, 02:20](3077 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:43, 01:30](3131 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [08:52, 03:43](4123 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [50:28, 04:22](4266 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:43, 01:35](3110 MB) + +PASS -- COMPILE 's2sw_intel' [31:01, 29:46] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [50:11, 01:02](1827 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [50:11, 01:11](1896 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:28, 11:06] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:43, 01:22](1885 MB) + +PASS -- COMPILE 's2s_intel' [12:28, 10:05] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:42, 00:43](2865 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [08:42, 01:47](2870 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:07, 01:36](2274 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:24, 21:01] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [57:47, 01:54](3130 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:26, 22:52] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:46, 01:11](1817 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [39:18, 01:36](984 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:19, 00:55](1798 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:55, 08:10] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:48, 01:36](1860 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [20:34, 19:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [48:08, 00:31](568 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [48:08, 00:35](1473 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:08, 00:27](1480 MB) +PASS -- TEST 'control_latlon_intel' [48:08, 00:28](1469 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:08, 00:37](1468 MB) +PASS -- TEST 'control_c48_intel' [48:07, 00:58](1557 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [48:07, 00:57](690 MB) +PASS -- TEST 'control_c192_intel' [48:08, 01:14](1579 MB) +PASS -- TEST 'control_c384_intel' [48:12, 02:00](1862 MB) +PASS -- TEST 'control_c384gdas_intel' [48:12, 02:43](1065 MB) +PASS -- TEST 'control_stochy_intel' [47:51, 00:23](525 MB) +PASS -- TEST 'control_stochy_restart_intel' [45:23, 01:02](329 MB) +PASS -- TEST 'control_lndp_intel' [46:39, 00:34](529 MB) +PASS -- TEST 'control_iovr4_intel' [45:22, 00:41](523 MB) +PASS -- TEST 'control_iovr5_intel' [45:19, 00:40](519 MB) +PASS -- TEST 'control_p8_intel' [45:08, 01:01](1755 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [45:08, 01:02](1762 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [45:08, 01:05](1761 MB) +PASS -- TEST 'control_restart_p8_intel' [40:23, 00:57](895 MB) +PASS -- TEST 'control_noqr_p8_intel' [44:57, 01:29](1750 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [39:35, 00:50](916 MB) +PASS -- TEST 'control_decomp_p8_intel' [44:43, 01:23](1750 MB) +PASS -- TEST 'control_2threads_p8_intel' [44:42, 01:41](1848 MB) +PASS -- TEST 'control_p8_lndp_intel' [44:08, 01:01](1761 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [44:08, 01:55](1808 MB) +PASS -- TEST 'control_p8_mynn_intel' [44:06, 01:52](1773 MB) +PASS -- TEST 'merra2_thompson_intel' [44:06, 01:44](1766 MB) +PASS -- TEST 'regional_control_intel' [43:46, 01:10](845 MB) +PASS -- TEST 'regional_restart_intel' [37:08, 00:27](841 MB) +PASS -- TEST 'regional_decomp_intel' [43:32, 00:53](842 MB) +PASS -- TEST 'regional_2threads_intel' [43:19, 00:52](904 MB) +PASS -- TEST 'regional_noquilt_intel' [43:17, 00:22](1168 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [42:56, 00:25](844 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [41:53, 00:14](841 MB) +PASS -- TEST 'regional_wofs_intel' [41:50, 00:43](1572 MB) + +PASS -- COMPILE 'rrfs_intel' [14:26, 11:53] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [54:16, 01:28](909 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [54:17, 01:05](1058 MB) +PASS -- TEST 'rap_decomp_intel' [54:16, 01:39](911 MB) +PASS -- TEST 'rap_2threads_intel' [54:16, 02:08](994 MB) +PASS -- TEST 'rap_restart_intel' [41:10, 01:02](782 MB) +PASS -- TEST 'rap_sfcdiff_intel' [54:16, 01:20](906 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [54:16, 01:41](911 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [40:22, 01:45](777 MB) +PASS -- TEST 'hrrr_control_intel' [54:16, 01:21](909 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [54:16, 01:17](906 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [54:17, 01:46](983 MB) +PASS -- TEST 'hrrr_control_restart_intel' [48:38, 01:02](735 MB) +PASS -- TEST 'rrfs_v1beta_intel' [54:16, 01:18](906 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [54:16, 01:04](1870 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [54:16, 00:19](1857 MB) + +PASS -- COMPILE 'csawmg_intel' [17:30, 16:22] +PASS -- TEST 'control_csawmg_intel' [51:13, 00:32](864 MB) +PASS -- TEST 'control_ras_intel' [51:13, 00:49](559 MB) + +PASS -- COMPILE 'wam_intel' [14:20, 13:20] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [50:11, 00:30](1562 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:39, 09:33] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [40:22, 01:57](1750 MB) +PASS -- TEST 'regional_control_faster_intel' [39:54, 00:22](837 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [18:47, 17:59] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [38:42, 01:18](1501 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [38:39, 01:26](1496 MB) +PASS -- TEST 'control_stochy_debug_intel' [38:26, 00:46](702 MB) +PASS -- TEST 'control_lndp_debug_intel' [37:43, 01:11](699 MB) +PASS -- TEST 'control_csawmg_debug_intel' [37:36, 00:31](1007 MB) +PASS -- TEST 'control_ras_debug_intel' [37:22, 01:18](706 MB) +PASS -- TEST 'control_diag_debug_intel' [37:12, 01:22](1565 MB) +PASS -- TEST 'control_debug_p8_intel' [37:08, 01:00](1791 MB) +PASS -- TEST 'regional_debug_intel' [37:07, 00:39](885 MB) +PASS -- TEST 'rap_control_debug_intel' [36:56, 00:48](1089 MB) +PASS -- TEST 'hrrr_control_debug_intel' [36:54, 00:56](1079 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [36:15, 00:51](1080 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [36:14, 00:49](1082 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [35:57, 00:45](1084 MB) +PASS -- TEST 'rap_diag_debug_intel' [35:50, 00:41](1168 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:49, 00:39](1087 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:28, 00:41](1084 MB) +PASS -- TEST 'rap_lndp_debug_intel' [34:58, 00:42](1086 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [34:06, 00:49](1088 MB) +PASS -- TEST 'rap_noah_debug_intel' [34:06, 00:55](1078 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [34:03, 00:51](1085 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [33:57, 00:46](1081 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [33:55, 00:42](1077 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [33:48, 00:41](1081 MB) +PASS -- TEST 'rap_flake_debug_intel' [33:40, 00:32](1084 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [33:22, 01:56](1088 MB) + +PASS -- COMPILE 'wam_debug_intel' [20:52, 19:56] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [33:22, 00:32](1581 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [25:03, 23:52] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [30:20, 01:29](921 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [30:18, 01:07](783 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [30:14, 02:24](779 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [30:07, 01:25](839 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:31, 02:05](830 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [29:30, 01:40](780 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [23:03, 01:32](676 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [24:22, 00:19](659 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:51, 10:21] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [39:53, 01:08](992 MB) +PASS -- TEST 'conus13km_2threads_intel' [33:10, 00:56](997 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [32:48, 00:43](871 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:29, 08:21] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:35, 01:23](810 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:46, 15:53] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [32:40, 00:51](961 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [32:20, 00:59](957 MB) +PASS -- TEST 'conus13km_debug_intel' [32:16, 00:50](1044 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [31:57, 00:33](717 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [29:19, 00:26](1046 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [29:14, 00:44](1118 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:34, 11:55] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [29:12, 00:49](984 MB) + +PASS -- COMPILE 'hafsw_intel' [11:32, 11:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [29:09, 01:31](600 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:54, 01:13](952 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:48, 01:50](652 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [28:12, 01:45](669 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:24, 01:40](698 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [27:23, 01:05](377 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [27:24, 02:13](393 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [27:23, 01:33](292 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:15, 02:36](368 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [26:17, 01:32](405 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:11, 00:58](411 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [24:17, 00:45](477 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [24:16, 00:28](310 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:29, 09:21] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:08, 01:16](513 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:38, 09:25] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:06, 00:58](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:55, 01:45](701 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:47, 15:17] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:06, 00:56](703 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:34, 12:01] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [22:40, 02:12](649 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [22:22, 02:09](625 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:47, 00:34](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:53, 14:47] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [21:47, 00:40](1822 MB) + +PASS -- COMPILE 'atml_intel' [15:44, 14:59] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [10:36, 09:49] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [16:42, 16:12] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [19:53, 01:19](3028 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [19:53, 01:46](2908 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:53, 01:54](2921 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:33, 07:21] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:41, 01:58](4442 MB) SYNOPSIS: -Starting Date/Time: 20240807 17:28:56 -Ending Date/Time: 20240807 19:15:26 -Total Time: 01h:47m:05s +Starting Date/Time: 20240809 15:38:32 +Ending Date/Time: 20240809 17:05:15 +Total Time: 01h:27m:22s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/parm/fd_ufs.yaml b/tests/parm/fd_ufs.yaml index c0189f0bdf..edfca0beed 100644 --- a/tests/parm/fd_ufs.yaml +++ b/tests/parm/fd_ufs.yaml @@ -1,1266 +1,1266 @@ - field_dictionary: - version_number: 0.0.0 - institution: National ESPC, CSC & MCL Working Groups - source: automatically generated by the NUOPC Layer - description: Community-based dictionary for shared coupling fields - entries: - # - #----------------------------------- - # section: mediator calculation for atm/ocn flux calculation - #----------------------------------- - # - - standard_name: Faox_lat - alias: mean_laten_heat_flx_atm_into_ocn - canonical_units: W m-2 - description: mediator calculation - atm/ocn surface latent heat flux - # - - standard_name: Faox_lwup - alias: mean_up_lw_flx_ocn - canonical_units: W m-2 - description: mediator calculation - long wave radiation flux over the ocean - # - - standard_name: Faox_taux - alias: stress_on_air_ocn_zonal - canonical_units: N m-2 - description: mediator calculation - # - - standard_name: Faox_tauy - alias: stress_on_air_ocn_merid - canonical_units: N m-2 - description: mediator calculation - # - - standard_name: Foxx_lwnet - alias: mean_net_lw_flx - canonical_units: W m-2 - description: mediator calculation - atm/ocn net longwave flux - # - - standard_name: Foxx_sen - canonical_units: W m-2 - alias: mean_sensi_heat_flx - description: mediator calculation - atm/ocn surface sensible heat flux - # - - standard_name: Foxx_evap - canonical_units: kg m-2 s-1 - alias: mean_evap_rate - description: mediator calculation - atm/ocn specific humidity flux - # - - standard_name: Faox_evap - canonical_units: kg m-2 s-1 - description: mediator calculation - atm/ocn specific humidity flux - #----------------------------------- - # section: atmosphere export - #----------------------------------- - # - - standard_name: Faxa_bcph - canonical_units: kg m-2 s-1 - description: atmosphere export - # - - standard_name: Faxa_ocph - canonical_units: kg m-2 s-1 - description: atmosphere export - # - - standard_name: Faxa_dstdry - canonical_units: kg m-2 s-1 - description: atmosphere export - # - - standard_name: Faxa_dstwet - canonical_units: kg m-2 s-1 - description: atmosphere export - # - #----------------------------------- - # section: atmosphere export - #----------------------------------- - # - - standard_name: Faxa_swdn - alias: inst_down_sw_flx - canonical_units: W m-2 - description: atmosphere export - mean downward SW heat flux - # - - standard_name: Faxa_lwdn - alias: inst_down_lw_flx - canonical_units: W m-2 - description: atmosphere export - mean downward LW heat flux - # - - standard_name: Faxa_rain - alias: inst_prec_rate - canonical_units: kg m-2 s-1 - description: atmosphere export - # - - standard_name: Faxa_rainc - alias: inst_prec_rate_conv - canonical_units: kg m-2 s-1 - description: atmosphere export - # - - standard_name: Faxa_rainl - alias: inst_prec_rate_large - canonical_units: kg m-2 s-1 - description: atmosphere export - # - - standard_name: Faxa_snow - alias: inst_fprec_rate - canonical_units: kg m-2 s-1 - description: atmosphere export - # - - standard_name: Faxa_snowc - alias: inst_fprec_rate_conv - canonical_units: kg m-2 s-1 - description: atmosphere export - # - - standard_name: Faxa_snowl - alias: inst_fprec_rate_large - canonical_units: kg m-2 s-1 - description: atmosphere export - # - - standard_name: Faxa_swnet - alias: inst_net_sw_flx - canonical_units: W m-2 - description: atmosphere export - # - - standard_name: Faxa_swndf - alias: inst_down_sw_ir_dif_flx - canonical_units: W m-2 - description: atmosphere export - mean surface downward nir diffuse flux - # - - standard_name: Faxa_swndr - alias: inst_down_sw_ir_dir_flx - canonical_units: W m-2 - description: atmosphere export - mean surface downward nir direct flux - # - - standard_name: Faxa_swvdf - alias: inst_down_sw_vis_dif_flx - canonical_units: W m-2 - description: atmosphere export - mean surface downward uv+vis diffuse flux - # - - standard_name: Faxa_swvdr - alias: inst_down_sw_vis_dir_flx - canonical_units: W m-2 - description: atmosphere export - mean surface downward uv+visvdirect flux - # - - standard_name: Sa_dens - alias: air_density_height_lowest - canonical_units: kg m-3 - description: atmosphere export- density at the lowest model layer - # - - standard_name: Sa_pbot - alias: inst_pres_height_lowest - canonical_units: Pa - description: atmosphere export - pressure at lowest model layer - # - - standard_name: Sa_prsl - alias: inst_pres_height_lowest_from_phys - canonical_units: Pa - description: atmosphere export - pressure at lowest model layer - # - - standard_name: Sa_pslv - alias: inst_pres_height_surface - canonical_units: Pa - description: atmosphere export - instantaneous pressure land and sea surface - # - - standard_name: Sa_ptem - canonical_units: K - description: atmosphere export - bottom layer potential temperature - # - - standard_name: Sa_shum - alias: inst_spec_humid_height_lowest - canonical_units: kg kg-1 - description: atmosphere export - bottom layer specific humidity - # - - standard_name: Sa_qa - alias: inst_spec_humid_height_lowest_from_phys - canonical_units: kg kg-1 - description: atmosphere export - bottom layer specific humidity - # - - standard_name: Sa_tbot - alias: inst_temp_height_lowest - canonical_units: K - description: atmosphere export - bottom layer temperature - # - - standard_name: Sa_tskn - alias: inst_temp_height_surface - - standard_name: Sa_tskn - alias: inst_temp_skin_temperature - canonical_units: K - description: atmosphere export - sea surface skin temperature - # - - standard_name: Sa_ta - alias: inst_temp_height_lowest_from_phys - canonical_units: K - description: atmosphere export - bottom layer temperature - # - - standard_name: Sa_u - alias: inst_zonal_wind_height_lowest - canonical_units: m s-1 - description: atmosphere export - bottom layer zonal wind - # - - standard_name: Sa_v - alias: inst_merid_wind_height_lowest - canonical_units: m s-1 - description: atmosphere export - bottom layer meridional wind - # - - standard_name: Sa_wspd - alias: inst_wind_speed_height_lowest - canonical_units: m s-1 - description: atmosphere export - bottom layer wind speed - # - - standard_name: Sa_z - alias: inst_height_lowest - canonical_units: m - description: atmosphere export - bottom layer height - # - - standard_name: Sa_topo - alias: inst_surface_height - canonical_units: m - description: atmosphere export - topographic height - # - - standard_name: Faxa_taux - alias: inst_zonal_moment_flx - - standard_name: Faxa_taux - alias: inst_zonal_moment_flx_atm - canonical_units: N m-2 - description: atmosphere export- zonal component of momentum flux - # - - standard_name: Faxa_tauy - alias: inst_merid_moment_flx - - standard_name: Faxa_tauy - alias: inst_merid_moment_flx_atm - canonical_units: N m-2 - description: atmosphere export - meridional component of momentum flux - # - - standard_name: Faxa_lwnet - canonical_units: W m-2 - alias: inst_net_lw_flx - description: atmosphere export - mean net longwave flux from atm - # - - standard_name: Faxa_sen - canonical_units: W m-2 - alias: inst_sensi_heat_flx - description: atmosphere export - sensible heat flux - # - - standard_name : Faxa_evap - canonical_units: kg m-2 s-1 - alias: inst_evap_rate - description: atmosphere export - latent heat flux conversion - # - - standard_name: Faxx_evap - canonical_units: kg m-2 s-1 - description: atmosphere import - # - - standard_name: Faxa_lat - alias: inst_laten_heat_flx - canonical_units: W m-2 - description: atmosphere export - latent heat flux - # - - standard_name: Faxx_lat - alias: mean_laten_heat_flx - canonical_units: W m-2 - description: atmosphere import - # - - standard_name: Faxx_lwup - alias: mean_up_lw_flx - canonical_units: W m-2 - description: atmosphere import - merged ocn/ice flux - # - - standard_name: Faxx_sen - alias: mean_sensi_heat_flx - canonical_units: W m-2 - description: atmosphere import - # - - standard_name: Faxx_taux - alias: mean_zonal_moment_flx - canonical_units: N m-2 - description: atmosphere import - zonal component of momentum flux - # - - standard_name: Faxx_tauy - alias: mean_merid_moment_flx - canonical_units: N m-2 - description: atmosphere import - meridional component of momentum flux - # - - standard_name: Sa_ofrac - alias: openwater_frac_in_atm - canonical_units: 1 - description: atm export to mediator - open water ocean fraction (varies with time) - # - - standard_name: Sa_u10m - alias: inst_zonal_wind_height10m - canonical_units: m s-1 - description: atmosphere export - zonal wind height 10m - - standard_name: Sa_u10m - alias: eastward_wind_at_10m_height - # - - standard_name: Sa_v10m - alias: inst_merid_wind_height10m - canonical_units: m s-1 - description: atmosphere export - meridional wind height 10m - - standard_name: Sa_v10m - alias: northward_wind_at_10m_height - # - - standard_name: Sa_wspd10m - alias: inst_wind_speed_height10m - canonical_units: m s-1 - description: atmosphere export - wind speed height 10m - # - - standard_name: Sa_t2m - alias: inst_temp_height2m - canonical_units: K - description: atmosphere export - temperature height 2m - # - - standard_name: Sa_q2m - alias: inst_spec_humid_height2m - canonical_units: kg kg -1 - description: atmosphere export - specifc humidity height 2m - # - - standard_name: canopy_moisture_storage - canonical_units: m - description: canopy moisture content - # - - standard_name: inst_aerodynamic_conductance - canonical_units: m - description: aerodynamic conductance - # - - standard_name: inst_canopy_resistance - canonical_units: s m-1 - description: canopy aerodynamic resistance - # - - standard_name: leaf_area_index - canonical_units: 1 - description: leaf area index - # - - standard_name: temperature_of_soil_layer - canonical_units: K - description: temperature in soil layer - # - - standard_name: height - canonical_units: m - description: orography - # - - standard_name: Sa_exner - alias: inst_exner_function_height_lowest - canonical_units: 1 - description: dimensionless exner function at surface adjacent layer - # - - standard_name: Sa_ustar - alias: surface_friction_velocity - canonical_units: m s-1 - description: surface friction velocity - # - #----------------------------------- - # section: sea-ice export - #----------------------------------- - # - - standard_name: Faii_evap - alias: evap_rate_atm_into_ice - canonical_units: kg m-2 s-1 - description: sea-ice export - # - - standard_name: Faii_lat - alias: laten_heat_flx_atm_into_ice - canonical_units: W m-2 - description: sea-ice export to atm - atm/ice latent heat flux - # - - standard_name: Faii_sen - alias: sensi_heat_flx_atm_into_ice - canonical_units: W m-2 - description: sea-ice export to atm - atm/ice sensible heat flux - # - - standard_name: Faii_lwup - alias: lwup_flx_ice - canonical_units: W m-2 - description: sea-ice export - outgoing logwave radiation - # - - standard_name: Faii_swnet - canonical_units: W m-2 - description: sea-ice export to atm - # - - standard_name: Faii_taux - alias: stress_on_air_ice_zonal - canonical_units: N m-2 - description: sea-ice export to atm - air ice zonal stress - # - - standard_name: Faii_tauy - alias: stress_on_air_ice_merid - canonical_units: N m-2 - description: sea-ice export - air ice meridional stress - # - - standard_name: Fioi_bcphi - canonical_units: kg m-2 s-1 - description: sea-ice export to ocean - hydrophilic black carbon flux to ocean - # - - standard_name: Fioi_bcpho - canonical_units: kg m-2 s-1 - description: sea-ice export to ocean - hydrophobic black carbon flux to ocean - # - - standard_name: Fioi_flxdst - canonical_units: kg m-2 s-1 - description: sea-ice export to ocean - dust aerosol flux to ocean - # - - standard_name: Fioi_melth - alias: net_heat_flx_to_ocn - canonical_units: W m-2 - description: sea-ice export to ocean - net heat flux to ocean - # - - standard_name: Fioi_meltw - alias: mean_fresh_water_to_ocean_rate - canonical_units: kg m-2 s-1 - description: sea-ice export to ocean - fresh water to ocean (h2o flux from melting) - # - - standard_name: Fioi_meltw_wiso - alias: mean_fresh_water_to_ocean_rate_wiso - canonical_units: kg m-2 s-1 - description: sea-ice export to ocean - fresh water to ocean (h2o flux from melting) for 16O, 18O, HDO - # - - standard_name: Fioi_salt - alias: mean_salt_rate - canonical_units: kg m-2 s-1 - description: sea-ice export to ocean - salt to ocean (salt flux from melting) - # - - standard_name: Fioi_swpen - alias: mean_sw_pen_to_ocn - canonical_units: W m-2 - description: sea-ice export to ocean - flux of shortwave through ice to ocean - # - - standard_name: Fioi_swpen_vdr - alias: mean_sw_pen_to_ocn_vis_dir_flx - canonical_units: W m-2 - description: sea-ice export to ocean - flux of vis dir shortwave through ice to ocean - # - - standard_name: Fioi_swpen_vdf - alias: mean_sw_pen_to_ocn_vis_dif_flx - canonical_units: W m-2 - description: sea-ice export to ocean - flux of vif dir shortwave through ice to ocean - # - - standard_name: Fioi_swpen_idr - alias: mean_sw_pen_to_ocn_ir_dir_flx - canonical_units: W m-2 - description: sea-ice export to ocean - flux of ir dir shortwave through ice to ocean - # - - standard_name: Fioi_swpen_idf - alias: mean_sw_pen_to_ocn_ir_dif_flx - canonical_units: W m-2 - description: sea-ice export to ocean - flux of ir dif shortwave through ice to ocean - # - - standard_name: Fioi_taux - alias: stress_on_ocn_ice_zonal - canonical_units: N m-2 - description: sea-ice export to ocean - ice ocean zonal stress - # - - standard_name: Fioi_tauy - alias: stress_on_ocn_ice_merid - canonical_units: N m-2 - description: sea-ice export to ocean - ice ocean meridional stress - # - - standard_name: Si_anidf - alias: inst_ice_ir_dif_albedo - canonical_units: 1 - description: sea-ice export to atm - # - - standard_name: Si_anidr - alias: inst_ice_ir_dir_albedo - canonical_units: 1 - description: sea-ice export to atm - # - - standard_name: Si_avsdf - alias: inst_ice_vis_dif_albedo - canonical_units: 1 - description: sea-ice export to atm - # - - standard_name: Si_avsdr - alias: inst_ice_vis_dir_albedo - canonical_units: 1 - description: sea-ice export to atm - # - - standard_name: Si_ifrac - alias: ice_fraction - canonical_units: 1 - description: sea-ice export to atm - ice fraction (varies with time) - # - - standard_name: Si_imask - alias: ice_mask - canonical_units: 1 - description: sea-ice export - ice mask - # - - standard_name: Si_qref - canonical_units: kg kg-1 - description: sea-ice export to atm - # - - standard_name: Si_t - alias: sea_ice_surface_temperature - canonical_units: K - description: sea-ice export - # - - standard_name: Si_tref - canonical_units: K - description: sea-ice export - # - - standard_name: Si_u10 - canonical_units: m/s - description: sea-ice export - # - - standard_name: Si_vice - alias: sea_ice_volume - canonical_units: m - description: sea-ice export - volume of ice per unit area - # - - standard_name: Si_snowh - canonical_units: m - description: sea-ice export - surface_snow_water_equivalent - # - - standard_name: Si_vsno - alias: snow_volume_on_sea_ice - canonical_units: m - description: sea-ice export - volume of snow per unit area - # - - standard_name: Si_thick - canonical_units: m - description: sea-ice export - ice thickness - # - - standard_name: Si_floediam - canonical_units: m - description: sea-ice export - ice floe diameter - # - #----------------------------------- - # section: ocean export to mediator - #----------------------------------- - # - - standard_name: Fioo_q - alias: freezing_melting_potential - canonical_units: W m-2 - description: ocean export - # - - standard_name: So_bldepth - alias: mixed_layer_depth - canonical_units: m - description: ocean export - # - - standard_name: So_h - alias: sea_surface_height_above_sea_level - canonical_units: m - description: ocean export - - standard_name: So_h - alias: seahgt - # - - standard_name: So_dhdx - alias: sea_surface_slope_zonal - canonical_units: m m-1 - description: ocean export - # - - standard_name: So_dhdy - alias: sea_surface_slope_merid - canonical_units: m m-1 - description: ocean export - # - - standard_name: So_duu10n - canonical_units: m2 s-2 - description: ocean export - # - - standard_name: So_fswpen - canonical_units: 1 - description: ocean export - # - - standard_name: So_ofrac - canonical_units: 1 - description: ocean export - # - - standard_name: So_omask - alias: ocean_mask - canonical_units: 1 - description: ocean export - # - - standard_name: So_qref - canonical_units: kg kg-1 - description: ocean export - # - - standard_name: So_re - canonical_units: 1 - description: ocean export - # - - standard_name: So_s - alias: s_surf - canonical_units: g kg-1 - description: ocean export - # - - standard_name: So_ssq - canonical_units: kg kg-1 - description: ocean export - # - - standard_name: So_t - alias: sea_surface_temperature - canonical_units: K - description: ocean export - # - - standard_name: So_tref - canonical_units: K - description: ocean export - # - - standard_name: So_u - alias: ocn_current_zonal - canonical_units: m s-1 - description: ocean export - # - - standard_name: So_u10 - canonical_units: m - description: ocean export - # - - standard_name: So_ustar - canonical_units: m s-1 - description: ocean export - # - - standard_name: So_v - alias: ocn_current_merid - canonical_units: m s-1 - description: ocean export - # - #----------------------------------- - # section: ocean import - #----------------------------------- - # - - standard_name: Foxx_hrain - canonical_units: W m-2 - description: to ocn heat content of rain - # - - standard_name: Foxx_hsnow - canonical_units: W m-2 - description: to ocn heat content of snow - # - - standard_name: Foxx_hevap - canonical_units: W m-2 - description: to ocn heat content of evaporation - # - - standard_name: Foxx_hcond - canonical_units: W m-2 - description: to ocn heat content of condensation - # - - standard_name: Foxx_hrofl - canonical_units: W m-2 - description: to ocn heat content of liquid runoff - # - - standard_name: Foxx_hrofi - canonical_units: W m-2 - description: to ocn heat content of ice runoff - # - - standard_name: Foxx_rofi - canonical_units: kg m-2 s-1 - description: ocean import - water flux due to runoff (frozen) - # - - standard_name: Foxx_rofl - canonical_units: kg m-2 s-1 - description: ocean import - water flux due to runoff (liquid) - # - - standard_name: Foxx_swnet - alias: mean_net_sw_flx - canonical_units: W m-2 - description: ocean import - net shortwave radiation to ocean - # - - standard_name: Foxx_swnet_vdr - alias: mean_net_sw_vis_dir_flx - canonical_units: W m-2 - description: ocean import - net shortwave visible direct radiation to ocean - # - - standard_name: Foxx_swnet_vdf - alias: mean_net_sw_vis_dif_flx - canonical_units: W m-2 - description: ocean import - net shortwave visible diffuse radiation to ocean - # - - standard_name: Foxx_swnet_idr - alias: mean_net_sw_ir_dir_flx - canonical_units: W m-2 - description: ocean import - net shortwave ir direct radiation to ocean - # - - standard_name: Foxx_swnet_idf - alias: mean_net_sw_ir_dif_flx - canonical_units: W m-2 - description: ocean import - net shortwave ir diffuse radiation to ocean - # - - standard_name: Foxx_sen - alias: mean_sensi_heat_flx - canonical_units: W m-2 - description: ocean import - sensible heat flux into ocean - # - - standard_name: Foxx_lat - canonical_units: W m-2 - description: ocean import - latent heat flux into ocean - # - - standard_name: Foxx_taux - alias: mean_zonal_moment_flx - canonical_units: N m-2 - description: ocean import - zonal surface stress to ocean - # - - standard_name: Foxx_tauy - alias: mean_merid_moment_flx - canonical_units: N m-2 - description: ocean import - meridional surface stress to ocean - # - #----------------------------------- - # mediator fields - #----------------------------------- - # - - standard_name: cpl_scalars - canonical_units: unitless - # - - standard_name: frac - canonical_units: 1 - # - - standard_name: mask - canonical_units: 1 - # - #----------------------------------- - # fields to use fluxes from mediator - #----------------------------------- - # - - standard_name: Faox_lat - alias: laten_heat_flx_atm_into_ocn - canonical_units: W m-2 - description: mediator export - atm/ocn surface latent heat flux - # - - standard_name: Faox_sen - alias: sensi_heat_flx_atm_into_ocn - canonical_units: W m-2 - description: mediator export - atm/ocn surface sensible heat flux - # - - standard_name: Faox_lwup - alias: lwup_flx_ocn - canonical_units: W m-2 - description: mediator export - long wave radiation flux over the ocean - # - - standard_name: Faox_taux - alias: stress_on_air_ocn_zonal - canonical_units: N m-2 - description: mediator export - # - - standard_name: Faox_tauy - alias: stress_on_air_ocn_merid - canonical_units: N m-2 - description: mediator export - # - #----------------------------------- - # section: atmosphere fields that need to be defined but are not used - #----------------------------------- - # - - standard_name: mean_prec_rate - canonical_units: kg m-2 s-1 - - standard_name: mean_fprec_rate - canonical_units: kg m-2 s-1 - - standard_name: mean_prec_rate_conv - canonical_units: kg m-2 s-1 - - standard_name: mean_down_lw_flx - canonical_units: W m-2 - - standard_name: inst_net_lw_flx - canonical_units: W m-2 - - standard_name: mean_down_sw_flx - canonical_units: W m-2 - - standard_name: mean_net_sw_flx - canonical_units: W m-2 - - standard_name: inst_net_sw_ir_dir_flx - canonical_units: W m-2 - - standard_name: inst_net_sw_ir_dif_flx - canonical_units: W m-2 - - standard_name: inst_net_sw_vis_dir_flx - canonical_units: W m-2 - - standard_name: inst_net_sw_vis_dif_flx - canonical_units: W m-2 - - standard_name: mean_down_sw_ir_dif_flx - canonical_units: W m-2 - - standard_name: mean_down_sw_ir_dir_flx - canonical_units: W m-2 - - standard_name: mean_down_sw_vis_dif_flx - canonical_units: W m-2 - - standard_name: mean_down_sw_vis_dir_flx - canonical_units: W m-2 - - standard_name: inst_surface_height - canonical_units: m - - standard_name: mean_zonal_moment_flx_atm - canonical_units: N m-2 - - standard_name: mean_merid_moment_flx_atm - canonical_units: N m-2 - - standard_name: inst_zonal_moment_flx_atm - canonical_units: N m-2 - - standard_name: inst_merid_moment_flx_atm - canonical_units: N m-2 - - standard_name: inst_sensi_heat_flx - canonical_units: N m-2 - - standard_name: inst_laten_heat_flx - canonical_units: N m-2 - - standard_name: inst_evap_rate - canonical_units: kg m-2 s-1 - - standard_name: inst_tracer_mass_frac - canonical_units: 1 - - standard_name: inst_tracer_up_surface_flx - canonical_units: kg m-2 s-1 - - standard_name: inst_tracer_down_surface_flx - canonical_units: kg m-2 s-1 - - standard_name: inst_tracer_clmn_mass_dens - canonical_units: g m-2 - - standard_name: inst_tracer_anth_biom_flx - canonical_units: ug m-2 s-1 - description: atmosphere export - - standard_name: inst_pres_interface - canonical_units: Pa - - standard_name: inst_pres_levels - canonical_units: Pa - - standard_name: inst_geop_interface - canonical_units: tbd - - standard_name: inst_geop_levels - canonical_units: tbd - - standard_name: inst_temp_interface - canonical_units: K - - standard_name: inst_temp_levels - canonical_units: K - - standard_name: inst_zonal_wind_levels - canonical_units: m s-1 - - standard_name: inst_merid_wind_levels - canonical_units: m s-1 - - standard_name: inst_omega_levels - canonical_units: tbd - - standard_name: inst_tracer_mass_frac - canonical_units: 1 - - standard_name: inst_soil_moisture_content - canonical_units: tbd - - standard_name: soil_type - canonical_units: tbd - - standard_name: inst_pbl_height - canonical_units: tbd - - standard_name: surface_cell_area - canonical_units: tbd - - standard_name: inst_convective_rainfall_amount - canonical_units: tbd - - standard_name: inst_spec_humid_conv_tendency_levels - canonical_units: tbd - - standard_name: inst_exchange_coefficient_heat_levels - canonical_units: tbd - - standard_name: inst_friction_velocity - canonical_units: tbd - - standard_name: inst_rainfall_amount - canonical_units: tbd - - standard_name: inst_land_sea_mask - canonical_units: tbd - - standard_name: inst_temp_height_surface - canonical_units: tbd - - standard_name: inst_up_sensi_heat_flx - canonical_units: tbd - - standard_name: inst_lwe_snow_thickness - canonical_units: tbd - - standard_name: vegetation_type - canonical_units: tbd - - standard_name: inst_vegetation_area_frac - canonical_units: tbd - - standard_name: inst_surface_roughness - canonical_units: tbd - - standard_name: inst_laten_heat_flx - canonical_units: W m-2 - - standard_name: inst_sensi_heat_flx - canonical_units: W m-2 - - standard_name: land_mask - canonical_units: 1 - - standard_name: inst_cloud_frac_levels - canonical_units: 1 - - standard_name: inst_ice_nonconv_tendency_levels - canonical_units: kg m-2 s-1 - - standard_name: inst_liq_nonconv_tendency_levels - canonical_units: kg m-2 s-1 - - standard_name: inst_surface_soil_wetness - canonical_units: 1 - - standard_name: lake_fraction - canonical_units: 1 - - standard_name: ice_fraction_in_atm - alias: sea_ice_area_fraction - canonical_units: 1 - - standard_name: ocean_fraction - canonical_units: 1 - - standard_name: surface_snow_area_fraction - canonical_units: 1 - # - #----------------------------------- - # WW3 import - #----------------------------------- - # - - standard_name: sea_surface_height_above_sea_level - canonical_units: m - description: ww3 import - # - - standard_name: sea_surface_salinity - alias: s_surf - canonical_units: g kg-1 - description: ww3 import - # - - standard_name: surface_eastward_sea_water_velocity - alias: ocn_current_zonal - canonical_units: m s-1 - description: ww3 import - # - - standard_name: surface_northward_sea_water_velocity - alias: ocn_current_merid - canonical_units: m s-1 - description: ww3 import - # - - standard_name: eastward_wind_at_10m_height - alias: inst_zonal_wind_height10m - canonical_units: m s-1 - description: ww3 import - # - - standard_name: northward_wind_at_10m_height - alias: inst_merid_wind_height10m - canonical_units: m s-1 - description: ww3 import - # - - standard_name: sea_ice_concentration - alias: ice_fraction - canonical_units: 1 - description: ww3 import - # - #----------------------------------- - # WW3 export - #----------------------------------- - # - - standard_name: Sw_z0 - alias: wave_z0_roughness_length - canonical_units: 1 - description: ww3 export - - standard_name: Sw_z0 - alias: z0rlen - # - - standard_name: Sw_pstokes_x - alias: eastward_partitioned_stokes_drift_current - canonical_units: m s-1 - description: ww3 export partitioned drift components using ungridded dimension - # - - standard_name: Sw_pstokes_y - alias: northward_partitioned_stokes_drift_current - canonical_units: m s-1 - description: ww3 export partitioned drift components using ungridded dimension - # - - standard_name: Sw_elevation_spectrum - alias: wave_elevation_spectrum - canonical_units: m2/s - description: wave elevation spectrum - # - # remaining fields are unused but required to be present - # - - standard_name: Sw_ch - alias: wave_induced_charnock_parameter - canonical_units: 1 - description: ww3 export - - standard_name: Sw_ch - alias: charno - # - - standard_name: eastward_stokes_drift_current - alias: uscurr - canonical_units: m s-1 - description: ww3 export spectrum of drift components - # - - standard_name: northward_stokes_drift_current - alias: vscurr - canonical_units: m s-1 - description: ww3 export spectrum of drift components - # - - standard_name: Sw_ustokes - alias: eastward_surface_stokes_drift_current - canonical_units: m s-1 - description: ww3 export surface drift components - - standard_name: Sw_ustokes - alias: ussx - # - - standard_name: Sw_vstokes - alias: northward_surface_stokes_drift_current - canonical_units: m s-1 - description: ww3 export using surface drift components - - standard_name: Sw_vstokes - alias: ussy - # - - standard_name: Sw_wbcuru - alias: eastward_wave_bottom_current - canonical_units: m s-1 - description: ww3 export - - standard_name: Sw_wbcuru - alias: wbcuru - # - - standard_name: Sw_wbcurv - alias: northward_wave_bottom_current - canonical_units: m s-1 - description: ww3 export - - standard_name: Sw_wbcurv - alias: wbcurv - # - - standard_name: Sw_wbcurp - alias: wave_bottom_current_period - canonical_units: s - description: ww3 export - - standard_name: Sw_wbcurp - alias: wbcurp - # - - standard_name: Sw_wavsuu - alias: eastward_wave_radiation_stress - canonical_units: N m-1 - description: ww3 export - - standard_name: Sw_wavsuu - alias: wavsuu - # - - standard_name: Sw_wavsuv - alias: eastward_northward_wave_radiation_stress - canonical_units: N m-1 - description: ww3 export - - standard_name: Sw_wavsuv - alias: wavsuv - # - - standard_name: Sw_wavsvv - alias: northward_wave_radiation_stress - canonical_units: Pa - description: ww3 export - - standard_name: Sw_wavsvv - alias: wavsvv - # - - standard_name: Sw_ustokes1 - alias: eastward_partitioned_stokes_drift_1 - canonical_units: m s-1 - description: ww3 export - - standard_name: Sw_ustokes1 - alias: x1pstk - # - - standard_name: Sw_ustokes2 - alias: eastward_partitioned_stokes_drift_2 - canonical_units: m s-1 - description: ww3 export - - standard_name: Sw_ustokes2 - alias: x2pstk - # - - standard_name: Sw_ustokes3 - alias: eastward_partitioned_stokes_drift_3 - canonical_units: m s-1 - description: ww3 export - - standard_name: Sw_ustokes3 - alias: x3pstk - # - - standard_name: Sw_vstokes1 - alias: northward_partitioned_stokes_drift_1 - canonical_units: m s-1 - description: ww3 export - - standard_name: Sw_vstokes1 - alias: y1pstk - # - - standard_name: Sw_vstokes2 - alias: northward_partitioned_stokes_drift_2 - canonical_units: m s-1 - description: ww3 export - - standard_name: Sw_vstokes2 - alias: y2pstk - # - - standard_name: Sw_vstokes3 - alias: northward_partitioned_stokes_drift_3 - canonical_units: m s-1 - description: ww3 export - - standard_name: Sw_vstokes3 - alias: y3pstk - # - #----------------------------------- - # section: FV3 atm export/import to/from JEDI - #----------------------------------- - # - - standard_name: u - canonical_units: m s-1 - alias: u_component_of_native_D_grid_wind - # - - standard_name: v - canonical_units: m s-1 - alias: v_component_of_native_D_grid_wind - # - - standard_name: ua - canonical_units: m s-1 - alias: eastward_wind - # - - standard_name: va - canonical_units: m s-1 - alias: northward_wind - # - - standard_name: t - canonical_units: K - alias: air_temperature - # - - standard_name: delp - canonical_units: Pa - alias: air_pressure_thickness - # - - standard_name: ps - canonical_units: Pa - alias: surface_pressure - # - - standard_name: sphum - canonical_units: kg kg-1 - alias: specific_humidity - # - - standard_name: ice_wat - canonical_units: kg kg-1 - alias: cloud_liquid_ice - # - - standard_name: liq_wat - canonical_units: kg kg-1 - alias: cloud_liquid_water - # - - standard_name: rainwat - canonical_units: kg kg-1 - alias: rain_water - # - - standard_name: snowwat - canonical_units: kg kg-1 - alias: snow_water - # - - standard_name: graupel - canonical_units: kg kg-1 - alias: graupel - # - - standard_name: o3mr - canonical_units: kg kg-1 - alias: ozone_mass_mixing_ratio - # - - standard_name: phis - canonical_units: m2 s-2 - alias: sfc_geopotential_height_times_grav - # - - standard_name: u_srf - canonical_units: m s-1 - alias: surface_eastward_wind - # - - standard_name: v_srf - canonical_units: m s-1 - alias: surface_northward_wind - # - # - - standard_name: t2m - canonical_units: K - alias: surface_temperature - # - - standard_name: slmsk - canonical_units: flag - description: landmask sea/land/ice=0/1/2 - # - - standard_name: weasd - canonical_units: mm - description: water equiv of acc snow depth over land and sea ice - alias: sheleg - # - - standard_name: tsea - canonical_units: K - description: surface skin temperature - # - - standard_name: vtype - canonical_units: index - description: vegetation type - # - - standard_name: stype - canonical_units: index - description: soil type - # - - standard_name: Sa_vfrac - canonical_units: frac - description: areal fractional cover of green vegetation - - standard_name: Sa_vfrac - alias: vfrac - # - - standard_name: stc - canonical_units: K - description: soil temperature content - # - - standard_name: smc - canonical_units: m3 m-3 - description: soil moisture content - # - - standard_name: snwdph - canonical_units: mm - description: snow depth in mm - # - - standard_name: f10m - canonical_units: ratio - description: fm at 10m - Ratio of sigma level 1 wind and 10m wind - # - - standard_name: Sa_zorl - canonical_units: cm - description: composite surface roughness in cm - - standard_name: Sa_zorl - alias: zorl - # - - standard_name: t2m - canonical_units: K - description: two meter temperature - # - #----------------------------------- - # section: land export - #----------------------------------- - # - - standard_name: Sl_lfrac - alias: land_fraction - canonical_units: 1 - description: land export - # - - standard_name: Sl_lfrin - canonical_units: 1 - description: land export - # - - standard_name: Sl_t - canonical_units: K - description: land export - # - - standard_name: inst_tracer_diag_aod - canonical_units: 1 - description: AOD - # - - standard_name: Sl_sfrac - alias: inst_snow_area_fraction_lnd - canonical_units: 1 - description: land export - # - - standard_name: Sl_tref - alias: inst_temp_height2m_lnd - canonical_units: K - description: mediator export to glc - no levation classes - # - - standard_name: Sl_qref - alias: inst_spec_humid_height2m_lnd - canonical_units: kg kg-1 - description: land export - # - - standard_name: Sl_q - alias: inst_spec_humid_lnd - canonical_units: kg kg-1 - description: land export - # - - standard_name: Fall_lat - alias: inst_laten_heat_flx_lnd - canonical_units: kg kg-1 m s-1 - description: land export to atm - atm/lnd latent heat flux - # - - standard_name: Fall_sen - alias: inst_sensi_heat_flx_lnd - canonical_units: K m s-1 - description: land export to atm - atm/lnd sensible heat flux - # - - standard_name: Fall_evap - alias: inst_potential_laten_heat_flx_lnd - canonical_units: W m-2 - description: land export - # - - standard_name: Fall_gflx - alias: inst_upward_heat_flux_lnd - canonical_units: W m-2 - description: land export - # - - standard_name: Fall_roff - alias: inst_runoff_rate_lnd - canonical_units: kg m-2 s-1 - description: land export - # - - standard_name: Fall_soff - alias: inst_subsurface_runoff_rate_lnd - canonical_units: kg m-2 s-1 - description: land export - # - - standard_name: Sl_cmm - alias: inst_drag_wind_speed_for_momentum - canonical_units: m s-1 - description: land export - # - - standard_name: Sl_chh - alias: inst_drag_mass_flux_for_heat_and_moisture - canonical_units: kg m-2 s-1 - description: land export - # - - standard_name: Sl_zvfun - alias: inst_func_of_roughness_length_and_vfrac - canonical_units: 1 - description: land export +field_dictionary: + version_number: 0.0.0 + institution: National ESPC, CSC & MCL Working Groups + source: automatically generated by the NUOPC Layer + description: Community-based dictionary for shared coupling fields + entries: + # + #----------------------------------- + # section: mediator calculation for atm/ocn flux calculation + #----------------------------------- + # + - standard_name: Faox_lat + alias: mean_laten_heat_flx_atm_into_ocn + canonical_units: W m-2 + description: mediator calculation - atm/ocn surface latent heat flux + # + - standard_name: Faox_lwup + alias: mean_up_lw_flx_ocn + canonical_units: W m-2 + description: mediator calculation - long wave radiation flux over the ocean + # + - standard_name: Faox_taux + alias: stress_on_air_ocn_zonal + canonical_units: N m-2 + description: mediator calculation + # + - standard_name: Faox_tauy + alias: stress_on_air_ocn_merid + canonical_units: N m-2 + description: mediator calculation + # + - standard_name: Foxx_lwnet + alias: mean_net_lw_flx + canonical_units: W m-2 + description: mediator calculation - atm/ocn net longwave flux + # + - standard_name: Foxx_sen + canonical_units: W m-2 + alias: mean_sensi_heat_flx + description: mediator calculation - atm/ocn surface sensible heat flux + # + - standard_name: Foxx_evap + canonical_units: kg m-2 s-1 + alias: mean_evap_rate + description: mediator calculation - atm/ocn specific humidity flux + # + - standard_name: Faox_evap + canonical_units: kg m-2 s-1 + description: mediator calculation - atm/ocn specific humidity flux + #----------------------------------- + # section: atmosphere export + #----------------------------------- + # + - standard_name: Faxa_bcph + canonical_units: kg m-2 s-1 + description: atmosphere export + # + - standard_name: Faxa_ocph + canonical_units: kg m-2 s-1 + description: atmosphere export + # + - standard_name: Faxa_dstdry + canonical_units: kg m-2 s-1 + description: atmosphere export + # + - standard_name: Faxa_dstwet + canonical_units: kg m-2 s-1 + description: atmosphere export + # + #----------------------------------- + # section: atmosphere export + #----------------------------------- + # + - standard_name: Faxa_swdn + alias: inst_down_sw_flx + canonical_units: W m-2 + description: atmosphere export - mean downward SW heat flux + # + - standard_name: Faxa_lwdn + alias: inst_down_lw_flx + canonical_units: W m-2 + description: atmosphere export - mean downward LW heat flux + # + - standard_name: Faxa_rain + alias: inst_prec_rate + canonical_units: kg m-2 s-1 + description: atmosphere export + # + - standard_name: Faxa_rainc + alias: inst_prec_rate_conv + canonical_units: kg m-2 s-1 + description: atmosphere export + # + - standard_name: Faxa_rainl + alias: inst_prec_rate_large + canonical_units: kg m-2 s-1 + description: atmosphere export + # + - standard_name: Faxa_snow + alias: inst_fprec_rate + canonical_units: kg m-2 s-1 + description: atmosphere export + # + - standard_name: Faxa_snowc + alias: inst_fprec_rate_conv + canonical_units: kg m-2 s-1 + description: atmosphere export + # + - standard_name: Faxa_snowl + alias: inst_fprec_rate_large + canonical_units: kg m-2 s-1 + description: atmosphere export + # + - standard_name: Faxa_swnet + alias: inst_net_sw_flx + canonical_units: W m-2 + description: atmosphere export + # + - standard_name: Faxa_swndf + alias: inst_down_sw_ir_dif_flx + canonical_units: W m-2 + description: atmosphere export - mean surface downward nir diffuse flux + # + - standard_name: Faxa_swndr + alias: inst_down_sw_ir_dir_flx + canonical_units: W m-2 + description: atmosphere export - mean surface downward nir direct flux + # + - standard_name: Faxa_swvdf + alias: inst_down_sw_vis_dif_flx + canonical_units: W m-2 + description: atmosphere export - mean surface downward uv+vis diffuse flux + # + - standard_name: Faxa_swvdr + alias: inst_down_sw_vis_dir_flx + canonical_units: W m-2 + description: atmosphere export - mean surface downward uv+visvdirect flux + # + - standard_name: Sa_dens + alias: air_density_height_lowest + canonical_units: kg m-3 + description: atmosphere export- density at the lowest model layer + # + - standard_name: Sa_pbot + alias: inst_pres_height_lowest + canonical_units: Pa + description: atmosphere export - pressure at lowest model layer + # + - standard_name: Sa_prsl + alias: inst_pres_height_lowest_from_phys + canonical_units: Pa + description: atmosphere export - pressure at lowest model layer + # + - standard_name: Sa_pslv + alias: inst_pres_height_surface + canonical_units: Pa + description: atmosphere export - instantaneous pressure land and sea surface + # + - standard_name: Sa_ptem + canonical_units: K + description: atmosphere export - bottom layer potential temperature + # + - standard_name: Sa_shum + alias: inst_spec_humid_height_lowest + canonical_units: kg kg-1 + description: atmosphere export - bottom layer specific humidity + # + - standard_name: Sa_qa + alias: inst_spec_humid_height_lowest_from_phys + canonical_units: kg kg-1 + description: atmosphere export - bottom layer specific humidity + # + - standard_name: Sa_tbot + alias: inst_temp_height_lowest + canonical_units: K + description: atmosphere export - bottom layer temperature + # + - standard_name: Sa_tskn + alias: inst_temp_height_surface + - standard_name: Sa_tskn + alias: inst_temp_skin_temperature + canonical_units: K + description: atmosphere export - sea surface skin temperature + # + - standard_name: Sa_ta + alias: inst_temp_height_lowest_from_phys + canonical_units: K + description: atmosphere export - bottom layer temperature + # + - standard_name: Sa_u + alias: inst_zonal_wind_height_lowest + canonical_units: m s-1 + description: atmosphere export - bottom layer zonal wind + # + - standard_name: Sa_v + alias: inst_merid_wind_height_lowest + canonical_units: m s-1 + description: atmosphere export - bottom layer meridional wind + # + - standard_name: Sa_wspd + alias: inst_wind_speed_height_lowest + canonical_units: m s-1 + description: atmosphere export - bottom layer wind speed + # + - standard_name: Sa_z + alias: inst_height_lowest + canonical_units: m + description: atmosphere export - bottom layer height + # + - standard_name: Sa_topo + alias: inst_surface_height + canonical_units: m + description: atmosphere export - topographic height + # + - standard_name: Faxa_taux + alias: inst_zonal_moment_flx + - standard_name: Faxa_taux + alias: inst_zonal_moment_flx_atm + canonical_units: N m-2 + description: atmosphere export- zonal component of momentum flux + # + - standard_name: Faxa_tauy + alias: inst_merid_moment_flx + - standard_name: Faxa_tauy + alias: inst_merid_moment_flx_atm + canonical_units: N m-2 + description: atmosphere export - meridional component of momentum flux + # + - standard_name: Faxa_lwnet + canonical_units: W m-2 + alias: inst_net_lw_flx + description: atmosphere export - mean net longwave flux from atm + # + - standard_name: Faxa_sen + canonical_units: W m-2 + alias: inst_sensi_heat_flx + description: atmosphere export - sensible heat flux + # + - standard_name: Faxa_evap + canonical_units: kg m-2 s-1 + alias: inst_evap_rate + description: atmosphere export - latent heat flux conversion + # + - standard_name: Faxx_evap + canonical_units: kg m-2 s-1 + description: atmosphere import + # + - standard_name: Faxa_lat + alias: inst_laten_heat_flx + canonical_units: W m-2 + description: atmosphere export - latent heat flux + # + - standard_name: Faxx_lat + alias: mean_laten_heat_flx + canonical_units: W m-2 + description: atmosphere import + # + - standard_name: Faxx_lwup + alias: mean_up_lw_flx + canonical_units: W m-2 + description: atmosphere import - merged ocn/ice flux + # + - standard_name: Faxx_sen + alias: mean_sensi_heat_flx + canonical_units: W m-2 + description: atmosphere import + # + - standard_name: Faxx_taux + alias: mean_zonal_moment_flx + canonical_units: N m-2 + description: atmosphere import - zonal component of momentum flux + # + - standard_name: Faxx_tauy + alias: mean_merid_moment_flx + canonical_units: N m-2 + description: atmosphere import - meridional component of momentum flux + # + - standard_name: Sa_ofrac + alias: openwater_frac_in_atm + canonical_units: 1 + description: atm export to mediator - open water ocean fraction (varies with time) + # + - standard_name: Sa_u10m + alias: inst_zonal_wind_height10m + canonical_units: m s-1 + description: atmosphere export - zonal wind height 10m + - standard_name: Sa_u10m + alias: eastward_wind_at_10m_height + # + - standard_name: Sa_v10m + alias: inst_merid_wind_height10m + canonical_units: m s-1 + description: atmosphere export - meridional wind height 10m + - standard_name: Sa_v10m + alias: northward_wind_at_10m_height + # + - standard_name: Sa_wspd10m + alias: inst_wind_speed_height10m + canonical_units: m s-1 + description: atmosphere export - wind speed height 10m + # + - standard_name: Sa_t2m + alias: inst_temp_height2m + canonical_units: K + description: atmosphere export - temperature height 2m + # + - standard_name: Sa_q2m + alias: inst_spec_humid_height2m + canonical_units: kg kg -1 + description: atmosphere export - specifc humidity height 2m + # + - standard_name: canopy_moisture_storage + canonical_units: m + description: canopy moisture content + # + - standard_name: inst_aerodynamic_conductance + canonical_units: m + description: aerodynamic conductance + # + - standard_name: inst_canopy_resistance + canonical_units: s m-1 + description: canopy aerodynamic resistance + # + - standard_name: leaf_area_index + canonical_units: 1 + description: leaf area index + # + - standard_name: temperature_of_soil_layer + canonical_units: K + description: temperature in soil layer + # + - standard_name: height + canonical_units: m + description: orography + # + - standard_name: Sa_exner + alias: inst_exner_function_height_lowest + canonical_units: 1 + description: dimensionless exner function at surface adjacent layer + # + - standard_name: Sa_ustar + alias: surface_friction_velocity + canonical_units: m s-1 + description: surface friction velocity + # + #----------------------------------- + # section: sea-ice export + #----------------------------------- + # + - standard_name: Faii_evap + alias: evap_rate_atm_into_ice + canonical_units: kg m-2 s-1 + description: sea-ice export + # + - standard_name: Faii_lat + alias: laten_heat_flx_atm_into_ice + canonical_units: W m-2 + description: sea-ice export to atm - atm/ice latent heat flux + # + - standard_name: Faii_sen + alias: sensi_heat_flx_atm_into_ice + canonical_units: W m-2 + description: sea-ice export to atm - atm/ice sensible heat flux + # + - standard_name: Faii_lwup + alias: lwup_flx_ice + canonical_units: W m-2 + description: sea-ice export - outgoing logwave radiation + # + - standard_name: Faii_swnet + canonical_units: W m-2 + description: sea-ice export to atm + # + - standard_name: Faii_taux + alias: stress_on_air_ice_zonal + canonical_units: N m-2 + description: sea-ice export to atm - air ice zonal stress + # + - standard_name: Faii_tauy + alias: stress_on_air_ice_merid + canonical_units: N m-2 + description: sea-ice export - air ice meridional stress + # + - standard_name: Fioi_bcphi + canonical_units: kg m-2 s-1 + description: sea-ice export to ocean - hydrophilic black carbon flux to ocean + # + - standard_name: Fioi_bcpho + canonical_units: kg m-2 s-1 + description: sea-ice export to ocean - hydrophobic black carbon flux to ocean + # + - standard_name: Fioi_flxdst + canonical_units: kg m-2 s-1 + description: sea-ice export to ocean - dust aerosol flux to ocean + # + - standard_name: Fioi_melth + alias: net_heat_flx_to_ocn + canonical_units: W m-2 + description: sea-ice export to ocean - net heat flux to ocean + # + - standard_name: Fioi_meltw + alias: mean_fresh_water_to_ocean_rate + canonical_units: kg m-2 s-1 + description: sea-ice export to ocean - fresh water to ocean (h2o flux from melting) + # + - standard_name: Fioi_meltw_wiso + alias: mean_fresh_water_to_ocean_rate_wiso + canonical_units: kg m-2 s-1 + description: sea-ice export to ocean - fresh water to ocean (h2o flux from melting) for 16O, 18O, HDO + # + - standard_name: Fioi_salt + alias: mean_salt_rate + canonical_units: kg m-2 s-1 + description: sea-ice export to ocean - salt to ocean (salt flux from melting) + # + - standard_name: Fioi_swpen + alias: mean_sw_pen_to_ocn + canonical_units: W m-2 + description: sea-ice export to ocean - flux of shortwave through ice to ocean + # + - standard_name: Fioi_swpen_vdr + alias: mean_sw_pen_to_ocn_vis_dir_flx + canonical_units: W m-2 + description: sea-ice export to ocean - flux of vis dir shortwave through ice to ocean + # + - standard_name: Fioi_swpen_vdf + alias: mean_sw_pen_to_ocn_vis_dif_flx + canonical_units: W m-2 + description: sea-ice export to ocean - flux of vif dir shortwave through ice to ocean + # + - standard_name: Fioi_swpen_idr + alias: mean_sw_pen_to_ocn_ir_dir_flx + canonical_units: W m-2 + description: sea-ice export to ocean - flux of ir dir shortwave through ice to ocean + # + - standard_name: Fioi_swpen_idf + alias: mean_sw_pen_to_ocn_ir_dif_flx + canonical_units: W m-2 + description: sea-ice export to ocean - flux of ir dif shortwave through ice to ocean + # + - standard_name: Fioi_taux + alias: stress_on_ocn_ice_zonal + canonical_units: N m-2 + description: sea-ice export to ocean - ice ocean zonal stress + # + - standard_name: Fioi_tauy + alias: stress_on_ocn_ice_merid + canonical_units: N m-2 + description: sea-ice export to ocean - ice ocean meridional stress + # + - standard_name: Si_anidf + alias: inst_ice_ir_dif_albedo + canonical_units: 1 + description: sea-ice export to atm + # + - standard_name: Si_anidr + alias: inst_ice_ir_dir_albedo + canonical_units: 1 + description: sea-ice export to atm + # + - standard_name: Si_avsdf + alias: inst_ice_vis_dif_albedo + canonical_units: 1 + description: sea-ice export to atm + # + - standard_name: Si_avsdr + alias: inst_ice_vis_dir_albedo + canonical_units: 1 + description: sea-ice export to atm + # + - standard_name: Si_ifrac + alias: ice_fraction + canonical_units: 1 + description: sea-ice export to atm - ice fraction (varies with time) + # + - standard_name: Si_imask + alias: ice_mask + canonical_units: 1 + description: sea-ice export - ice mask + # + - standard_name: Si_qref + canonical_units: kg kg-1 + description: sea-ice export to atm + # + - standard_name: Si_t + alias: sea_ice_surface_temperature + canonical_units: K + description: sea-ice export + # + - standard_name: Si_tref + canonical_units: K + description: sea-ice export + # + - standard_name: Si_u10 + canonical_units: m/s + description: sea-ice export + # + - standard_name: Si_vice + alias: sea_ice_volume + canonical_units: m + description: sea-ice export - volume of ice per unit area + # + - standard_name: Si_snowh + canonical_units: m + description: sea-ice export - surface_snow_water_equivalent + # + - standard_name: Si_vsno + alias: snow_volume_on_sea_ice + canonical_units: m + description: sea-ice export - volume of snow per unit area + # + - standard_name: Si_thick + canonical_units: m + description: sea-ice export - ice thickness + # + - standard_name: Si_floediam + canonical_units: m + description: sea-ice export - ice floe diameter + # + #----------------------------------- + # section: ocean export to mediator + #----------------------------------- + # + - standard_name: Fioo_q + alias: freezing_melting_potential + canonical_units: W m-2 + description: ocean export + # + - standard_name: So_bldepth + alias: mixed_layer_depth + canonical_units: m + description: ocean export + # + - standard_name: So_h + alias: sea_surface_height_above_sea_level + canonical_units: m + description: ocean export + - standard_name: So_h + alias: seahgt + # + - standard_name: So_dhdx + alias: sea_surface_slope_zonal + canonical_units: m m-1 + description: ocean export + # + - standard_name: So_dhdy + alias: sea_surface_slope_merid + canonical_units: m m-1 + description: ocean export + # + - standard_name: So_duu10n + canonical_units: m2 s-2 + description: ocean export + # + - standard_name: So_fswpen + canonical_units: 1 + description: ocean export + # + - standard_name: So_ofrac + canonical_units: 1 + description: ocean export + # + - standard_name: So_omask + alias: ocean_mask + canonical_units: 1 + description: ocean export + # + - standard_name: So_qref + canonical_units: kg kg-1 + description: ocean export + # + - standard_name: So_re + canonical_units: 1 + description: ocean export + # + - standard_name: So_s + alias: s_surf + canonical_units: g kg-1 + description: ocean export + # + - standard_name: So_ssq + canonical_units: kg kg-1 + description: ocean export + # + - standard_name: So_t + alias: sea_surface_temperature + canonical_units: K + description: ocean export + # + - standard_name: So_tref + canonical_units: K + description: ocean export + # + - standard_name: So_u + alias: ocn_current_zonal + canonical_units: m s-1 + description: ocean export + # + - standard_name: So_u10 + canonical_units: m + description: ocean export + # + - standard_name: So_ustar + canonical_units: m s-1 + description: ocean export + # + - standard_name: So_v + alias: ocn_current_merid + canonical_units: m s-1 + description: ocean export + # + #----------------------------------- + # section: ocean import + #----------------------------------- + # + - standard_name: Foxx_hrain + canonical_units: W m-2 + description: to ocn heat content of rain + # + - standard_name: Foxx_hsnow + canonical_units: W m-2 + description: to ocn heat content of snow + # + - standard_name: Foxx_hevap + canonical_units: W m-2 + description: to ocn heat content of evaporation + # + - standard_name: Foxx_hcond + canonical_units: W m-2 + description: to ocn heat content of condensation + # + - standard_name: Foxx_hrofl + canonical_units: W m-2 + description: to ocn heat content of liquid runoff + # + - standard_name: Foxx_hrofi + canonical_units: W m-2 + description: to ocn heat content of ice runoff + # + - standard_name: Foxx_rofi + canonical_units: kg m-2 s-1 + description: ocean import - water flux due to runoff (frozen) + # + - standard_name: Foxx_rofl + canonical_units: kg m-2 s-1 + description: ocean import - water flux due to runoff (liquid) + # + - standard_name: Foxx_swnet + alias: mean_net_sw_flx + canonical_units: W m-2 + description: ocean import - net shortwave radiation to ocean + # + - standard_name: Foxx_swnet_vdr + alias: mean_net_sw_vis_dir_flx + canonical_units: W m-2 + description: ocean import - net shortwave visible direct radiation to ocean + # + - standard_name: Foxx_swnet_vdf + alias: mean_net_sw_vis_dif_flx + canonical_units: W m-2 + description: ocean import - net shortwave visible diffuse radiation to ocean + # + - standard_name: Foxx_swnet_idr + alias: mean_net_sw_ir_dir_flx + canonical_units: W m-2 + description: ocean import - net shortwave ir direct radiation to ocean + # + - standard_name: Foxx_swnet_idf + alias: mean_net_sw_ir_dif_flx + canonical_units: W m-2 + description: ocean import - net shortwave ir diffuse radiation to ocean + # + - standard_name: Foxx_sen + alias: mean_sensi_heat_flx + canonical_units: W m-2 + description: ocean import - sensible heat flux into ocean + # + - standard_name: Foxx_lat + canonical_units: W m-2 + description: ocean import - latent heat flux into ocean + # + - standard_name: Foxx_taux + alias: mean_zonal_moment_flx + canonical_units: N m-2 + description: ocean import - zonal surface stress to ocean + # + - standard_name: Foxx_tauy + alias: mean_merid_moment_flx + canonical_units: N m-2 + description: ocean import - meridional surface stress to ocean + # + #----------------------------------- + # mediator fields + #----------------------------------- + # + - standard_name: cpl_scalars + canonical_units: unitless + # + - standard_name: frac + canonical_units: 1 + # + - standard_name: mask + canonical_units: 1 + # + #----------------------------------- + # fields to use fluxes from mediator + #----------------------------------- + # + - standard_name: Faox_lat + alias: laten_heat_flx_atm_into_ocn + canonical_units: W m-2 + description: mediator export - atm/ocn surface latent heat flux + # + - standard_name: Faox_sen + alias: sensi_heat_flx_atm_into_ocn + canonical_units: W m-2 + description: mediator export - atm/ocn surface sensible heat flux + # + - standard_name: Faox_lwup + alias: lwup_flx_ocn + canonical_units: W m-2 + description: mediator export - long wave radiation flux over the ocean + # + - standard_name: Faox_taux + alias: stress_on_air_ocn_zonal + canonical_units: N m-2 + description: mediator export + # + - standard_name: Faox_tauy + alias: stress_on_air_ocn_merid + canonical_units: N m-2 + description: mediator export + # + #----------------------------------- + # section: atmosphere fields that need to be defined but are not used + #----------------------------------- + # + - standard_name: mean_prec_rate + canonical_units: kg m-2 s-1 + - standard_name: mean_fprec_rate + canonical_units: kg m-2 s-1 + - standard_name: mean_prec_rate_conv + canonical_units: kg m-2 s-1 + - standard_name: mean_down_lw_flx + canonical_units: W m-2 + - standard_name: inst_net_lw_flx + canonical_units: W m-2 + - standard_name: mean_down_sw_flx + canonical_units: W m-2 + - standard_name: mean_net_sw_flx + canonical_units: W m-2 + - standard_name: inst_net_sw_ir_dir_flx + canonical_units: W m-2 + - standard_name: inst_net_sw_ir_dif_flx + canonical_units: W m-2 + - standard_name: inst_net_sw_vis_dir_flx + canonical_units: W m-2 + - standard_name: inst_net_sw_vis_dif_flx + canonical_units: W m-2 + - standard_name: mean_down_sw_ir_dif_flx + canonical_units: W m-2 + - standard_name: mean_down_sw_ir_dir_flx + canonical_units: W m-2 + - standard_name: mean_down_sw_vis_dif_flx + canonical_units: W m-2 + - standard_name: mean_down_sw_vis_dir_flx + canonical_units: W m-2 + - standard_name: inst_surface_height + canonical_units: m + - standard_name: mean_zonal_moment_flx_atm + canonical_units: N m-2 + - standard_name: mean_merid_moment_flx_atm + canonical_units: N m-2 + - standard_name: inst_zonal_moment_flx_atm + canonical_units: N m-2 + - standard_name: inst_merid_moment_flx_atm + canonical_units: N m-2 + - standard_name: inst_sensi_heat_flx + canonical_units: N m-2 + - standard_name: inst_laten_heat_flx + canonical_units: N m-2 + - standard_name: inst_evap_rate + canonical_units: kg m-2 s-1 + - standard_name: inst_tracer_mass_frac + canonical_units: 1 + - standard_name: inst_tracer_up_surface_flx + canonical_units: kg m-2 s-1 + - standard_name: inst_tracer_down_surface_flx + canonical_units: kg m-2 s-1 + - standard_name: inst_tracer_clmn_mass_dens + canonical_units: g m-2 + - standard_name: inst_tracer_anth_biom_flx + canonical_units: ug m-2 s-1 + description: atmosphere export + - standard_name: inst_pres_interface + canonical_units: Pa + - standard_name: inst_pres_levels + canonical_units: Pa + - standard_name: inst_geop_interface + canonical_units: tbd + - standard_name: inst_geop_levels + canonical_units: tbd + - standard_name: inst_temp_interface + canonical_units: K + - standard_name: inst_temp_levels + canonical_units: K + - standard_name: inst_zonal_wind_levels + canonical_units: m s-1 + - standard_name: inst_merid_wind_levels + canonical_units: m s-1 + - standard_name: inst_omega_levels + canonical_units: tbd + - standard_name: inst_tracer_mass_frac + canonical_units: 1 + - standard_name: inst_soil_moisture_content + canonical_units: tbd + - standard_name: soil_type + canonical_units: tbd + - standard_name: inst_pbl_height + canonical_units: tbd + - standard_name: surface_cell_area + canonical_units: tbd + - standard_name: inst_convective_rainfall_amount + canonical_units: tbd + - standard_name: inst_spec_humid_conv_tendency_levels + canonical_units: tbd + - standard_name: inst_exchange_coefficient_heat_levels + canonical_units: tbd + - standard_name: inst_friction_velocity + canonical_units: tbd + - standard_name: inst_rainfall_amount + canonical_units: tbd + - standard_name: inst_land_sea_mask + canonical_units: tbd + - standard_name: inst_temp_height_surface + canonical_units: tbd + - standard_name: inst_up_sensi_heat_flx + canonical_units: tbd + - standard_name: inst_lwe_snow_thickness + canonical_units: tbd + - standard_name: vegetation_type + canonical_units: tbd + - standard_name: inst_vegetation_area_frac + canonical_units: tbd + - standard_name: inst_surface_roughness + canonical_units: tbd + - standard_name: inst_laten_heat_flx + canonical_units: W m-2 + - standard_name: inst_sensi_heat_flx + canonical_units: W m-2 + - standard_name: land_mask + canonical_units: 1 + - standard_name: inst_cloud_frac_levels + canonical_units: 1 + - standard_name: inst_ice_nonconv_tendency_levels + canonical_units: kg m-2 s-1 + - standard_name: inst_liq_nonconv_tendency_levels + canonical_units: kg m-2 s-1 + - standard_name: inst_surface_soil_wetness + canonical_units: 1 + - standard_name: lake_fraction + canonical_units: 1 + - standard_name: ice_fraction_in_atm + alias: sea_ice_area_fraction + canonical_units: 1 + - standard_name: ocean_fraction + canonical_units: 1 + - standard_name: surface_snow_area_fraction + canonical_units: 1 + # + #----------------------------------- + # WW3 import + #----------------------------------- + # + - standard_name: sea_surface_height_above_sea_level + canonical_units: m + description: ww3 import + # + - standard_name: sea_surface_salinity + alias: s_surf + canonical_units: g kg-1 + description: ww3 import + # + - standard_name: surface_eastward_sea_water_velocity + alias: ocn_current_zonal + canonical_units: m s-1 + description: ww3 import + # + - standard_name: surface_northward_sea_water_velocity + alias: ocn_current_merid + canonical_units: m s-1 + description: ww3 import + # + - standard_name: eastward_wind_at_10m_height + alias: inst_zonal_wind_height10m + canonical_units: m s-1 + description: ww3 import + # + - standard_name: northward_wind_at_10m_height + alias: inst_merid_wind_height10m + canonical_units: m s-1 + description: ww3 import + # + - standard_name: sea_ice_concentration + alias: ice_fraction + canonical_units: 1 + description: ww3 import + # + #----------------------------------- + # WW3 export + #----------------------------------- + # + - standard_name: Sw_z0 + alias: wave_z0_roughness_length + canonical_units: 1 + description: ww3 export + - standard_name: Sw_z0 + alias: z0rlen + # + - standard_name: Sw_pstokes_x + alias: eastward_partitioned_stokes_drift_current + canonical_units: m s-1 + description: ww3 export partitioned drift components using ungridded dimension + # + - standard_name: Sw_pstokes_y + alias: northward_partitioned_stokes_drift_current + canonical_units: m s-1 + description: ww3 export partitioned drift components using ungridded dimension + # + - standard_name: Sw_elevation_spectrum + alias: wave_elevation_spectrum + canonical_units: m2/s + description: wave elevation spectrum + # + # remaining fields are unused but required to be present + # + - standard_name: Sw_ch + alias: wave_induced_charnock_parameter + canonical_units: 1 + description: ww3 export + - standard_name: Sw_ch + alias: charno + # + - standard_name: eastward_stokes_drift_current + alias: uscurr + canonical_units: m s-1 + description: ww3 export spectrum of drift components + # + - standard_name: northward_stokes_drift_current + alias: vscurr + canonical_units: m s-1 + description: ww3 export spectrum of drift components + # + - standard_name: Sw_ustokes + alias: eastward_surface_stokes_drift_current + canonical_units: m s-1 + description: ww3 export surface drift components + - standard_name: Sw_ustokes + alias: ussx + # + - standard_name: Sw_vstokes + alias: northward_surface_stokes_drift_current + canonical_units: m s-1 + description: ww3 export using surface drift components + - standard_name: Sw_vstokes + alias: ussy + # + - standard_name: Sw_wbcuru + alias: eastward_wave_bottom_current + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_wbcuru + alias: wbcuru + # + - standard_name: Sw_wbcurv + alias: northward_wave_bottom_current + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_wbcurv + alias: wbcurv + # + - standard_name: Sw_wbcurp + alias: wave_bottom_current_period + canonical_units: s + description: ww3 export + - standard_name: Sw_wbcurp + alias: wbcurp + # + - standard_name: Sw_wavsuu + alias: eastward_wave_radiation_stress + canonical_units: N m-1 + description: ww3 export + - standard_name: Sw_wavsuu + alias: wavsuu + # + - standard_name: Sw_wavsuv + alias: eastward_northward_wave_radiation_stress + canonical_units: N m-1 + description: ww3 export + - standard_name: Sw_wavsuv + alias: wavsuv + # + - standard_name: Sw_wavsvv + alias: northward_wave_radiation_stress + canonical_units: Pa + description: ww3 export + - standard_name: Sw_wavsvv + alias: wavsvv + # + - standard_name: Sw_ustokes1 + alias: eastward_partitioned_stokes_drift_1 + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_ustokes1 + alias: x1pstk + # + - standard_name: Sw_ustokes2 + alias: eastward_partitioned_stokes_drift_2 + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_ustokes2 + alias: x2pstk + # + - standard_name: Sw_ustokes3 + alias: eastward_partitioned_stokes_drift_3 + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_ustokes3 + alias: x3pstk + # + - standard_name: Sw_vstokes1 + alias: northward_partitioned_stokes_drift_1 + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_vstokes1 + alias: y1pstk + # + - standard_name: Sw_vstokes2 + alias: northward_partitioned_stokes_drift_2 + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_vstokes2 + alias: y2pstk + # + - standard_name: Sw_vstokes3 + alias: northward_partitioned_stokes_drift_3 + canonical_units: m s-1 + description: ww3 export + - standard_name: Sw_vstokes3 + alias: y3pstk + # + #----------------------------------- + # section: FV3 atm export/import to/from JEDI + #----------------------------------- + # + - standard_name: u + canonical_units: m s-1 + alias: u_component_of_native_D_grid_wind + # + - standard_name: v + canonical_units: m s-1 + alias: v_component_of_native_D_grid_wind + # + - standard_name: ua + canonical_units: m s-1 + alias: eastward_wind + # + - standard_name: va + canonical_units: m s-1 + alias: northward_wind + # + - standard_name: t + canonical_units: K + alias: air_temperature + # + - standard_name: delp + canonical_units: Pa + alias: air_pressure_thickness + # + - standard_name: ps + canonical_units: Pa + alias: surface_pressure + # + - standard_name: sphum + canonical_units: kg kg-1 + alias: specific_humidity + # + - standard_name: ice_wat + canonical_units: kg kg-1 + alias: cloud_liquid_ice + # + - standard_name: liq_wat + canonical_units: kg kg-1 + alias: cloud_liquid_water + # + - standard_name: rainwat + canonical_units: kg kg-1 + alias: rain_water + # + - standard_name: snowwat + canonical_units: kg kg-1 + alias: snow_water + # + - standard_name: graupel + canonical_units: kg kg-1 + alias: graupel + # + - standard_name: o3mr + canonical_units: kg kg-1 + alias: ozone_mass_mixing_ratio + # + - standard_name: phis + canonical_units: m2 s-2 + alias: sfc_geopotential_height_times_grav + # + - standard_name: u_srf + canonical_units: m s-1 + alias: surface_eastward_wind + # + - standard_name: v_srf + canonical_units: m s-1 + alias: surface_northward_wind + # + # + - standard_name: t2m + canonical_units: K + alias: surface_temperature + # + - standard_name: slmsk + canonical_units: flag + description: landmask sea/land/ice=0/1/2 + # + - standard_name: weasd + canonical_units: mm + description: water equiv of acc snow depth over land and sea ice + alias: sheleg + # + - standard_name: tsea + canonical_units: K + description: surface skin temperature + # + - standard_name: vtype + canonical_units: index + description: vegetation type + # + - standard_name: stype + canonical_units: index + description: soil type + # + - standard_name: Sa_vfrac + canonical_units: frac + description: areal fractional cover of green vegetation + - standard_name: Sa_vfrac + alias: vfrac + # + - standard_name: stc + canonical_units: K + description: soil temperature content + # + - standard_name: smc + canonical_units: m3 m-3 + description: soil moisture content + # + - standard_name: snwdph + canonical_units: mm + description: snow depth in mm + # + - standard_name: f10m + canonical_units: ratio + description: fm at 10m - Ratio of sigma level 1 wind and 10m wind + # + - standard_name: Sa_zorl + canonical_units: cm + description: composite surface roughness in cm + - standard_name: Sa_zorl + alias: zorl + # + - standard_name: t2m + canonical_units: K + description: two meter temperature + # + #----------------------------------- + # section: land export + #----------------------------------- + # + - standard_name: Sl_lfrac + alias: land_fraction + canonical_units: 1 + description: land export + # + - standard_name: Sl_lfrin + canonical_units: 1 + description: land export + # + - standard_name: Sl_t + canonical_units: K + description: land export + # + - standard_name: inst_tracer_diag_aod + canonical_units: 1 + description: AOD + # + - standard_name: Sl_sfrac + alias: inst_snow_area_fraction_lnd + canonical_units: 1 + description: land export + # + - standard_name: Sl_tref + alias: inst_temp_height2m_lnd + canonical_units: K + description: mediator export to glc - no levation classes + # + - standard_name: Sl_qref + alias: inst_spec_humid_height2m_lnd + canonical_units: kg kg-1 + description: land export + # + - standard_name: Sl_q + alias: inst_spec_humid_lnd + canonical_units: kg kg-1 + description: land export + # + - standard_name: Fall_lat + alias: inst_laten_heat_flx_lnd + canonical_units: kg kg-1 m s-1 + description: land export to atm - atm/lnd latent heat flux + # + - standard_name: Fall_sen + alias: inst_sensi_heat_flx_lnd + canonical_units: K m s-1 + description: land export to atm - atm/lnd sensible heat flux + # + - standard_name: Fall_evap + alias: inst_potential_laten_heat_flx_lnd + canonical_units: W m-2 + description: land export + # + - standard_name: Fall_gflx + alias: inst_upward_heat_flux_lnd + canonical_units: W m-2 + description: land export + # + - standard_name: Fall_roff + alias: inst_runoff_rate_lnd + canonical_units: kg m-2 s-1 + description: land export + # + - standard_name: Fall_soff + alias: inst_subsurface_runoff_rate_lnd + canonical_units: kg m-2 s-1 + description: land export + # + - standard_name: Sl_cmm + alias: inst_drag_wind_speed_for_momentum + canonical_units: m s-1 + description: land export + # + - standard_name: Sl_chh + alias: inst_drag_mass_flux_for_heat_and_moisture + canonical_units: kg m-2 s-1 + description: land export + # + - standard_name: Sl_zvfun + alias: inst_func_of_roughness_length_and_vfrac + canonical_units: 1 + description: land export diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index c82ee2d1b8..6f049cf161 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -451,7 +451,7 @@ EOF fi cat << EOF >> "${ROCOTO_XML}" - ${BUILD_CORES} + 1:ppn=${BUILD_CORES} ${BUILD_WALLTIME} &RUNDIR_ROOT;/compile_${COMPILE_ID}.log ${NATIVE} From f26d5380643ebabf5d4665a5a02e28c467760748 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 13 Aug 2024 15:57:45 +0000 Subject: [PATCH 15/33] Address reviewers comments --- FV3 | 2 +- tests/rt.conf | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 8168a66d9d..b56c4863de 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 8168a66d9da8e45a62b1cea452d37ac2da3c928b +Subproject commit b56c4863de299415d234ed2221632822ceb40bcb diff --git a/tests/rt.conf b/tests/rt.conf index 2a644b651d..dd7f7dd8cd 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -434,3 +434,6 @@ RUN | cpld_debug_pdlib_p8 | + hera hercules ### CDEPS Data Atmosphere test ### COMPILE | datm_cdeps | gnu | -DAPP=NG-GODAS | + hera hercules | fv3 | RUN | datm_cdeps_control_cfsr | + hera hercules | baseline | + +# UFS with MPAS dynamical core +COMPILE | atm_mpas_dyn32 | intel | -DAPP=ATMMPAS -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | mpas | \ No newline at end of file From 4c2f9005ad86ba61d3f53191c28a745398e61e6c Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 13 Aug 2024 17:51:30 +0000 Subject: [PATCH 16/33] Address comments --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index b56c4863de..64afb902eb 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b56c4863de299415d234ed2221632822ceb40bcb +Subproject commit 64afb902eb2ae364bc6679d60253012898160188 From 6d0454cb9a07f679e6d6fbf83a83d8e4add998c5 Mon Sep 17 00:00:00 2001 From: jiandewang Date: Sat, 17 Aug 2024 14:18:14 -0400 Subject: [PATCH 17/33] update to MOM6 main 20240729 commit (gfdl-to-main-2024-05-31) (#2381) * using MOM6 test branch add MOM_dynamics_split_RK2b.F90 and MOM_EOS_base_type.F90 in cmake list add extra 8PE for cpld_debug_pdlib job set DEFAULT_ANSWER_DATE=20231231 in 5x5 case add USE_HUYNH_STENCIL_BUG = True in MOM_input using MOM6 restart file as BL for sfs and hafs_mom jobs * remove USE_HUYNH_STENCIL_BUG = True in MOM_input switch FIX_USTAR_GUSTLESS_BUG=F to USTAR_GUSTLESS_BUG=T * switch FIX_USTAR_GUSTLESS_BUG to USTAR_GUSTLESS_BUG for MOM_input_hafs * set USE_HUYNH_STENCIL_BUG = True --- MOM6-interface/MOM6 | 2 +- MOM6-interface/mom6_files.cmake | 2 + tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_derecho.log | 629 +++++++-------- tests/logs/RegressionTests_gaea.log | 550 ++++++------- tests/logs/RegressionTests_hera.log | 709 ++++++++--------- tests/logs/RegressionTests_hercules.log | 732 +++++++++--------- tests/logs/RegressionTests_orion.log | 546 ++++++------- tests/logs/RegressionTests_wcoss2.log | 460 +++++------ tests/parm/MOM_input_025.IN | 6 +- tests/parm/MOM_input_050.IN | 6 +- tests/parm/MOM_input_100.IN | 6 +- tests/parm/MOM_input_500.IN | 5 + tests/parm/MOM_input_hafs | 6 +- tests/test_changes.list | 52 ++ tests/tests/cpld_control_sfs | 3 +- tests/tests/cpld_debug_pdlib_p8 | 1 + ...nal_storm_following_1nest_atm_ocn_wav_mom6 | 3 +- 21 files changed, 1904 insertions(+), 1918 deletions(-) diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 4b8777eb08..00f8ea2023 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 4b8777eb08b065d8a95e5317b6270a7a67ccf93e +Subproject commit 00f8ea2023f5ed58f0605cea373094f65ee90f64 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index fbe95fdce7..98fb78776e 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -36,6 +36,7 @@ list(APPEND mom6_src_files MOM6/src/core/MOM_continuity_PPM.F90 MOM6/src/core/MOM_density_integrals.F90 MOM6/src/core/MOM_dynamics_split_RK2.F90 + MOM6/src/core/MOM_dynamics_split_RK2b.F90 MOM6/src/core/MOM_dynamics_unsplit.F90 MOM6/src/core/MOM_dynamics_unsplit_RK2.F90 MOM6/src/core/MOM_forcing_type.F90 @@ -59,6 +60,7 @@ list(APPEND mom6_src_files MOM6/src/diagnostics/MOM_sum_output.F90 MOM6/src/diagnostics/MOM_wave_speed.F90 + MOM6/src/equation_of_state/MOM_EOS_base_type.F90 MOM6/src/equation_of_state/MOM_EOS.F90 MOM6/src/equation_of_state/MOM_EOS_Jackett06.F90 MOM6/src/equation_of_state/MOM_EOS_Roquet_SpV.F90 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 2fc1026343..cab475be3a 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240730 +export BL_DATE=20240813 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 5fc896fd29..9c5a701824 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Aug 9 04:00:06 UTC 2024 +Wed Aug 14 04:49:29 UTC 2024 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_3660377/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1991485/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 = 279.679964 - 0: The maximum resident set size (KB) = 1460412 + 0: The total amount of wall time = 284.606332 + 0: The maximum resident set size (KB) = 1454664 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_3660377/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1991485/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 = 986.199169 - 0: The maximum resident set size (KB) = 1426460 + 0: The total amount of wall time = 963.742336 + 0: The maximum resident set size (KB) = 1417032 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_3660377/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1991485/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 = 250.630229 - 0: The maximum resident set size (KB) = 1408568 + 0: The total amount of wall time = 244.954476 + 0: The maximum resident set size (KB) = 1425708 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_3660377/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1991485/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 = 248.429764 - 0: The maximum resident set size (KB) = 1428500 + 0: The total amount of wall time = 246.793628 + 0: The maximum resident set size (KB) = 1424252 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_3660377/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1991485/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 = 255.808429 - 0: The maximum resident set size (KB) = 1426564 + 0: The total amount of wall time = 246.591406 + 0: The maximum resident set size (KB) = 1425312 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_3660377/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1991485/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 = 248.579185 - 0: The maximum resident set size (KB) = 1433372 + 0: The total amount of wall time = 253.919221 + 0: The maximum resident set size (KB) = 1425460 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_3660377/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1991485/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 = 253.035278 - 0: The maximum resident set size (KB) = 1426628 + 0: The total amount of wall time = 247.819336 + 0: The maximum resident set size (KB) = 1425916 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Aug 9 05:05:03 UTC 2024 -Elapsed time: 01h:04m:57s. Have a nice day! +Wed Aug 14 05:57:13 UTC 2024 +Elapsed time: 01h:07m:47s. 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 fbada5b633..9f82d1cb58 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 @@ -Fri Aug 9 02:56:32 UTC 2024 +Wed Aug 14 03:34:34 UTC 2024 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_2767517/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_802869/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 = 1360.287918 - 0: The maximum resident set size (KB) = 1522784 + 0: The total amount of wall time = 1485.131443 + 0: The maximum resident set size (KB) = 1540540 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_2767517/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_802869/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 = 431.635030 - 0: The maximum resident set size (KB) = 1531952 + 0: The total amount of wall time = 679.652936 + 0: The maximum resident set size (KB) = 1529736 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_2767517/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_802869/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 = 432.002387 - 0: The maximum resident set size (KB) = 1541276 + 0: The total amount of wall time = 432.966302 + 0: The maximum resident set size (KB) = 1528124 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Aug 9 04:00:06 UTC 2024 -Elapsed time: 01h:03m:35s. Have a nice day! +Wed Aug 14 04:49:26 UTC 2024 +Elapsed time: 01h:14m:53s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index b99fa78e5c..d77ab86262 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Aug 9 00:27:51 UTC 2024 +Tue Aug 13 21:40:20 UTC 2024 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_2714443/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3112206/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 = 1379.789847 - 0: The maximum resident set size (KB) = 770252 + 0: The total amount of wall time = 1417.012128 + 0: The maximum resident set size (KB) = 777980 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_2714443/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3112206/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 = 2222.469710 - 0: The maximum resident set size (KB) = 742740 + 0: The total amount of wall time = 2254.022804 + 0: The maximum resident set size (KB) = 743156 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_2714443/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3112206/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 = 2152.921801 - 0: The maximum resident set size (KB) = 742124 + 0: The total amount of wall time = 2149.586191 + 0: The maximum resident set size (KB) = 720988 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_2714443/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3112206/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 = 2261.335740 - 0: The maximum resident set size (KB) = 720504 + 0: The total amount of wall time = 2187.962794 + 0: The maximum resident set size (KB) = 719432 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Aug 9 02:56:30 UTC 2024 -Elapsed time: 02h:28m:41s. Have a nice day! +Wed Aug 14 03:34:33 UTC 2024 +Elapsed time: 05h:54m:14s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index a80a8b4b99..2cf8485615 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: -8cb23af867d56961352ff5fab97656c3a4c6b936 +09690a092f727349365fac81c2d2096127bb8f12 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) + 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) + 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + 5c9aee9ab1f61281bc62f38e0a22c13fb23c520a MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10196-g5c9aee9ab) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,363 +35,286 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_85245 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240813 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_80910 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-a) - HPC PROJECT ACCOUNT: scsg0002 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [26:18, 24:28] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:33, 06:05](3203 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:22, 26:54] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:09, 15:04](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:04, 16:38](1937 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:08, 08:13](1072 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:09, 16:55](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:23, 26:26] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:24, 14:34](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:15, 15:08] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:13, 23:04](1933 MB) - -PASS -- COMPILE 's2swa_intel' [25:21, 24:03] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:15, 06:30](3221 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:39, 06:44](3221 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:05, 04:19](3149 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:15, 06:38](3247 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:03, 04:06](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:32, 06:12](3732 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:47, 06:39](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:27, 05:38](3534 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:37, 06:38](3228 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:14, 09:52](3816 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:01, 07:00](3618 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [34:56, 10:59](4518 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:24, 06:10](3202 MB) - -PASS -- COMPILE 's2sw_intel' [24:21, 22:14] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:56, 05:03](1919 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:08, 05:21](1986 MB) - -PASS -- COMPILE 's2swa_debug_intel' [18:20, 14:52] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:14, 08:23](3304 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:19, 13:52] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:00, 06:10](1956 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [21:20, 18:17] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:08, 05:11](1991 MB) - -PASS -- COMPILE 's2s_intel' [22:18, 18:46] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [35:35, 07:02](2891 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [31:33, 02:44](2902 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:42, 01:46](2309 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:20, 26:11] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:56, 06:29](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:24, 24:46] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:17, 15:03](1929 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:29, 08:30](1088 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:01, 16:58](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:25, 13:32] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:06, 24:45](1944 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:26, 15:20] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:03, 03:33](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:48, 02:29](1565 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:10, 02:35](1571 MB) -PASS -- TEST 'control_latlon_intel' [09:47, 02:32](1562 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:45, 02:33](1562 MB) -PASS -- TEST 'control_c48_intel' [19:47, 06:10](1575 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [18:59, 05:22](708 MB) -PASS -- TEST 'control_c192_intel' [16:56, 08:51](1674 MB) -PASS -- TEST 'control_c384_intel' [19:16, 09:02](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [19:56, 07:31](1175 MB) -PASS -- TEST 'control_stochy_intel' [06:06, 01:36](621 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:47, 00:55](438 MB) -PASS -- TEST 'control_lndp_intel' [06:07, 01:26](622 MB) -PASS -- TEST 'control_iovr4_intel' [07:08, 02:12](622 MB) -PASS -- TEST 'control_iovr5_intel' [07:08, 02:14](623 MB) -PASS -- TEST 'control_p8_intel' [09:19, 03:19](1858 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:22, 03:21](1859 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:03, 03:15](1861 MB) -PASS -- TEST 'control_restart_p8_intel' [05:47, 02:08](1004 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:43, 03:15](1851 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:30, 02:17](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:40, 03:26](1852 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:01, 03:12](1937 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:41, 05:08](1857 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:54, 04:09](1912 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:59, 03:18](1863 MB) -PASS -- TEST 'merra2_thompson_intel' [07:55, 03:28](1858 MB) -PASS -- TEST 'regional_control_intel' [08:30, 05:03](858 MB) -PASS -- TEST 'regional_restart_intel' [05:11, 03:29](862 MB) -PASS -- TEST 'regional_decomp_intel' [08:58, 05:27](870 MB) -PASS -- TEST 'regional_noquilt_intel' [07:56, 05:02](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:02, 05:03](863 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:03, 05:18](868 MB) -PASS -- TEST 'regional_wofs_intel' [08:13, 05:46](1595 MB) - -PASS -- COMPILE 'rrfs_intel' [42:28, 14:11] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:16, 06:18](1004 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:26, 03:57](1156 MB) -PASS -- TEST 'rap_decomp_intel' [11:16, 06:32](1004 MB) -PASS -- TEST 'rap_2threads_intel' [09:26, 05:52](1081 MB) -PASS -- TEST 'rap_restart_intel' [05:27, 03:17](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:15, 06:16](1002 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:15, 06:32](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:25, 04:47](875 MB) -PASS -- TEST 'hrrr_control_intel' [07:40, 03:18](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:39, 03:29](996 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:14, 02:55](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:01, 01:56](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:30, 06:10](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:50, 07:32](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:54, 07:14](1947 MB) - -PASS -- COMPILE 'csawmg_intel' [39:31, 13:00] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:22, 06:31](955 MB) -PASS -- TEST 'control_ras_intel' [04:39, 03:00](658 MB) - -PASS -- COMPILE 'wam_intel' [38:32, 12:52] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:20, 10:23](1644 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [37:22, 13:24] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:46, 03:15](1857 MB) -PASS -- TEST 'regional_control_faster_intel' [07:14, 05:06](858 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [37:32, 15:50] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:22, 02:43](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:18, 02:34](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:47, 02:57](808 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:49, 02:46](807 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:23, 04:48](1115 MB) -PASS -- TEST 'control_ras_debug_intel' [03:58, 02:43](815 MB) -PASS -- TEST 'control_diag_debug_intel' [06:57, 02:43](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [06:17, 03:28](1906 MB) -PASS -- TEST 'regional_debug_intel' [19:34, 16:34](919 MB) -PASS -- TEST 'rap_control_debug_intel' [06:51, 04:56](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:54, 04:46](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:54, 04:49](1189 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:39, 04:46](1193 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:51, 04:45](1193 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:18, 04:58](1271 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:51, 04:54](1192 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:49, 04:58](1192 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:51, 04:46](1196 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:57, 04:46](1188 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:53, 04:42](1187 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:49, 04:45](1189 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:45, 07:32](1186 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:50, 04:42](1185 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:01, 05:52](1193 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:52, 04:54](1187 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:27, 08:02](1199 MB) - -PASS -- COMPILE 'wam_debug_intel' [30:27, 08:42] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:09, 12:08](1694 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:26, 12:50] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:10, 03:47](1019 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:25, 05:11](884 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:36, 02:57](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:25, 04:55](944 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:38, 02:33](938 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:36, 03:00](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:33, 03:59](790 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:47, 01:37](775 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [26:23, 12:50] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:35, 02:04](1073 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:59, 01:12](1070 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:56, 01:15](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [21:18, 13:09] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 03:43](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [17:17, 09:08] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:46, 04:39](1068 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:45, 04:30](1070 MB) -PASS -- TEST 'conus13km_debug_intel' [17:24, 13:50](1148 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:30, 14:23](830 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:14, 08:16](1145 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:12, 13:54](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:13, 09:00] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:49, 04:47](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [21:21, 19:58] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:49, 04:51](704 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:40, 05:25](1043 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:57, 06:45](756 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:11, 11:15](770 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:28, 12:29](794 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 04:47](461 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:58, 05:55](475 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:18, 02:27](387 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_global_multiple_4nests_atm_intel' [, ]( MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:20, 03:28](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:58, 03:15](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:54, 04:05](567 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:43, 01:21](418 MB) -PASS -- TEST 'gnv1_nested_intel' [08:48, 04:30](1713 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:22, 10:46] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:45, 12:38](620 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:25, 18:59] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:55, 07:27](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:24, 07:25](679 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:24, 20:24] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:32, 05:33](665 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:18, 17:52] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:25, 06:03](737 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:27, 06:00](720 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:42, 16:24](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:22, 09:42] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:47, 02:34](757 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:04, 01:36](759 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:52, 02:25](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:55, 02:29](653 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:49, 02:27](649 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:51, 02:32](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:55, 02:36](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:48, 02:26](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:46, 05:50](696 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:44, 05:51](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:34](770 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 03:59](2033 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:07, 04:02](2033 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [13:19, 07:30] ( 7 warnings 2 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'datm_cdeps_debug_cfsr_intel' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:15, 09:59] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:46, 02:34](767 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [08:19, 03:20] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:58, 01:26](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:09, 01:17](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:00, 01:12](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:36, 15:38] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:09, 04:25](1906 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:20, 14:24] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:52, 04:06](1902 MB) - -PASS -- COMPILE 'atml_intel' [17:31, 16:32] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:30, 08:44](1891 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:37, 08:16](1889 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:06, 04:01](1037 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:27, 12:28] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:38, 06:45](1927 MB) - -PASS -- COMPILE 'atmw_intel' [16:21, 15:23] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:07, 02:31](1882 MB) - -PASS -- COMPILE 'atmaero_intel' [15:23, 14:46] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:20, 04:32](3122 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:26, 04:29](3003 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:20, 04:33](3008 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:14, 09:50] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:41, 22:29](4542 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:18, 21:22] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:54, 05:54](3206 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:17, 23:23] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:22, 14:30](1911 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 15:56](1944 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 08:13](1058 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:10, 16:52](1886 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:19, 23:19] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:57, 14:25](1909 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:15, 11:55] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:04, 22:45](1937 MB) + +PASS -- COMPILE 's2swa_intel' [22:18, 21:07] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:46, 06:28](3220 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:05, 06:33](3223 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:04, 04:23](3147 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:45, 06:35](3247 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:17, 04:08](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:37, 06:08](3733 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:37, 06:15](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:37, 05:33](3536 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:05, 06:32](3234 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:49, 09:38](3815 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:31, 06:52](3620 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:56, 10:39](4519 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [31:12, 07:10](4666 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:30, 06:13](3205 MB) + +PASS -- COMPILE 's2sw_intel' [20:18, 19:28] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:42, 04:56](1925 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:52, 04:57](1986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:16, 11:44] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:10, 08:19](3299 MB) + +PASS -- COMPILE 's2sw_debug_intel' [12:16, 10:56] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:34, 05:53](1959 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:16, 15:49] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:05, 04:58](1989 MB) + +PASS -- COMPILE 's2s_intel' [17:15, 16:00] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:14, 06:45](2889 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:16, 02:25](2890 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:08, 01:32](2312 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:23, 24:27] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:46, 06:20](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:22, 22:21] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:02, 14:41](1924 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:16, 07:58](1105 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:46, 16:38](1893 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:18, 10:47] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:49, 24:44](1961 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:21, 14:06] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:50, 03:26](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:08, 02:27](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 02:28](1573 MB) +PASS -- TEST 'control_latlon_intel' [04:11, 02:25](1563 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:14, 02:28](1564 MB) +PASS -- TEST 'control_c48_intel' [08:18, 06:10](1576 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:56, 05:20](711 MB) +PASS -- TEST 'control_c192_intel' [12:10, 08:48](1679 MB) +PASS -- TEST 'control_c384_intel' [17:12, 08:55](1945 MB) +PASS -- TEST 'control_c384gdas_intel' [17:01, 07:14](1189 MB) +PASS -- TEST 'control_stochy_intel' [02:43, 01:29](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:40, 00:53](435 MB) +PASS -- TEST 'control_lndp_intel' [02:41, 01:24](624 MB) +PASS -- TEST 'control_iovr4_intel' [03:55, 02:08](619 MB) +PASS -- TEST 'control_iovr5_intel' [03:49, 02:08](623 MB) +PASS -- TEST 'control_p8_intel' [05:31, 03:18](1861 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:21, 03:02](1856 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:22, 03:09](1856 MB) +PASS -- TEST 'control_restart_p8_intel' [04:38, 02:02](989 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:13, 03:08](1846 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:42, 02:06](1010 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:01, 03:24](1848 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:01, 02:58](1934 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:51, 05:02](1856 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:04, 03:55](1909 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:07, 03:19](1858 MB) +PASS -- TEST 'merra2_thompson_intel' [06:02, 03:33](1864 MB) +PASS -- TEST 'regional_control_intel' [07:17, 04:52](858 MB) +PASS -- TEST 'regional_restart_intel' [05:03, 02:57](860 MB) +PASS -- TEST 'regional_decomp_intel' [07:23, 05:03](856 MB) +PASS -- TEST 'regional_noquilt_intel' [06:04, 04:46](1188 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:51, 04:48](862 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:58, 04:53](864 MB) +PASS -- TEST 'regional_wofs_intel' [07:05, 05:40](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [13:19, 12:32] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:36, 06:12](1003 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:56, 03:42](1143 MB) +PASS -- TEST 'rap_decomp_intel' [08:36, 06:26](1007 MB) +PASS -- TEST 'rap_2threads_intel' [08:37, 05:43](1085 MB) +PASS -- TEST 'rap_restart_intel' [05:34, 03:15](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:42, 06:09](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:42, 06:25](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:26, 04:37](878 MB) +PASS -- TEST 'hrrr_control_intel' [05:13, 03:15](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:13, 03:18](1001 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:13, 02:48](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:53, 01:48](828 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:43, 06:02](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:11, 07:28](1952 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:15, 07:13](1943 MB) + +PASS -- COMPILE 'csawmg_intel' [12:19, 11:26] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:14, 06:26](960 MB) +PASS -- TEST 'control_ras_intel' [04:47, 02:52](654 MB) + +PASS -- COMPILE 'wam_intel' [13:19, 11:42] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:54, 10:13](1643 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:19, 11:59] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:48, 03:07](1853 MB) +PASS -- TEST 'regional_control_faster_intel' [06:20, 04:45](857 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:20, 14:21] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:33](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:31](1600 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:40, 02:52](810 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:43, 02:38](808 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:04, 04:42](1111 MB) +PASS -- TEST 'control_ras_debug_intel' [03:45, 02:42](814 MB) +PASS -- TEST 'control_diag_debug_intel' [05:30, 02:35](1658 MB) +PASS -- TEST 'control_debug_p8_intel' [05:08, 03:21](1892 MB) +PASS -- TEST 'regional_debug_intel' [19:01, 16:48](925 MB) +PASS -- TEST 'rap_control_debug_intel' [06:38, 04:46](1187 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:39, 04:37](1185 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:34, 04:39](1192 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:42, 04:49](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:46, 04:47](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:30, 04:58](1269 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:52, 04:44](1187 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:01, 04:53](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:03, 04:46](1191 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:48, 04:41](1189 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:58, 04:40](1184 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:53, 04:45](1187 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:55, 07:32](1184 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:51, 04:42](1181 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:48, 05:51](1193 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:50, 04:43](1185 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:15, 07:59](1198 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:13, 07:33] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:33, 12:12](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:19, 11:10] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:52, 03:31](1021 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:23, 05:09](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:51, 02:49](881 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:24, 04:54](948 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 02:26](941 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:39, 02:55](876 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 03:55](793 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:38, 01:33](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:27] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:38, 01:54](1076 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:47, 01:00](1069 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:03, 01:09](960 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:23, 11:35] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:54, 03:39](905 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:18, 07:36] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:54, 04:33](1064 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:44, 04:34](1062 MB) +PASS -- TEST 'conus13km_debug_intel' [17:08, 13:39](1151 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:56, 13:45](829 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 07:56](1140 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:59, 13:40](1208 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:17, 07:17] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:43, 04:39](1091 MB) + +PASS -- COMPILE 'hafsw_intel' [18:20, 17:34] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:46, 04:36](697 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:02, 05:07](1052 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:45, 06:30](749 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:55, 11:04](769 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:19, 12:14](791 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:19, 04:37](463 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:49, 05:46](476 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:05, 02:18](387 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:11, 06:13](451 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:32, 03:19](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:37, 03:06](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:36, 03:50](568 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:13](419 MB) +PASS -- TEST 'gnv1_nested_intel' [07:31, 04:15](1712 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:18, 08:47] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:28, 12:30](619 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:20, 17:07] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:43, 07:16](614 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:40, 07:19](678 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:23, 18:28] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:32, 05:26](668 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:19, 15:40] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:30, 05:43](738 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:25, 05:45](722 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:14](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:24, 08:22] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:39, 02:29](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:34, 01:34](755 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:49, 02:21](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:45, 02:25](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:30, 02:24](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:35, 02:31](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:33, 02:30](767 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:41, 02:21](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:43, 05:45](697 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:48, 05:48](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:28](767 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:54, 03:55](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:56, 03:58](2038 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:17, 05:53] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:43, 05:13](751 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:18, 08:24] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:45, 02:28](768 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:16, 02:44] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:40, 01:12](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:38, 01:07](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:44](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:20, 13:36] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:48, 03:48](1907 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:20, 12:21] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:29, 03:56](1898 MB) + +PASS -- COMPILE 'atml_intel' [15:32, 14:32] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:45, 06:42](1885 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:41, 06:56](1882 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:15, 03:50](1033 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:20, 10:41] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:42, 06:13](1919 MB) + +PASS -- COMPILE 'atmw_intel' [14:24, 13:39] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:22, 02:16](1874 MB) + +PASS -- COMPILE 'atmaero_intel' [14:22, 12:52] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:03, 04:07](3124 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:52, 04:19](2998 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:25](3015 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:19, 07:54] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:10, 22:09](4545 MB) SYNOPSIS: -Starting Date/Time: 20240808 18:27:21 -Ending Date/Time: 20240808 20:33:18 -Total Time: 02h:07m:14s +Starting Date/Time: 20240816 07:35:36 +Ending Date/Time: 20240816 09:14:55 +Total Time: 01h:40m:14s Compiles Completed: 41/41 -Tests Completed: 181/184 -Failed Tests: -* TEST cpld_restart_bmark_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2278/tests/logs/log_derecho/run_cpld_restart_bmark_p8_intel.log -* TEST hafs_global_multiple_4nests_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2278/tests/logs/log_derecho/run_hafs_global_multiple_4nests_atm_intel.log -* TEST datm_cdeps_debug_cfsr_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2278/tests/logs/log_derecho/run_datm_cdeps_debug_cfsr_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -be00f82a5b69e02f347d8334d4b13292804e83f5 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_65928 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_intel' [25:26, 23:56] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_bmark_p8_intel' [26:43, 11:15](4518 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:58, 07:56](4664 MB) - -PASS -- COMPILE 'hafsw_intel' [21:24, 19:55] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:03, 06:30](449 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 07:28] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:15](738 MB) - -SYNOPSIS: -Starting Date/Time: 20240809 07:25:10 -Ending Date/Time: 20240809 08:43:35 -Total Time: 01h:18m:42s -Compiles Completed: 3/3 -Tests Completed: 4/4 +Tests Completed: 184/184 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index f9064a2595..a21c4acb72 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -8cb23af867d56961352ff5fab97656c3a4c6b936 +09690a092f727349365fac81c2d2096127bb8f12 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) + 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) + 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + 5c9aee9ab1f61281bc62f38e0a22c13fb23c520a MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10196-g5c9aee9ab) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,285 +35,285 @@ 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-20240730 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_110577 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240813 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_12729 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:13, 18:58] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:58, 08:02](3205 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:15, 22:46] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:37, 14:17](1913 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [34:13, 14:16](1935 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [26:36, 06:52](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:27, 14:54](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 23:42] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:53, 14:19](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:16, 13:04] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [40:21, 25:16](1917 MB) - -PASS -- COMPILE 's2swa_intel' [19:13, 18:42] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:53, 08:33](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:51, 08:39](3220 MB) -PASS -- TEST 'cpld_restart_p8_intel' [31:08, 05:21](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:41, 08:32](3247 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [30:07, 05:06](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:46, 06:59](3464 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:35, 08:32](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:33, 07:54](3167 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:59, 08:38](3224 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [22:06, 11:38](3449 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [29:26, 07:27](3607 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [46:33, 13:06](4208 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:29, 09:15](4359 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:40, 08:18](3211 MB) - -PASS -- COMPILE 's2sw_intel' [19:13, 18:14] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:41, 05:33](1929 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:41, 05:59](1988 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:37] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [23:35, 10:08](3281 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:16, 12:18] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [21:13, 06:14](1954 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:14, 15:42] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [17:49, 05:42](1995 MB) - -PASS -- COMPILE 's2s_intel' [15:14, 15:02] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [19:17, 06:32](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [14:30, 02:07](2876 MB) -PASS -- TEST 'cpld_restart_c48_intel' [13:13, 01:13](2288 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:15, 19:40] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [28:55, 07:57](3223 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:17, 22:35] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [40:48, 15:19](1927 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:18, 07:47](1090 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:40, 17:37](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:10, 14:23] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:22, 27:07](1956 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:12, 14:26] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [21:47, 04:04](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [25:17, 03:26](1560 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:15, 03:10](1565 MB) -PASS -- TEST 'control_latlon_intel' [25:05, 03:07](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:17, 03:05](1563 MB) -PASS -- TEST 'control_c48_intel' [27:23, 06:37](1568 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [16:56, 05:42](697 MB) -PASS -- TEST 'control_c192_intel' [31:07, 09:49](1670 MB) -PASS -- TEST 'control_c384_intel' [40:31, 18:39](1928 MB) -PASS -- TEST 'control_c384gdas_intel' [38:25, 14:39](1153 MB) -PASS -- TEST 'control_stochy_intel' [23:35, 02:02](619 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:40, 01:02](425 MB) -PASS -- TEST 'control_lndp_intel' [23:41, 01:49](619 MB) -PASS -- TEST 'control_iovr4_intel' [25:39, 02:48](616 MB) -PASS -- TEST 'control_iovr5_intel' [25:37, 02:40](616 MB) -PASS -- TEST 'control_p8_intel' [28:42, 03:19](1848 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [29:02, 03:36](1850 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [27:46, 03:22](1852 MB) -PASS -- TEST 'control_restart_p8_intel' [06:36, 02:37](997 MB) -PASS -- TEST 'control_noqr_p8_intel' [27:05, 03:17](1843 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:37, 02:22](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [18:30, 03:25](1850 MB) -PASS -- TEST 'control_2threads_p8_intel' [17:30, 02:49](1928 MB) -PASS -- TEST 'control_p8_lndp_intel' [17:58, 05:16](1849 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [14:37, 04:11](1905 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:46, 03:21](1863 MB) -PASS -- TEST 'merra2_thompson_intel' [11:35, 03:38](1856 MB) -PASS -- TEST 'regional_control_intel' [09:42, 04:35](848 MB) -PASS -- TEST 'regional_restart_intel' [07:01, 02:56](849 MB) -PASS -- TEST 'regional_decomp_intel' [09:43, 04:45](851 MB) -PASS -- TEST 'regional_2threads_intel' [08:45, 02:59](987 MB) -PASS -- TEST 'regional_noquilt_intel' [07:45, 04:27](1179 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 04:38](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:20, 04:42](849 MB) -PASS -- TEST 'regional_wofs_intel' [08:38, 06:26](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [15:14, 14:32] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:46, 07:14](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:21, 04:13](1152 MB) -PASS -- TEST 'rap_decomp_intel' [09:25, 07:34](1006 MB) -PASS -- TEST 'rap_2threads_intel' [09:33, 06:42](1087 MB) -PASS -- TEST 'rap_restart_intel' [05:06, 03:48](878 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:52, 07:26](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:50, 07:33](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:43, 05:25](877 MB) -PASS -- TEST 'hrrr_control_intel' [06:22, 04:20](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:22, 04:19](1001 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:20, 03:10](1075 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:48, 02:16](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:41, 06:50](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:54, 09:10](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:47, 08:46](1947 MB) - -PASS -- COMPILE 'csawmg_intel' [16:12, 15:37] -PASS -- TEST 'control_csawmg_intel' [10:56, 07:03](957 MB) -PASS -- TEST 'control_ras_intel' [06:37, 03:32](653 MB) - -PASS -- COMPILE 'wam_intel' [14:12, 13:52] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:21, 11:58](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:12, 14:07] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:59, 03:42](1847 MB) -PASS -- TEST 'regional_control_faster_intel' [06:54, 04:30](844 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:15, 14:33] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:26, 03:03](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:06, 03:13](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:42, 03:27](793 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:34, 03:07](794 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:45, 04:30](1099 MB) -PASS -- TEST 'control_ras_debug_intel' [04:43, 03:04](801 MB) -PASS -- TEST 'control_diag_debug_intel' [03:56, 03:02](1652 MB) -PASS -- TEST 'control_debug_p8_intel' [04:43, 03:17](1888 MB) -PASS -- TEST 'regional_debug_intel' [17:52, 16:21](888 MB) -PASS -- TEST 'rap_control_debug_intel' [07:08, 05:22](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:53, 05:16](1173 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 05:09](1177 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:35, 05:08](1177 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:45, 05:11](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:54, 05:18](1261 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:44, 05:14](1176 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:52, 05:15](1182 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:53, 05:08](1182 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:00, 05:05](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:01, 04:58](1176 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:49, 05:04](1180 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:55, 07:56](1175 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:03, 04:55](1170 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:41, 05:52](1178 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:41, 05:05](1179 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:53, 09:21](1179 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:12, 10:18] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:16, 14:15](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:12, 14:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:21, 04:40](1004 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:02, 06:54](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:21, 04:14](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:11, 06:18](933 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:42, 03:47](924 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:20, 04:01](875 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:19, 05:13](773 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:42, 02:07](757 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 13:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:06, 02:13](1086 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:42, 01:16](1062 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:08, 02:40](964 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 14:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:25, 04:34](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 10:37] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:45, 04:56](1051 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:48, 05:08](1052 MB) -PASS -- TEST 'conus13km_debug_intel' [17:11, 14:12](1136 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:35](807 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:27, 08:25](1113 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:37, 14:07](1200 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:12, 10:30] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:48, 05:07](1079 MB) - -PASS -- COMPILE 'hafsw_intel' [18:11, 17:42] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:00, 05:30](683 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:42, 04:37](1033 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:38, 07:43](728 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:24, 11:54](758 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:02, 13:17](784 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:09, 05:28](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:57, 06:48](484 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:00, 03:04](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:48, 08:04](430 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:28, 03:56](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:48, 03:36](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:32, 05:00](557 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:32, 01:47](399 MB) -PASS -- TEST 'gnv1_nested_intel' [12:01, 06:51](1706 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:11, 13:08] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:11, 14:04](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:14, 17:25] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:04, 08:34](598 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:15, 08:01](777 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:13, 18:10] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:48, 06:10](778 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:19, 17:20] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:03, 06:19](719 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:55, 06:24](707 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:43, 20:04](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:13, 13:06] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:31, 02:39](761 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:42](751 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:28, 02:27](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:35, 02:28](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:26, 02:31](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:26, 02:34](749 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:27, 02:36](749 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:38, 02:25](640 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:09, 06:09](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:33, 06:00](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:30, 02:34](761 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:48, 04:39](2029 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:34, 04:39](2029 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 08:36] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:03, 05:36](733 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 13:20] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:29, 02:33](752 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 03:25] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:24, 02:30](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:15, 01:34](455 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:14, 02:11](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:15, 15:37] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:02, 04:31](1917 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:14, 14:55] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:09, 04:17](1903 MB) - -PASS -- COMPILE 'atml_intel' [16:12, 15:46] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:58, 08:20](1881 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:54, 08:31](1882 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:56, 05:16](1023 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:17, 11:39] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:48, 06:37](1922 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 14:04] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:20, 02:23](1884 MB) - -PASS -- COMPILE 'atmaero_intel' [16:15, 15:29] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:25, 07:16](3118 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 07:15](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:19, 07:12](3018 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:15, 11:37] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:59, 18:16](4485 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:16, 22:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:13, 08:33](3207 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 24:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:29, 14:29](1913 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:55, 15:04](1934 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:51, 07:24](1069 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:53, 15:32](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:12, 25:36] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:00, 13:31](1909 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:12, 17:16] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:17, 25:03](1941 MB) + +PASS -- COMPILE 's2swa_intel' [22:12, 21:57] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:43, 08:51](3222 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:59, 08:08](3223 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:32, 05:32](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:36, 08:36](3246 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:39, 05:51](3172 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:45, 07:21](3464 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:24, 08:34](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:17, 08:16](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:55, 08:55](3224 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:41, 11:32](3447 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:55, 08:12](3604 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:51, 13:16](4205 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:54, 09:53](4361 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:36, 08:54](3212 MB) + +PASS -- COMPILE 's2sw_intel' [22:12, 21:21] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:25, 05:20](1928 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:31, 05:43](1995 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:16, 16:14] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:01, 10:23](3284 MB) + +PASS -- COMPILE 's2sw_debug_intel' [17:16, 16:11] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:50, 06:07](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:14, 17:33] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:00, 05:32](1993 MB) + +PASS -- COMPILE 's2s_intel' [19:14, 18:52] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:25, 06:31](2873 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:48, 02:01](2877 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:37, 01:13](2288 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:12, 23:20] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:15, 08:33](3223 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:12, 22:50] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:49, 15:26](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:53, 07:23](1098 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:40, 17:55](1903 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:13, 15:51] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:11, 27:55](1945 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:11, 15:51] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:42, 03:50](665 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:17, 03:52](1560 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:46, 03:55](1565 MB) +PASS -- TEST 'control_latlon_intel' [07:22, 03:46](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:47, 03:49](1563 MB) +PASS -- TEST 'control_c48_intel' [08:49, 06:43](1568 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:47, 05:47](697 MB) +PASS -- TEST 'control_c192_intel' [16:23, 10:44](1670 MB) +PASS -- TEST 'control_c384_intel' [21:20, 19:02](1928 MB) +PASS -- TEST 'control_c384gdas_intel' [17:28, 14:51](1153 MB) +PASS -- TEST 'control_stochy_intel' [03:39, 02:11](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:46, 01:02](425 MB) +PASS -- TEST 'control_lndp_intel' [03:47, 02:10](619 MB) +PASS -- TEST 'control_iovr4_intel' [03:46, 02:43](615 MB) +PASS -- TEST 'control_iovr5_intel' [03:45, 02:52](616 MB) +PASS -- TEST 'control_p8_intel' [05:51, 03:26](1848 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:21, 03:24](1849 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 03:21](1851 MB) +PASS -- TEST 'control_restart_p8_intel' [06:20, 02:09](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:47, 03:27](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:20, 02:37](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:34, 03:28](1849 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:41, 02:51](1926 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:08, 05:44](1849 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:53, 04:23](1904 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:52, 03:54](1863 MB) +PASS -- TEST 'merra2_thompson_intel' [06:35, 03:49](1856 MB) +PASS -- TEST 'regional_control_intel' [06:02, 04:41](849 MB) +PASS -- TEST 'regional_restart_intel' [05:43, 03:10](847 MB) +PASS -- TEST 'regional_decomp_intel' [08:18, 05:21](850 MB) +PASS -- TEST 'regional_2threads_intel' [05:53, 03:02](990 MB) +PASS -- TEST 'regional_noquilt_intel' [08:14, 04:55](1175 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:08, 04:59](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:46, 04:47](855 MB) +PASS -- TEST 'regional_wofs_intel' [09:47, 06:04](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 15:02] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:48, 06:55](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 04:10](1151 MB) +PASS -- TEST 'rap_decomp_intel' [10:18, 07:22](1007 MB) +PASS -- TEST 'rap_2threads_intel' [08:48, 06:15](1089 MB) +PASS -- TEST 'rap_restart_intel' [08:15, 03:33](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:50, 07:02](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:18, 07:19](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:13, 04:58](877 MB) +PASS -- TEST 'hrrr_control_intel' [05:41, 03:54](1001 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:40, 04:03](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:40, 03:15](1077 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:43, 02:07](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:50, 06:48](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 08:05](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:22, 07:47](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [15:12, 14:50] +PASS -- TEST 'control_csawmg_intel' [09:41, 06:55](958 MB) +PASS -- TEST 'control_ras_intel' [07:38, 04:00](653 MB) + +PASS -- COMPILE 'wam_intel' [16:12, 15:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:23, 12:28](1649 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 16:13] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:27, 03:37](1847 MB) +PASS -- TEST 'regional_control_faster_intel' [07:48, 04:58](844 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:14, 16:20] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:03, 03:34](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:55, 03:11](1596 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:34](795 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:51](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:45, 04:20](1101 MB) +PASS -- TEST 'control_ras_debug_intel' [05:32, 03:10](802 MB) +PASS -- TEST 'control_diag_debug_intel' [06:55, 03:17](1660 MB) +PASS -- TEST 'control_debug_p8_intel' [06:46, 03:29](1890 MB) +PASS -- TEST 'regional_debug_intel' [19:52, 16:27](899 MB) +PASS -- TEST 'rap_control_debug_intel' [09:15, 05:25](1184 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:52, 05:26](1175 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:07, 05:21](1179 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:13, 05:23](1178 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:14, 05:23](1184 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:44, 05:18](1263 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:39, 05:26](1179 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:38, 05:35](1184 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:41, 05:30](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 05:18](1184 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:32, 05:11](1178 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 05:31](1182 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 08:12](1177 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:36, 04:56](1172 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:59](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:36, 05:09](1181 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:15, 08:30](1181 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:15, 11:49] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:15, 13:37](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:15, 14:48] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:09, 03:53](1010 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:19, 06:04](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:15, 03:30](875 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:11, 05:17](936 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:04, 03:34](921 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:50, 03:41](875 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:07, 04:10](773 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:44, 02:14](757 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:15, 14:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:03, 02:38](1085 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:08, 01:09](1062 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:19, 01:46](963 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:17, 14:35] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:34](905 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 11:40] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 05:04](1051 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 05:00](1052 MB) +PASS -- TEST 'conus13km_debug_intel' [18:48, 14:17](1136 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:47, 14:50](807 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:15, 08:36](1114 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:51, 14:40](1200 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:15, 11:57] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:39, 05:09](1080 MB) + +PASS -- COMPILE 'hafsw_intel' [19:11, 18:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:24, 05:23](686 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:49, 04:52](1035 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:52, 07:42](726 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:26, 11:43](758 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:56, 12:57](784 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:23, 05:27](461 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:34, 06:54](482 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:39, 03:11](369 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:01, 08:10](432 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:09, 03:48](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:18, 03:45](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:28, 04:44](557 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:53, 01:42](399 MB) +PASS -- TEST 'gnv1_nested_intel' [15:04, 05:46](1706 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:14, 14:44] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:32, 12:55](586 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:15, 19:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:51, 07:53](604 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:40, 07:48](780 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:24, 19:25] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:58, 06:00](776 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:17, 18:23] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [15:27, 06:32](720 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:26, 06:35](705 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:30, 20:05](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [16:14, 15:47] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:30, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:27, 02:39](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:58, 02:33](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:59, 02:28](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:57, 02:32](651 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:59, 02:34](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:56, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:02, 02:25](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:17, 06:14](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:10, 06:07](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:36, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:30, 04:42](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:32, 04:39](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:16, 10:09] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:29, 05:35](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [16:15, 14:46] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:28, 02:39](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 05:01] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:02, 03:37](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:56, 02:46](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:53, 01:05](456 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:19, 17:14] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:37, 05:00](1910 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:16, 16:42] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:55, 03:56](1896 MB) + +PASS -- COMPILE 'atml_intel' [18:12, 17:30] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:26, 07:18](1882 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:16, 07:20](1882 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:54, 03:54](1031 MB) + +PASS -- COMPILE 'atml_debug_intel' [16:13, 15:38] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:58, 06:17](1922 MB) + +PASS -- COMPILE 'atmw_intel' [18:11, 17:10] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:56, 02:32](1883 MB) + +PASS -- COMPILE 'atmaero_intel' [17:20, 16:30] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:30, 06:30](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:23, 06:41](3009 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:38, 07:04](3018 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [14:18, 13:34] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:57, 18:19](4491 MB) SYNOPSIS: -Starting Date/Time: 20240808 20:31:36 -Ending Date/Time: 20240808 22:33:34 -Total Time: 02h:03m:10s +Starting Date/Time: 20240816 00:57:59 +Ending Date/Time: 20240816 02:44:27 +Total Time: 01h:47m:39s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index c585b44b12..353d884173 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -47a543052e09892e0825465e5699e061faf068cb +a47ca68b4eeb1b3b20286c3aa830c1ab471df18e Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,10 +9,10 @@ Submodule hashes used in testing: 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) + 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + 5c9aee9ab1f61281bc62f38e0a22c13fb23c520a MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10196-g5c9aee9ab) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -24,374 +24,375 @@ 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2101635 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240813 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_470521 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:13, 13:08] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:24, 05:44](3306 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:41] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [41:08, 17:26](1979 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:10, 18:00](2148 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:06, 08:20](1246 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:05, 19:28](1876 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 16:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [40:45, 16:56](1966 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:25] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:10, 23:16](1931 MB) - -PASS -- COMPILE 's2swa_intel' [14:13, 13:09] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [23:12, 05:51](3338 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:30, 05:58](3333 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:16, 03:34](3255 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [24:09, 05:54](3378 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:15, 03:30](3282 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:13, 05:29](3635 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [24:08, 05:50](3335 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [25:09, 04:47](3222 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [25:19, 05:51](3356 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [37:17, 10:15](3537 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:40, 06:23](3631 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [41:40, 09:31](4298 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:41, 06:03](4378 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [23:10, 05:26](3304 MB) - -PASS -- COMPILE 's2sw_intel' [13:14, 12:13] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:53, 04:53](2001 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:00, 04:22](2061 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:24] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [20:16, 08:38](3391 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:18] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:03, 05:52](1965 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:13, 12:01] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:01, 04:19](2058 MB) - -PASS -- COMPILE 's2s_intel' [13:13, 11:30] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:48, 09:05](3051 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [08:48, 02:41](3042 MB) -PASS -- TEST 'cpld_restart_c48_intel' [14:39, 01:33](2491 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:35] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [22:08, 05:31](3333 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [34:02, 17:30](1999 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:07, 08:21](1267 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:00, 20:00](1923 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:40] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [52:12, 26:05](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:13, 11:07] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [16:26, 03:21](699 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [14:39, 02:54](1601 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:42, 03:01](1605 MB) -PASS -- TEST 'control_latlon_intel' [08:33, 02:55](1593 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:49, 02:58](1600 MB) -PASS -- TEST 'control_c48_intel' [12:45, 07:34](1722 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:29, 06:28](846 MB) -PASS -- TEST 'control_c192_intel' [13:57, 10:48](1740 MB) -PASS -- TEST 'control_c384_intel' [14:13, 10:39](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [11:50, 08:01](1378 MB) -PASS -- TEST 'control_stochy_intel' [03:21, 01:40](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:22, 01:00](499 MB) -PASS -- TEST 'control_lndp_intel' [02:23, 01:36](662 MB) -PASS -- TEST 'control_iovr4_intel' [03:23, 02:30](656 MB) -PASS -- TEST 'control_iovr5_intel' [03:22, 02:30](657 MB) -PASS -- TEST 'control_p8_intel' [04:54, 03:07](1885 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:00, 03:11](1877 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:51, 03:02](1887 MB) -PASS -- TEST 'control_restart_p8_intel' [03:48, 01:46](1124 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:51, 03:02](1881 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:49, 01:45](1167 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:47, 03:13](1873 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:47, 02:56](1975 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:25](1886 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:54, 04:06](1949 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:52, 03:10](1891 MB) -PASS -- TEST 'merra2_thompson_intel' [04:46, 03:29](1888 MB) -PASS -- TEST 'regional_control_intel' [06:32, 05:33](1087 MB) -PASS -- TEST 'regional_restart_intel' [03:31, 02:50](1090 MB) -PASS -- TEST 'regional_decomp_intel' [06:33, 05:48](1081 MB) -PASS -- TEST 'regional_2threads_intel' [04:37, 03:30](1090 MB) -PASS -- TEST 'regional_noquilt_intel' [06:37, 05:17](1392 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:39, 05:19](1095 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:32, 05:22](1099 MB) -PASS -- TEST 'regional_wofs_intel' [07:34, 06:52](1906 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 10:02] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [23:39, 07:49](1112 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:06, 04:12](1258 MB) -PASS -- TEST 'rap_decomp_intel' [23:39, 08:11](1033 MB) -PASS -- TEST 'rap_2threads_intel' [22:45, 07:21](1170 MB) -PASS -- TEST 'rap_restart_intel' [04:46, 04:07](1098 MB) -PASS -- TEST 'rap_sfcdiff_intel' [22:43, 07:47](1104 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:40, 08:11](1040 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:44, 05:55](1136 MB) -PASS -- TEST 'hrrr_control_intel' [19:41, 04:01](1042 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [17:52, 04:10](1026 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:43, 03:47](1104 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:15](994 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:52, 07:42](1095 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:21](1991 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:10](2073 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 09:54] -PASS -- TEST 'control_csawmg_intel' [07:37, 06:09](1019 MB) -PASS -- TEST 'control_ras_intel' [04:21, 03:17](748 MB) - -PASS -- COMPILE 'csawmg_gnu' [18:13, 04:20] -PASS -- TEST 'control_csawmg_gnu' [09:37, 08:30](742 MB) - -PASS -- COMPILE 'wam_intel' [20:14, 09:50] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:53, 11:13](1675 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [24:15, 10:11] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:54, 02:48](1889 MB) -PASS -- TEST 'regional_control_faster_intel' [05:36, 04:50](1084 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [23:12, 07:28] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:42, 02:40](1629 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:42, 02:40](1631 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:22, 03:05](833 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:52](830 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:33, 04:27](1142 MB) -PASS -- TEST 'control_ras_debug_intel' [03:23, 02:51](831 MB) -PASS -- TEST 'control_diag_debug_intel' [03:44, 02:46](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [03:39, 03:05](1915 MB) -PASS -- TEST 'regional_debug_intel' [18:35, 17:57](1091 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 05:09](1217 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:24, 05:01](1214 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:22, 04:59](1221 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 05:04](1216 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 05:09](1218 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:36, 05:17](1300 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:13](1216 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 05:06](1222 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:22, 05:01](1223 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 05:06](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:26, 05:01](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 04:59](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 08:14](1213 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 05:00](1214 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 06:10](1215 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:25, 05:04](1219 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:39, 08:53](1222 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [20:12, 04:29] -PASS -- TEST 'control_csawmg_debug_gnu' [03:32, 02:19](724 MB) - -PASS -- COMPILE 'wam_debug_intel' [17:12, 04:46] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:49, 13:43](1697 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:12, 09:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:02, 03:53](1121 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:31, 06:26](1068 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:36, 03:23](988 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 06:08](1088 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 03:08](963 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:29, 03:36](935 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:46, 04:54](1037 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:51](931 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:11, 09:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:52, 02:08](1195 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:45, 00:53](1111 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:44, 01:15](1101 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [24:12, 09:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:37, 04:10](985 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:13, 04:42] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 05:03](1096 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:52](1105 MB) -PASS -- TEST 'conus13km_debug_intel' [16:51, 15:11](1240 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 15:15](944 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:26](1168 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 15:08](1315 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:11, 04:31] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 05:01](1141 MB) - -PASS -- COMPILE 'hafsw_intel' [19:12, 11:31] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:14, 04:55](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:27, 05:54](1093 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:52](808 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:15, 13:36](856 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:30, 15:08](869 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 05:27](487 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:19, 06:35](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:45, 02:41](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:03, 07:08](483 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:47, 03:40](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:51, 03:28](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:54, 04:04](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:30, 01:14](404 MB) -PASS -- TEST 'gnv1_nested_intel' [11:34, 04:04](1726 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:12, 05:09] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:51, 12:42](589 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:12, 11:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:57, 08:36](627 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:04, 08:35](734 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 11:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:59, 06:22](736 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:12, 10:40] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:19, 06:27](814 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:22, 06:27](806 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:57, 16:02](1218 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:57] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:45](1175 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:20, 01:37](1126 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:38](1034 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 02:40](1023 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:19, 02:36](1028 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:19, 02:39](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:19, 02:44](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:22, 02:32](1022 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:23, 06:09](1073 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:13, 06:02](1054 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:16, 02:43](1163 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:18, 03:49](2473 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 03:53](2464 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:40] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:20](1089 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:15] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:38](1146 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:32] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:47](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:49](330 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:32](329 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:12, 10:35] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:58, 03:56](1975 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 10:18] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:58, 03:33](1956 MB) - -PASS -- COMPILE 'atml_intel' [11:12, 10:44] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:58, 04:16](1871 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:00, 04:14](1862 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:45, 02:23](1100 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:12, 05:51] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:54, 05:46](1902 MB) - -PASS -- COMPILE 'atmw_intel' [11:12, 10:53] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:47, 01:50](1923 MB) - -PASS -- COMPILE 'atmaero_intel' [11:12, 10:12] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:58, 04:11](3208 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:52, 04:54](3104 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:42, 04:54](3114 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 04:39] ( 884 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [05:11, 04:39] -PASS -- TEST 'control_c48_gnu' [12:41, 11:17](1513 MB) -PASS -- TEST 'control_stochy_gnu' [04:20, 03:27](472 MB) -PASS -- TEST 'control_ras_gnu' [05:21, 04:47](500 MB) -PASS -- TEST 'control_p8_gnu' [05:54, 04:48](1455 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:48, 04:38](1455 MB) -PASS -- TEST 'control_flake_gnu' [11:24, 10:15](539 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:12, 04:34] -PASS -- TEST 'rap_control_gnu' [11:37, 10:47](844 MB) -PASS -- TEST 'rap_decomp_gnu' [11:35, 10:58](844 MB) -PASS -- TEST 'rap_2threads_gnu' [10:42, 09:56](931 MB) -PASS -- TEST 'rap_restart_gnu' [06:44, 05:33](575 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:41, 10:52](810 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:38, 11:06](807 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:43, 08:12](583 MB) -PASS -- TEST 'hrrr_control_gnu' [06:38, 05:37](814 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:33, 05:39](798 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:29, 05:01](908 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:31, 05:37](844 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:28, 02:54](563 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:26, 02:53](655 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:44, 10:35](809 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:12, 06:23] -PASS -- TEST 'control_diag_debug_gnu' [02:48, 01:40](1275 MB) -PASS -- TEST 'regional_debug_gnu' [12:40, 11:53](758 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:24, 02:36](827 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:23, 02:36](824 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:21, 02:33](831 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:39](829 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:36, 02:51](909 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 04:05](828 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:21, 02:37](826 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 03:03](818 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:35](457 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:45](450 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:37, 01:53](1433 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:21, 02:38](828 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:20, 02:51](832 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:40, 04:19](833 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:34] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:08] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:31, 09:28](711 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 04:54](706 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 08:29](758 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:30, 04:30](752 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:28, 05:04](703 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:33, 07:01](554 MB) +PASS -- COMPILE 's2swa_32bit_intel' [37:15, 12:47] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:11, 05:45](3297 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [42:16, 16:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [50:08, 17:27](1976 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [01:38, 18:13](2128 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [51:39, 08:25](1226 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:06, 19:29](1849 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:16, 17:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [52:59, 17:07](1948 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [31:14, 06:00] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:55, 23:32](1893 MB) + +PASS -- COMPILE 's2swa_intel' [38:14, 13:19] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:12, 05:59](3325 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:23, 06:38](3319 MB) +PASS -- TEST 'cpld_restart_p8_intel' [19:52, 03:33](3262 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:12, 05:56](3369 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [19:52, 03:35](3280 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:11, 05:36](3622 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:11, 05:55](3341 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:18, 04:54](3218 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [42:24, 06:06](3350 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [24:12, 10:22](3539 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [00:43, 06:28](3628 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [51:42, 10:01](4325 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [35:43, 06:04](4377 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [17:18, 05:32](3312 MB) + +PASS -- COMPILE 's2sw_intel' [37:14, 12:23] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [17:06, 04:55](1979 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:09, 04:29](2031 MB) + +PASS -- COMPILE 's2swa_debug_intel' [31:14, 05:55] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:02, 09:14](3400 MB) + +PASS -- COMPILE 's2sw_debug_intel' [30:15, 05:46] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:08, 05:55](2012 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [36:17, 11:17] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:00, 04:25](2014 MB) + +PASS -- COMPILE 's2s_intel' [36:14, 11:19] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:47, 09:09](3039 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:50, 02:44](3044 MB) +PASS -- TEST 'cpld_restart_c48_intel' [34:58, 01:38](2474 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:15, 16:56] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [03:37, 05:41](3350 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:15, 15:54] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [00:36, 17:36](2012 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:16, 08:23](1273 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:01, 20:04](1911 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:12, 05:45] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [04:10, 29:40](1960 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:14, 11:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [08:44, 03:24](708 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:04, 02:56](1601 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:06, 03:02](1607 MB) +PASS -- TEST 'control_latlon_intel' [07:57, 02:56](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:03, 03:00](1600 MB) +PASS -- TEST 'control_c48_intel' [13:03, 07:36](1717 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:47, 06:31](858 MB) +PASS -- TEST 'control_c192_intel' [30:38, 10:44](1731 MB) +PASS -- TEST 'control_c384_intel' [11:13, 10:44](1960 MB) +PASS -- TEST 'control_c384gdas_intel' [50:14, 08:05](1378 MB) +PASS -- TEST 'control_stochy_intel' [20:11, 01:43](661 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:29, 01:05](500 MB) +PASS -- TEST 'control_lndp_intel' [18:02, 01:35](660 MB) +PASS -- TEST 'control_iovr4_intel' [18:54, 02:30](657 MB) +PASS -- TEST 'control_iovr5_intel' [17:55, 02:30](650 MB) +PASS -- TEST 'control_p8_intel' [01:14, 03:08](1880 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [56:26, 03:09](1877 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [51:20, 02:58](1889 MB) +PASS -- TEST 'control_restart_p8_intel' [14:49, 01:48](1129 MB) +PASS -- TEST 'control_noqr_p8_intel' [45:06, 03:03](1897 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [11:49, 01:46](1158 MB) +PASS -- TEST 'control_decomp_p8_intel' [37:18, 03:12](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [24:09, 02:55](1966 MB) +PASS -- TEST 'control_p8_lndp_intel' [26:59, 05:24](1893 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [25:06, 04:03](1954 MB) +PASS -- TEST 'control_p8_mynn_intel' [24:11, 03:08](1869 MB) +PASS -- TEST 'merra2_thompson_intel' [23:58, 03:25](1900 MB) +PASS -- TEST 'regional_control_intel' [48:44, 05:23](1104 MB) +PASS -- TEST 'regional_restart_intel' [38:41, 02:55](1087 MB) +PASS -- TEST 'regional_decomp_intel' [22:44, 05:39](1091 MB) +PASS -- TEST 'regional_2threads_intel' [43:44, 03:29](1075 MB) +PASS -- TEST 'regional_noquilt_intel' [21:54, 05:20](1390 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [21:02, 05:21](1098 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [19:49, 05:20](1104 MB) +PASS -- TEST 'regional_wofs_intel' [19:47, 06:53](1890 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 10:19] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [23:46, 07:51](1108 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:23, 04:44](1249 MB) +PASS -- TEST 'rap_decomp_intel' [45:45, 08:13](1030 MB) +PASS -- TEST 'rap_2threads_intel' [42:40, 07:23](1174 MB) +PASS -- TEST 'rap_restart_intel' [07:42, 04:07](1099 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:42, 07:52](1090 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:34, 08:12](1040 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:46, 05:54](1122 MB) +PASS -- TEST 'hrrr_control_intel' [08:43, 04:00](1046 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:31, 04:08](1040 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [16:37, 03:41](1112 MB) +PASS -- TEST 'hrrr_control_restart_intel' [08:29, 02:14](1002 MB) +PASS -- TEST 'rrfs_v1beta_intel' [19:48, 07:41](1093 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [18:30, 09:22](1990 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:27, 09:06](2069 MB) + +PASS -- COMPILE 'csawmg_intel' [10:15, 09:56] +PASS -- TEST 'control_csawmg_intel' [12:57, 06:10](1015 MB) +PASS -- TEST 'control_ras_intel' [09:43, 03:17](746 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:13, 04:29] +PASS -- TEST 'control_csawmg_gnu' [44:54, 08:34](739 MB) + +PASS -- COMPILE 'wam_intel' [10:12, 09:54] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [16:17, 11:15](1663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:13, 09:47] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [12:50, 02:47](1872 MB) +PASS -- TEST 'regional_control_faster_intel' [14:36, 04:54](1088 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [40:17, 07:42] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:39, 02:43](1632 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:39, 02:38](1626 MB) +PASS -- TEST 'control_stochy_debug_intel' [10:24, 03:07](838 MB) +PASS -- TEST 'control_lndp_debug_intel' [10:23, 02:48](839 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:36, 04:32](1136 MB) +PASS -- TEST 'control_ras_debug_intel' [10:22, 02:47](845 MB) +PASS -- TEST 'control_diag_debug_intel' [09:45, 02:45](1691 MB) +PASS -- TEST 'control_debug_p8_intel' [10:40, 03:04](1922 MB) +PASS -- TEST 'regional_debug_intel' [26:36, 18:47](1110 MB) +PASS -- TEST 'rap_control_debug_intel' [11:25, 05:07](1220 MB) +PASS -- TEST 'hrrr_control_debug_intel' [12:26, 05:01](1218 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [11:23, 05:08](1225 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [11:23, 05:05](1220 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:23, 05:11](1220 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:39, 05:20](1305 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 05:15](1227 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 05:10](1223 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 05:03](1221 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:02](1224 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:54](1219 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 05:05](1221 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:14](1218 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 05:08](1216 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 06:19](1225 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:23, 05:04](1222 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:45, 08:48](1225 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [36:18, 04:20] +PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:22](727 MB) + +PASS -- COMPILE 'wam_debug_intel' [37:19, 05:03] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:49, 13:49](1693 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:24, 10:01] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:05, 03:57](1134 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 06:27](1056 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:42, 03:28](984 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:41, 06:09](1080 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:33, 03:10](959 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:35](931 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:43, 04:54](1029 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 01:51](931 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:25, 10:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:59, 02:06](1198 MB) +PASS -- TEST 'conus13km_2threads_intel' [09:45, 00:55](1108 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [09:45, 01:15](1099 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:23, 09:59] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:45, 04:12](981 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:24, 04:56] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 04:54](1094 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:53](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [16:55, 15:23](1245 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 15:14](932 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:49, 08:37](1168 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 15:21](1296 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:23, 04:55] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 05:01](1147 MB) + +PASS -- COMPILE 'hafsw_intel' [15:22, 11:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:19, 05:00](721 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 05:59](1090 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:25, 06:59](815 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:20, 13:26](850 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:30, 15:19](873 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:16, 05:31](490 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:24, 06:46](508 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:47, 02:39](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:18, 07:26](471 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:46](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:54, 03:30](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:55, 04:07](590 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:31, 01:14](401 MB) +PASS -- TEST 'gnv1_nested_intel' [12:45, 04:09](1706 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [40:30, 05:32] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:55, 13:03](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [06:28, 10:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:04, 08:40](627 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:08, 08:42](739 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [05:25, 11:34] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:43, 06:34](694 MB) + +PASS -- COMPILE 'hafs_all_intel' [02:28, 10:54] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [14:23, 06:45](818 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:24, 06:31](801 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:59, 15:58](1233 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [25:19, 06:39] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:23, 02:43](1180 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:41](1125 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:21, 02:36](1023 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:23, 02:40](1053 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:20, 02:39](1034 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:20, 02:35](1160 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:21, 02:40](1175 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:19, 02:35](1038 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:23, 06:08](1068 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:09, 06:12](1046 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:17, 02:42](1169 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:21, 03:44](2511 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:19, 03:56](2455 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [22:27, 03:25] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:18, 06:15](1084 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [20:17, 06:36] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 02:43](1158 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [15:16, 01:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:34, 00:46](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 00:54](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [24:29, 00:34](320 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [24:26, 10:37] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:03, 03:44](1949 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [23:17, 10:07] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 03:39](1964 MB) + +PASS -- COMPILE 'atml_intel' [51:14, 10:31] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:03, 04:23](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:02, 04:20](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [24:46, 02:25](1103 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:13, 05:38] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:57, 05:57](1870 MB) + +PASS -- COMPILE 'atmw_intel' [19:13, 10:22] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:54](1925 MB) + +PASS -- COMPILE 'atmaero_intel' [17:12, 10:21] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:58, 04:11](3189 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:58, 04:58](3102 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 05:06](3112 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:11, 04:41] ( 884 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [10:11, 04:46] +PASS -- TEST 'control_c48_gnu' [12:40, 11:11](1510 MB) +PASS -- TEST 'control_stochy_gnu' [05:25, 03:26](495 MB) +PASS -- TEST 'control_ras_gnu' [07:22, 04:51](501 MB) +PASS -- TEST 'control_p8_gnu' [07:55, 04:49](1452 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:50, 04:42](1465 MB) +PASS -- TEST 'control_flake_gnu' [13:26, 10:17](538 MB) + +PASS -- COMPILE 'rrfs_gnu' [11:11, 04:13] +PASS -- TEST 'rap_control_gnu' [35:38, 10:55](811 MB) +PASS -- TEST 'rap_decomp_gnu' [35:37, 11:09](845 MB) +PASS -- TEST 'rap_2threads_gnu' [33:41, 10:02](922 MB) +PASS -- TEST 'rap_restart_gnu' [06:42, 05:35](573 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [34:44, 10:56](815 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [34:40, 11:05](845 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 08:01](578 MB) +PASS -- TEST 'hrrr_control_gnu' [28:42, 05:42](813 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [28:38, 05:50](799 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [28:38, 05:14](909 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [28:37, 05:55](816 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [06:30, 02:57](565 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:31, 02:53](653 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [33:45, 10:38](813 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [14:11, 06:34] +PASS -- TEST 'control_diag_debug_gnu' [23:44, 01:48](1270 MB) +PASS -- TEST 'regional_debug_gnu' [34:37, 12:16](755 MB) +PASS -- TEST 'rap_control_debug_gnu' [24:24, 02:48](824 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [24:23, 02:46](819 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [24:28, 02:51](829 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [26:27, 02:38](824 MB) +PASS -- TEST 'rap_diag_debug_gnu' [26:38, 02:49](908 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [27:23, 04:07](818 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [25:26, 02:40](828 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [24:23, 02:37](818 MB) +PASS -- TEST 'control_ras_debug_gnu' [22:22, 01:36](457 MB) +PASS -- TEST 'control_stochy_debug_gnu' [22:21, 01:45](450 MB) +PASS -- TEST 'control_debug_p8_gnu' [22:42, 01:50](1444 MB) +PASS -- TEST 'rap_flake_debug_gnu' [22:27, 02:41](827 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [23:28, 02:55](829 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [21:39, 04:21](832 MB) + +PASS -- COMPILE 'wam_debug_gnu' [06:11, 02:27] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:11, 04:10] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [26:31, 09:26](710 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [19:31, 04:58](709 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:35, 08:41](751 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:37, 04:33](743 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 05:05](700 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:37, 06:59](558 MB) PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:26, 02:34](539 MB) -PASS -- TEST 'conus13km_control_gnu' [03:57, 03:09](874 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:49, 05:58](879 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:48, 01:56](567 MB) +PASS -- TEST 'conus13km_control_gnu' [04:52, 03:12](873 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:43, 06:07](879 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:43, 01:47](556 MB) -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 09:43] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:36, 05:44](731 MB) +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:13, 09:42] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:37, 05:46](727 MB) -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:30] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:33](717 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:22, 02:30](714 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:47, 06:53](888 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:41, 06:59](583 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:39, 07:30](889 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:40, 07:07](958 MB) +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:35] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:31](717 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:22, 02:31](718 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:45, 06:56](892 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [14:47, 11:02](579 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:42, 07:34](898 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:43, 06:58](958 MB) -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 06:28] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:36](747 MB) +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:12, 06:30] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:25, 02:36](734 MB) -PASS -- COMPILE 's2swa_gnu' [17:12, 16:29] +PASS -- COMPILE 's2swa_gnu' [17:12, 16:16] -PASS -- COMPILE 's2s_gnu' [16:13, 15:53] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:03, 07:17](1529 MB) +PASS -- COMPILE 's2s_gnu' [16:12, 16:08] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:07, 07:21](1519 MB) -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:09] +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:14] -PASS -- COMPILE 's2sw_pdlib_gnu' [16:14, 15:58] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [20:54, 19:58](1462 MB) +PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 16:06] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:55, 25:53](1450 MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:55] +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:57] -PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 15:37] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:58](698 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:36] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 03:02](695 MB) SYNOPSIS: -Starting Date/Time: 20240808 21:45:57 -Ending Date/Time: 20240808 23:40:22 -Total Time: 01h:54m:44s +Starting Date/Time: 20240815 00:39:24 +Ending Date/Time: 20240815 08:36:33 +Total Time: 07h:57m:26s Compiles Completed: 57/57 Tests Completed: 243/243 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 48ebe99b39..1788a9a78f 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: -8cb23af867d56961352ff5fab97656c3a4c6b936 +09690a092f727349365fac81c2d2096127bb8f12 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) + 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) + 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + 5c9aee9ab1f61281bc62f38e0a22c13fb23c520a MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10196-g5c9aee9ab) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,376 +35,376 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3225805 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240813 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_605583 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:50, 07:35](2128 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:58, 14:11](2001 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:44, 15:42](2301 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [20:37, 07:19](1316 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:55, 15:28](1918 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:10, 15:29] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:30, 14:19](1996 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:45] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:00, 21:32](1982 MB) - -PASS -- COMPILE 's2swa_intel' [15:10, 14:11] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:49, 08:47](2175 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:56, 08:25](2179 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:05, 05:08](1971 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:54, 09:03](2201 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:13, 04:31](1734 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:50, 09:49](2542 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:53, 08:40](2184 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:51, 07:08](2094 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:56, 08:43](2171 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:42, 16:13](2988 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:07, 07:14](2920 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:24, 11:54](3835 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:27, 07:00](3625 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:47, 06:18](2157 MB) - -PASS -- COMPILE 's2sw_intel' [10:10, 10:08] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:52, 07:49](2017 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:54, 04:27](2087 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:44] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:56, 08:10](2211 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:58] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:56, 05:21](2049 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:18] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:53, 04:21](2088 MB) - -PASS -- COMPILE 's2s_intel' [10:10, 09:51] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:40, 07:41](3056 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:37, 02:10](3036 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:31, 01:16](2466 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:12] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:59, 08:23](2184 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:10, 20:37] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:49, 14:38](2029 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:58, 07:51](1401 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:48, 16:16](1949 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 06:00] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:47, 23:07](2012 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:52] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:23, 02:55](720 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:32, 02:29](1603 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:35, 02:35](1628 MB) -PASS -- TEST 'control_latlon_intel' [08:29, 02:29](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:37, 02:36](1604 MB) -PASS -- TEST 'control_c48_intel' [12:33, 06:54](1713 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:26, 05:51](841 MB) -PASS -- TEST 'control_c192_intel' [15:44, 09:20](1749 MB) -PASS -- TEST 'control_c384_intel' [22:42, 10:19](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [18:47, 07:23](1493 MB) -PASS -- TEST 'control_stochy_intel' [12:19, 01:28](663 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:26, 00:53](540 MB) -PASS -- TEST 'control_lndp_intel' [12:18, 01:25](669 MB) -PASS -- TEST 'control_iovr4_intel' [11:19, 02:12](661 MB) -PASS -- TEST 'control_iovr5_intel' [10:21, 02:11](662 MB) -PASS -- TEST 'control_p8_intel' [11:45, 03:37](1905 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:57, 03:22](1914 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:56, 03:30](1901 MB) -PASS -- TEST 'control_restart_p8_intel' [02:40, 01:39](1148 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:52, 03:25](1890 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:23](1220 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:49, 03:43](1886 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:43, 03:17](1973 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:29, 05:28](1903 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:56, 03:46](1964 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:03, 02:40](1901 MB) -PASS -- TEST 'merra2_thompson_intel' [04:55, 03:03](1894 MB) -PASS -- TEST 'regional_control_intel' [05:25, 04:38](1203 MB) -PASS -- TEST 'regional_restart_intel' [09:25, 03:46](1168 MB) -PASS -- TEST 'regional_decomp_intel' [06:24, 05:07](1187 MB) -PASS -- TEST 'regional_2threads_intel' [04:27, 03:01](1151 MB) -PASS -- TEST 'regional_noquilt_intel' [07:35, 05:15](1514 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:30, 04:36](1201 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 05:07](1198 MB) -PASS -- TEST 'regional_wofs_intel' [09:30, 08:32](2078 MB) - -PASS -- COMPILE 'rrfs_intel' [09:10, 08:37] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:58, 07:25](1236 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:05, 04:07](1348 MB) -PASS -- TEST 'rap_decomp_intel' [08:40, 07:59](1175 MB) -PASS -- TEST 'rap_2threads_intel' [09:51, 07:16](1369 MB) -PASS -- TEST 'rap_restart_intel' [15:07, 03:55](1159 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:49, 07:37](1225 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:06](1159 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [13:00, 05:38](1208 MB) -PASS -- TEST 'hrrr_control_intel' [06:59, 03:50](1099 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:40, 03:58](1049 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:44, 03:36](1116 MB) -PASS -- TEST 'hrrr_control_restart_intel' [12:28, 02:15](1040 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:54, 06:50](1223 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [17:21, 08:15](2019 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:23, 07:52](2169 MB) - -PASS -- COMPILE 'csawmg_intel' [09:10, 08:21] -PASS -- TEST 'control_csawmg_intel' [16:27, 06:31](1062 MB) -PASS -- TEST 'control_ras_intel' [14:19, 02:57](851 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 04:01] -PASS -- TEST 'control_csawmg_gnu' [16:31, 08:00](1068 MB) - -PASS -- COMPILE 'wam_intel' [12:10, 11:16] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [21:35, 09:57](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:10, 08:16] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [13:52, 03:10](1908 MB) -PASS -- TEST 'regional_control_faster_intel' [10:25, 05:10](1194 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:10, 06:07] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:29, 02:26](1644 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [14:33, 02:13](1639 MB) -PASS -- TEST 'control_stochy_debug_intel' [14:23, 02:51](844 MB) -PASS -- TEST 'control_lndp_debug_intel' [14:22, 02:23](842 MB) -PASS -- TEST 'control_csawmg_debug_intel' [16:29, 04:40](1145 MB) -PASS -- TEST 'control_ras_debug_intel' [14:27, 02:31](850 MB) -PASS -- TEST 'control_diag_debug_intel' [14:35, 02:22](1699 MB) -PASS -- TEST 'control_debug_p8_intel' [13:31, 03:20](1940 MB) -PASS -- TEST 'regional_debug_intel' [26:30, 16:16](1132 MB) -PASS -- TEST 'rap_control_debug_intel' [13:20, 04:14](1227 MB) -PASS -- TEST 'hrrr_control_debug_intel' [12:24, 04:20](1221 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [11:17, 04:15](1230 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:18, 04:15](1224 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:21, 04:14](1232 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:27, 04:29](1312 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:17, 04:26](1235 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:25](1230 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:17, 04:23](1237 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:17, 04:28](1236 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:17, 04:20](1230 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:11](1241 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:19, 07:34](1230 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:17, 04:31](1221 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 05:18](1232 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:17, 04:43](1238 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 07:18](1238 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:10, 04:12] -PASS -- TEST 'control_csawmg_debug_gnu' [02:28, 02:03](1045 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:10] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 07:53] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:16](1234 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:37, 05:25](1161 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:02, 02:53](1038 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:35, 05:02](1292 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:42, 02:45](1041 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:38, 03:03](974 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [24:51, 04:04](1094 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [22:28, 01:35](961 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 08:03] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:38, 01:45](1282 MB) -PASS -- TEST 'conus13km_2threads_intel' [16:34, 00:52](1206 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [16:36, 01:06](1148 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:10, 08:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:35, 04:04](1080 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:10, 03:46] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 04:05](1106 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:18, 03:58](1106 MB) -PASS -- TEST 'conus13km_debug_intel' [13:33, 12:32](1328 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 12:44](997 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:28, 07:16](1241 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:35, 12:28](1409 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:54] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:20](1171 MB) - -PASS -- COMPILE 'hafsw_intel' [12:11, 10:53] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:03, 05:26](854 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:21, 05:07](1260 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:20, 06:36](950 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [29:04, 14:12](975 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:10, 15:17](1117 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [21:47, 05:33](596 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [23:16, 07:01](609 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [21:38, 02:41](431 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [26:53, 07:38](547 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [24:38, 03:52](606 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [23:42, 03:42](605 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [26:42, 05:00](666 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [21:28, 01:15](447 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:10, 03:57] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [32:51, 11:58](640 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:11, 10:15] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [36:47, 16:11](738 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [36:48, 16:26](894 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 10:14] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:50, 09:27](809 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:11, 15:04] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [26:05, 05:44](931 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:03, 05:56](916 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:47, 16:30](1348 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:10, 05:10] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [22:18, 02:11](1169 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [16:20, 01:21](1096 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [22:16, 02:06](1025 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [25:18, 02:08](1013 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [24:16, 02:09](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [26:16, 02:12](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [30:18, 02:16](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [29:19, 02:09](1016 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [27:52, 04:59](1167 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:52, 04:53](1151 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [24:21, 02:13](1160 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:15, 03:05](2406 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [22:17, 03:18](2405 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:48] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [24:16, 05:15](1067 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:01] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [21:18, 02:15](1153 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:45] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [18:27, 00:57](338 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [19:22, 00:52](574 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:24, 00:35](576 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:10, 09:03] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:46, 04:06](2015 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:11, 08:21] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [21:46, 04:15](1982 MB) - -PASS -- COMPILE 'atml_intel' [09:11, 08:41] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [22:53, 06:25](1890 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [21:56, 06:37](1897 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:34, 03:44](1154 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:42] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [20:51, 06:02](1914 MB) - -PASS -- COMPILE 'atmw_intel' [10:11, 09:34] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [17:47, 02:35](1939 MB) - -PASS -- COMPILE 'atmaero_intel' [09:10, 08:42] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [19:46, 04:38](2025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [19:43, 04:24](1822 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:40, 04:47](1820 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:48] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [30:31, 17:12](4607 MB) - -PASS -- COMPILE 'atm_gnu' [10:10, 05:37] -PASS -- TEST 'control_c48_gnu' [20:37, 09:27](1531 MB) -PASS -- TEST 'control_stochy_gnu' [12:21, 02:31](728 MB) -PASS -- TEST 'control_ras_gnu' [13:19, 03:50](731 MB) -PASS -- TEST 'control_p8_gnu' [13:44, 04:44](1750 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [12:40, 04:30](1708 MB) -PASS -- TEST 'control_flake_gnu' [12:20, 04:50](806 MB) - -PASS -- COMPILE 'rrfs_gnu' [10:10, 05:48] -PASS -- TEST 'rap_control_gnu' [17:47, 08:33](1085 MB) -PASS -- TEST 'rap_decomp_gnu' [17:35, 08:53](1085 MB) -PASS -- TEST 'rap_2threads_gnu' [16:47, 07:39](1138 MB) -PASS -- TEST 'rap_restart_gnu' [06:57, 04:28](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [15:48, 08:18](1084 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [17:21, 08:36](1081 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:53, 06:11](884 MB) -PASS -- TEST 'hrrr_control_gnu' [11:32, 04:17](1069 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [11:32, 04:24](1137 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [10:45, 03:54](1015 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [10:31, 04:14](1070 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [07:21, 02:53](883 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:21, 02:46](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [15:09, 08:02](1087 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:10, 07:35] -PASS -- TEST 'control_diag_debug_gnu' [07:40, 01:22](1626 MB) -PASS -- TEST 'regional_debug_gnu' [14:26, 08:34](1133 MB) -PASS -- TEST 'rap_control_debug_gnu' [07:19, 02:20](1097 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [07:20, 02:14](1088 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [08:21, 02:09](1097 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [09:17, 02:15](1095 MB) -PASS -- TEST 'rap_diag_debug_gnu' [09:26, 02:19](1271 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [12:21, 04:25](1098 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [10:32, 02:09](1101 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [10:23, 02:09](1092 MB) -PASS -- TEST 'control_ras_debug_gnu' [08:19, 01:13](727 MB) -PASS -- TEST 'control_stochy_debug_gnu' [08:17, 01:27](724 MB) -PASS -- TEST 'control_debug_p8_gnu' [10:34, 02:58](1699 MB) -PASS -- TEST 'rap_flake_debug_gnu' [09:37, 02:10](1097 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [10:18, 03:06](1099 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [11:52, 04:02](1103 MB) - -PASS -- COMPILE 'wam_debug_gnu' [08:10, 04:13] -PASS -- TEST 'control_wam_debug_gnu' [13:35, 05:55](1561 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:05] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:32, 07:59](963 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [09:40, 04:42](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:44, 07:25](1000 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [08:59, 04:17](889 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [09:37, 04:41](948 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:57, 05:54](865 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 02:06](875 MB) -PASS -- TEST 'conus13km_control_gnu' [07:40, 03:29](1268 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:34, 01:10](1176 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:32, 01:38](933 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 08:48] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:32, 05:23](987 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:18] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:18, 02:47](978 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:38](969 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:35, 05:52](1286 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:31, 06:10](958 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:29, 04:26](1191 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:27, 06:09](1351 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [11:10, 06:46] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:20](1005 MB) - -PASS -- COMPILE 's2swa_gnu' [24:10, 19:14] - -PASS -- COMPILE 's2s_gnu' [20:11, 15:52] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:57, 06:07](3090 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:08] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:10, 16:44] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [30:53, 27:07](3046 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:10, 04:47] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:53, 12:39](2901 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [21:10, 17:15] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [07:17, 02:17](769 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:09] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:05, 08:39](2126 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:22] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:03, 14:13](1999 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [32:13, 14:34](2304 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [25:13, 07:12](1302 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:43, 15:59](1907 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:10, 16:35] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:30, 14:41](1986 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:36] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:01, 21:10](1978 MB) + +PASS -- COMPILE 's2swa_intel' [11:10, 10:29] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:02, 08:42](2172 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:15, 08:32](2183 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:01, 05:16](1988 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:09, 08:48](2210 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:05, 05:14](1734 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:09, 09:47](2552 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:01, 08:32](2162 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:03, 08:16](2091 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:16, 08:18](2174 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [23:39, 16:11](2979 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [27:58, 06:48](2922 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:20, 11:13](3862 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:57, 07:32](3635 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:03, 06:56](2148 MB) + +PASS -- COMPILE 's2sw_intel' [11:10, 10:23] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:57, 08:03](2020 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:02, 04:40](2079 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:36] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [08:51, 07:12](2201 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:44] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:48, 04:55](2049 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:36] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:53, 05:46](2091 MB) + +PASS -- COMPILE 's2s_intel' [11:10, 10:07] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [18:50, 09:26](3051 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [11:52, 03:04](3030 MB) +PASS -- TEST 'cpld_restart_c48_intel' [11:37, 02:12](2487 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:57, 08:08](2172 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 15:20] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:02, 14:43](2034 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:56, 07:20](1406 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:42, 15:44](1959 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:11] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:43, 23:23](2019 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:10, 08:58] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [11:19, 02:53](704 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:28, 02:32](1610 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:34, 02:36](1615 MB) +PASS -- TEST 'control_latlon_intel' [11:25, 02:28](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:33, 02:33](1601 MB) +PASS -- TEST 'control_c48_intel' [16:29, 06:57](1713 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [15:23, 05:53](841 MB) +PASS -- TEST 'control_c192_intel' [18:36, 09:12](1766 MB) +PASS -- TEST 'control_c384_intel' [19:23, 09:33](2002 MB) +PASS -- TEST 'control_c384gdas_intel' [17:42, 07:21](1493 MB) +PASS -- TEST 'control_stochy_intel' [10:18, 01:30](661 MB) +PASS -- TEST 'control_stochy_restart_intel' [22:33, 00:54](542 MB) +PASS -- TEST 'control_lndp_intel' [13:17, 01:22](669 MB) +PASS -- TEST 'control_iovr4_intel' [13:19, 02:08](658 MB) +PASS -- TEST 'control_iovr5_intel' [17:19, 02:09](669 MB) +PASS -- TEST 'control_p8_intel' [17:51, 03:38](1902 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [17:52, 03:37](1903 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [24:55, 03:16](1896 MB) +PASS -- TEST 'control_restart_p8_intel' [15:42, 02:04](1153 MB) +PASS -- TEST 'control_noqr_p8_intel' [25:46, 03:24](1890 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:48, 02:28](1210 MB) +PASS -- TEST 'control_decomp_p8_intel' [25:41, 03:24](1906 MB) +PASS -- TEST 'control_2threads_p8_intel' [25:37, 03:06](1981 MB) +PASS -- TEST 'control_p8_lndp_intel' [28:31, 05:55](1908 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [26:50, 04:32](1962 MB) +PASS -- TEST 'control_p8_mynn_intel' [26:48, 03:48](1909 MB) +PASS -- TEST 'merra2_thompson_intel' [26:58, 04:03](1903 MB) +PASS -- TEST 'regional_control_intel' [16:24, 05:38](1193 MB) +PASS -- TEST 'regional_restart_intel' [08:26, 03:06](1169 MB) +PASS -- TEST 'regional_decomp_intel' [16:22, 05:56](1182 MB) +PASS -- TEST 'regional_2threads_intel' [13:24, 04:00](1153 MB) +PASS -- TEST 'regional_noquilt_intel' [14:27, 05:26](1515 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [14:29, 05:51](1193 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [23:29, 05:08](1203 MB) +PASS -- TEST 'regional_wofs_intel' [26:24, 08:22](2084 MB) + +PASS -- COMPILE 'rrfs_intel' [13:10, 08:44] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [24:46, 07:27](1229 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:50, 04:28](1355 MB) +PASS -- TEST 'rap_decomp_intel' [25:31, 08:02](1151 MB) +PASS -- TEST 'rap_2threads_intel' [24:32, 07:20](1368 MB) +PASS -- TEST 'rap_restart_intel' [04:52, 03:59](1161 MB) +PASS -- TEST 'rap_sfcdiff_intel' [23:48, 07:43](1224 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:33, 08:05](1155 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:00, 05:37](1233 MB) +PASS -- TEST 'hrrr_control_intel' [15:37, 03:55](1114 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:38, 03:56](1056 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:45, 03:35](1119 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:23, 02:08](1039 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:54, 06:53](1198 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:20, 08:08](2020 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:18, 07:40](2189 MB) + +PASS -- COMPILE 'csawmg_intel' [13:10, 08:24] +PASS -- TEST 'control_csawmg_intel' [08:26, 06:36](1041 MB) +PASS -- TEST 'control_ras_intel' [04:19, 02:53](840 MB) + +PASS -- COMPILE 'csawmg_gnu' [08:10, 04:06] +PASS -- TEST 'control_csawmg_gnu' [18:31, 07:48](1078 MB) + +PASS -- COMPILE 'wam_intel' [11:10, 08:02] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [19:30, 09:49](1676 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 08:39] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:47, 03:12](1899 MB) +PASS -- TEST 'regional_control_faster_intel' [06:24, 04:49](1191 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 06:29] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:25, 02:23](1643 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:29, 02:10](1634 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:16, 02:44](846 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:24](839 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:22, 04:43](1156 MB) +PASS -- TEST 'control_ras_debug_intel' [03:23, 02:30](843 MB) +PASS -- TEST 'control_diag_debug_intel' [04:39, 02:24](1704 MB) +PASS -- TEST 'control_debug_p8_intel' [05:33, 03:28](1936 MB) +PASS -- TEST 'regional_debug_intel' [18:26, 16:42](1155 MB) +PASS -- TEST 'rap_control_debug_intel' [05:16, 04:15](1232 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:19, 04:11](1220 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:16, 04:18](1231 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:20](1225 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 04:25](1225 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:25](1311 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:25](1231 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 04:17](1228 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:16, 04:31](1243 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 04:20](1230 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:16, 04:29](1229 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 04:07](1237 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 07:13](1228 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 04:28](1216 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:16, 05:03](1236 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:17, 04:33](1233 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:48, 07:26](1241 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [08:10, 04:46] +PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 02:44](1053 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:10, 04:37] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 08:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:48, 03:31](1235 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:42, 05:22](1137 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:44, 02:55](1021 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:34, 05:04](1275 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 02:40](1039 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:02](994 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:47, 04:03](1096 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:18, 01:38](958 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:10, 07:48] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:36, 01:53](1296 MB) +PASS -- TEST 'conus13km_2threads_intel' [11:29, 00:51](1195 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [11:25, 01:06](1134 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 09:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:29, 04:06](1090 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 05:34] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:17, 04:00](1103 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:18, 04:00](1092 MB) +PASS -- TEST 'conus13km_debug_intel' [19:31, 12:21](1350 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:33, 12:40](994 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:24, 07:10](1253 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:25, 12:28](1407 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 05:07] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:20, 04:15](1161 MB) + +PASS -- COMPILE 'hafsw_intel' [12:10, 10:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [12:02, 05:37](851 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:19, 05:08](1249 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:16, 06:39](949 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [23:01, 14:13](947 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:17, 15:01](988 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:50, 05:27](592 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:18, 06:59](607 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [11:36, 02:35](437 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:51, 07:36](551 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:39, 03:50](606 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:42, 03:44](606 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:44, 04:50](669 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:23, 01:10](450 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:25] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:44, 12:02](631 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:11, 09:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:48, 17:30](754 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [26:59, 15:58](839 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:10, 10:05] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:47, 09:55](810 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:10, 10:14] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [15:03, 05:41](929 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:06, 05:52](913 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:43, 16:28](1347 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:41] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:16, 02:10](1162 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:16, 01:23](1117 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:14, 02:04](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:14, 02:10](1017 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:15, 02:08](1027 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:14, 02:09](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:14, 02:10](1146 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:15, 02:07](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:50, 04:56](1152 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:47, 04:56](1160 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:13, 02:14](1160 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:15, 03:03](2392 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:16, 03:05](2455 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 03:46] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:15, 05:13](1090 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 05:55] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:14, 02:16](1149 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 00:46] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:57](339 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:55](573 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:34](573 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 08:44] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:43, 04:32](2016 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:11, 08:57] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:45, 04:55](1997 MB) + +PASS -- COMPILE 'atml_intel' [14:11, 09:56] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:57, 06:08](1898 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:53, 06:25](1887 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:34, 03:24](1145 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:11, 05:59] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:51, 06:00](1923 MB) + +PASS -- COMPILE 'atmw_intel' [14:10, 09:56] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:48, 02:30](1938 MB) + +PASS -- COMPILE 'atmaero_intel' [09:11, 08:27] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:47, 05:10](2023 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:44, 04:51](1793 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:39, 04:38](1826 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:11, 03:43] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:21, 17:06](4587 MB) + +PASS -- COMPILE 'atm_gnu' [09:11, 04:19] +PASS -- TEST 'control_c48_gnu' [13:36, 09:23](1530 MB) +PASS -- TEST 'control_stochy_gnu' [05:23, 02:20](722 MB) +PASS -- TEST 'control_ras_gnu' [06:16, 03:58](734 MB) +PASS -- TEST 'control_p8_gnu' [07:43, 04:48](1719 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:39, 04:20](1722 MB) +PASS -- TEST 'control_flake_gnu' [07:18, 04:49](810 MB) + +PASS -- COMPILE 'rrfs_gnu' [10:11, 05:22] +PASS -- TEST 'rap_control_gnu' [10:31, 08:15](1084 MB) +PASS -- TEST 'rap_decomp_gnu' [10:34, 08:30](1082 MB) +PASS -- TEST 'rap_2threads_gnu' [08:43, 07:19](1115 MB) +PASS -- TEST 'rap_restart_gnu' [06:40, 04:16](884 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:45, 08:06](1081 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:33, 08:12](1083 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:41, 05:53](883 MB) +PASS -- TEST 'hrrr_control_gnu' [05:30, 04:09](1072 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:31, 04:15](1133 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:48, 03:41](1020 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:31, 04:10](1077 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:21, 02:12](884 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:28, 02:05](932 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:50, 08:20](1088 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [14:11, 10:58] +PASS -- TEST 'control_diag_debug_gnu' [02:29, 01:14](1626 MB) +PASS -- TEST 'regional_debug_gnu' [08:27, 07:23](1125 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:01](1098 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 01:57](1089 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:18, 02:08](1095 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:16, 02:02](1095 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:29, 02:23](1268 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:16, 03:16](1095 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 02:04](1100 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:17, 02:01](1105 MB) +PASS -- TEST 'control_ras_debug_gnu' [04:16, 01:17](722 MB) +PASS -- TEST 'control_stochy_debug_gnu' [04:16, 01:23](726 MB) +PASS -- TEST 'control_debug_p8_gnu' [04:29, 02:03](1716 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:16, 02:03](1097 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:16, 02:21](1102 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:45, 03:24](1103 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:18] +PASS -- TEST 'control_wam_debug_gnu' [07:31, 05:25](1560 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [12:10, 09:01] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:44, 07:36](960 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:36, 04:05](952 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 06:53](968 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:55, 03:32](879 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:36, 04:09](949 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:38, 05:50](864 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:17, 02:06](862 MB) +PASS -- TEST 'conus13km_control_gnu' [04:34, 02:42](1271 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:25, 01:04](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:26, 01:28](929 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [17:10, 14:39] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:28, 04:40](988 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [15:10, 13:20] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:16, 02:00](977 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:16, 02:00](971 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:29, 05:45](1285 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:28, 05:56](961 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:26, 03:27](1195 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:27, 05:33](1352 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:10, 13:26] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 02:14](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [17:10, 16:22] + +PASS -- COMPILE 's2s_gnu' [16:10, 15:51] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [05:51, 04:58](2737 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [09:10, 04:36] + +PASS -- COMPILE 's2sw_pdlib_gnu' [22:10, 17:05] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:45, 26:44](3035 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:10, 08:57] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:45, 12:39](2920 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [20:10, 15:28] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:20](768 MB) SYNOPSIS: -Starting Date/Time: 20240808 19:25:49 -Ending Date/Time: 20240808 21:56:56 -Total Time: 02h:32m:09s +Starting Date/Time: 20240816 07:59:44 +Ending Date/Time: 20240816 10:15:45 +Total Time: 02h:16m:31s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index df924a66e7..568d6ae430 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: -2ef6b2a03b85a89d4029566f29f0ad99dbdda7a0 +09690a092f727349365fac81c2d2096127bb8f12 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) + 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) + 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + 5c9aee9ab1f61281bc62f38e0a22c13fb23c520a MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10196-g5c9aee9ab) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,285 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2089570 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240813 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2094749 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:12, 15:46] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:43, 14:23](2084 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 25:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:46, 18:00](1952 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:16, 18:51](2134 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 08:52](1198 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:56, 20:17](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:40, 17:39](1944 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:21] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:48, 27:20](1938 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 15:58] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:33, 14:26](2123 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:43, 14:25](2132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:50, 07:57](1814 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:33, 14:28](2160 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:49, 08:01](1700 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:19, 13:07](2435 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:33, 14:15](2126 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:34, 11:50](2033 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:41, 14:04](2127 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:44, 16:33](2718 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:03, 09:00](2725 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [17:57, 11:35](3689 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:24, 07:18](3491 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:30, 05:56](2105 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 15:31] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:23, 13:44](1981 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:30, 04:43](2042 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:19] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:21, 09:08](2165 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:10] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:12, 06:20](1993 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:28] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:12, 04:43](2041 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 14:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:57, 10:03](3043 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:54, 03:14](3027 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:49, 02:18](2488 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:13, 16:26] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:27, 14:46](2131 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:12, 18:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:12, 18:18](1993 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:24, 09:04](1246 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:12, 20:25](1904 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 18:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:38, 14:25](2084 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 23:45] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:36, 18:08](1948 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:11, 18:59](2129 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:52](1218 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:38, 20:16](1873 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 22:23] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:43, 17:45](1944 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 09:09] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:52, 27:29](1925 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 17:23] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:30, 14:25](2129 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:38, 14:14](2130 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:48, 07:48](1819 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:30, 14:22](2154 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:48, 08:01](1705 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:31, 13:06](2431 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:29, 14:19](2119 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:30, 12:29](2040 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:42, 14:04](2134 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:27, 16:32](2720 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:54, 08:36](2714 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:14, 11:38](3687 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:42, 07:09](3497 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:25, 05:52](2101 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 16:38] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:59, 13:59](1976 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:10, 04:47](2041 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 09:08] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:28, 08:39](2165 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:31] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:08, 06:10](2003 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:41] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:16, 04:46](2041 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 15:56] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:56, 10:11](3053 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:56, 03:23](3030 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:57, 02:12](2480 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:27] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:26, 14:34](2133 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:56] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:15, 18:14](1995 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:17, 08:58](1242 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:06, 20:25](1910 MB) PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 08:21] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:15, 29:21](1969 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:13, 13:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:27, 03:47](685 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:47, 03:10](1582 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 03:15](1592 MB) -PASS -- TEST 'control_latlon_intel' [03:38, 03:09](1583 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:55, 03:15](1584 MB) -PASS -- TEST 'control_c48_intel' [10:52, 09:28](1697 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:37, 08:05](838 MB) -PASS -- TEST 'control_c192_intel' [12:56, 11:43](1720 MB) -PASS -- TEST 'control_c384_intel' [14:57, 12:45](1967 MB) -PASS -- TEST 'control_c384gdas_intel' [12:40, 09:51](1327 MB) -PASS -- TEST 'control_stochy_intel' [02:33, 01:51](647 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:42, 01:05](478 MB) -PASS -- TEST 'control_lndp_intel' [02:30, 01:46](644 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:44](644 MB) -PASS -- TEST 'control_iovr5_intel' [03:31, 02:41](638 MB) -PASS -- TEST 'control_p8_intel' [05:25, 03:31](1876 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 03:42](1872 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:31, 03:30](1876 MB) -PASS -- TEST 'control_restart_p8_intel' [03:14, 02:02](1085 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:12, 03:29](1870 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:58](1129 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:16, 03:34](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:08, 03:38](1959 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:50, 05:57](1874 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:29, 05:01](1940 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:25, 03:34](1889 MB) -PASS -- TEST 'merra2_thompson_intel' [05:38, 03:57](1880 MB) -PASS -- TEST 'regional_control_intel' [07:40, 06:32](1086 MB) -PASS -- TEST 'regional_restart_intel' [04:42, 03:33](1073 MB) -PASS -- TEST 'regional_decomp_intel' [07:41, 06:57](1083 MB) -PASS -- TEST 'regional_2threads_intel' [05:37, 04:49](1064 MB) -PASS -- TEST 'regional_noquilt_intel' [07:41, 06:34](1389 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 06:36](1090 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 06:29](1078 MB) -PASS -- TEST 'regional_wofs_intel' [08:33, 07:50](1901 MB) - -PASS -- COMPILE 'rrfs_intel' [13:15, 13:10] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:01, 08:26](1053 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 05:09](1263 MB) -PASS -- TEST 'rap_decomp_intel' [10:02, 08:34](1026 MB) -PASS -- TEST 'rap_2threads_intel' [10:01, 08:32](1157 MB) -PASS -- TEST 'rap_restart_intel' [06:38, 04:23](1046 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:02, 08:21](1057 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:03, 08:40](1026 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:31, 06:18](1071 MB) -PASS -- TEST 'hrrr_control_intel' [06:00, 04:22](1026 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:02, 04:26](1024 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:01, 04:11](1094 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:40, 02:24](948 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:16, 08:20](1046 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:23, 10:00](1986 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:43](2026 MB) - -PASS -- COMPILE 'csawmg_intel' [12:12, 12:00] -PASS -- TEST 'control_csawmg_intel' [07:37, 06:35](1015 MB) -PASS -- TEST 'control_ras_intel' [04:24, 03:31](716 MB) - -PASS -- COMPILE 'wam_intel' [13:14, 12:33] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:47, 12:43](1665 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:13, 12:24] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:26, 03:19](1880 MB) -PASS -- TEST 'regional_control_faster_intel' [07:33, 06:11](1075 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 09:50] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 03:02](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:38](1611 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:30, 03:07](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:49](817 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:32, 04:21](1134 MB) -PASS -- TEST 'control_ras_debug_intel' [03:25, 02:57](823 MB) -PASS -- TEST 'control_diag_debug_intel' [03:46, 02:47](1676 MB) -PASS -- TEST 'control_debug_p8_intel' [03:45, 03:07](1913 MB) -PASS -- TEST 'regional_debug_intel' [18:41, 17:27](1092 MB) -PASS -- TEST 'rap_control_debug_intel' [05:27, 04:58](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:25, 05:03](1198 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:28, 04:54](1208 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 05:24](1213 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 05:03](1209 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:32, 05:12](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 05:02](1205 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 05:00](1205 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:18](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:54](1212 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:56](1208 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 05:03](1196 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:29, 07:55](1205 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 04:56](1203 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 06:13](1208 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:21, 05:01](1213 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 08:41](1213 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:12, 06:40] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:45, 13:17](1678 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 12:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:55, 04:51](1131 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:14, 07:09](1000 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:38, 03:47](932 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:14, 07:21](1074 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 03:41](945 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:17, 03:56](900 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:20, 05:24](969 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 02:02](880 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:13, 12:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:52, 02:37](1183 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:41, 01:13](1113 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:36](1067 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:12, 12:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:40, 04:36](972 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 07:04] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:49](1080 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:29, 04:49](1083 MB) -PASS -- TEST 'conus13km_debug_intel' [15:50, 14:48](1232 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 14:53](931 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 08:31](1175 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 15:09](1296 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 07:04] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:25, 05:02](1142 MB) - -PASS -- COMPILE 'hafsw_intel' [15:13, 15:04] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:12, 06:05](740 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:24](1116 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:25, 07:29](820 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:13, 24:07](851 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:20, 28:43](873 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 07:01](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:30, 08:23](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:56, 03:24](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:28, 09:30](479 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:40](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:57, 04:25](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 05:42](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:31](399 MB) -PASS -- TEST 'gnv1_nested_intel' [07:16, 04:23](1714 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:11, 08:01] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:02, 13:15](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:12, 14:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:09, 13:01](666 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:00, 12:58](731 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:13, 15:05] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:00, 08:32](711 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:12, 14:16] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:19, 07:28](818 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 07:30](799 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:22](1202 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:54] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 03:00](1149 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 02:01](1112 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:20, 02:49](1015 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:54](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:53](1023 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:57](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:59](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:49](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 06:31](1030 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:06, 06:28](999 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:58](1158 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:20](2449 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 04:21](2408 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:13, 05:01] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:31](1075 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:41] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:58](1157 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:23] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 01:01](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:57](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:35](321 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 13:12] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:06, 04:12](1969 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:12, 12:53] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:09, 03:56](1956 MB) - -PASS -- COMPILE 'atml_intel' [14:12, 13:29] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:31, 04:54](1850 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:51](1863 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:48](1052 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:12, 07:38] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:29, 05:50](1894 MB) - -PASS -- COMPILE 'atmw_intel' [14:12, 13:37] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:21, 02:08](1908 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 13:17] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:22, 04:33](1986 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:12, 05:18](1767 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:04, 05:24](1783 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:34] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:53, 20:23](4561 MB) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:19, 29:35](1975 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:25, 03:45](690 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 03:09](1591 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:48, 03:19](1594 MB) +PASS -- TEST 'control_latlon_intel' [04:38, 03:10](1588 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 03:11](1582 MB) +PASS -- TEST 'control_c48_intel' [10:48, 09:29](1709 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:31, 08:07](834 MB) +PASS -- TEST 'control_c192_intel' [12:50, 11:41](1717 MB) +PASS -- TEST 'control_c384_intel' [14:45, 12:45](1959 MB) +PASS -- TEST 'control_c384gdas_intel' [12:25, 09:48](1326 MB) +PASS -- TEST 'control_stochy_intel' [02:24, 01:50](642 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:36, 01:05](476 MB) +PASS -- TEST 'control_lndp_intel' [02:20, 01:45](650 MB) +PASS -- TEST 'control_iovr4_intel' [03:24, 02:43](640 MB) +PASS -- TEST 'control_iovr5_intel' [03:23, 02:42](642 MB) +PASS -- TEST 'control_p8_intel' [05:15, 03:28](1870 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:16, 03:28](1874 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:28, 03:19](1878 MB) +PASS -- TEST 'control_restart_p8_intel' [03:01, 02:03](1089 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:05, 03:23](1870 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:12, 02:02](1123 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:00, 03:34](1869 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:55, 03:44](1954 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:46, 05:55](1874 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:23, 04:56](1934 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:18, 03:28](1883 MB) +PASS -- TEST 'merra2_thompson_intel' [05:31, 03:48](1877 MB) +PASS -- TEST 'regional_control_intel' [07:37, 06:26](1080 MB) +PASS -- TEST 'regional_restart_intel' [04:35, 03:33](1075 MB) +PASS -- TEST 'regional_decomp_intel' [07:37, 07:03](1070 MB) +PASS -- TEST 'regional_2threads_intel' [05:34, 04:33](1065 MB) +PASS -- TEST 'regional_noquilt_intel' [07:37, 06:22](1383 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:37, 06:23](1087 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 06:24](1077 MB) +PASS -- TEST 'regional_wofs_intel' [08:32, 07:51](1900 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 13:12] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:15, 08:27](1056 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 05:10](1235 MB) +PASS -- TEST 'rap_decomp_intel' [09:56, 08:41](1027 MB) +PASS -- TEST 'rap_2threads_intel' [10:19, 08:29](1160 MB) +PASS -- TEST 'rap_restart_intel' [06:28, 04:23](1044 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:55, 08:19](1046 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:55, 08:37](1027 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:29, 06:17](1079 MB) +PASS -- TEST 'hrrr_control_intel' [06:08, 04:20](1028 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:58, 04:25](1021 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:55, 04:09](1090 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:48, 02:21](944 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:20, 08:16](1050 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 10:00](1987 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:43](2031 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 12:27] +PASS -- TEST 'control_csawmg_intel' [07:36, 06:36](1017 MB) +PASS -- TEST 'control_ras_intel' [04:22, 03:29](712 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 12:40] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:44, 12:37](1666 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 13:02] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:17, 03:20](1885 MB) +PASS -- TEST 'regional_control_faster_intel' [07:34, 06:17](1071 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 10:12] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:47](1610 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:41](1619 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:25, 03:04](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:46](820 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:45, 04:19](1127 MB) +PASS -- TEST 'control_ras_debug_intel' [03:25, 02:48](818 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 02:50](1673 MB) +PASS -- TEST 'control_debug_p8_intel' [04:49, 03:09](1907 MB) +PASS -- TEST 'regional_debug_intel' [18:45, 17:28](1093 MB) +PASS -- TEST 'rap_control_debug_intel' [05:28, 05:02](1212 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:40](1198 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:50](1205 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:24, 04:59](1198 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 05:20](1211 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:29, 05:13](1287 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:20, 05:02](1209 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 05:08](1211 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 05:02](1201 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:27, 04:58](1212 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:51](1197 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 04:56](1211 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 08:07](1198 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 04:48](1203 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 06:07](1207 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:55](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:28, 08:38](1213 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:10, 06:21] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:47, 13:18](1679 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:10, 12:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:01, 04:53](1130 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:23, 07:08](999 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:23, 03:48](933 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:09, 07:18](1067 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:04, 03:41](938 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:03, 03:55](904 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:31, 05:20](973 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:29, 02:03](879 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:49, 02:44](1168 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:41, 01:14](1116 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:31](1065 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:42] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 04:34](974 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 06:40] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:54](1083 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:49](1086 MB) +PASS -- TEST 'conus13km_debug_intel' [15:47, 15:03](1229 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 15:14](926 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:52, 08:28](1168 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:49](1306 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:32] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 05:01](1140 MB) + +PASS -- COMPILE 'hafsw_intel' [15:10, 14:38] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:17, 06:01](732 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 06:18](1123 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 07:35](828 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:16, 24:27](848 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:18, 28:16](867 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:00, 07:00](520 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:30, 08:17](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:54, 03:26](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:20, 09:25](483 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:54, 04:37](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:51, 04:23](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:54, 05:37](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:32](402 MB) +PASS -- TEST 'gnv1_nested_intel' [07:14, 04:24](1730 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:10, 06:43] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:04, 13:11](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:10, 14:38] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:02, 13:09](642 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:10, 13:04](724 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 14:06] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:22, 08:40](707 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 13:36] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:16, 07:24](814 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 07:31](799 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:21](1203 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:19] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:58](1153 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:57](1112 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 02:50](1024 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:53](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:54](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:58](1139 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:59](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:51](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:07, 06:34](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:01, 06:30](1005 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 03:01](1149 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 04:19](2451 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:24](2448 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 06:04] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:31](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:57] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:57](1154 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:35] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:02](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:56](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:36](319 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:10, 13:15] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:09, 04:12](1963 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:10, 13:10] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:05, 03:57](1947 MB) + +PASS -- COMPILE 'atml_intel' [14:11, 13:51] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:30, 04:48](1865 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:20, 04:51](1865 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:50, 02:45](1048 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:10, 07:26] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:21, 05:49](1896 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 13:17] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:17, 02:07](1908 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 12:35] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:14, 04:33](1983 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:13, 05:21](1782 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:58, 05:24](1779 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:55] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:55, 20:19](4564 MB) SYNOPSIS: -Starting Date/Time: 20240808 22:06:22 -Ending Date/Time: 20240808 23:39:07 -Total Time: 01h:33m:34s +Starting Date/Time: 20240816 07:58:43 +Ending Date/Time: 20240816 09:32:32 +Total Time: 01h:34m:18s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 82b2351fcc..7c0ec9e0c0 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: -2b4a599fc5da5cda16fc82974e07f353b6760f77 +09690a092f727349365fac81c2d2096127bb8f12 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/HEAD-5-gfd59004) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (201912_public_release-405-gd92b739) + 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) + 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + 5c9aee9ab1f61281bc62f38e0a22c13fb23c520a MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10196-g5c9aee9ab) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,239 +35,239 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46914 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240813 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/dusan.jovic/FV3_RT/rt_219249 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:28, 11:14] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:43, 02:10](3103 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [37:08, 35:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [44:03, 02:02](1806 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:56, 01:44](1839 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [25:51, 02:15](973 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:58, 01:37](1784 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:25, 23:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [56:46, 01:09](1806 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:39, 15:18] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [04:33, 01:19](1845 MB) - -PASS -- COMPILE 's2swa_intel' [12:28, 11:22] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:43, 01:23](3132 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:43, 01:29](3132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [00:23, 02:10](3059 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:43, 01:20](3154 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [00:23, 02:09](3080 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:43, 01:47](3367 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:43, 01:29](3127 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:44, 02:20](3077 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:43, 01:30](3131 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [08:52, 03:43](4123 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [50:28, 04:22](4266 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:43, 01:35](3110 MB) - -PASS -- COMPILE 's2sw_intel' [31:01, 29:46] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [50:11, 01:02](1827 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [50:11, 01:11](1896 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:28, 11:06] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:43, 01:22](1885 MB) - -PASS -- COMPILE 's2s_intel' [12:28, 10:05] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:42, 00:43](2865 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [08:42, 01:47](2870 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:07, 01:36](2274 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:24, 21:01] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [57:47, 01:54](3130 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:26, 22:52] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:46, 01:11](1817 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [39:18, 01:36](984 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:19, 00:55](1798 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:55, 08:10] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:48, 01:36](1860 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [20:34, 19:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [48:08, 00:31](568 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [48:08, 00:35](1473 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:08, 00:27](1480 MB) -PASS -- TEST 'control_latlon_intel' [48:08, 00:28](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:08, 00:37](1468 MB) -PASS -- TEST 'control_c48_intel' [48:07, 00:58](1557 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [48:07, 00:57](690 MB) -PASS -- TEST 'control_c192_intel' [48:08, 01:14](1579 MB) -PASS -- TEST 'control_c384_intel' [48:12, 02:00](1862 MB) -PASS -- TEST 'control_c384gdas_intel' [48:12, 02:43](1065 MB) -PASS -- TEST 'control_stochy_intel' [47:51, 00:23](525 MB) -PASS -- TEST 'control_stochy_restart_intel' [45:23, 01:02](329 MB) -PASS -- TEST 'control_lndp_intel' [46:39, 00:34](529 MB) -PASS -- TEST 'control_iovr4_intel' [45:22, 00:41](523 MB) -PASS -- TEST 'control_iovr5_intel' [45:19, 00:40](519 MB) -PASS -- TEST 'control_p8_intel' [45:08, 01:01](1755 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [45:08, 01:02](1762 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [45:08, 01:05](1761 MB) -PASS -- TEST 'control_restart_p8_intel' [40:23, 00:57](895 MB) -PASS -- TEST 'control_noqr_p8_intel' [44:57, 01:29](1750 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [39:35, 00:50](916 MB) -PASS -- TEST 'control_decomp_p8_intel' [44:43, 01:23](1750 MB) -PASS -- TEST 'control_2threads_p8_intel' [44:42, 01:41](1848 MB) -PASS -- TEST 'control_p8_lndp_intel' [44:08, 01:01](1761 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [44:08, 01:55](1808 MB) -PASS -- TEST 'control_p8_mynn_intel' [44:06, 01:52](1773 MB) -PASS -- TEST 'merra2_thompson_intel' [44:06, 01:44](1766 MB) -PASS -- TEST 'regional_control_intel' [43:46, 01:10](845 MB) -PASS -- TEST 'regional_restart_intel' [37:08, 00:27](841 MB) -PASS -- TEST 'regional_decomp_intel' [43:32, 00:53](842 MB) -PASS -- TEST 'regional_2threads_intel' [43:19, 00:52](904 MB) -PASS -- TEST 'regional_noquilt_intel' [43:17, 00:22](1168 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [42:56, 00:25](844 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [41:53, 00:14](841 MB) -PASS -- TEST 'regional_wofs_intel' [41:50, 00:43](1572 MB) - -PASS -- COMPILE 'rrfs_intel' [14:26, 11:53] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [54:16, 01:28](909 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [54:17, 01:05](1058 MB) -PASS -- TEST 'rap_decomp_intel' [54:16, 01:39](911 MB) -PASS -- TEST 'rap_2threads_intel' [54:16, 02:08](994 MB) -PASS -- TEST 'rap_restart_intel' [41:10, 01:02](782 MB) -PASS -- TEST 'rap_sfcdiff_intel' [54:16, 01:20](906 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [54:16, 01:41](911 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [40:22, 01:45](777 MB) -PASS -- TEST 'hrrr_control_intel' [54:16, 01:21](909 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [54:16, 01:17](906 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [54:17, 01:46](983 MB) -PASS -- TEST 'hrrr_control_restart_intel' [48:38, 01:02](735 MB) -PASS -- TEST 'rrfs_v1beta_intel' [54:16, 01:18](906 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [54:16, 01:04](1870 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [54:16, 00:19](1857 MB) - -PASS -- COMPILE 'csawmg_intel' [17:30, 16:22] -PASS -- TEST 'control_csawmg_intel' [51:13, 00:32](864 MB) -PASS -- TEST 'control_ras_intel' [51:13, 00:49](559 MB) - -PASS -- COMPILE 'wam_intel' [14:20, 13:20] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [50:11, 00:30](1562 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:39, 09:33] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [40:22, 01:57](1750 MB) -PASS -- TEST 'regional_control_faster_intel' [39:54, 00:22](837 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [18:47, 17:59] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [38:42, 01:18](1501 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [38:39, 01:26](1496 MB) -PASS -- TEST 'control_stochy_debug_intel' [38:26, 00:46](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [37:43, 01:11](699 MB) -PASS -- TEST 'control_csawmg_debug_intel' [37:36, 00:31](1007 MB) -PASS -- TEST 'control_ras_debug_intel' [37:22, 01:18](706 MB) -PASS -- TEST 'control_diag_debug_intel' [37:12, 01:22](1565 MB) -PASS -- TEST 'control_debug_p8_intel' [37:08, 01:00](1791 MB) -PASS -- TEST 'regional_debug_intel' [37:07, 00:39](885 MB) -PASS -- TEST 'rap_control_debug_intel' [36:56, 00:48](1089 MB) -PASS -- TEST 'hrrr_control_debug_intel' [36:54, 00:56](1079 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [36:15, 00:51](1080 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [36:14, 00:49](1082 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [35:57, 00:45](1084 MB) -PASS -- TEST 'rap_diag_debug_intel' [35:50, 00:41](1168 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:49, 00:39](1087 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:28, 00:41](1084 MB) -PASS -- TEST 'rap_lndp_debug_intel' [34:58, 00:42](1086 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [34:06, 00:49](1088 MB) -PASS -- TEST 'rap_noah_debug_intel' [34:06, 00:55](1078 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [34:03, 00:51](1085 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [33:57, 00:46](1081 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [33:55, 00:42](1077 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [33:48, 00:41](1081 MB) -PASS -- TEST 'rap_flake_debug_intel' [33:40, 00:32](1084 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [33:22, 01:56](1088 MB) - -PASS -- COMPILE 'wam_debug_intel' [20:52, 19:56] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [33:22, 00:32](1581 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [25:03, 23:52] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [30:20, 01:29](921 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [30:18, 01:07](783 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [30:14, 02:24](779 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [30:07, 01:25](839 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:31, 02:05](830 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [29:30, 01:40](780 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [23:03, 01:32](676 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [24:22, 00:19](659 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:51, 10:21] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [39:53, 01:08](992 MB) -PASS -- TEST 'conus13km_2threads_intel' [33:10, 00:56](997 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [32:48, 00:43](871 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:29, 08:21] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:35, 01:23](810 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:46, 15:53] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [32:40, 00:51](961 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [32:20, 00:59](957 MB) -PASS -- TEST 'conus13km_debug_intel' [32:16, 00:50](1044 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [31:57, 00:33](717 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [29:19, 00:26](1046 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [29:14, 00:44](1118 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:34, 11:55] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [29:12, 00:49](984 MB) - -PASS -- COMPILE 'hafsw_intel' [11:32, 11:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [29:09, 01:31](600 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:54, 01:13](952 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:48, 01:50](652 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [28:12, 01:45](669 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:24, 01:40](698 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [27:23, 01:05](377 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [27:24, 02:13](393 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [27:23, 01:33](292 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:15, 02:36](368 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [26:17, 01:32](405 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:11, 00:58](411 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [24:17, 00:45](477 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [24:16, 00:28](310 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:29, 09:21] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:08, 01:16](513 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:38, 09:25] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:06, 00:58](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:55, 01:45](701 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:47, 15:17] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:06, 00:56](703 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:34, 12:01] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [22:40, 02:12](649 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [22:22, 02:09](625 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:47, 00:34](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:53, 14:47] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [21:47, 00:40](1822 MB) - -PASS -- COMPILE 'atml_intel' [15:44, 14:59] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [10:36, 09:49] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [16:42, 16:12] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [19:53, 01:19](3028 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [19:53, 01:46](2908 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:53, 01:54](2921 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:33, 07:21] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:41, 01:58](4442 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:25, 11:06] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [55:42, 01:36](3102 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:29, 11:54] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [54:38, 01:57](1819 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [36:32, 01:41](1843 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [36:19, 02:18](973 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:39, 01:38](1791 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:29, 11:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [54:38, 01:15](1805 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:19, 05:20] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [00:49, 01:54](1843 MB) + +PASS -- COMPILE 's2swa_intel' [11:25, 10:57] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [55:42, 01:31](3132 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [55:42, 01:46](3129 MB) +PASS -- TEST 'cpld_restart_p8_intel' [47:28, 01:01](3061 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [55:42, 01:23](3153 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [47:27, 00:59](3082 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [55:42, 01:09](3371 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [55:42, 01:28](3121 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [55:43, 01:40](3075 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [55:42, 01:46](3135 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [55:51, 04:19](4118 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [36:58, 04:03](4263 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [55:42, 01:46](3117 MB) + +PASS -- COMPILE 's2sw_intel' [11:24, 10:34] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [55:43, 00:49](1831 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [55:43, 01:00](1891 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:32] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [55:43, 01:03](1885 MB) + +PASS -- COMPILE 's2s_intel' [11:24, 10:27] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [55:42, 00:53](2866 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [55:42, 01:27](2873 MB) +PASS -- TEST 'cpld_restart_c48_intel' [51:39, 01:11](2293 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:34, 16:29] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [49:33, 01:47](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:29, 11:41] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [54:38, 00:59](1817 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:08, 01:24](983 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:51, 01:46](1802 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:13] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:30, 01:43](1860 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:22, 08:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [46:20, 01:17](571 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [46:20, 00:26](1467 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [46:20, 00:28](1475 MB) +PASS -- TEST 'control_latlon_intel' [46:20, 00:29](1473 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [46:20, 00:33](1475 MB) +PASS -- TEST 'control_c48_intel' [46:19, 00:50](1563 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [46:19, 00:41](692 MB) +PASS -- TEST 'control_c192_intel' [46:20, 01:11](1572 MB) +PASS -- TEST 'control_c384_intel' [46:24, 01:50](1865 MB) +PASS -- TEST 'control_c384gdas_intel' [46:24, 01:57](1063 MB) +PASS -- TEST 'control_stochy_intel' [46:20, 00:24](526 MB) +PASS -- TEST 'control_stochy_restart_intel' [43:54, 01:01](330 MB) +PASS -- TEST 'control_lndp_intel' [46:20, 00:30](527 MB) +PASS -- TEST 'control_iovr4_intel' [46:20, 00:38](522 MB) +PASS -- TEST 'control_iovr5_intel' [46:20, 00:40](518 MB) +PASS -- TEST 'control_p8_intel' [43:54, 01:48](1753 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [42:52, 01:57](1761 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [42:51, 02:00](1769 MB) +PASS -- TEST 'control_restart_p8_intel' [38:32, 00:57](908 MB) +PASS -- TEST 'control_noqr_p8_intel' [42:51, 01:49](1759 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [37:30, 01:08](920 MB) +PASS -- TEST 'control_decomp_p8_intel' [42:34, 01:30](1753 MB) +PASS -- TEST 'control_2threads_p8_intel' [42:31, 01:47](1840 MB) +PASS -- TEST 'control_p8_lndp_intel' [42:25, 01:02](1756 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [42:20, 01:47](1817 MB) +PASS -- TEST 'control_p8_mynn_intel' [41:54, 01:47](1773 MB) +PASS -- TEST 'merra2_thompson_intel' [41:54, 01:41](1761 MB) +PASS -- TEST 'regional_control_intel' [41:45, 01:10](844 MB) +PASS -- TEST 'regional_restart_intel' [35:04, 00:25](836 MB) +PASS -- TEST 'regional_decomp_intel' [41:37, 00:55](842 MB) +PASS -- TEST 'regional_2threads_intel' [41:25, 00:51](898 MB) +PASS -- TEST 'regional_noquilt_intel' [41:10, 00:26](1172 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [40:47, 01:19](844 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [39:34, 00:11](845 MB) +PASS -- TEST 'regional_wofs_intel' [39:33, 00:23](1569 MB) + +PASS -- COMPILE 'rrfs_intel' [09:22, 08:28] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [38:20, 01:35](911 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [37:31, 01:06](1065 MB) +PASS -- TEST 'rap_decomp_intel' [37:30, 01:14](916 MB) +PASS -- TEST 'rap_2threads_intel' [37:27, 01:27](992 MB) +PASS -- TEST 'rap_restart_intel' [29:07, 01:15](783 MB) +PASS -- TEST 'rap_sfcdiff_intel' [37:21, 02:01](908 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [37:21, 01:42](909 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [27:56, 01:48](778 MB) +PASS -- TEST 'hrrr_control_intel' [36:34, 01:12](907 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [35:59, 00:57](907 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [35:43, 01:14](981 MB) +PASS -- TEST 'hrrr_control_restart_intel' [31:09, 01:02](736 MB) +PASS -- TEST 'rrfs_v1beta_intel' [35:26, 02:05](904 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [35:07, 00:40](1865 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [35:01, 01:02](1858 MB) + +PASS -- COMPILE 'csawmg_intel' [08:21, 07:54] +PASS -- TEST 'control_csawmg_intel' [47:21, 00:23](865 MB) +PASS -- TEST 'control_ras_intel' [47:21, 00:50](557 MB) + +PASS -- COMPILE 'wam_intel' [08:21, 07:50] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [47:20, 00:26](1564 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:21, 08:05] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [47:20, 02:03](1762 MB) +PASS -- TEST 'regional_control_faster_intel' [47:19, 00:23](838 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:22, 07:26] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:42, 01:17](1498 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [34:23, 01:26](1493 MB) +PASS -- TEST 'control_stochy_debug_intel' [34:22, 00:41](703 MB) +PASS -- TEST 'control_lndp_debug_intel' [34:11, 01:01](702 MB) +PASS -- TEST 'control_csawmg_debug_intel' [34:05, 00:28](1003 MB) +PASS -- TEST 'control_ras_debug_intel' [33:58, 01:07](705 MB) +PASS -- TEST 'control_diag_debug_intel' [33:58, 01:11](1556 MB) +PASS -- TEST 'control_debug_p8_intel' [33:12, 00:51](1787 MB) +PASS -- TEST 'regional_debug_intel' [33:02, 00:21](886 MB) +PASS -- TEST 'rap_control_debug_intel' [32:34, 00:47](1082 MB) +PASS -- TEST 'hrrr_control_debug_intel' [31:55, 00:48](1078 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [31:18, 00:41](1080 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [31:17, 00:41](1081 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [30:50, 00:40](1083 MB) +PASS -- TEST 'rap_diag_debug_intel' [30:34, 00:36](1164 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [29:51, 00:33](1085 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [29:47, 00:34](1082 MB) +PASS -- TEST 'rap_lndp_debug_intel' [29:45, 00:37](1085 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [29:26, 00:43](1082 MB) +PASS -- TEST 'rap_noah_debug_intel' [29:23, 00:46](1081 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [29:07, 00:44](1080 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [29:05, 00:27](1076 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [28:30, 00:50](1078 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [28:28, 00:58](1083 MB) +PASS -- TEST 'rap_flake_debug_intel' [28:23, 00:41](1086 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:56, 01:53](1085 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:21, 04:26] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [49:17, 01:16](1577 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:23, 07:53] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:40, 01:16](917 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:46, 01:54](781 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:00, 02:19](781 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [25:58, 01:42](838 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [25:44, 02:23](827 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:34, 01:45](779 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:38, 01:28](680 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:13, 00:20](660 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:22, 07:50] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [25:24, 01:06](993 MB) +PASS -- TEST 'conus13km_2threads_intel' [21:32, 00:56](994 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [20:44, 00:44](869 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:24, 07:50] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [25:21, 01:27](808 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 04:34] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [25:07, 00:56](959 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [24:50, 00:54](957 MB) +PASS -- TEST 'conus13km_debug_intel' [24:48, 01:16](1045 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:22, 01:04](716 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:59, 01:07](1046 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:37, 01:17](1115 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:19, 04:40] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [23:23, 00:48](981 MB) + +PASS -- COMPILE 'hafsw_intel' [10:25, 09:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [23:24, 02:14](599 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [23:20, 01:01](947 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [22:55, 01:51](647 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [22:55, 02:21](674 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:35, 02:14](698 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [21:54, 01:05](376 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [21:50, 02:15](391 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [21:39, 01:38](302 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:29, 03:43](376 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [20:13, 01:40](404 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:13, 00:56](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:55, 00:47](483 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:36, 00:28](319 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:19, 04:52] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:32, 01:09](511 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:24, 09:06] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:49, 01:39](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:41, 01:31](703 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:25, 09:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:38, 01:10](707 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:22, 08:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [18:21, 02:48](644 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:00, 02:40](622 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:44, 01:07](879 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:25, 09:33] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [17:05, 00:39](1828 MB) + +PASS -- COMPILE 'atml_intel' [09:23, 08:52] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [06:20, 05:28] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [08:27, 08:03] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [17:04, 01:18](3026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [16:53, 01:47](2912 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [16:36, 01:42](2921 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:19, 04:27] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [16:21, 01:22](4447 MB) SYNOPSIS: -Starting Date/Time: 20240809 15:38:32 -Ending Date/Time: 20240809 17:05:15 -Total Time: 01h:27m:22s +Starting Date/Time: 20240816 11:52:28 +Ending Date/Time: 20240816 13:09:44 +Total Time: 01h:17m:47s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/parm/MOM_input_025.IN b/tests/parm/MOM_input_025.IN index 0898e1def4..2a0ef86fcb 100644 --- a/tests/parm/MOM_input_025.IN +++ b/tests/parm/MOM_input_025.IN @@ -882,9 +882,7 @@ CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 ! The drag coefficient that applies to the tides. GUST_CONST = 0.0 ! [Pa] default = 0.02 ! The background gustiness in the winds. -FIX_USTAR_GUSTLESS_BUG = False ! [Boolean] default = False - ! If true correct a bug in the time-averaging of the gustless wind friction - ! velocity +USTAR_GUSTLESS_BUG = True ! [Boolean] default = False USE_RIGID_SEA_ICE = True ! [Boolean] default = False ! If true, sea-ice is rigid enough to exert a nonhydrostatic pressure that ! resist vertical motion. @@ -902,3 +900,5 @@ PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False ! === module MOM_restart === RESTART_CHECKSUMS_REQUIRED = False ! === module MOM_file_parser === + +USE_HUYNH_STENCIL_BUG = True diff --git a/tests/parm/MOM_input_050.IN b/tests/parm/MOM_input_050.IN index 3974f87cfe..d26b887e9a 100644 --- a/tests/parm/MOM_input_050.IN +++ b/tests/parm/MOM_input_050.IN @@ -927,9 +927,7 @@ CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 ! The drag coefficient that applies to the tides. GUST_CONST = 0.0 ! [Pa] default = 0.02 ! The background gustiness in the winds. -FIX_USTAR_GUSTLESS_BUG = False ! [Boolean] default = False - ! If true correct a bug in the time-averaging of the gustless wind friction - ! velocity +USTAR_GUSTLESS_BUG = True ! [Boolean] default = False USE_RIGID_SEA_ICE = True ! [Boolean] default = False ! If true, sea-ice is rigid enough to exert a nonhydrostatic pressure that ! resist vertical motion. @@ -947,3 +945,5 @@ PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False ! === module MOM_restart === ! === module MOM_file_parser === + +USE_HUYNH_STENCIL_BUG = True diff --git a/tests/parm/MOM_input_100.IN b/tests/parm/MOM_input_100.IN index 70efc8da9d..315cbe8995 100644 --- a/tests/parm/MOM_input_100.IN +++ b/tests/parm/MOM_input_100.IN @@ -854,9 +854,7 @@ CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 ! The drag coefficient that applies to the tides. GUST_CONST = 0.02 ! [Pa] default = 0.0 ! The background gustiness in the winds. -FIX_USTAR_GUSTLESS_BUG = False ! [Boolean] default = True - ! If true correct a bug in the time-averaging of the gustless wind friction - ! velocity +USTAR_GUSTLESS_BUG = True ! [Boolean] default = False ! === module ocean_stochastics === DO_SPPT = @[DO_OCN_SPPT] ! [Boolean] default = False ! If true perturb the diabatic tendencies in MOM_diabadic_driver @@ -866,3 +864,5 @@ PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False ! === module MOM_restart === ! === module MOM_file_parser === + +USE_HUYNH_STENCIL_BUG = True diff --git a/tests/parm/MOM_input_500.IN b/tests/parm/MOM_input_500.IN index bf474652ee..aa1befa83e 100644 --- a/tests/parm/MOM_input_500.IN +++ b/tests/parm/MOM_input_500.IN @@ -49,6 +49,9 @@ NJGLOBAL = @[NY_GLB] ! ! The total number of thickness grid points in the y-direction in the physical ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +DEFAULT_ANSWER_DATE = 20231231 ! default = 99991231 + ! This sets the default value for the various _ANSWER_DATE parameters. + ! === module MOM_hor_index === ! Sets the horizontal array index types. @@ -592,3 +595,5 @@ WIND_STAGGER = "A" ! default = "C" ! === module MOM_restart === ! === module MOM_file_parser === + +USE_HUYNH_STENCIL_BUG = True diff --git a/tests/parm/MOM_input_hafs b/tests/parm/MOM_input_hafs index b7fd7e72bc..1b79ea777a 100644 --- a/tests/parm/MOM_input_hafs +++ b/tests/parm/MOM_input_hafs @@ -942,9 +942,7 @@ LATENT_HEAT_VAPORIZATION = 2.5E+06 ! [J/kg] default = 2.5E+06 ! surface anomaly (akin to a piston velocity). Note the non-MKS units. GUST_CONST = 0.0 ! [Pa] default = 0.0 ! The background gustiness in the winds. -FIX_USTAR_GUSTLESS_BUG = True ! [Boolean] default = True - ! If true correct a bug in the time-averaging of the gustless wind friction - ! velocity +USTAR_GUSTLESS_BUG = False ! [Boolean] default = True ! These parameters are used in CORE mode but should not be used in ! the coupled model (CM4). @@ -974,3 +972,5 @@ USE_NET_FW_ADJUSTMENT_SIGN_BUG = False ! [Boolean] default = True ! === module MOM_restart === ! === module MOM_file_parser === + +USE_HUYNH_STENCIL_BUG = True diff --git a/tests/test_changes.list b/tests/test_changes.list index e498af5875..af65968c39 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1 +1,53 @@ +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel +datm_cdeps_control_cfsr intel +datm_cdeps_restart_cfsr intel +datm_cdeps_control_gefs intel +datm_cdeps_iau_gefs intel +datm_cdeps_stochy_gefs intel +datm_cdeps_ciceC_cfsr intel +datm_cdeps_bulk_cfsr intel +datm_cdeps_bulk_gefs intel +datm_cdeps_mx025_cfsr intel +datm_cdeps_mx025_gefs intel +datm_cdeps_3072x1536_cfsr intel +datm_cdeps_gfs intel +datm_cdeps_debug_cfsr intel +datm_cdeps_control_cfsr_faster intel +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu cpld_debug_pdlib_p8 gnu +datm_cdeps_control_cfsr gnu diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index 362e5a112d..c4ddae40b3 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -14,7 +14,8 @@ export LIST_FILES="sfcf021.nc \ GFSFLX.GrbF21 \ GFSFLX.GrbF24 \ GFSPRS.GrbF21 \ - GFSPRS.GrbF24" + GFSPRS.GrbF24 \ + RESTART/20210323.060000.MOM.res.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index e0a2383ce5..9f577a1b92 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -74,6 +74,7 @@ ICE_tasks=$ICE_tasks_cpl_unstr WAV_tasks=$WAV_tasks_cpl_unstr # bump resources for debug test WAV_tasks="$(($WAV_tasks_cpl_unstr + 18))" +OCN_tasks="$((OCN_tasks_cpl_unstr + 16))" export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 index 60ce05b605..a0bd1aba05 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 @@ -12,7 +12,8 @@ export LIST_FILES="atmf003.nc \ sfcf003.nc \ atm.nest02.f003.nc \ sfc.nest02.f003.nc \ - ocn_2020_08_25_15.nc \ + RESTART/20200825.150000.MOM.res.nc \ + RESTART/20200825.150000.MOM.res_1.nc \ 20200825.150000.out_grd.ww3 \ 20200825.150000.out_pnt.ww3" From b3cdd8e2453133d073bbeca100fa605a35febc67 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Wed, 21 Aug 2024 08:23:16 -0400 Subject: [PATCH 18/33] Allow use of downscaled warmstart files for cpld_control_sfs test (#2375) * UFSWM - Update the MOM_input templates and RT scripts to allow use of downscaled MOM6 and CICE6 warmstarts. * update script variables and sfs test --- .github/workflows/aux.yml | 2 +- .github/workflows/build_test.yml | 4 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 27 +- tests/fv3_conf/cpld_control_run.IN | 11 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 601 +++++++------- tests/logs/RegressionTests_derecho.log | 548 ++++++------- tests/logs/RegressionTests_gaea.log | 546 ++++++------- tests/logs/RegressionTests_hera.log | 719 +++++++++-------- tests/logs/RegressionTests_hercules.log | 733 +++++++++--------- tests/logs/RegressionTests_jet.log | 495 ++++++------ tests/logs/RegressionTests_orion.log | 536 ++++++------- tests/logs/RegressionTests_wcoss2.log | 460 +++++------ tests/parm/MOM_input_050.IN | 91 ++- tests/parm/MOM_input_100.IN | 91 ++- tests/rt.sh | 2 +- tests/test_changes.list | 54 +- tests/tests/cpld_control_sfs | 7 + 21 files changed, 2621 insertions(+), 2410 deletions(-) diff --git a/.github/workflows/aux.yml b/.github/workflows/aux.yml index b9262bd816..816c7fc28b 100644 --- a/.github/workflows/aux.yml +++ b/.github/workflows/aux.yml @@ -21,7 +21,7 @@ jobs: - name: Share helper id run: echo -n ${{ github.run_id }} >~/id_file - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: ~/id_file key: helperid-${{ github.event.workflow_run.id }} diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 94df20a235..21de1f26bc 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -16,12 +16,12 @@ jobs: current: ${{ steps.check.outputs.current }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Wait for caching source run: sleep 30 - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: ~/id_file key: helperid-${{ github.run_id }} diff --git a/tests/bl_date.conf b/tests/bl_date.conf index cab475be3a..157bf4a50b 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240813 +export BL_DATE=20240819 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 78a89ec8e6..facee8e4b1 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -10,7 +10,7 @@ THRD=1 export INPES_atmaero=4 - export JNPES_atmaero=8 + export JNPES_atmaero=8 export WPG_atmaero=6 export THRD_cpl_atmw=1 @@ -121,12 +121,12 @@ if [[ ${MACHINE_ID} = wcoss2 || ${MACHINE_ID} = acorn ]]; then export TPN=128 - export INPES_dflt=3 + export INPES_dflt=3 export JNPES_dflt=8 export INPES_thrd=3 export JNPES_thrd=4 export INPES_c384=8 - export JNPES_c384=6 + export JNPES_c384=6 export THRD_c384=2 export INPES_c768=8 export JNPES_c768=16 @@ -144,7 +144,7 @@ elif [[ ${MACHINE_ID} = orion ]]; then export INPES_dflt=3 export JNPES_dflt=8 - export INPES_thrd=3 + export INPES_thrd=3 export JNPES_thrd=4 export INPES_c384=8 export JNPES_c384=6 @@ -168,7 +168,7 @@ elif [[ ${MACHINE_ID} = hercules ]]; then export INPES_thrd=3 export JNPES_thrd=4 export INPES_c384=8 - export JNPES_c384=6 + export JNPES_c384=6 export THRD_c384=2 export INPES_c768=8 export JNPES_c768=16 @@ -187,10 +187,10 @@ elif [[ ${MACHINE_ID} = hera ]]; then export INPES_dflt=3 export JNPES_dflt=8 - export INPES_thrd=3 + export INPES_thrd=3 export JNPES_thrd=4 export INPES_c384=6 - export JNPES_c384=8 + export JNPES_c384=8 export THRD_c384=2 export INPES_c768=8 export JNPES_c768=16 @@ -274,7 +274,7 @@ elif [[ ${MACHINE_ID} = s4 ]]; then export TPN=32 - export INPES_dflt=3 + export INPES_dflt=3 export JNPES_dflt=8 export INPES_thrd=3 export JNPES_thrd=4 @@ -325,10 +325,10 @@ elif [[ ${MACHINE_ID} = derecho ]]; then export TPN=128 export INPES_dflt=3 export JNPES_dflt=8 - export INPES_thrd=3 + export INPES_thrd=3 export JNPES_thrd=4 export INPES_c384=8 - export JNPES_c384=6 + export JNPES_c384=6 export THRD_c384=2 export INPES_c768=8 export JNPES_c768=16 @@ -916,6 +916,8 @@ export_cice6() { export CICE_USE_RESTART_TIME=.false. export CICE_RESTART_DIR=./RESTART/ export CICE_RESTART_FILE=iced + # CICE6 warmstarts + export OCNICE_WARMSTART=.false. export CICE_RESTART_FORMAT='pnetcdf2' export CICE_RESTART_IOTASKS=-99 @@ -1004,6 +1006,11 @@ export_mom6() { export PERT_EPBL=False export OCN_SPPT=-999. export EPBL=-999. + # MOM6 warmstarts + export OCNICE_WARMSTART=.false. + export MOM6_INIT_FROM_Z=True + export MOM6_INIT_UV="zero" + export MOM6_WARMSTART_FILE="none" } # Defaults for the WW3 global model diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 816516d7a0..fda28f6d11 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -33,7 +33,7 @@ else FV3_IC=@[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_mx${OCNRES} fi MOM_IC=@[INPUTDATA_ROOT]/MOM6_IC - ICE_IC=@[INPUTDATA_ROOT]/CICE_IC/${OCNRES} + ICE_IC=@[INPUTDATA_ROOT]/CICE_IC fi fi @@ -90,8 +90,13 @@ if [ $WARM_START = .false. ]; then cp ${MOM_IC}/MOM.res.nc ./INPUT cp ${ICE_IC}/cice_model_@[ICERES].cpc.res_* ./cice_model.res.nc else - cp ${MOM_IC}/MOM6_IC_TS_${SYEAR}${SMONTH}${SDAY}${SHOUR}.nc ./INPUT/MOM6_IC_TS.nc - cp ${ICE_IC}/cice_model_@[ICERES].cpc.res_${SYEAR}${SMONTH}${SDAY}.nc ./cice_model.res.nc + if [[ $OCNICE_WARMSTART == .true. ]]; then + cp ${MOM_IC}/mom6.mx@[OCNRES].${SYEAR}${SMONTH}${SDAY}${SHOUR}.warmstart.nc ./INPUT/mom6.warmstart.nc + cp ${ICE_IC}/cice.mx@[OCNRES].${SYEAR}${SMONTH}${SDAY}${SHOUR}.warmstart.nc ./cice.warmstart.nc + else + cp ${MOM_IC}/MOM6_IC_TS_${SYEAR}${SMONTH}${SDAY}${SHOUR}.nc ./INPUT/MOM6_IC_TS.nc + cp ${ICE_IC}/${OCNRES}/cice_model_@[ICERES].cpc.res_${SYEAR}${SMONTH}${SDAY}.nc ./cice_model.res.nc + fi fi fi else diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 9c5a701824..c9b50e6883 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Aug 14 04:49:29 UTC 2024 +Mon Aug 19 23:31:13 UTC 2024 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_1991485/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_541162/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 = 284.606332 - 0: The maximum resident set size (KB) = 1454664 + 0: The total amount of wall time = 287.839117 + 0: The maximum resident set size (KB) = 1460536 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_1991485/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_541162/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 = 963.742336 - 0: The maximum resident set size (KB) = 1417032 + 0: The total amount of wall time = 976.777842 + 0: The maximum resident set size (KB) = 1413764 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_1991485/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_541162/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 = 244.954476 - 0: The maximum resident set size (KB) = 1425708 + 0: The total amount of wall time = 258.107962 + 0: The maximum resident set size (KB) = 1430104 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_1991485/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_541162/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 = 246.793628 - 0: The maximum resident set size (KB) = 1424252 + 0: The total amount of wall time = 256.322579 + 0: The maximum resident set size (KB) = 1419972 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_1991485/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_541162/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 = 246.591406 - 0: The maximum resident set size (KB) = 1425312 + 0: The total amount of wall time = 251.588379 + 0: The maximum resident set size (KB) = 1423556 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_1991485/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_541162/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 = 253.919221 - 0: The maximum resident set size (KB) = 1425460 + 0: The total amount of wall time = 259.349362 + 0: The maximum resident set size (KB) = 1425980 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_1991485/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_541162/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 = 247.819336 - 0: The maximum resident set size (KB) = 1425916 + 0: The total amount of wall time = 271.924255 + 0: The maximum resident set size (KB) = 1426080 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 14 05:57:13 UTC 2024 -Elapsed time: 01h:07m:47s. Have a nice day! +Tue Aug 20 00:36:54 UTC 2024 +Elapsed time: 01h:05m:42s. 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 9f82d1cb58..a1d74982f1 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Wed Aug 14 03:34:34 UTC 2024 +Mon Aug 19 22:27:02 UTC 2024 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_802869/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3480289/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 = 1485.131443 - 0: The maximum resident set size (KB) = 1540540 + 0: The total amount of wall time = 1390.344099 + 0: The maximum resident set size (KB) = 1534724 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_802869/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3480289/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.652936 - 0: The maximum resident set size (KB) = 1529736 + 0: The total amount of wall time = 497.678068 + 0: The maximum resident set size (KB) = 1527568 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_802869/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3480289/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 = 432.966302 - 0: The maximum resident set size (KB) = 1528124 + 0: The total amount of wall time = 434.165467 + 0: The maximum resident set size (KB) = 1524884 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 14 04:49:26 UTC 2024 -Elapsed time: 01h:14m:53s. Have a nice day! +Mon Aug 19 23:31:12 UTC 2024 +Elapsed time: 01h:04m:11s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index d77ab86262..15f2c54c42 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Tue Aug 13 21:40:20 UTC 2024 +Mon Aug 19 17:06:27 UTC 2024 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_3112206/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3485589/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 = 1417.012128 - 0: The maximum resident set size (KB) = 777980 + 0: The total amount of wall time = 1462.378045 + 0: The maximum resident set size (KB) = 778120 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_3112206/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3485589/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 = 2254.022804 - 0: The maximum resident set size (KB) = 743156 + 0: The total amount of wall time = 2184.968736 + 0: The maximum resident set size (KB) = 721156 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_3112206/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3485589/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 = 2149.586191 - 0: The maximum resident set size (KB) = 720988 + 0: The total amount of wall time = 2182.336233 + 0: The maximum resident set size (KB) = 739780 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_3112206/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3485589/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 = 2187.962794 - 0: The maximum resident set size (KB) = 719432 + 0: The total amount of wall time = 2264.402737 + 0: The maximum resident set size (KB) = 719596 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 14 03:34:33 UTC 2024 -Elapsed time: 05h:54m:14s. Have a nice day! +Mon Aug 19 22:27:01 UTC 2024 +Elapsed time: 05h:20m:34s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index cf536a8d6c..a12d38fe74 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,31 +1,31 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -1d72e10c471068cdf993bc535757009c7d8230d0 +b31bee9d28f985abeb40e588121d2e2ee86ab1ec Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (remotes/origin/HEAD) + 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,274 +35,341 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3669415 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240819 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4144766 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:23, 11:02] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:52, 02:10](3214 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 16:07] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [35:47, 02:46](1922 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [09:50, 02:31](1965 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:49, 03:11](1071 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:48, 02:38](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 16:15] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [35:47, 00:52](1922 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:50] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [46:59, 02:37](1965 MB) - -PASS -- COMPILE 's2swa_intel' [11:23, 10:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [40:52, 01:34](3243 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:52, 02:25](3238 MB) -PASS -- TEST 'cpld_restart_p8_intel' [25:50, 02:07](3175 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [40:52, 01:10](3266 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [28:01, 02:07](3194 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [40:52, 01:55](3479 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [40:52, 01:51](3235 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [40:53, 01:17](3185 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:52, 02:22](3244 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [40:52, 02:03](3223 MB) - -PASS -- COMPILE 's2sw_intel' [11:24, 10:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [40:51, 01:54](1932 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [40:51, 02:14](2004 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:52, 02:19](1993 MB) - -PASS -- COMPILE 's2s_intel' [10:23, 09:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [41:51, 00:56](2944 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [41:51, 01:28](2952 MB) -PASS -- TEST 'cpld_restart_c48_intel' [37:24, 01:27](2363 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [35:45, 02:28](3240 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 15:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:45, 01:34](1939 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:47, 01:50](1122 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [08:30, 01:35](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:30] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:41, 01:34](1983 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:24, 10:14] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [28:55, 00:52](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [25:37, 01:04](1572 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:37, 00:30](1579 MB) -PASS -- TEST 'control_latlon_intel' [25:32, 00:44](1575 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:22, 01:10](1575 MB) -PASS -- TEST 'control_c48_intel' [24:57, 01:02](1617 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [23:59, 01:05](734 MB) -PASS -- TEST 'control_c192_intel' [22:34, 00:51](1692 MB) -PASS -- TEST 'control_c384_intel' [22:34, 01:56](2002 MB) -PASS -- TEST 'control_c384gdas_intel' [21:56, 03:08](1198 MB) -PASS -- TEST 'control_stochy_intel' [19:36, 01:07](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:57, 00:44](433 MB) -PASS -- TEST 'control_lndp_intel' [18:32, 01:03](630 MB) -PASS -- TEST 'control_iovr4_intel' [15:37, 00:38](624 MB) -PASS -- TEST 'control_iovr5_intel' [15:43, 00:59](623 MB) -PASS -- TEST 'control_p8_intel' [15:39, 02:32](1869 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [15:36, 02:25](1871 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [13:52, 02:00](1870 MB) -PASS -- TEST 'control_restart_p8_intel' [03:09, 02:20](1021 MB) -PASS -- TEST 'control_noqr_p8_intel' [13:33, 02:03](1860 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:50, 02:04](1002 MB) -PASS -- TEST 'control_decomp_p8_intel' [13:32, 02:24](1856 MB) -PASS -- TEST 'control_2threads_p8_intel' [13:28, 01:59](1957 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:41, 00:27](1868 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:24, 02:20](1924 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:29, 02:36](1882 MB) -PASS -- TEST 'merra2_thompson_intel' [10:27, 03:01](1871 MB) -PASS -- TEST 'regional_control_intel' [10:10, 00:16](870 MB) -PASS -- TEST 'regional_restart_intel' [02:17, 00:35](861 MB) -PASS -- TEST 'regional_decomp_intel' [08:26, 00:53](872 MB) -PASS -- TEST 'regional_2threads_intel' [07:56, 00:50](1005 MB) -PASS -- TEST 'regional_noquilt_intel' [07:12, 01:11](1196 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:05, 00:33](872 MB) -PASS -- TEST 'regional_wofs_intel' [07:04, 01:03](1599 MB) - -PASS -- COMPILE 'ifi_intel' [09:22, 08:32] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [32:29, 00:20](872 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [32:29, 00:12](875 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [32:30, 00:38](1011 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:36] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [31:17, 01:14](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [31:18, 01:11](1189 MB) -PASS -- TEST 'rap_decomp_intel' [31:17, 01:47](1010 MB) -PASS -- TEST 'rap_2threads_intel' [31:17, 02:37](1094 MB) -PASS -- TEST 'rap_restart_intel' [06:59, 02:34](888 MB) -PASS -- TEST 'rap_sfcdiff_intel' [31:17, 02:42](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:17, 01:25](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:21, 02:16](889 MB) -PASS -- TEST 'hrrr_control_intel' [31:17, 02:24](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [31:17, 02:38](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [31:18, 02:47](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:03, 00:25](841 MB) -PASS -- TEST 'rrfs_v1beta_intel' [31:17, 02:43](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [03:37, 00:37](1969 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [03:28, 00:31](1957 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:56] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [31:29, 00:52](967 MB) -PASS -- TEST 'control_ras_intel' [31:29, 00:53](659 MB) - -PASS -- COMPILE 'wam_intel' [09:22, 08:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [31:30, 00:19](1666 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:22, 02:11](1866 MB) -PASS -- TEST 'regional_control_faster_intel' [03:08, 00:49](866 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [33:47, 05:42] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [01:59, 00:34](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [01:37, 01:24](1618 MB) -PASS -- TEST 'control_stochy_debug_intel' [01:28, 01:02](815 MB) -PASS -- TEST 'control_lndp_debug_intel' [01:28, 00:18](812 MB) -PASS -- TEST 'control_csawmg_debug_intel' [01:06, 00:30](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [00:43, 01:14](828 MB) -PASS -- TEST 'control_diag_debug_intel' [00:26, 01:02](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [00:13, 01:00](1910 MB) -PASS -- TEST 'regional_debug_intel' [00:03, 00:50](933 MB) -PASS -- TEST 'rap_control_debug_intel' [59:57, 00:34](1197 MB) -PASS -- TEST 'hrrr_control_debug_intel' [59:34, 00:43](1194 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [57:50, 01:00](1197 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [57:58, 01:07](1199 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [57:21, 00:17](1195 MB) -PASS -- TEST 'rap_diag_debug_intel' [57:06, 01:09](1278 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [57:00, 00:54](1196 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [56:59, 01:09](1201 MB) -PASS -- TEST 'rap_lndp_debug_intel' [55:58, 01:10](1198 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [55:53, 00:22](1197 MB) -PASS -- TEST 'rap_noah_debug_intel' [55:35, 00:38](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [55:17, 00:37](1193 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [55:12, 00:23](1195 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [54:20, 01:00](1190 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [54:29, 00:50](1199 MB) -PASS -- TEST 'rap_flake_debug_intel' [54:14, 00:53](1203 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [53:59, 03:04](1199 MB) - -PASS -- COMPILE 'wam_debug_intel' [50:05, 03:49] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [45:41, 00:55](1706 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [56:14, 09:00] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [39:32, 00:53](1055 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [39:31, 02:06](888 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [39:31, 04:15](888 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [39:31, 02:15](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [39:32, 02:44](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [39:31, 03:44](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:41, 02:41](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:22, 00:15](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [58:16, 11:55] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [37:29, 00:40](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:40, 00:39](1078 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:39, 01:14](978 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [53:11, 09:04] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:19, 01:29](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [47:01, 03:53] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [44:28, 00:46](1074 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:28, 00:55](1067 MB) -PASS -- TEST 'conus13km_debug_intel' [44:28, 00:25](1168 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [44:28, 01:01](855 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [44:29, 00:57](1150 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:28, 00:39](1251 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [47:03, 03:47] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:26, 00:39](1093 MB) - -PASS -- COMPILE 'hafsw_intel' [54:10, 10:23] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [37:10, 01:30](706 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:10, 00:27](1055 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:08, 01:24](763 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [37:08, 01:48](798 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:09, 01:53](955 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [37:08, 00:56](483 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [37:09, 01:41](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [37:09, 01:19](386 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [37:12, 03:01](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [37:08, 01:14](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [37:08, 01:27](515 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [37:09, 00:48](578 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [37:08, 01:20](415 MB) -PASS -- TEST 'gnv1_nested_intel' [37:07, 03:37](1712 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [47:05, 04:15] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:25, 00:44](685 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [53:11, 13:45] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:19, 01:34](625 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [33:19, 01:47](798 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [25:40, 10:13] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:20, 01:40](796 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:23, 09:49] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [30:46, 01:53](758 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:15, 01:57](743 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:09, 00:44](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:23, 09:17] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [27:02, 00:50](769 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [19:35, 00:34](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [25:18, 00:45](652 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [24:52, 00:55](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [24:02, 00:52](649 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [22:15, 00:42](768 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [22:07, 01:02](756 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [22:02, 00:50](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:33, 01:52](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [18:53, 01:13](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [18:07, 00:28](767 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [17:30, 00:25](2037 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [17:25, 00:58](2034 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:24, 09:22] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:46, 00:47](768 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [09:22, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [16:39, 01:14](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [15:52, 00:38](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [11:19, 01:10](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:29, 09:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:43, 01:02](1930 MB) - -PASS -- COMPILE 'atml_intel' [16:30, 10:38] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:44, 02:25](1895 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [14:34, 02:16](1895 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:05, 01:14](1047 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:23, 04:33] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [13:39, 02:08](1934 MB) - -PASS -- COMPILE 'atmw_intel' [15:29, 09:26] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [13:07, 02:40](1905 MB) - -PASS -- COMPILE 'atmaero_intel' [39:55, 09:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [56:22, 01:51](3130 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [56:22, 02:01](3015 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [56:22, 02:10](3025 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [33:47, 03:52] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [01:30, 01:45](4543 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:35, 10:23] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:45, 01:43](3316 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:40, 15:55] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [01:40, 02:33](2097 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [41:02, 03:17](2122 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [41:00, 03:07](1230 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [01:41, 01:38](2160 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:41, 16:07] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [01:38, 01:16](2071 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:31, 05:55] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [11:49, 02:50](2174 MB) + +PASS -- COMPILE 's2swa_intel' [20:36, 10:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:43, 01:16](3339 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:43, 02:22](3338 MB) +PASS -- TEST 'cpld_restart_p8_intel' [58:53, 01:46](3263 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:43, 01:11](3341 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [58:54, 01:54](3282 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:43, 01:32](3619 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:43, 01:56](3333 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:44, 01:42](3450 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:43, 01:49](3339 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:43, 01:56](3266 MB) + +PASS -- COMPILE 's2sw_intel' [20:34, 09:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:45, 01:44](2006 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:45, 02:13](2024 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [20:35, 09:43] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:44, 02:18](2044 MB) + +PASS -- COMPILE 's2s_intel' [20:36, 09:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:42, 01:00](2889 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:42, 01:30](2899 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:01, 01:29](2307 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:41, 15:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [02:38, 01:45](3340 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [26:42, 15:39] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [01:37, 01:28](2097 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [41:49, 01:04](1274 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:33, 01:16](2160 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:34] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:30, 01:40](2197 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:22, 09:04] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [58:23, 00:31](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [58:23, 00:47](1546 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:23, 00:39](1552 MB) +PASS -- TEST 'control_latlon_intel' [58:23, 00:59](1556 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [58:23, 01:08](1547 MB) +PASS -- TEST 'control_c48_intel' [58:22, 01:25](1578 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [58:22, 00:47](711 MB) +PASS -- TEST 'control_c192_intel' [58:23, 00:47](1776 MB) +PASS -- TEST 'control_c384_intel' [58:27, 02:38](3083 MB) +PASS -- TEST 'control_c384gdas_intel' [58:27, 02:37](2302 MB) +PASS -- TEST 'control_stochy_intel' [58:23, 00:32](605 MB) +PASS -- TEST 'control_stochy_restart_intel' [44:37, 00:38](411 MB) +PASS -- TEST 'control_lndp_intel' [58:23, 01:07](609 MB) +PASS -- TEST 'control_iovr4_intel' [58:23, 01:15](599 MB) +PASS -- TEST 'control_iovr5_intel' [57:28, 00:32](604 MB) +PASS -- TEST 'control_p8_intel' [56:29, 02:46](1826 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [53:36, 02:23](1840 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [53:22, 02:40](1841 MB) +PASS -- TEST 'control_restart_p8_intel' [36:48, 01:18](991 MB) +PASS -- TEST 'control_noqr_p8_intel' [52:19, 02:41](1830 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [36:48, 02:11](1001 MB) +PASS -- TEST 'control_decomp_p8_intel' [51:34, 01:42](1812 MB) +PASS -- TEST 'control_2threads_p8_intel' [51:25, 02:00](1930 MB) +PASS -- TEST 'control_p8_lndp_intel' [50:25, 00:57](1839 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [46:38, 01:56](1888 MB) +PASS -- TEST 'control_p8_mynn_intel' [46:20, 02:25](1852 MB) +PASS -- TEST 'merra2_thompson_intel' [44:38, 02:19](1829 MB) +PASS -- TEST 'regional_control_intel' [43:35, 00:45](874 MB) +PASS -- TEST 'regional_restart_intel' [26:54, 00:27](866 MB) +PASS -- TEST 'regional_decomp_intel' [41:50, 01:05](864 MB) +PASS -- TEST 'regional_2threads_intel' [40:42, 01:08](1183 MB) +PASS -- TEST 'regional_noquilt_intel' [40:36, 00:55](1191 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [40:34, 00:28](868 MB) +PASS -- TEST 'regional_wofs_intel' [40:13, 00:16](1595 MB) + +PASS -- COMPILE 'ifi_intel' [08:21, 07:51] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [59:21, 01:10](863 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [59:21, 01:05](859 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [59:22, 01:00](1174 MB) + +PASS -- COMPILE 'rrfs_intel' [09:23, 08:33] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [39:26, 02:45](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [39:20, 00:39](1656 MB) +PASS -- TEST 'rap_decomp_intel' [39:07, 02:06](993 MB) +PASS -- TEST 'rap_2threads_intel' [39:02, 01:32](1093 MB) +PASS -- TEST 'rap_restart_intel' [29:01, 02:35](836 MB) +PASS -- TEST 'rap_sfcdiff_intel' [38:54, 02:22](993 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [38:00, 02:03](990 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'rap_sfcdiff_restart_intel' [, ]( MB) +PASS -- TEST 'hrrr_control_intel' [37:06, 02:20](987 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [36:54, 02:11](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [36:49, 02:54](1218 MB) +PASS -- TEST 'hrrr_control_restart_intel' [29:32, 01:14](787 MB) +PASS -- TEST 'rrfs_v1beta_intel' [36:40, 02:14](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [35:21, 01:01](1951 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [35:15, 01:13](1938 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:17] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [34:43, 00:39](941 MB) +PASS -- TEST 'control_ras_intel' [34:39, 00:50](641 MB) + +PASS -- COMPILE 'wam_intel' [12:25, 08:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [34:03, 00:29](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:27, 08:28] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [33:49, 02:27](1837 MB) +PASS -- TEST 'regional_control_faster_intel' [33:01, 00:48](862 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:24, 07:08] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [31:42, 00:28](1584 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [31:20, 00:50](1585 MB) +PASS -- TEST 'control_stochy_debug_intel' [30:03, 00:33](794 MB) +PASS -- TEST 'control_lndp_debug_intel' [29:51, 00:59](795 MB) +PASS -- TEST 'control_csawmg_debug_intel' [29:32, 00:39](1096 MB) +PASS -- TEST 'control_ras_debug_intel' [28:28, 00:23](800 MB) +PASS -- TEST 'control_diag_debug_intel' [28:31, 00:45](1654 MB) +PASS -- TEST 'control_debug_p8_intel' [27:34, 00:39](1864 MB) +PASS -- TEST 'regional_debug_intel' [27:06, 00:23](926 MB) +PASS -- TEST 'rap_control_debug_intel' [26:46, 00:39](1173 MB) +PASS -- TEST 'hrrr_control_debug_intel' [26:28, 00:31](1166 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [26:18, 00:18](1172 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [26:17, 00:25](1169 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [25:54, 01:13](1173 MB) +PASS -- TEST 'rap_diag_debug_intel' [25:33, 01:27](1261 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [25:27, 00:23](1173 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [25:21, 01:15](1177 MB) +PASS -- TEST 'rap_lndp_debug_intel' [24:57, 00:50](1176 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [23:56, 00:18](1176 MB) +PASS -- TEST 'rap_noah_debug_intel' [23:47, 01:00](1169 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [23:30, 00:58](1173 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [23:31, 00:21](1168 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [22:44, 00:39](1168 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [22:42, 00:21](1174 MB) +PASS -- TEST 'rap_flake_debug_intel' [22:34, 00:46](1172 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [21:39, 02:29](1174 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:21, 04:50] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [21:35, 00:34](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:24, 08:14] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [20:40, 01:11](1522 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [20:13, 02:24](864 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [19:53, 04:04](860 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [19:44, 02:47](935 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [19:45, 02:26](1063 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [18:55, 03:47](859 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:27, 02:20](759 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:19, 01:14](743 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:24, 08:16] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [18:23, 01:22](1069 MB) +PASS -- TEST 'conus13km_2threads_intel' [13:11, 01:10](1399 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [13:10, 00:51](911 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 08:13] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [17:55, 00:52](893 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [50:06, 04:54] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:16, 00:46](1051 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:16, 00:54](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [08:16, 00:54](1158 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [08:16, 00:58](840 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:17, 00:57](1471 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [08:16, 00:35](1229 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [49:07, 04:48] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:12, 00:28](1075 MB) + +PASS -- COMPILE 'hafsw_intel' [54:13, 09:38] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [03:41, 02:12](1669 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [03:26, 01:06](2019 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [02:40, 02:02](1196 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [02:07, 01:31](1229 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [01:46, 02:17](1375 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [01:42, 00:55](922 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [57:44, 01:47](1212 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [56:55, 01:46](1100 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [55:57, 03:04](1993 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [55:21, 01:32](957 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [54:17, 00:53](964 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [52:47, 01:15](1549 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [51:46, 01:05](1128 MB) +PASS -- TEST 'gnv1_nested_intel' [49:48, 03:17](1897 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [46:03, 05:30] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [08:20, 01:13](1627 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [49:07, 09:06] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:15, 00:54](1587 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [04:15, 01:28](1765 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [48:06, 09:32] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [49:38, 01:33](1764 MB) + +PASS -- COMPILE 'hafs_all_intel' [46:02, 08:54] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [05:01, 01:27](1185 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:01, 02:13](1167 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [04:59, 01:12](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [46:02, 09:15] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:10, 01:05](769 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [33:13, 00:23](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:10, 00:27](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 01:09](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 00:44](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:10, 00:13](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 00:13](770 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:10, 01:09](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [04:11, 00:57](813 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [04:11, 01:36](796 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:10, 00:45](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 01:13](2035 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 01:04](2036 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [46:03, 09:15] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 01:05](756 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [38:55, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [11:04, 00:46](610 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:04, 00:42](747 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [08:33, 01:02](750 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:23, 09:42] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [49:34, 01:19](1959 MB) + +PASS -- COMPILE 'atml_intel' [09:22, 09:10] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [48:53, 02:30](2169 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [47:50, 02:13](2169 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [35:18, 01:04](1317 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:19, 05:42] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [47:34, 02:07](2225 MB) + +PASS -- COMPILE 'atmw_intel' [09:23, 08:42] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [44:34, 02:31](1937 MB) + +PASS -- COMPILE 'atmaero_intel' [09:22, 08:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [44:29, 02:27](3216 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [43:05, 02:19](3001 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [42:29, 02:19](3005 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [32:47, 04:54] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [31:25, 01:16](4820 MB) SYNOPSIS: -Starting Date/Time: 20240805 16:07:25 -Ending Date/Time: 20240805 18:26:20 -Total Time: 02h:19m:22s +Starting Date/Time: 20240820 19:31:22 +Ending Date/Time: 20240820 21:55:29 +Total Time: 02h:24m:34s Compiles Completed: 38/38 -Tests Completed: 179/179 +Tests Completed: 178/179 +Failed Tests: +* TEST rap_sfcdiff_restart_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/DeniseWorthen/ufs-weather-model/tests/logs/log_acorn/run_rap_sfcdiff_restart_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ACORN REGRESSION TESTING LOG==== +====START OF ACORN REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +b31bee9d28f985abeb40e588121d2e2ee86ab1ec + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (remotes/origin/HEAD) + 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240819 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_571598 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-n) - RUN SINGLE TEST: rap_sfcdiff_restart +* (-e) - USE ECFLOW + +PASS -- COMPILE 'rrfs_intel' [09:21, 08:32] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_sfcdiff_intel' [52:22, 02:53](991 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [41:56, 01:35](838 MB) + +SYNOPSIS: +Starting Date/Time: 20240820 21:58:16 +Ending Date/Time: 20240820 22:26:55 +Total Time: 00h:28m:48s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 2cf8485615..dfcdfb1844 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: -09690a092f727349365fac81c2d2096127bb8f12 +005f5bb75deef6080db91a19b536b11d94dec8cf Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + aa1484378de6cc665910b63a691a1475809f6bb3 FV3 (remotes/origin/production/HREF.v3beta-334-gaa14843) + 7c3102fccc493d4c006c936ea88e4b512f6f5251 FV3/atmos_cubed_sphere (201912_public_release-403-g7c3102f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 5c9aee9ab1f61281bc62f38e0a22c13fb23c520a MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10196-g5c9aee9ab) + 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,284 +35,284 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240813 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_80910 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240819 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_77059 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: scsg0002 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:18, 21:22] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:54, 05:54](3206 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:17, 23:23] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:22, 14:30](1911 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 15:56](1944 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 08:13](1058 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:10, 16:52](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:19, 23:19] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:57, 14:25](1909 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:15, 11:55] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:04, 22:45](1937 MB) - -PASS -- COMPILE 's2swa_intel' [22:18, 21:07] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:46, 06:28](3220 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:05, 06:33](3223 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:04, 04:23](3147 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:45, 06:35](3247 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:17, 04:08](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:37, 06:08](3733 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:37, 06:15](3218 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:37, 05:33](3536 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:05, 06:32](3234 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:49, 09:38](3815 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:31, 06:52](3620 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:56, 10:39](4519 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [31:12, 07:10](4666 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:30, 06:13](3205 MB) - -PASS -- COMPILE 's2sw_intel' [20:18, 19:28] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:42, 04:56](1925 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:52, 04:57](1986 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:16, 11:44] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:10, 08:19](3299 MB) - -PASS -- COMPILE 's2sw_debug_intel' [12:16, 10:56] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:34, 05:53](1959 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:16, 15:49] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:05, 04:58](1989 MB) - -PASS -- COMPILE 's2s_intel' [17:15, 16:00] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:14, 06:45](2889 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:16, 02:25](2890 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:08, 01:32](2312 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:23, 24:27] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:46, 06:20](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:22, 22:21] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:02, 14:41](1924 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:16, 07:58](1105 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:46, 16:38](1893 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:18, 10:47] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:49, 24:44](1961 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:21, 14:06] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:50, 03:26](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:08, 02:27](1565 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 02:28](1573 MB) -PASS -- TEST 'control_latlon_intel' [04:11, 02:25](1563 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:14, 02:28](1564 MB) -PASS -- TEST 'control_c48_intel' [08:18, 06:10](1576 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:56, 05:20](711 MB) -PASS -- TEST 'control_c192_intel' [12:10, 08:48](1679 MB) -PASS -- TEST 'control_c384_intel' [17:12, 08:55](1945 MB) -PASS -- TEST 'control_c384gdas_intel' [17:01, 07:14](1189 MB) -PASS -- TEST 'control_stochy_intel' [02:43, 01:29](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:40, 00:53](435 MB) -PASS -- TEST 'control_lndp_intel' [02:41, 01:24](624 MB) -PASS -- TEST 'control_iovr4_intel' [03:55, 02:08](619 MB) -PASS -- TEST 'control_iovr5_intel' [03:49, 02:08](623 MB) -PASS -- TEST 'control_p8_intel' [05:31, 03:18](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:21, 03:02](1856 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:22, 03:09](1856 MB) -PASS -- TEST 'control_restart_p8_intel' [04:38, 02:02](989 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:13, 03:08](1846 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:42, 02:06](1010 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:01, 03:24](1848 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:01, 02:58](1934 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:51, 05:02](1856 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:04, 03:55](1909 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:07, 03:19](1858 MB) -PASS -- TEST 'merra2_thompson_intel' [06:02, 03:33](1864 MB) -PASS -- TEST 'regional_control_intel' [07:17, 04:52](858 MB) -PASS -- TEST 'regional_restart_intel' [05:03, 02:57](860 MB) -PASS -- TEST 'regional_decomp_intel' [07:23, 05:03](856 MB) -PASS -- TEST 'regional_noquilt_intel' [06:04, 04:46](1188 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:51, 04:48](862 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:58, 04:53](864 MB) -PASS -- TEST 'regional_wofs_intel' [07:05, 05:40](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [13:19, 12:32] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:36, 06:12](1003 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:56, 03:42](1143 MB) -PASS -- TEST 'rap_decomp_intel' [08:36, 06:26](1007 MB) -PASS -- TEST 'rap_2threads_intel' [08:37, 05:43](1085 MB) -PASS -- TEST 'rap_restart_intel' [05:34, 03:15](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:42, 06:09](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:42, 06:25](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:26, 04:37](878 MB) -PASS -- TEST 'hrrr_control_intel' [05:13, 03:15](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:13, 03:18](1001 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:13, 02:48](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:53, 01:48](828 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:43, 06:02](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:11, 07:28](1952 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:15, 07:13](1943 MB) - -PASS -- COMPILE 'csawmg_intel' [12:19, 11:26] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:14, 06:26](960 MB) -PASS -- TEST 'control_ras_intel' [04:47, 02:52](654 MB) - -PASS -- COMPILE 'wam_intel' [13:19, 11:42] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:54, 10:13](1643 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:19, 11:59] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:48, 03:07](1853 MB) -PASS -- TEST 'regional_control_faster_intel' [06:20, 04:45](857 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:20, 14:21] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:33](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:31](1600 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:40, 02:52](810 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:43, 02:38](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:04, 04:42](1111 MB) -PASS -- TEST 'control_ras_debug_intel' [03:45, 02:42](814 MB) -PASS -- TEST 'control_diag_debug_intel' [05:30, 02:35](1658 MB) -PASS -- TEST 'control_debug_p8_intel' [05:08, 03:21](1892 MB) -PASS -- TEST 'regional_debug_intel' [19:01, 16:48](925 MB) -PASS -- TEST 'rap_control_debug_intel' [06:38, 04:46](1187 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:39, 04:37](1185 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:34, 04:39](1192 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:42, 04:49](1189 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:46, 04:47](1189 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:30, 04:58](1269 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:52, 04:44](1187 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:01, 04:53](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:03, 04:46](1191 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:48, 04:41](1189 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:58, 04:40](1184 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:53, 04:45](1187 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:55, 07:32](1184 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:51, 04:42](1181 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:48, 05:51](1193 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:50, 04:43](1185 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:15, 07:59](1198 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:13, 07:33] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:33, 12:12](1685 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:19, 11:10] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:52, 03:31](1021 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:23, 05:09](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:51, 02:49](881 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:24, 04:54](948 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 02:26](941 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:39, 02:55](876 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 03:55](793 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:38, 01:33](777 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:27] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:38, 01:54](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:47, 01:00](1069 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:03, 01:09](960 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:23, 11:35] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:54, 03:39](905 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:18, 07:36] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:54, 04:33](1064 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:44, 04:34](1062 MB) -PASS -- TEST 'conus13km_debug_intel' [17:08, 13:39](1151 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:56, 13:45](829 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 07:56](1140 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:59, 13:40](1208 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:17, 07:17] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:43, 04:39](1091 MB) - -PASS -- COMPILE 'hafsw_intel' [18:20, 17:34] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:46, 04:36](697 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:02, 05:07](1052 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:45, 06:30](749 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:55, 11:04](769 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:19, 12:14](791 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:19, 04:37](463 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:49, 05:46](476 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:05, 02:18](387 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:11, 06:13](451 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:32, 03:19](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:37, 03:06](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:36, 03:50](568 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:13](419 MB) -PASS -- TEST 'gnv1_nested_intel' [07:31, 04:15](1712 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:18, 08:47] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:28, 12:30](619 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:20, 17:07] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:43, 07:16](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:40, 07:19](678 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:23, 18:28] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:32, 05:26](668 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:19, 15:40] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:30, 05:43](738 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:25, 05:45](722 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:14](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:24, 08:22] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:39, 02:29](766 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:34, 01:34](755 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:49, 02:21](649 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:45, 02:25](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:30, 02:24](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:35, 02:31](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:33, 02:30](767 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:41, 02:21](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:43, 05:45](697 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:48, 05:48](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:28](767 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:54, 03:55](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:56, 03:58](2038 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:17, 05:53] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:43, 05:13](751 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:18, 08:24] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:45, 02:28](768 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:16, 02:44] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:40, 01:12](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:38, 01:07](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:44](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:20, 13:36] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:48, 03:48](1907 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:20, 12:21] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:29, 03:56](1898 MB) - -PASS -- COMPILE 'atml_intel' [15:32, 14:32] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:45, 06:42](1885 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:41, 06:56](1882 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:15, 03:50](1033 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:20, 10:41] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:42, 06:13](1919 MB) - -PASS -- COMPILE 'atmw_intel' [14:24, 13:39] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:22, 02:16](1874 MB) - -PASS -- COMPILE 'atmaero_intel' [14:22, 12:52] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:03, 04:07](3124 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:52, 04:19](2998 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:25](3015 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:19, 07:54] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:10, 22:09](4545 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:27, 21:22] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:40, 05:32](3206 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:35, 23:38] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:10, 14:33](1911 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:47, 15:42](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:26, 07:43](1057 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:01, 16:23](1885 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:25, 23:14] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:29, 14:14](1914 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:27, 12:00] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:47, 22:41](1934 MB) + +PASS -- COMPILE 's2swa_intel' [22:22, 21:05] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:34, 06:14](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:30, 06:21](3220 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:28, 03:49](3149 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:21, 06:15](3251 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:07, 04:01](3177 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:52, 05:54](3733 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:51, 06:07](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:11, 05:21](3535 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:12, 06:21](3228 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:28, 09:23](3816 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:50, 06:27](3620 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:32, 10:19](4519 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:52, 06:57](4670 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:16, 06:14](3208 MB) + +PASS -- COMPILE 's2sw_intel' [21:24, 20:00] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:32, 04:51](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:47, 05:03](1988 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:17, 11:56] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:14, 08:07](3298 MB) + +PASS -- COMPILE 's2sw_debug_intel' [12:16, 11:04] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:28, 05:37](1959 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:18, 16:00] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 04:46](1986 MB) + +PASS -- COMPILE 's2s_intel' [17:18, 15:56] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:10, 06:34](2892 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:10, 02:15](2898 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:49, 01:25](2311 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:21, 23:52] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:20, 06:09](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:19, 22:01] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:02, 14:48](1924 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:46, 07:40](1102 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:32, 16:34](1906 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:16, 11:14] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 24:08](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:48, 14:05] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:59, 03:24](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:27, 02:25](1559 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:38, 02:29](1567 MB) +PASS -- TEST 'control_latlon_intel' [04:28, 02:22](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:31, 02:23](1564 MB) +PASS -- TEST 'control_c48_intel' [08:23, 06:08](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:19](713 MB) +PASS -- TEST 'control_c192_intel' [11:03, 08:50](1672 MB) +PASS -- TEST 'control_c384_intel' [14:09, 08:48](1945 MB) +PASS -- TEST 'control_c384gdas_intel' [14:52, 07:05](1172 MB) +PASS -- TEST 'control_stochy_intel' [02:34, 01:25](623 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:34, 00:52](436 MB) +PASS -- TEST 'control_lndp_intel' [02:39, 01:22](624 MB) +PASS -- TEST 'control_iovr4_intel' [03:51, 02:15](618 MB) +PASS -- TEST 'control_iovr5_intel' [03:47, 02:04](619 MB) +PASS -- TEST 'control_p8_intel' [05:45, 03:04](1856 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:44, 03:10](1855 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:16, 02:55](1855 MB) +PASS -- TEST 'control_restart_p8_intel' [04:15, 02:01](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:24, 03:05](1851 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 02:01](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:15, 03:13](1851 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:01](1936 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:21, 05:02](1857 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:37, 03:51](1913 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:59, 03:09](1864 MB) +PASS -- TEST 'merra2_thompson_intel' [07:10, 03:17](1864 MB) +PASS -- TEST 'regional_control_intel' [06:33, 04:43](862 MB) +PASS -- TEST 'regional_restart_intel' [04:25, 02:50](864 MB) +PASS -- TEST 'regional_decomp_intel' [06:32, 04:57](862 MB) +PASS -- TEST 'regional_noquilt_intel' [06:28, 04:39](1185 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:35, 04:41](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:29, 04:43](870 MB) +PASS -- TEST 'regional_wofs_intel' [07:11, 05:37](1592 MB) + +PASS -- COMPILE 'rrfs_intel' [14:20, 12:53] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:59, 06:10](1001 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:13, 03:42](1146 MB) +PASS -- TEST 'rap_decomp_intel' [09:17, 06:25](1004 MB) +PASS -- TEST 'rap_2threads_intel' [09:17, 05:41](1083 MB) +PASS -- TEST 'rap_restart_intel' [06:34, 03:13](874 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:19, 06:05](1001 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:18, 06:25](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:32, 04:35](876 MB) +PASS -- TEST 'hrrr_control_intel' [05:56, 03:15](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:59, 03:36](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:54, 02:49](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:38, 01:44](828 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:03, 05:59](1005 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:10, 07:29](1954 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:07, 07:10](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [13:16, 11:55] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:56, 06:25](957 MB) +PASS -- TEST 'control_ras_intel' [03:56, 02:53](657 MB) + +PASS -- COMPILE 'wam_intel' [12:19, 11:38] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:25, 10:07](1646 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:27, 11:40] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:51, 03:04](1857 MB) +PASS -- TEST 'regional_control_faster_intel' [06:11, 04:25](860 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:19, 13:49] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:14, 02:35](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:18, 02:27](1611 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:42, 02:50](805 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:40, 02:36](806 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:22, 04:41](1110 MB) +PASS -- TEST 'control_ras_debug_intel' [03:37, 02:38](813 MB) +PASS -- TEST 'control_diag_debug_intel' [04:54, 02:34](1665 MB) +PASS -- TEST 'control_debug_p8_intel' [05:12, 03:16](1896 MB) +PASS -- TEST 'regional_debug_intel' [18:14, 16:10](920 MB) +PASS -- TEST 'rap_control_debug_intel' [05:35, 04:37](1188 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:45, 04:37](1186 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:47, 04:36](1189 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:39, 04:40](1188 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 04:40](1188 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:32, 04:50](1273 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:39, 04:46](1187 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:29, 04:57](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:28, 04:42](1194 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:38](1187 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:40, 04:32](1189 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:36, 04:40](1188 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:38, 07:28](1187 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:36](1180 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:34, 05:26](1191 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:34, 04:38](1191 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:59, 08:07](1191 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:15, 07:32] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:20, 12:23](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:20, 11:30] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:29, 03:29](1015 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 05:07](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:47, 02:45](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:50, 04:45](939 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:05, 02:24](932 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:52, 02:55](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:47, 03:52](791 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:48, 01:32](773 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:52, 12:59] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:14, 01:51](1074 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:06, 00:55](1067 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:57, 01:07](961 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:15, 11:40] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:19, 03:36](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:20, 07:35] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:48, 04:33](1065 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:47, 04:43](1062 MB) +PASS -- TEST 'conus13km_debug_intel' [15:37, 13:28](1147 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:18, 13:43](826 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:25, 07:59](1138 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:09, 13:30](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:18, 07:29] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:32](1089 MB) + +PASS -- COMPILE 'hafsw_intel' [18:17, 17:11] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:33, 04:29](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:57, 04:56](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:32, 06:23](749 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:37, 10:57](767 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:33, 12:09](794 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:12, 04:34](462 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:26, 05:37](479 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:51, 02:14](383 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:49, 06:00](453 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:59, 03:15](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:20, 03:00](494 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 03:45](568 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:10](418 MB) +PASS -- TEST 'gnv1_nested_intel' [07:09, 04:04](1704 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:19, 08:16] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:08, 12:16](625 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:21, 16:47] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:18, 07:04](609 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:10, 07:13](674 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:19, 18:44] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:12, 05:19](666 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:06, 15:48] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:24, 05:36](740 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:31, 05:39](722 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:15, 16:12](908 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:23, 08:15] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:27](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:41, 01:30](746 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:25, 02:20](653 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:32, 02:22](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:23](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:24, 02:28](755 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:37, 02:29](770 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:26, 02:18](657 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:03, 05:37](697 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:08, 05:36](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:20, 02:27](767 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:24, 03:51](2036 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:26, 03:51](2032 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:14, 05:46] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:10](751 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 08:19] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:32, 02:26](768 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:43] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:39, 01:08](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:02](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:38, 00:42](449 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:38, 13:06] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:22, 03:55](1910 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:15, 12:26] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:26, 03:45](1901 MB) + +PASS -- COMPILE 'atml_intel' [15:14, 14:21] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:38, 06:10](1886 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:41, 06:29](1880 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:01, 04:11](1034 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:22, 10:25] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:26, 06:16](1918 MB) + +PASS -- COMPILE 'atmw_intel' [14:15, 13:31] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:12](1875 MB) + +PASS -- COMPILE 'atmaero_intel' [14:14, 12:51] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:19, 04:23](3125 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:24, 04:17](3001 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:12, 04:21](3015 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:19, 08:03] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:21, 21:40](4544 MB) SYNOPSIS: -Starting Date/Time: 20240816 07:35:36 -Ending Date/Time: 20240816 09:14:55 -Total Time: 01h:40m:14s +Starting Date/Time: 20240819 13:51:21 +Ending Date/Time: 20240819 15:28:45 +Total Time: 01h:38m:33s Compiles Completed: 41/41 Tests Completed: 184/184 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index a21c4acb72..9c7cc0b61a 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -09690a092f727349365fac81c2d2096127bb8f12 +ed15c21712242a15f47d8e809925de16e2a3c5d6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 5c9aee9ab1f61281bc62f38e0a22c13fb23c520a MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10196-g5c9aee9ab) + 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,285 +35,285 @@ 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-20240813 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_12729 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240819 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_215585 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:16, 22:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:13, 08:33](3207 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 24:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:29, 14:29](1913 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:55, 15:04](1934 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:51, 07:24](1069 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:53, 15:32](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:12, 25:36] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:00, 13:31](1909 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:12, 17:16] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:17, 25:03](1941 MB) - -PASS -- COMPILE 's2swa_intel' [22:12, 21:57] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:43, 08:51](3222 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:59, 08:08](3223 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:32, 05:32](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:36, 08:36](3246 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:39, 05:51](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:45, 07:21](3464 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:24, 08:34](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:17, 08:16](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:55, 08:55](3224 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:41, 11:32](3447 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:55, 08:12](3604 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:51, 13:16](4205 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:54, 09:53](4361 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:36, 08:54](3212 MB) - -PASS -- COMPILE 's2sw_intel' [22:12, 21:21] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:25, 05:20](1928 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:31, 05:43](1995 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:16, 16:14] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:01, 10:23](3284 MB) - -PASS -- COMPILE 's2sw_debug_intel' [17:16, 16:11] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:50, 06:07](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:14, 17:33] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:00, 05:32](1993 MB) - -PASS -- COMPILE 's2s_intel' [19:14, 18:52] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:25, 06:31](2873 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:48, 02:01](2877 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:37, 01:13](2288 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:12, 23:20] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:15, 08:33](3223 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:12, 22:50] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:49, 15:26](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:53, 07:23](1098 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:40, 17:55](1903 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:13, 15:51] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:11, 27:55](1945 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:11, 15:51] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:42, 03:50](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:17, 03:52](1560 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:46, 03:55](1565 MB) -PASS -- TEST 'control_latlon_intel' [07:22, 03:46](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:47, 03:49](1563 MB) -PASS -- TEST 'control_c48_intel' [08:49, 06:43](1568 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:47, 05:47](697 MB) -PASS -- TEST 'control_c192_intel' [16:23, 10:44](1670 MB) -PASS -- TEST 'control_c384_intel' [21:20, 19:02](1928 MB) -PASS -- TEST 'control_c384gdas_intel' [17:28, 14:51](1153 MB) -PASS -- TEST 'control_stochy_intel' [03:39, 02:11](619 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:46, 01:02](425 MB) -PASS -- TEST 'control_lndp_intel' [03:47, 02:10](619 MB) -PASS -- TEST 'control_iovr4_intel' [03:46, 02:43](615 MB) -PASS -- TEST 'control_iovr5_intel' [03:45, 02:52](616 MB) -PASS -- TEST 'control_p8_intel' [05:51, 03:26](1848 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:21, 03:24](1849 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 03:21](1851 MB) -PASS -- TEST 'control_restart_p8_intel' [06:20, 02:09](1005 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:47, 03:27](1844 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:20, 02:37](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:34, 03:28](1849 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:41, 02:51](1926 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:08, 05:44](1849 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:53, 04:23](1904 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:52, 03:54](1863 MB) -PASS -- TEST 'merra2_thompson_intel' [06:35, 03:49](1856 MB) -PASS -- TEST 'regional_control_intel' [06:02, 04:41](849 MB) -PASS -- TEST 'regional_restart_intel' [05:43, 03:10](847 MB) -PASS -- TEST 'regional_decomp_intel' [08:18, 05:21](850 MB) -PASS -- TEST 'regional_2threads_intel' [05:53, 03:02](990 MB) -PASS -- TEST 'regional_noquilt_intel' [08:14, 04:55](1175 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:08, 04:59](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:46, 04:47](855 MB) -PASS -- TEST 'regional_wofs_intel' [09:47, 06:04](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 15:02] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:48, 06:55](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 04:10](1151 MB) -PASS -- TEST 'rap_decomp_intel' [10:18, 07:22](1007 MB) -PASS -- TEST 'rap_2threads_intel' [08:48, 06:15](1089 MB) -PASS -- TEST 'rap_restart_intel' [08:15, 03:33](878 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:50, 07:02](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:18, 07:19](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:13, 04:58](877 MB) -PASS -- TEST 'hrrr_control_intel' [05:41, 03:54](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:40, 04:03](997 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:40, 03:15](1077 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:43, 02:07](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:50, 06:48](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 08:05](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:22, 07:47](1946 MB) - -PASS -- COMPILE 'csawmg_intel' [15:12, 14:50] -PASS -- TEST 'control_csawmg_intel' [09:41, 06:55](958 MB) -PASS -- TEST 'control_ras_intel' [07:38, 04:00](653 MB) - -PASS -- COMPILE 'wam_intel' [16:12, 15:15] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:23, 12:28](1649 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 16:13] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:27, 03:37](1847 MB) -PASS -- TEST 'regional_control_faster_intel' [07:48, 04:58](844 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:14, 16:20] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:03, 03:34](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:55, 03:11](1596 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:34](795 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:51](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:45, 04:20](1101 MB) -PASS -- TEST 'control_ras_debug_intel' [05:32, 03:10](802 MB) -PASS -- TEST 'control_diag_debug_intel' [06:55, 03:17](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [06:46, 03:29](1890 MB) -PASS -- TEST 'regional_debug_intel' [19:52, 16:27](899 MB) -PASS -- TEST 'rap_control_debug_intel' [09:15, 05:25](1184 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:52, 05:26](1175 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:07, 05:21](1179 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:13, 05:23](1178 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:14, 05:23](1184 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:44, 05:18](1263 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:39, 05:26](1179 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:38, 05:35](1184 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:41, 05:30](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 05:18](1184 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:32, 05:11](1178 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 05:31](1182 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 08:12](1177 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:36, 04:56](1172 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:59](1183 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:36, 05:09](1181 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:15, 08:30](1181 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:15, 11:49] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:15, 13:37](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:15, 14:48] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:09, 03:53](1010 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:19, 06:04](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:15, 03:30](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:11, 05:17](936 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:04, 03:34](921 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:50, 03:41](875 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:07, 04:10](773 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:44, 02:14](757 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:15, 14:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:03, 02:38](1085 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:08, 01:09](1062 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:19, 01:46](963 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:17, 14:35] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:34](905 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 11:40] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 05:04](1051 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 05:00](1052 MB) -PASS -- TEST 'conus13km_debug_intel' [18:48, 14:17](1136 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:47, 14:50](807 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:15, 08:36](1114 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:51, 14:40](1200 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:15, 11:57] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:39, 05:09](1080 MB) - -PASS -- COMPILE 'hafsw_intel' [19:11, 18:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:24, 05:23](686 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:49, 04:52](1035 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:52, 07:42](726 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:26, 11:43](758 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:56, 12:57](784 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:23, 05:27](461 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:34, 06:54](482 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:39, 03:11](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:01, 08:10](432 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:09, 03:48](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:18, 03:45](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:28, 04:44](557 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:53, 01:42](399 MB) -PASS -- TEST 'gnv1_nested_intel' [15:04, 05:46](1706 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:14, 14:44] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:32, 12:55](586 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:15, 19:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:51, 07:53](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:40, 07:48](780 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:24, 19:25] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:58, 06:00](776 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:17, 18:23] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [15:27, 06:32](720 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:26, 06:35](705 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:30, 20:05](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [16:14, 15:47] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:30, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:27, 02:39](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:58, 02:33](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:59, 02:28](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:57, 02:32](651 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:59, 02:34](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:56, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:02, 02:25](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:17, 06:14](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:10, 06:07](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:36, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:30, 04:42](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:32, 04:39](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:16, 10:09] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:29, 05:35](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [16:15, 14:46] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:28, 02:39](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 05:01] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:02, 03:37](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:56, 02:46](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:53, 01:05](456 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:19, 17:14] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:37, 05:00](1910 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:16, 16:42] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:55, 03:56](1896 MB) - -PASS -- COMPILE 'atml_intel' [18:12, 17:30] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:26, 07:18](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:16, 07:20](1882 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:54, 03:54](1031 MB) - -PASS -- COMPILE 'atml_debug_intel' [16:13, 15:38] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:58, 06:17](1922 MB) - -PASS -- COMPILE 'atmw_intel' [18:11, 17:10] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:56, 02:32](1883 MB) - -PASS -- COMPILE 'atmaero_intel' [17:20, 16:30] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:30, 06:30](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:23, 06:41](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:38, 07:04](3018 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [14:18, 13:34] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:57, 18:19](4491 MB) +PASS -- COMPILE 's2swa_32bit_intel' [24:13, 23:35] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:06, 08:30](3208 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:17, 24:56] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:56, 13:42](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:02, 14:36](1934 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:55, 07:05](1070 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:55, 15:03](1886 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:14, 25:26] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:04, 13:32](1906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:16, 16:47] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:37, 25:44](1939 MB) + +PASS -- COMPILE 's2swa_intel' [22:14, 21:45] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:34, 08:13](3223 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:06, 08:14](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:07, 05:24](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:16, 08:14](3249 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:48, 05:31](3172 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:24, 07:01](3464 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:42, 08:37](3223 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:21, 07:18](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:06, 08:22](3223 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:29, 10:37](3446 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:40, 07:31](3605 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:17, 13:15](4207 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:28, 09:15](4364 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:21, 08:04](3211 MB) + +PASS -- COMPILE 's2sw_intel' [22:14, 21:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:24, 05:13](1927 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:34, 05:42](1993 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:16, 16:35] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:29, 09:55](3283 MB) + +PASS -- COMPILE 's2sw_debug_intel' [17:16, 16:01] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:21, 06:03](1949 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [21:13, 19:36] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:53, 05:30](1996 MB) + +PASS -- COMPILE 's2s_intel' [19:16, 18:20] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:24, 06:31](2871 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:38, 02:06](2877 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:11, 01:11](2288 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:13, 22:40] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:58, 08:35](3223 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:13, 23:22] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:46, 15:53](1924 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:33, 07:27](1085 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:55, 17:17](1903 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 14:52] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:44, 27:30](1949 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:13, 16:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:43, 03:49](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:01, 03:24](1560 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:11, 03:45](1565 MB) +PASS -- TEST 'control_latlon_intel' [07:30, 03:03](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:38, 03:43](1563 MB) +PASS -- TEST 'control_c48_intel' [09:16, 06:33](1561 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:01, 05:44](697 MB) +PASS -- TEST 'control_c192_intel' [16:07, 10:34](1670 MB) +PASS -- TEST 'control_c384_intel' [24:29, 18:39](1928 MB) +PASS -- TEST 'control_c384gdas_intel' [20:16, 14:42](1154 MB) +PASS -- TEST 'control_stochy_intel' [02:54, 02:02](618 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:36, 01:06](425 MB) +PASS -- TEST 'control_lndp_intel' [04:03, 01:53](618 MB) +PASS -- TEST 'control_iovr4_intel' [03:55, 02:39](616 MB) +PASS -- TEST 'control_iovr5_intel' [05:03, 03:09](616 MB) +PASS -- TEST 'control_p8_intel' [08:10, 03:54](1860 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:47, 03:44](1848 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:16, 03:19](1851 MB) +PASS -- TEST 'control_restart_p8_intel' [04:32, 02:17](1004 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:10, 03:20](1843 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:32, 02:08](1013 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:28, 03:57](1849 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:47, 02:48](1926 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:13, 05:46](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:44, 04:39](1905 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:38, 04:18](1863 MB) +PASS -- TEST 'merra2_thompson_intel' [06:24, 04:32](1855 MB) +PASS -- TEST 'regional_control_intel' [07:15, 05:18](848 MB) +PASS -- TEST 'regional_restart_intel' [03:41, 02:31](847 MB) +PASS -- TEST 'regional_decomp_intel' [07:37, 05:00](850 MB) +PASS -- TEST 'regional_2threads_intel' [06:14, 03:12](987 MB) +PASS -- TEST 'regional_noquilt_intel' [07:59, 04:51](1177 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:07, 04:50](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 04:56](855 MB) +PASS -- TEST 'regional_wofs_intel' [08:46, 06:21](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [16:17, 15:09] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:04, 07:06](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:28, 04:06](1147 MB) +PASS -- TEST 'rap_decomp_intel' [10:10, 07:29](1007 MB) +PASS -- TEST 'rap_2threads_intel' [09:21, 06:27](1082 MB) +PASS -- TEST 'rap_restart_intel' [07:00, 03:54](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:15, 07:16](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:20, 07:06](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:04, 05:16](875 MB) +PASS -- TEST 'hrrr_control_intel' [06:18, 03:49](1001 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:09, 04:14](1001 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:02, 03:09](1077 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:17](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:12, 06:48](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:43, 08:39](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:41, 08:07](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [15:16, 14:48] +PASS -- TEST 'control_csawmg_intel' [08:45, 06:52](957 MB) +PASS -- TEST 'control_ras_intel' [05:30, 03:29](653 MB) + +PASS -- COMPILE 'wam_intel' [15:16, 14:27] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:37, 11:46](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 15:19] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:11, 03:11](1847 MB) +PASS -- TEST 'regional_control_faster_intel' [05:41, 04:33](852 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:13, 16:18] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:55, 02:58](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:55, 03:09](1594 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:35, 03:14](795 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:30, 02:53](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:28](1101 MB) +PASS -- TEST 'control_ras_debug_intel' [05:31, 03:07](802 MB) +PASS -- TEST 'control_diag_debug_intel' [05:49, 02:57](1654 MB) +PASS -- TEST 'control_debug_p8_intel' [05:37, 03:27](1884 MB) +PASS -- TEST 'regional_debug_intel' [18:42, 16:21](900 MB) +PASS -- TEST 'rap_control_debug_intel' [08:35, 05:22](1184 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:36, 05:22](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:35, 05:05](1179 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:33, 05:18](1179 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:28, 05:19](1180 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:41, 05:25](1263 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:33, 05:18](1178 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:10, 05:22](1181 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:13, 05:14](1183 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:10, 05:17](1180 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:13, 05:15](1178 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:08, 05:19](1182 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 08:02](1177 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:04, 05:15](1172 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:33, 06:00](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:55, 05:08](1181 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:16, 08:35](1181 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:15, 12:52] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:19, 13:16](1673 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:14, 16:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:38, 03:52](1008 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:54, 05:57](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:26, 03:54](875 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:05, 05:22](933 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:18, 02:43](921 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:02, 03:31](876 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:05, 04:39](773 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:37, 02:37](759 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 15:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:25, 02:43](1086 MB) +PASS -- TEST 'conus13km_2threads_intel' [11:02, 01:10](1064 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [13:03, 01:57](964 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:13, 15:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:09, 04:45](903 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 11:18] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:36, 05:30](1051 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:36, 05:39](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [17:04, 15:00](1136 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:22, 14:38](807 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [18:49, 08:44](1113 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:40, 14:55](1201 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:13, 11:24] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:07, 05:15](1080 MB) + +PASS -- COMPILE 'hafsw_intel' [18:14, 17:52] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:14, 05:22](682 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:56, 04:34](1031 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:55, 07:50](725 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:40, 11:55](757 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:50, 13:43](780 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:21, 05:25](463 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:35, 06:44](479 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:32, 03:03](369 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:14, 08:14](433 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:17, 03:56](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:29, 04:11](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [18:16, 04:55](558 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [12:51, 01:53](399 MB) +PASS -- TEST 'gnv1_nested_intel' [19:15, 06:10](1706 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:14, 13:36] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:16, 13:27](586 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:14, 19:01] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:25, 07:46](601 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:31, 07:53](777 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:15, 17:56] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:41, 06:07](775 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:13, 18:30] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [21:19, 06:30](718 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:31, 06:33](705 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:24, 20:04](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:17, 12:47] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [14:28, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:29, 01:35](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [14:35, 02:30](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [14:35, 02:31](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [13:31, 02:36](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [12:28, 02:40](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [11:29, 02:37](751 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [11:34, 02:33](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:11, 06:22](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:24, 05:55](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:32, 02:43](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 04:40](2029 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [12:27, 04:40](2032 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:11, 08:03] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [13:29, 05:39](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:12, 12:50] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [10:26, 02:36](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:16, 03:32] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [09:08, 02:01](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:59, 01:33](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:55, 01:04](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 16:03] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:38, 04:16](1914 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:14, 15:06] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:48, 04:07](1898 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 15:59] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:51, 07:37](1882 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [13:51, 07:43](1881 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:50, 04:04](1031 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:14, 13:00] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:39, 06:33](1922 MB) + +PASS -- COMPILE 'atmw_intel' [17:13, 16:16] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:12, 02:48](1883 MB) + +PASS -- COMPILE 'atmaero_intel' [16:13, 15:12] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:23, 06:42](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:23, 07:08](3008 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:15, 07:16](3018 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [15:11, 13:15] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:45, 18:17](4491 MB) SYNOPSIS: -Starting Date/Time: 20240816 00:57:59 -Ending Date/Time: 20240816 02:44:27 -Total Time: 01h:47m:39s +Starting Date/Time: 20240819 18:26:08 +Ending Date/Time: 20240819 20:20:13 +Total Time: 01h:55m:26s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 353d884173..d4da07de43 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a47ca68b4eeb1b3b20286c3aa830c1ab471df18e +ed15c21712242a15f47d8e809925de16e2a3c5d6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -12,7 +12,7 @@ Submodule hashes used in testing: 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 5c9aee9ab1f61281bc62f38e0a22c13fb23c520a MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10196-g5c9aee9ab) + 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -24,375 +24,374 @@ 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240813 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_470521 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240819 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_537572 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf +* (-a) - HPC PROJECT ACCOUNT: nems * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [37:15, 12:47] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:11, 05:45](3297 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [42:16, 16:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [50:08, 17:27](1976 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [01:38, 18:13](2128 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [51:39, 08:25](1226 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:06, 19:29](1849 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:16, 17:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [52:59, 17:07](1948 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [31:14, 06:00] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:55, 23:32](1893 MB) - -PASS -- COMPILE 's2swa_intel' [38:14, 13:19] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:12, 05:59](3325 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:23, 06:38](3319 MB) -PASS -- TEST 'cpld_restart_p8_intel' [19:52, 03:33](3262 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:12, 05:56](3369 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [19:52, 03:35](3280 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:11, 05:36](3622 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [19:11, 05:55](3341 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:18, 04:54](3218 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [42:24, 06:06](3350 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [24:12, 10:22](3539 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [00:43, 06:28](3628 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [51:42, 10:01](4325 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [35:43, 06:04](4377 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [17:18, 05:32](3312 MB) - -PASS -- COMPILE 's2sw_intel' [37:14, 12:23] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [17:06, 04:55](1979 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:09, 04:29](2031 MB) - -PASS -- COMPILE 's2swa_debug_intel' [31:14, 05:55] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:02, 09:14](3400 MB) - -PASS -- COMPILE 's2sw_debug_intel' [30:15, 05:46] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:08, 05:55](2012 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [36:17, 11:17] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:00, 04:25](2014 MB) - -PASS -- COMPILE 's2s_intel' [36:14, 11:19] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:47, 09:09](3039 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:50, 02:44](3044 MB) -PASS -- TEST 'cpld_restart_c48_intel' [34:58, 01:38](2474 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:15, 16:56] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [03:37, 05:41](3350 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:15, 15:54] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [00:36, 17:36](2012 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:16, 08:23](1273 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:01, 20:04](1911 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:12, 05:45] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [04:10, 29:40](1960 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:14, 11:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:44, 03:24](708 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:04, 02:56](1601 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:06, 03:02](1607 MB) -PASS -- TEST 'control_latlon_intel' [07:57, 02:56](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:03, 03:00](1600 MB) -PASS -- TEST 'control_c48_intel' [13:03, 07:36](1717 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:47, 06:31](858 MB) -PASS -- TEST 'control_c192_intel' [30:38, 10:44](1731 MB) -PASS -- TEST 'control_c384_intel' [11:13, 10:44](1960 MB) -PASS -- TEST 'control_c384gdas_intel' [50:14, 08:05](1378 MB) -PASS -- TEST 'control_stochy_intel' [20:11, 01:43](661 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:29, 01:05](500 MB) -PASS -- TEST 'control_lndp_intel' [18:02, 01:35](660 MB) -PASS -- TEST 'control_iovr4_intel' [18:54, 02:30](657 MB) -PASS -- TEST 'control_iovr5_intel' [17:55, 02:30](650 MB) -PASS -- TEST 'control_p8_intel' [01:14, 03:08](1880 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [56:26, 03:09](1877 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [51:20, 02:58](1889 MB) -PASS -- TEST 'control_restart_p8_intel' [14:49, 01:48](1129 MB) -PASS -- TEST 'control_noqr_p8_intel' [45:06, 03:03](1897 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [11:49, 01:46](1158 MB) -PASS -- TEST 'control_decomp_p8_intel' [37:18, 03:12](1854 MB) -PASS -- TEST 'control_2threads_p8_intel' [24:09, 02:55](1966 MB) -PASS -- TEST 'control_p8_lndp_intel' [26:59, 05:24](1893 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [25:06, 04:03](1954 MB) -PASS -- TEST 'control_p8_mynn_intel' [24:11, 03:08](1869 MB) -PASS -- TEST 'merra2_thompson_intel' [23:58, 03:25](1900 MB) -PASS -- TEST 'regional_control_intel' [48:44, 05:23](1104 MB) -PASS -- TEST 'regional_restart_intel' [38:41, 02:55](1087 MB) -PASS -- TEST 'regional_decomp_intel' [22:44, 05:39](1091 MB) -PASS -- TEST 'regional_2threads_intel' [43:44, 03:29](1075 MB) -PASS -- TEST 'regional_noquilt_intel' [21:54, 05:20](1390 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [21:02, 05:21](1098 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [19:49, 05:20](1104 MB) -PASS -- TEST 'regional_wofs_intel' [19:47, 06:53](1890 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 10:19] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [23:46, 07:51](1108 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:23, 04:44](1249 MB) -PASS -- TEST 'rap_decomp_intel' [45:45, 08:13](1030 MB) -PASS -- TEST 'rap_2threads_intel' [42:40, 07:23](1174 MB) -PASS -- TEST 'rap_restart_intel' [07:42, 04:07](1099 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:42, 07:52](1090 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:34, 08:12](1040 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:46, 05:54](1122 MB) -PASS -- TEST 'hrrr_control_intel' [08:43, 04:00](1046 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:31, 04:08](1040 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [16:37, 03:41](1112 MB) -PASS -- TEST 'hrrr_control_restart_intel' [08:29, 02:14](1002 MB) -PASS -- TEST 'rrfs_v1beta_intel' [19:48, 07:41](1093 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [18:30, 09:22](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:27, 09:06](2069 MB) - -PASS -- COMPILE 'csawmg_intel' [10:15, 09:56] -PASS -- TEST 'control_csawmg_intel' [12:57, 06:10](1015 MB) -PASS -- TEST 'control_ras_intel' [09:43, 03:17](746 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:13, 04:29] -PASS -- TEST 'control_csawmg_gnu' [44:54, 08:34](739 MB) - -PASS -- COMPILE 'wam_intel' [10:12, 09:54] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:17, 11:15](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:13, 09:47] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [12:50, 02:47](1872 MB) -PASS -- TEST 'regional_control_faster_intel' [14:36, 04:54](1088 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [40:17, 07:42] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:39, 02:43](1632 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:39, 02:38](1626 MB) -PASS -- TEST 'control_stochy_debug_intel' [10:24, 03:07](838 MB) -PASS -- TEST 'control_lndp_debug_intel' [10:23, 02:48](839 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:36, 04:32](1136 MB) -PASS -- TEST 'control_ras_debug_intel' [10:22, 02:47](845 MB) -PASS -- TEST 'control_diag_debug_intel' [09:45, 02:45](1691 MB) -PASS -- TEST 'control_debug_p8_intel' [10:40, 03:04](1922 MB) -PASS -- TEST 'regional_debug_intel' [26:36, 18:47](1110 MB) -PASS -- TEST 'rap_control_debug_intel' [11:25, 05:07](1220 MB) -PASS -- TEST 'hrrr_control_debug_intel' [12:26, 05:01](1218 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [11:23, 05:08](1225 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [11:23, 05:05](1220 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:23, 05:11](1220 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:39, 05:20](1305 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 05:15](1227 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 05:10](1223 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 05:03](1221 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:02](1224 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:54](1219 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 05:05](1221 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:14](1218 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 05:08](1216 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 06:19](1225 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:23, 05:04](1222 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:45, 08:48](1225 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [36:18, 04:20] -PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:22](727 MB) - -PASS -- COMPILE 'wam_debug_intel' [37:19, 05:03] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:49, 13:49](1693 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:24, 10:01] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:05, 03:57](1134 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 06:27](1056 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:42, 03:28](984 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:41, 06:09](1080 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:33, 03:10](959 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:35](931 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:43, 04:54](1029 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 01:51](931 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:25, 10:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:59, 02:06](1198 MB) -PASS -- TEST 'conus13km_2threads_intel' [09:45, 00:55](1108 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [09:45, 01:15](1099 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:23, 09:59] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:45, 04:12](981 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:24, 04:56] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 04:54](1094 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:53](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [16:55, 15:23](1245 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 15:14](932 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:49, 08:37](1168 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 15:21](1296 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:23, 04:55] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 05:01](1147 MB) - -PASS -- COMPILE 'hafsw_intel' [15:22, 11:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:19, 05:00](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 05:59](1090 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:25, 06:59](815 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:20, 13:26](850 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:30, 15:19](873 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:16, 05:31](490 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:24, 06:46](508 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:47, 02:39](371 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:18, 07:26](471 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:46](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:54, 03:30](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:55, 04:07](590 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:31, 01:14](401 MB) -PASS -- TEST 'gnv1_nested_intel' [12:45, 04:09](1706 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [40:30, 05:32] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:55, 13:03](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [06:28, 10:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:04, 08:40](627 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:08, 08:42](739 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [05:25, 11:34] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:43, 06:34](694 MB) - -PASS -- COMPILE 'hafs_all_intel' [02:28, 10:54] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [14:23, 06:45](818 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:24, 06:31](801 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:59, 15:58](1233 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [25:19, 06:39] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:23, 02:43](1180 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:41](1125 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:21, 02:36](1023 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:23, 02:40](1053 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:20, 02:39](1034 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:20, 02:35](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:21, 02:40](1175 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:19, 02:35](1038 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:23, 06:08](1068 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:09, 06:12](1046 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:17, 02:42](1169 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:21, 03:44](2511 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:19, 03:56](2455 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [22:27, 03:25] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:18, 06:15](1084 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [20:17, 06:36] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 02:43](1158 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [15:16, 01:18] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:34, 00:46](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 00:54](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [24:29, 00:34](320 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [24:26, 10:37] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:03, 03:44](1949 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [23:17, 10:07] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 03:39](1964 MB) - -PASS -- COMPILE 'atml_intel' [51:14, 10:31] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:03, 04:23](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:02, 04:20](1860 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [24:46, 02:25](1103 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:13, 05:38] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:57, 05:57](1870 MB) - -PASS -- COMPILE 'atmw_intel' [19:13, 10:22] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:54](1925 MB) - -PASS -- COMPILE 'atmaero_intel' [17:12, 10:21] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:58, 04:11](3189 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:58, 04:58](3102 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 05:06](3112 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:11, 04:41] ( 884 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [10:11, 04:46] -PASS -- TEST 'control_c48_gnu' [12:40, 11:11](1510 MB) -PASS -- TEST 'control_stochy_gnu' [05:25, 03:26](495 MB) -PASS -- TEST 'control_ras_gnu' [07:22, 04:51](501 MB) -PASS -- TEST 'control_p8_gnu' [07:55, 04:49](1452 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:50, 04:42](1465 MB) -PASS -- TEST 'control_flake_gnu' [13:26, 10:17](538 MB) - -PASS -- COMPILE 'rrfs_gnu' [11:11, 04:13] -PASS -- TEST 'rap_control_gnu' [35:38, 10:55](811 MB) -PASS -- TEST 'rap_decomp_gnu' [35:37, 11:09](845 MB) -PASS -- TEST 'rap_2threads_gnu' [33:41, 10:02](922 MB) -PASS -- TEST 'rap_restart_gnu' [06:42, 05:35](573 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [34:44, 10:56](815 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [34:40, 11:05](845 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 08:01](578 MB) -PASS -- TEST 'hrrr_control_gnu' [28:42, 05:42](813 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [28:38, 05:50](799 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [28:38, 05:14](909 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [28:37, 05:55](816 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:30, 02:57](565 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:31, 02:53](653 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [33:45, 10:38](813 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [14:11, 06:34] -PASS -- TEST 'control_diag_debug_gnu' [23:44, 01:48](1270 MB) -PASS -- TEST 'regional_debug_gnu' [34:37, 12:16](755 MB) -PASS -- TEST 'rap_control_debug_gnu' [24:24, 02:48](824 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [24:23, 02:46](819 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [24:28, 02:51](829 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [26:27, 02:38](824 MB) -PASS -- TEST 'rap_diag_debug_gnu' [26:38, 02:49](908 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [27:23, 04:07](818 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [25:26, 02:40](828 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [24:23, 02:37](818 MB) -PASS -- TEST 'control_ras_debug_gnu' [22:22, 01:36](457 MB) -PASS -- TEST 'control_stochy_debug_gnu' [22:21, 01:45](450 MB) -PASS -- TEST 'control_debug_p8_gnu' [22:42, 01:50](1444 MB) -PASS -- TEST 'rap_flake_debug_gnu' [22:27, 02:41](827 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [23:28, 02:55](829 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [21:39, 04:21](832 MB) - -PASS -- COMPILE 'wam_debug_gnu' [06:11, 02:27] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:11, 04:10] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [26:31, 09:26](710 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [19:31, 04:58](709 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:35, 08:41](751 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:37, 04:33](743 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 05:05](700 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:37, 06:59](558 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:26, 02:34](539 MB) -PASS -- TEST 'conus13km_control_gnu' [04:52, 03:12](873 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:43, 06:07](879 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:43, 01:47](556 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:13, 09:42] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:37, 05:46](727 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:35] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:31](717 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:22, 02:31](718 MB) -PASS -- TEST 'conus13km_debug_gnu' [10:45, 06:56](892 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [14:47, 11:02](579 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:42, 07:34](898 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:43, 06:58](958 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:12, 06:30] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:25, 02:36](734 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:16] - -PASS -- COMPILE 's2s_gnu' [16:12, 16:08] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:07, 07:21](1519 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:10, 12:23] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:20, 05:40](3316 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:10, 16:05] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:05, 17:24](1973 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:19, 18:16](2159 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:13, 08:17](1249 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:03, 19:33](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:10, 15:36] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:46, 17:04](1972 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:57] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:01, 23:26](1890 MB) + +PASS -- COMPILE 's2swa_intel' [13:10, 12:30] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:17, 06:00](3359 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:25, 05:59](3349 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:46, 03:37](3260 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:17, 06:01](3367 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:46, 03:39](3271 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:14, 05:34](3635 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:09, 06:26](3344 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:07, 04:48](3201 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:25, 06:02](3355 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:05, 10:30](3536 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:32, 06:31](3624 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:26, 09:38](4293 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:24, 06:04](4385 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:14, 05:25](3335 MB) + +PASS -- COMPILE 's2sw_intel' [12:10, 11:42] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:54, 04:50](1995 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:02, 04:28](2038 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:55] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:04, 08:36](3371 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:23] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:00, 05:48](1985 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:10, 11:05] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:05, 04:25](2023 MB) + +PASS -- COMPILE 's2s_intel' [11:10, 10:57] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:41, 09:03](3050 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:38, 02:50](2991 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:42, 01:35](2483 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:12, 16:42] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:21, 05:48](3357 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:15] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:06, 17:42](2020 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:16, 08:24](1271 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:07, 20:07](1915 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:28] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:54, 26:37](1953 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 10:26] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:36, 04:05](703 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:04, 03:06](1607 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:15, 03:09](1605 MB) +PASS -- TEST 'control_latlon_intel' [05:57, 03:01](1598 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:05, 03:06](1596 MB) +PASS -- TEST 'control_c48_intel' [08:57, 07:33](1726 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 06:33](856 MB) +PASS -- TEST 'control_c192_intel' [14:20, 10:54](1736 MB) +PASS -- TEST 'control_c384_intel' [15:19, 11:52](1976 MB) +PASS -- TEST 'control_c384gdas_intel' [13:13, 08:44](1367 MB) +PASS -- TEST 'control_stochy_intel' [04:25, 01:41](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:36, 01:04](496 MB) +PASS -- TEST 'control_lndp_intel' [02:25, 01:36](658 MB) +PASS -- TEST 'control_iovr4_intel' [05:34, 02:30](656 MB) +PASS -- TEST 'control_iovr5_intel' [05:33, 02:32](652 MB) +PASS -- TEST 'control_p8_intel' [06:18, 03:19](1862 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:24, 03:21](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:25, 03:13](1887 MB) +PASS -- TEST 'control_restart_p8_intel' [02:49, 01:47](1130 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:17, 03:16](1880 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:58, 01:53](1158 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:17, 03:26](1879 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:58, 03:01](1967 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:53, 05:28](1896 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:55, 04:09](1959 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:04, 03:20](1895 MB) +PASS -- TEST 'merra2_thompson_intel' [05:00, 03:28](1896 MB) +PASS -- TEST 'regional_control_intel' [06:42, 05:25](1097 MB) +PASS -- TEST 'regional_restart_intel' [04:39, 02:53](1087 MB) +PASS -- TEST 'regional_decomp_intel' [06:40, 05:43](1088 MB) +PASS -- TEST 'regional_2threads_intel' [04:41, 03:31](1081 MB) +PASS -- TEST 'regional_noquilt_intel' [06:43, 05:20](1382 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:42, 06:09](1102 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:40, 05:22](1093 MB) +PASS -- TEST 'regional_wofs_intel' [09:38, 08:12](1902 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 10:24] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:39, 07:50](1102 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:06, 04:15](1256 MB) +PASS -- TEST 'rap_decomp_intel' [09:33, 08:13](1036 MB) +PASS -- TEST 'rap_2threads_intel' [08:34, 07:21](1165 MB) +PASS -- TEST 'rap_restart_intel' [06:40, 04:07](1106 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:40, 07:57](1084 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:33, 08:21](1045 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:46, 05:54](1133 MB) +PASS -- TEST 'hrrr_control_intel' [05:38, 04:14](1041 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:37, 04:12](1028 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:43, 03:46](1103 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:27, 02:10](1004 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:43, 07:53](1099 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:37](1987 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:32, 09:22](2057 MB) + +PASS -- COMPILE 'csawmg_intel' [10:10, 09:53] +PASS -- TEST 'control_csawmg_intel' [09:41, 06:13](1020 MB) +PASS -- TEST 'control_ras_intel' [06:23, 03:17](746 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:10, 04:17] +PASS -- TEST 'control_csawmg_gnu' [11:54, 10:59](742 MB) + +PASS -- COMPILE 'wam_intel' [10:10, 09:50] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:51, 11:13](1671 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 10:02] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:58, 02:47](1853 MB) +PASS -- TEST 'regional_control_faster_intel' [05:38, 04:51](1084 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 07:26] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:45, 02:45](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:42, 02:40](1616 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:22, 03:04](832 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:47](828 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:36, 04:20](1147 MB) +PASS -- TEST 'control_ras_debug_intel' [03:21, 02:48](835 MB) +PASS -- TEST 'control_diag_debug_intel' [03:43, 02:44](1684 MB) +PASS -- TEST 'control_debug_p8_intel' [03:38, 03:03](1895 MB) +PASS -- TEST 'regional_debug_intel' [18:35, 17:38](1084 MB) +PASS -- TEST 'rap_control_debug_intel' [07:22, 05:06](1217 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:54](1212 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 05:02](1223 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:22, 08:54](1216 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 05:04](1220 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:40, 05:21](1303 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:24](1221 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:08](1217 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:22, 05:08](1225 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:20, 05:04](1227 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 05:00](1209 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 05:05](1209 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 08:12](1211 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:54](1208 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 06:24](1221 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:11](1224 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:38, 08:41](1229 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:15] +PASS -- TEST 'control_csawmg_debug_gnu' [03:35, 02:20](728 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:55] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:41, 13:46](1668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:43] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:03, 03:57](1129 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:37, 06:30](1051 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:46, 03:25](982 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:34, 06:11](1086 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:38, 03:16](964 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:31, 04:16](932 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:40, 04:57](1032 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:48, 01:53](933 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 09:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:02, 02:04](1186 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:45, 00:56](1117 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:15](1104 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 09:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:43, 04:16](989 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:49] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:25, 04:58](1095 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:24, 04:56](1096 MB) +PASS -- TEST 'conus13km_debug_intel' [22:59, 15:09](1226 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [22:57, 15:20](941 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:49, 08:35](1169 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:49, 15:24](1315 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 04:38] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:26, 05:08](1138 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 11:27] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [11:31, 05:05](720 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:36, 05:55](1090 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:30, 07:09](814 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [21:26, 13:53](850 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:59, 15:24](880 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:10, 05:37](490 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:35, 06:52](496 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:47, 02:46](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:52, 07:26](484 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:47, 03:42](521 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:47, 03:34](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:55, 04:05](577 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:14](402 MB) +PASS -- TEST 'gnv1_nested_intel' [06:41, 04:15](1740 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:12, 05:23] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 13:24](595 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:08] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:03, 08:42](661 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:08, 08:51](746 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:19] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:32, 06:29](732 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 11:01] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:49](796 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:17, 06:37](808 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:06, 16:19](1220 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:50] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:45](1167 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:39](1110 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:21, 02:37](1026 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:20, 02:37](1029 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:37](1027 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:43](1177 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:42](1165 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:37](1029 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:25, 06:15](1072 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:18, 06:08](1037 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:43](1163 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:22, 03:56](2491 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:22, 03:59](2467 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:21] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 06:19](1083 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:40] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:42](1149 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:09] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:45](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:55](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:26, 00:31](323 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:12, 10:50] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 03:43](1988 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 10:37] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:13, 03:39](1975 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 10:47] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:08, 04:23](1854 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:06, 04:36](1868 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:44, 02:24](1097 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:46] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:57, 05:49](1860 MB) + +PASS -- COMPILE 'atmw_intel' [11:12, 10:34] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:52, 01:50](1930 MB) + +PASS -- COMPILE 'atmaero_intel' [11:11, 10:23] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:00, 04:11](3211 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:58, 05:01](3101 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 05:09](3090 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 05:27] ( 884 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [05:11, 04:34] +PASS -- TEST 'control_c48_gnu' [12:39, 11:24](1513 MB) +PASS -- TEST 'control_stochy_gnu' [06:24, 03:31](495 MB) +PASS -- TEST 'control_ras_gnu' [08:23, 04:50](509 MB) +PASS -- TEST 'control_p8_gnu' [07:55, 04:54](1433 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:48, 04:43](1448 MB) +PASS -- TEST 'control_flake_gnu' [13:23, 10:25](538 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:26] +PASS -- TEST 'rap_control_gnu' [12:34, 10:56](811 MB) +PASS -- TEST 'rap_decomp_gnu' [12:32, 11:10](809 MB) +PASS -- TEST 'rap_2threads_gnu' [11:36, 09:59](920 MB) +PASS -- TEST 'rap_restart_gnu' [07:40, 05:34](574 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:40, 10:57](814 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:33, 11:25](812 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:47, 07:59](576 MB) +PASS -- TEST 'hrrr_control_gnu' [06:37, 05:38](812 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 05:41](797 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:31, 05:04](910 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:29, 05:37](807 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:24, 02:57](562 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:25, 02:56](650 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:49, 10:43](805 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 06:48] +PASS -- TEST 'control_diag_debug_gnu' [04:49, 01:42](1275 MB) +PASS -- TEST 'regional_debug_gnu' [13:38, 11:31](749 MB) +PASS -- TEST 'rap_control_debug_gnu' [05:24, 02:42](826 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [05:23, 02:42](826 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [05:21, 02:43](833 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:41](833 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:38, 02:55](914 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:22, 04:13](826 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:42](828 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:39](822 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:41](458 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:21, 01:49](454 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:51](1430 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:42](829 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 03:00](828 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:39, 04:20](833 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:35] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:10] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:29, 09:33](702 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:33, 05:02](708 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:34](750 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:32, 04:36](747 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:32, 05:03](704 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:36, 07:05](563 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:22, 02:37](539 MB) +PASS -- TEST 'conus13km_control_gnu' [06:01, 03:14](873 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:46, 06:16](873 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:45, 01:55](559 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:10, 09:48] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:43, 05:41](730 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:11] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:24, 02:32](715 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [06:24, 03:49](710 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:49, 06:59](890 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:44, 07:09](581 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:41, 07:59](895 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:40, 07:10](958 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:12, 07:05] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:24, 02:38](733 MB) + +PASS -- COMPILE 's2swa_gnu' [17:11, 16:19] + +PASS -- COMPILE 's2s_gnu' [17:11, 16:05] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:11, 07:24](1513 MB) PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:14] -PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 16:06] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:55, 25:53](1450 MB) +PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 16:09] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [20:59, 19:25](1448 MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:57] +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:12] -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:36] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 03:02](695 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [23:13, 15:56] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 03:02](695 MB) SYNOPSIS: -Starting Date/Time: 20240815 00:39:24 -Ending Date/Time: 20240815 08:36:33 -Total Time: 07h:57m:26s +Starting Date/Time: 20240819 23:11:40 +Ending Date/Time: 20240820 00:49:59 +Total Time: 01h:38m:44s Compiles Completed: 57/57 Tests Completed: 243/243 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 1788a9a78f..9407438f00 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: -09690a092f727349365fac81c2d2096127bb8f12 +ed15c21712242a15f47d8e809925de16e2a3c5d6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 5c9aee9ab1f61281bc62f38e0a22c13fb23c520a MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10196-g5c9aee9ab) + 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,376 +35,375 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240813 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_605583 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240819 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1519162 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:05, 08:39](2126 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:03, 14:13](1999 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [32:13, 14:34](2304 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [25:13, 07:12](1302 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:43, 15:59](1907 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:10, 16:35] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:30, 14:41](1986 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:36] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:01, 21:10](1978 MB) - -PASS -- COMPILE 's2swa_intel' [11:10, 10:29] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:02, 08:42](2172 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:15, 08:32](2183 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:01, 05:16](1988 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:09, 08:48](2210 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:05, 05:14](1734 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:09, 09:47](2552 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:01, 08:32](2162 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:03, 08:16](2091 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:16, 08:18](2174 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [23:39, 16:11](2979 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [27:58, 06:48](2922 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:20, 11:13](3862 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:57, 07:32](3635 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:03, 06:56](2148 MB) - -PASS -- COMPILE 's2sw_intel' [11:10, 10:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:57, 08:03](2020 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:02, 04:40](2079 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:36] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [08:51, 07:12](2201 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:44] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:48, 04:55](2049 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:36] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:53, 05:46](2091 MB) - -PASS -- COMPILE 's2s_intel' [11:10, 10:07] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [18:50, 09:26](3051 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [11:52, 03:04](3030 MB) -PASS -- TEST 'cpld_restart_c48_intel' [11:37, 02:12](2487 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:37] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [20:57, 08:08](2172 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 15:20] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:02, 14:43](2034 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:56, 07:20](1406 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:42, 15:44](1959 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:11] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:43, 23:23](2019 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:10, 08:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [11:19, 02:53](704 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:28, 02:32](1610 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:34, 02:36](1615 MB) -PASS -- TEST 'control_latlon_intel' [11:25, 02:28](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:33, 02:33](1601 MB) -PASS -- TEST 'control_c48_intel' [16:29, 06:57](1713 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [15:23, 05:53](841 MB) -PASS -- TEST 'control_c192_intel' [18:36, 09:12](1766 MB) -PASS -- TEST 'control_c384_intel' [19:23, 09:33](2002 MB) -PASS -- TEST 'control_c384gdas_intel' [17:42, 07:21](1493 MB) -PASS -- TEST 'control_stochy_intel' [10:18, 01:30](661 MB) -PASS -- TEST 'control_stochy_restart_intel' [22:33, 00:54](542 MB) -PASS -- TEST 'control_lndp_intel' [13:17, 01:22](669 MB) -PASS -- TEST 'control_iovr4_intel' [13:19, 02:08](658 MB) -PASS -- TEST 'control_iovr5_intel' [17:19, 02:09](669 MB) -PASS -- TEST 'control_p8_intel' [17:51, 03:38](1902 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [17:52, 03:37](1903 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [24:55, 03:16](1896 MB) -PASS -- TEST 'control_restart_p8_intel' [15:42, 02:04](1153 MB) -PASS -- TEST 'control_noqr_p8_intel' [25:46, 03:24](1890 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:48, 02:28](1210 MB) -PASS -- TEST 'control_decomp_p8_intel' [25:41, 03:24](1906 MB) -PASS -- TEST 'control_2threads_p8_intel' [25:37, 03:06](1981 MB) -PASS -- TEST 'control_p8_lndp_intel' [28:31, 05:55](1908 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [26:50, 04:32](1962 MB) -PASS -- TEST 'control_p8_mynn_intel' [26:48, 03:48](1909 MB) -PASS -- TEST 'merra2_thompson_intel' [26:58, 04:03](1903 MB) -PASS -- TEST 'regional_control_intel' [16:24, 05:38](1193 MB) -PASS -- TEST 'regional_restart_intel' [08:26, 03:06](1169 MB) -PASS -- TEST 'regional_decomp_intel' [16:22, 05:56](1182 MB) -PASS -- TEST 'regional_2threads_intel' [13:24, 04:00](1153 MB) -PASS -- TEST 'regional_noquilt_intel' [14:27, 05:26](1515 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [14:29, 05:51](1193 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [23:29, 05:08](1203 MB) -PASS -- TEST 'regional_wofs_intel' [26:24, 08:22](2084 MB) - -PASS -- COMPILE 'rrfs_intel' [13:10, 08:44] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [24:46, 07:27](1229 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:50, 04:28](1355 MB) -PASS -- TEST 'rap_decomp_intel' [25:31, 08:02](1151 MB) -PASS -- TEST 'rap_2threads_intel' [24:32, 07:20](1368 MB) -PASS -- TEST 'rap_restart_intel' [04:52, 03:59](1161 MB) -PASS -- TEST 'rap_sfcdiff_intel' [23:48, 07:43](1224 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:33, 08:05](1155 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:00, 05:37](1233 MB) -PASS -- TEST 'hrrr_control_intel' [15:37, 03:55](1114 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:38, 03:56](1056 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:45, 03:35](1119 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:23, 02:08](1039 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:54, 06:53](1198 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:20, 08:08](2020 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:18, 07:40](2189 MB) - -PASS -- COMPILE 'csawmg_intel' [13:10, 08:24] -PASS -- TEST 'control_csawmg_intel' [08:26, 06:36](1041 MB) -PASS -- TEST 'control_ras_intel' [04:19, 02:53](840 MB) - -PASS -- COMPILE 'csawmg_gnu' [08:10, 04:06] -PASS -- TEST 'control_csawmg_gnu' [18:31, 07:48](1078 MB) - -PASS -- COMPILE 'wam_intel' [11:10, 08:02] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [19:30, 09:49](1676 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 08:39] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:47, 03:12](1899 MB) -PASS -- TEST 'regional_control_faster_intel' [06:24, 04:49](1191 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 06:29] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:25, 02:23](1643 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:29, 02:10](1634 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:16, 02:44](846 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:24](839 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:22, 04:43](1156 MB) -PASS -- TEST 'control_ras_debug_intel' [03:23, 02:30](843 MB) -PASS -- TEST 'control_diag_debug_intel' [04:39, 02:24](1704 MB) -PASS -- TEST 'control_debug_p8_intel' [05:33, 03:28](1936 MB) -PASS -- TEST 'regional_debug_intel' [18:26, 16:42](1155 MB) -PASS -- TEST 'rap_control_debug_intel' [05:16, 04:15](1232 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:19, 04:11](1220 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:16, 04:18](1231 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:20](1225 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 04:25](1225 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:25](1311 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:25](1231 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 04:17](1228 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:16, 04:31](1243 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 04:20](1230 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:16, 04:29](1229 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 04:07](1237 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 07:13](1228 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 04:28](1216 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:16, 05:03](1236 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:17, 04:33](1233 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:48, 07:26](1241 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [08:10, 04:46] -PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 02:44](1053 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:10, 04:37] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 08:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:48, 03:31](1235 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:42, 05:22](1137 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:44, 02:55](1021 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:34, 05:04](1275 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 02:40](1039 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:02](994 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:47, 04:03](1096 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:18, 01:38](958 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:10, 07:48] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:36, 01:53](1296 MB) -PASS -- TEST 'conus13km_2threads_intel' [11:29, 00:51](1195 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [11:25, 01:06](1134 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 09:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:29, 04:06](1090 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 05:34] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:17, 04:00](1103 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:18, 04:00](1092 MB) -PASS -- TEST 'conus13km_debug_intel' [19:31, 12:21](1350 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:33, 12:40](994 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:24, 07:10](1253 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:25, 12:28](1407 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 05:07] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:20, 04:15](1161 MB) - -PASS -- COMPILE 'hafsw_intel' [12:10, 10:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [12:02, 05:37](851 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:19, 05:08](1249 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:16, 06:39](949 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [23:01, 14:13](947 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:17, 15:01](988 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:50, 05:27](592 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:18, 06:59](607 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [11:36, 02:35](437 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:51, 07:36](551 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:39, 03:50](606 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:42, 03:44](606 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:44, 04:50](669 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:23, 01:10](450 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:25] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:44, 12:02](631 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:11, 09:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:48, 17:30](754 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [26:59, 15:58](839 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:10, 10:05] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:47, 09:55](810 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:10, 10:14] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [15:03, 05:41](929 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:06, 05:52](913 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:43, 16:28](1347 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:41] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:16, 02:10](1162 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:16, 01:23](1117 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:14, 02:04](1020 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:14, 02:10](1017 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:15, 02:08](1027 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:14, 02:09](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:14, 02:10](1146 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:15, 02:07](1014 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:50, 04:56](1152 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:47, 04:56](1160 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:13, 02:14](1160 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:15, 03:03](2392 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:16, 03:05](2455 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 03:46] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:15, 05:13](1090 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 05:55] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:14, 02:16](1149 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 00:46] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:57](339 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:55](573 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:34](573 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 08:44] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:43, 04:32](2016 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:11, 08:57] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:45, 04:55](1997 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 09:56] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:57, 06:08](1898 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:53, 06:25](1887 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:34, 03:24](1145 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:11, 05:59] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:51, 06:00](1923 MB) - -PASS -- COMPILE 'atmw_intel' [14:10, 09:56] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:48, 02:30](1938 MB) - -PASS -- COMPILE 'atmaero_intel' [09:11, 08:27] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:47, 05:10](2023 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:44, 04:51](1793 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:39, 04:38](1826 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:11, 03:43] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:21, 17:06](4587 MB) - -PASS -- COMPILE 'atm_gnu' [09:11, 04:19] -PASS -- TEST 'control_c48_gnu' [13:36, 09:23](1530 MB) -PASS -- TEST 'control_stochy_gnu' [05:23, 02:20](722 MB) -PASS -- TEST 'control_ras_gnu' [06:16, 03:58](734 MB) -PASS -- TEST 'control_p8_gnu' [07:43, 04:48](1719 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:39, 04:20](1722 MB) -PASS -- TEST 'control_flake_gnu' [07:18, 04:49](810 MB) - -PASS -- COMPILE 'rrfs_gnu' [10:11, 05:22] -PASS -- TEST 'rap_control_gnu' [10:31, 08:15](1084 MB) -PASS -- TEST 'rap_decomp_gnu' [10:34, 08:30](1082 MB) -PASS -- TEST 'rap_2threads_gnu' [08:43, 07:19](1115 MB) -PASS -- TEST 'rap_restart_gnu' [06:40, 04:16](884 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:45, 08:06](1081 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:33, 08:12](1083 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:41, 05:53](883 MB) -PASS -- TEST 'hrrr_control_gnu' [05:30, 04:09](1072 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:31, 04:15](1133 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:48, 03:41](1020 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:31, 04:10](1077 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:21, 02:12](884 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:28, 02:05](932 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:50, 08:20](1088 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [14:11, 10:58] -PASS -- TEST 'control_diag_debug_gnu' [02:29, 01:14](1626 MB) -PASS -- TEST 'regional_debug_gnu' [08:27, 07:23](1125 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:01](1098 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 01:57](1089 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:18, 02:08](1095 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:16, 02:02](1095 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:29, 02:23](1268 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:16, 03:16](1095 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 02:04](1100 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:17, 02:01](1105 MB) -PASS -- TEST 'control_ras_debug_gnu' [04:16, 01:17](722 MB) -PASS -- TEST 'control_stochy_debug_gnu' [04:16, 01:23](726 MB) -PASS -- TEST 'control_debug_p8_gnu' [04:29, 02:03](1716 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:16, 02:03](1097 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:16, 02:21](1102 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:45, 03:24](1103 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:18] -PASS -- TEST 'control_wam_debug_gnu' [07:31, 05:25](1560 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [12:10, 09:01] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:44, 07:36](960 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:36, 04:05](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 06:53](968 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:55, 03:32](879 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:36, 04:09](949 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:38, 05:50](864 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:17, 02:06](862 MB) -PASS -- TEST 'conus13km_control_gnu' [04:34, 02:42](1271 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:25, 01:04](1176 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:26, 01:28](929 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [17:10, 14:39] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:28, 04:40](988 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [15:10, 13:20] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:16, 02:00](977 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:16, 02:00](971 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:29, 05:45](1285 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:28, 05:56](961 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:26, 03:27](1195 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:27, 05:33](1352 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:10, 13:26] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 02:14](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [17:10, 16:22] - -PASS -- COMPILE 's2s_gnu' [16:10, 15:51] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [05:51, 04:58](2737 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [09:10, 04:36] - -PASS -- COMPILE 's2sw_pdlib_gnu' [22:10, 17:05] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:45, 26:44](3035 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:10, 08:57] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:45, 12:39](2920 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [20:10, 15:28] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:20](768 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [12:07, 12:07] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:26, 07:39](2109 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:58, 16:58] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:35, 13:48](2007 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:14, 14:07](2278 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:47, 06:38](1311 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:52, 15:05](1906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:09, 17:09] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:17, 13:53](1992 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 06:12] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:48, 22:04](1980 MB) + +PASS -- COMPILE 's2swa_intel' [12:05, 12:05] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:36, 07:50](2183 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:24, 07:44](2172 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:18, 04:28](1999 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:26, 07:43](2198 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [29:12, 28:14](1745 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:22, 08:51](2549 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:25, 07:43](2163 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:49, 06:26](2093 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:55, 08:14](2178 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:46, 15:20](2984 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:49, 06:05](2924 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:47, 12:16](3833 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:41, 07:20](3633 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:38, 05:55](2154 MB) + +PASS -- COMPILE 's2sw_intel' [11:50, 11:50] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:56, 07:14](2020 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:22, 04:43](2083 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:35, 05:35] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [07:50, 07:05](2199 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:14, 05:14] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:30, 04:54](2045 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:05, 10:05] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:06, 04:23](2074 MB) + +PASS -- COMPILE 's2s_intel' [09:54, 09:54] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:28, 07:01](3052 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:42, 02:10](3039 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:27, 01:12](2477 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:06, 14:05] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:21, 07:35](2181 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:28, 16:28] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:28, 13:49](2036 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:20, 06:54](1368 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:01, 15:25](1962 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:53, 04:53] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:41, 22:58](2007 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:32, 09:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:06, 02:54](710 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [02:48, 02:28](1604 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:53, 02:33](1611 MB) +PASS -- TEST 'control_latlon_intel' [02:52, 02:30](1618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:01, 02:31](1600 MB) +PASS -- TEST 'control_c48_intel' [08:01, 07:33](1705 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:45, 06:29](837 MB) +PASS -- TEST 'control_c192_intel' [09:43, 09:13](1752 MB) +PASS -- TEST 'control_c384_intel' [10:26, 09:20](1986 MB) +PASS -- TEST 'control_c384gdas_intel' [08:44, 07:23](1507 MB) +PASS -- TEST 'control_stochy_intel' [01:40, 01:28](660 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:16, 00:57](531 MB) +PASS -- TEST 'control_lndp_intel' [01:37, 01:28](668 MB) +PASS -- TEST 'control_iovr4_intel' [02:32, 02:15](665 MB) +PASS -- TEST 'control_iovr5_intel' [02:17, 02:07](668 MB) +PASS -- TEST 'control_p8_intel' [03:20, 02:37](1893 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:21, 02:40](1907 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:15, 02:39](1894 MB) +PASS -- TEST 'control_restart_p8_intel' [02:36, 01:45](1151 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:11, 02:40](1899 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:07, 01:32](1203 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:15, 02:40](1901 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:17, 02:30](1979 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:09, 04:41](1906 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:29, 03:42](1972 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:23, 02:47](1914 MB) +PASS -- TEST 'merra2_thompson_intel' [03:30, 02:52](1908 MB) +PASS -- TEST 'regional_control_intel' [05:04, 04:45](1200 MB) +PASS -- TEST 'regional_restart_intel' [02:58, 02:39](1169 MB) +PASS -- TEST 'regional_decomp_intel' [05:24, 05:06](1185 MB) +PASS -- TEST 'regional_2threads_intel' [03:18, 03:00](1152 MB) +PASS -- TEST 'regional_noquilt_intel' [04:44, 04:24](1522 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:09, 04:47](1192 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:00, 04:39](1194 MB) +PASS -- TEST 'regional_wofs_intel' [08:18, 07:59](2077 MB) + +PASS -- COMPILE 'rrfs_intel' [10:37, 10:37] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:06, 07:26](1216 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:52, 04:09](1352 MB) +PASS -- TEST 'rap_decomp_intel' [08:34, 07:58](1159 MB) +PASS -- TEST 'rap_2threads_intel' [07:59, 07:23](1370 MB) +PASS -- TEST 'rap_restart_intel' [04:41, 03:58](1162 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:05, 07:27](1233 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 07:55](1152 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 05:43](1210 MB) +PASS -- TEST 'hrrr_control_intel' [04:26, 03:48](1108 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:38, 04:02](1051 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:36, 08:54](1116 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:25, 02:06](1045 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:46, 06:59](1203 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:17, 08:09](2015 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:58, 07:44](2172 MB) + +PASS -- COMPILE 'csawmg_intel' [08:03, 08:03] +PASS -- TEST 'control_csawmg_intel' [06:03, 05:42](1054 MB) +PASS -- TEST 'control_ras_intel' [03:22, 03:07](832 MB) + +PASS -- COMPILE 'csawmg_gnu' [03:59, 03:59] +PASS -- TEST 'control_csawmg_gnu' [07:48, 07:26](1080 MB) + +PASS -- COMPILE 'wam_intel' [09:14, 09:14] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:19, 09:56](1675 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:05, 09:05] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:15, 02:32](1893 MB) +PASS -- TEST 'regional_control_faster_intel' [04:42, 04:23](1191 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:02, 07:02] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:37, 02:17](1644 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:46, 02:14](1649 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:48, 02:42](842 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:36, 02:23](843 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:02, 03:41](1158 MB) +PASS -- TEST 'control_ras_debug_intel' [02:38, 02:25](856 MB) +PASS -- TEST 'control_diag_debug_intel' [02:39, 02:19](1699 MB) +PASS -- TEST 'control_debug_p8_intel' [02:59, 02:43](1926 MB) +PASS -- TEST 'regional_debug_intel' [16:13, 15:57](1145 MB) +PASS -- TEST 'rap_control_debug_intel' [04:23, 04:16](1234 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:37, 04:25](1219 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:26, 04:13](1229 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:37, 04:25](1231 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:33, 04:21](1228 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:39, 04:25](1322 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:43, 04:36](1228 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:27, 04:19](1237 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:31, 04:22](1232 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:28, 04:17](1234 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:22, 04:10](1230 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:28, 04:18](1232 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:48, 07:37](1234 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:32, 04:21](1228 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:19, 05:06](1249 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:51, 04:38](1236 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:53, 07:17](1235 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:20, 05:20] +PASS -- TEST 'control_csawmg_debug_gnu' [02:24, 02:09](1049 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:30, 04:30] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:30, 08:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:46, 03:13](1241 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:57, 05:26](1144 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:39, 02:52](1020 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:37, 05:05](1291 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:45, 07:59](1033 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:48, 03:03](993 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:39, 04:05](1093 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:52, 01:35](970 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:57, 07:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:10, 01:46](1282 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:04, 00:44](1196 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:23, 01:03](1144 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:30, 09:29] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:20, 03:59](1091 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:28, 05:28] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:13, 04:03](1104 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:06, 03:54](1105 MB) +PASS -- TEST 'conus13km_debug_intel' [12:26, 12:03](1350 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:08, 12:43](1006 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:31, 07:12](1251 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:30, 12:11](1417 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:15, 04:15] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:31, 04:19](1175 MB) + +PASS -- COMPILE 'hafsw_intel' [10:08, 10:08] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:14, 05:22](862 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:13, 04:56](1264 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:29, 06:25](936 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:58, 14:02](953 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:18, 15:12](997 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:58, 05:20](598 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:57, 06:51](610 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:11, 02:36](436 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:16, 07:37](546 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:29, 03:55](611 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:20, 03:42](606 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:24, 04:48](666 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:33, 01:16](448 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:47, 04:46] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:35, 11:53](638 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:57, 09:57] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:26, 15:43](732 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:54, 16:01](840 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:39, 09:39] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:22, 10:04](819 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:04, 10:04] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:26, 05:31](932 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:30, 05:35](924 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:56, 16:22](1341 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [05:49, 05:49] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:02, 02:54](1128 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:24, 01:18](1100 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:13, 02:07](1009 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 03:11](1001 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:12, 02:09](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:23, 03:16](1125 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:19, 02:12](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:14, 02:07](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:34, 04:57](1155 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:30, 04:52](1147 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:15, 02:11](1163 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:10, 03:05](2450 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:13, 03:06](2396 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:20, 05:20] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 05:11](1070 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:16, 05:16] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:09, 03:05](1143 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:05, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:09, 00:54](336 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:02, 00:49](559 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:53, 00:36](576 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:29, 09:29] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:14, 03:31](2016 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:22, 09:22] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:19, 03:35](1996 MB) + +PASS -- COMPILE 'atml_intel' [09:36, 09:36] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:11, 06:23](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:50, 06:00](1888 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:25, 02:58](1143 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:39, 04:39] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:32, 05:42](1929 MB) + +PASS -- COMPILE 'atmw_intel' [09:31, 09:31] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:38, 02:00](1947 MB) + +PASS -- COMPILE 'atmaero_intel' [10:04, 10:04] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:30, 03:57](2013 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:01, 04:23](1801 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [04:59, 04:28](1819 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:46, 04:46] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [17:42, 16:36](4575 MB) + +PASS -- COMPILE 'atm_gnu' [04:54, 04:54] +PASS -- TEST 'control_c48_gnu' [10:06, 09:34](1527 MB) +PASS -- TEST 'control_stochy_gnu' [02:36, 02:26](723 MB) +PASS -- TEST 'control_ras_gnu' [03:56, 03:44](728 MB) +PASS -- TEST 'control_p8_gnu' [04:42, 04:02](1719 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:13, 03:40](1721 MB) +PASS -- TEST 'control_flake_gnu' [05:02, 04:50](812 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:45, 04:44] +PASS -- TEST 'rap_control_gnu' [08:57, 08:25](1089 MB) +PASS -- TEST 'rap_decomp_gnu' [08:45, 08:13](1085 MB) +PASS -- TEST 'rap_2threads_gnu' [08:03, 07:26](1137 MB) +PASS -- TEST 'rap_restart_gnu' [04:54, 04:11](884 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:45, 08:10](1083 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:55, 08:21](1080 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:30, 05:52](884 MB) +PASS -- TEST 'hrrr_control_gnu' [04:36, 04:02](1068 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:54, 04:24](1138 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:22, 03:45](1043 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:57, 04:14](1069 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:23, 02:08](881 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:29, 02:10](932 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:47, 08:03](1079 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:49, 06:49] +PASS -- TEST 'control_diag_debug_gnu' [01:42, 01:18](1629 MB) +PASS -- TEST 'regional_debug_gnu' [06:53, 06:34](1151 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:07](1096 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:08, 01:55](1089 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:28, 02:08](1093 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:20, 02:08](1092 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:30, 02:13](1273 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:38, 03:27](1095 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:18, 02:06](1094 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:07, 02:00](1092 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:19, 01:13](725 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:37, 01:27](720 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:55, 01:32](1720 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:16, 02:08](1098 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:31, 02:19](1098 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:04, 03:25](1099 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:22, 02:22] +PASS -- TEST 'control_wam_debug_gnu' [05:56, 05:33](1560 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:04, 04:04] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:29, 07:53](962 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:53, 04:07](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:27, 06:45](968 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:39, 03:50](881 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:44, 03:57](949 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:31, 05:47](864 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:18, 02:00](866 MB) +PASS -- TEST 'conus13km_control_gnu' [02:55, 02:32](1272 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:41, 01:13](1182 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:50, 01:29](928 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:40, 08:40] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:11, 04:36](993 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:23, 06:23] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:27, 02:14](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:06, 01:57](970 MB) +PASS -- TEST 'conus13km_debug_gnu' [05:58, 05:36](1285 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:24, 06:00](960 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:08, 03:43](1195 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:20, 05:59](1353 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:36, 07:29] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:26, 02:11](1002 MB) + +PASS -- COMPILE 's2swa_gnu' [17:30, 17:30] + +PASS -- COMPILE 's2s_gnu' [16:16, 16:16] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:09, 05:23](3086 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:31, 03:31] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:48, 16:48] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:30, 26:41](3019 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:00, 04:00] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:49, 12:07](3056 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:02, 17:02] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:29, 02:22](774 MB) SYNOPSIS: -Starting Date/Time: 20240816 07:59:44 -Ending Date/Time: 20240816 10:15:45 -Total Time: 02h:16m:31s +Starting Date/Time: 20240819 15:40:05 +Ending Date/Time: 20240819 21:39:49 +Total Time: 06h:00m:22s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 6afe601a58..75d85aa171 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -8cb23af867d56961352ff5fab97656c3a4c6b936 +ed15c21712242a15f47d8e809925de16e2a3c5d6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - fd590042f958cae20968eb2221bdbbcedd931bea FV3 (remotes/origin/skeb_hydrostatic) - d92b739ed0c7d7d676c5906a66d626cb3178c817 FV3/atmos_cubed_sphere (remotes/origin/skeb_hydrostatic) + 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) + 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,253 +35,254 @@ 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: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1259533 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240819 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1955508 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [43:50, 43:50] ( 1 warnings 1378 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:46, 08:18](2002 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:36, 51:36] ( 1 warnings 1425 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:13, 22:04](1884 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:57, 23:48](2021 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:18, 11:22](1114 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:08, 25:13](1849 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:59, 49:59] ( 1 warnings 1422 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:15, 21:38](1880 MB) - -PASS -- COMPILE 's2swa_intel' [44:02, 44:02] ( 1379 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:08, 08:29](2052 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:40, 08:55](2053 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:18, 05:22](1708 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:19, 08:48](2067 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:55, 05:02](1733 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:03, 08:38](2316 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:26, 09:04](2032 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:37, 07:37](2004 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:12, 08:42](1974 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:03, 08:37](2020 MB) - -PASS -- COMPILE 's2sw_intel' [41:26, 41:26] ( 1277 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 07:21](1892 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:13, 07:34](1953 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:08, 07:08] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:04, 11:18](2079 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:45, 06:45] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:27, 07:57](1918 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [37:28, 37:28] ( 1008 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:33, 06:51](1966 MB) - -PASS -- COMPILE 's2s_intel' [38:10, 38:10] ( 1013 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [13:18, 12:21](3013 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:31, 03:32](3006 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:15, 02:14](2431 MB) - -PASS -- COMPILE 's2swa_faster_intel' [33:32, 33:32] ( 1607 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:25, 08:52](2042 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:33, 47:33] ( 1337 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:52, 22:27](1915 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:51, 13:18](1123 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:51, 25:31](1885 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:27, 06:27] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:37, 34:03](1934 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:50, 38:50] ( 1 warnings 1124 remarks ) -PASS -- TEST 'control_flake_intel' [05:05, 04:45](643 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:05, 04:24](1543 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:25, 04:26](1552 MB) -PASS -- TEST 'control_latlon_intel' [05:03, 04:26](1545 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:21, 04:32](1545 MB) -PASS -- TEST 'control_c48_intel' [12:34, 11:51](1700 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:46, 10:25](834 MB) -PASS -- TEST 'control_c192_intel' [16:26, 15:27](1661 MB) -PASS -- TEST 'control_c384_intel' [20:53, 18:49](1794 MB) -PASS -- TEST 'control_c384gdas_intel' [17:08, 14:23](1001 MB) -PASS -- TEST 'control_stochy_intel' [02:56, 02:41](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:54, 01:34](426 MB) -PASS -- TEST 'control_lndp_intel' [02:58, 02:36](599 MB) -PASS -- TEST 'control_iovr4_intel' [04:21, 03:51](599 MB) -PASS -- TEST 'control_iovr5_intel' [04:03, 03:37](601 MB) -PASS -- TEST 'control_p8_intel' [06:54, 05:44](1838 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:47, 05:30](1833 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:10, 05:05](1840 MB) -PASS -- TEST 'control_restart_p8_intel' [04:23, 03:18](1048 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:24, 05:16](1837 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 03:09](1073 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:52, 05:45](1822 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:45, 05:34](1914 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:46, 08:26](1837 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:32, 06:24](1888 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:20, 05:09](1831 MB) -PASS -- TEST 'merra2_thompson_intel' [07:16, 05:43](1841 MB) -PASS -- TEST 'regional_control_intel' [09:22, 08:44](1012 MB) -PASS -- TEST 'regional_restart_intel' [05:15, 04:37](1002 MB) -PASS -- TEST 'regional_decomp_intel' [09:29, 08:50](1000 MB) -PASS -- TEST 'regional_2threads_intel' [07:09, 06:29](987 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 08:02](1003 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:50, 08:16](1000 MB) - -PASS -- COMPILE 'rrfs_intel' [38:59, 38:58] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [11:35, 10:26](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 05:48](1166 MB) -PASS -- TEST 'rap_decomp_intel' [12:04, 10:55](979 MB) -PASS -- TEST 'rap_2threads_intel' [11:19, 10:05](1070 MB) -PASS -- TEST 'rap_restart_intel' [06:40, 05:36](985 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:37, 10:27](985 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:17, 11:02](976 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:18, 08:08](994 MB) -PASS -- TEST 'hrrr_control_intel' [06:39, 05:19](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 05:47](976 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:14, 04:57](1056 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:19, 02:57](918 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:58, 10:32](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 13:00](1942 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:10, 12:54](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [35:25, 35:25] ( 1089 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:14, 09:36](957 MB) -PASS -- TEST 'control_ras_intel' [05:01, 04:42](667 MB) - -PASS -- COMPILE 'wam_intel' [35:56, 35:56] ( 992 remarks ) -PASS -- TEST 'control_wam_intel' [16:10, 15:21](1600 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [38:03, 38:03] ( 1292 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:04, 04:43](1825 MB) -PASS -- TEST 'regional_control_faster_intel' [08:50, 08:10](996 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 09:23] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:16, 03:39](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 03:34](1571 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:29, 04:08](778 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:59, 03:42](776 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 06:06](1087 MB) -PASS -- TEST 'control_ras_debug_intel' [04:05, 03:43](784 MB) -PASS -- TEST 'control_diag_debug_intel' [04:43, 03:49](1621 MB) -PASS -- TEST 'control_debug_p8_intel' [05:25, 04:36](1870 MB) -PASS -- TEST 'regional_debug_intel' [23:43, 23:12](1037 MB) -PASS -- TEST 'rap_control_debug_intel' [07:03, 06:38](1161 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:53, 06:28](1155 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:06, 06:41](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:17, 06:48](1159 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:01, 06:24](1160 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:10, 06:38](1243 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:44, 06:29](1160 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:49, 06:33](1162 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:41, 06:25](1173 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:44, 06:23](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 06:09](1161 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 06:16](1160 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 10:08](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 06:13](1164 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:48, 07:30](1159 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:31, 06:14](1158 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:58, 10:47](1162 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:47, 05:46] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:24, 16:42](1616 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:56, 31:56] ( 3 warnings 1024 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:47, 05:44](1044 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:05, 08:52](895 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:12, 04:36](871 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:42, 09:08](943 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:50, 04:14](902 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:00, 04:59](852 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:59, 06:40](892 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 02:51](845 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [27:44, 27:43] ( 3 warnings 1197 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:08, 03:16](1092 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:45](1037 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:57, 02:00](1007 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:25, 32:25] ( 3 warnings 1044 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:11, 05:52](905 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:47, 05:47] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:36, 06:14](1033 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:39, 06:16](1029 MB) -PASS -- TEST 'conus13km_debug_intel' [20:11, 19:05](1145 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:27, 19:34](853 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:46, 11:07](1088 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:33, 18:57](1207 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:46, 05:46] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 06:17](1078 MB) - -PASS -- COMPILE 'hafsw_intel' [40:45, 40:44] ( 1 warnings 1416 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:53, 07:21](676 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:58](1073 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:32, 09:43](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:46, 17:19](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:33, 18:43](800 MB) -PASS -- TEST 'gnv1_nested_intel' [10:32, 08:18](1678 MB) - -PASS -- COMPILE 'hafs_all_intel' [36:41, 36:41] ( 1263 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:48, 09:34](749 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:42, 09:26](730 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:56, 08:56] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 03:52](1060 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:34, 02:21](1031 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:53, 03:39](927 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:54, 03:40](928 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:53, 03:42](929 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:08, 03:41](1065 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:52, 03:42](1071 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:51, 03:41](936 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:37, 09:20](890 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:53, 08:48](842 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:53, 03:47](1068 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:24, 05:14](2357 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:24, 05:14](2299 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:50, 03:50] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 08:05](1029 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:30, 08:30] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:58, 03:48](1087 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:57, 01:57] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:40, 02:06](232 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:10, 01:43](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 01:09](257 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:14, 37:14] ( 1013 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:58, 06:29](1883 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [36:44, 36:44] ( 1013 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:45, 06:26](1880 MB) - -PASS -- COMPILE 'atml_intel' [42:33, 42:32] ( 8 warnings 1165 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:29, 10:02](1849 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:47, 10:29](1851 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:24, 06:37](1061 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 07:08] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:03, 08:19](1874 MB) - -PASS -- COMPILE 'atmw_intel' [38:43, 38:42] ( 1258 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:36, 03:22](1856 MB) - -PASS -- COMPILE 'atmaero_intel' [36:55, 36:54] ( 1096 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:19, 06:09](1924 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:02, 06:40](1701 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:56, 06:51](1724 MB) +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [43:14, 42:44] ( 1 warnings 1378 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:54, 07:15](2009 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:15, 53:18] ( 1 warnings 1425 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:06, 21:35](1889 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [47:18, 23:13](1985 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [22:55, 11:15](1117 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:46, 24:30](1836 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:15, 49:35] ( 1 warnings 1422 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:58, 20:53](1876 MB) + +PASS -- COMPILE 's2swa_intel' [42:14, 41:24] ( 1379 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:19, 07:56](2057 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:43, 08:05](2059 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:49, 04:56](1720 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:20, 08:05](2073 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:48, 04:55](1740 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:14, 07:49](2317 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:13, 08:00](2050 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:41, 06:52](2015 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:39, 08:04](2014 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:30, 07:34](2040 MB) + +PASS -- COMPILE 's2sw_intel' [41:14, 40:41] ( 1277 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:33, 06:25](1903 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:45, 06:25](1968 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:24] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:32, 10:49](2071 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 06:00] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:22, 07:34](1932 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [39:15, 36:32] ( 1008 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:51, 06:11](1969 MB) + +PASS -- COMPILE 's2s_intel' [39:15, 37:04] ( 1013 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:11, 12:30](3018 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [19:13, 03:55](3010 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:05, 02:10](2454 MB) + +PASS -- COMPILE 's2swa_faster_intel' [39:18, 34:06] ( 1607 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:59, 07:41](2051 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [10:16, 47:39] ( 1337 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:33, 21:13](1910 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:38, 10:50](1134 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:33, 24:33](1888 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [27:13, 06:17] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:36, 33:40](1929 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [46:14, 38:03] ( 1 warnings 1124 remarks ) +PASS -- TEST 'control_flake_intel' [05:34, 04:29](646 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:10, 03:57](1542 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:14, 04:09](1546 MB) +PASS -- TEST 'control_latlon_intel' [05:05, 03:53](1549 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:17, 04:04](1553 MB) +PASS -- TEST 'control_c48_intel' [13:16, 11:45](1702 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:41, 10:16](834 MB) +PASS -- TEST 'control_c192_intel' [20:27, 14:21](1667 MB) +PASS -- TEST 'control_c384_intel' [23:18, 18:00](1802 MB) +PASS -- TEST 'control_c384gdas_intel' [20:23, 13:23](1003 MB) +PASS -- TEST 'control_stochy_intel' [03:32, 02:11](603 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:32, 01:22](434 MB) +PASS -- TEST 'control_lndp_intel' [03:32, 02:05](597 MB) +PASS -- TEST 'control_iovr4_intel' [04:34, 03:20](600 MB) +PASS -- TEST 'control_iovr5_intel' [04:34, 03:19](600 MB) +PASS -- TEST 'control_p8_intel' [06:30, 04:39](1838 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:59, 04:35](1833 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:49, 04:29](1843 MB) +PASS -- TEST 'control_restart_p8_intel' [05:07, 02:55](1049 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:35, 04:31](1837 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:20, 02:44](1072 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:37, 04:36](1826 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:37, 04:23](1912 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:12, 07:27](1838 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:03, 05:55](1889 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:50, 04:33](1849 MB) +PASS -- TEST 'merra2_thompson_intel' [07:07, 04:53](1842 MB) +PASS -- TEST 'regional_control_intel' [09:03, 07:43](1009 MB) +PASS -- TEST 'regional_restart_intel' [06:38, 04:28](1002 MB) +PASS -- TEST 'regional_decomp_intel' [09:03, 08:00](998 MB) +PASS -- TEST 'regional_2threads_intel' [07:02, 06:05](995 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:10, 07:44](999 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:47, 07:54](999 MB) + +PASS -- COMPILE 'rrfs_intel' [48:14, 38:17] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [12:05, 10:07](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:16, 05:37](1169 MB) +PASS -- TEST 'rap_decomp_intel' [12:01, 10:45](981 MB) +PASS -- TEST 'rap_2threads_intel' [11:25, 09:41](1070 MB) +PASS -- TEST 'rap_restart_intel' [07:26, 05:22](989 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:22, 10:05](983 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:05, 10:37](981 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:35, 07:35](992 MB) +PASS -- TEST 'hrrr_control_intel' [07:22, 05:10](988 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 05:19](980 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:54, 04:49](1062 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:31, 02:52](914 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:42, 09:59](981 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 12:28](1945 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:38, 12:11](1940 MB) + +PASS -- COMPILE 'csawmg_intel' [49:15, 35:07] ( 1089 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:37, 08:55](935 MB) +PASS -- TEST 'control_ras_intel' [05:24, 04:27](661 MB) + +PASS -- COMPILE 'wam_intel' [36:13, 35:28] ( 992 remarks ) +PASS -- TEST 'control_wam_intel' [15:58, 14:23](1612 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [38:13, 37:15] ( 1292 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:34, 04:06](1816 MB) +PASS -- TEST 'regional_control_faster_intel' [07:45, 06:46](994 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:34] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:50, 03:19](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:56, 03:19](1569 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:31, 03:49](772 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:31, 03:26](775 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:47, 05:43](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [05:29, 03:28](780 MB) +PASS -- TEST 'control_diag_debug_intel' [07:53, 03:24](1628 MB) +PASS -- TEST 'control_debug_p8_intel' [08:59, 04:04](1857 MB) +PASS -- TEST 'regional_debug_intel' [27:55, 22:31](1029 MB) +PASS -- TEST 'rap_control_debug_intel' [10:27, 06:12](1156 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:27, 06:08](1155 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:27, 06:15](1161 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:28, 06:16](1160 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:28, 06:16](1165 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:33](1241 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 06:24](1159 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:25, 06:22](1158 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:26, 06:13](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:12](1161 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:25, 06:04](1157 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 06:11](1161 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:29, 10:08](1138 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 06:09](1154 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:27, 07:28](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:25, 06:11](1153 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:28, 10:43](1162 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 05:29] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:00, 16:39](1644 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 31:21] ( 3 warnings 1024 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:18, 05:13](1044 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:02, 08:16](897 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:04, 04:23](866 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:23, 07:56](943 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 04:01](898 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:04, 04:39](855 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:29, 06:27](895 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 02:23](847 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [35:13, 32:52] ( 3 warnings 1197 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:58, 02:54](1097 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:38](1037 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:47](1008 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:13, 31:50] ( 3 warnings 1044 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 05:32](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:08] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:30, 06:06](1040 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 05:58](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [20:02, 18:49](1145 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:00, 19:14](860 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:55, 10:52](1094 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:54, 18:56](1215 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:17] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:28, 06:22](1059 MB) + +PASS -- COMPILE 'hafsw_intel' [40:13, 39:34] ( 1 warnings 1416 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:28, 06:57](698 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:39, 06:21](1050 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:42, 09:20](757 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:30, 16:40](784 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:44, 18:07](796 MB) +PASS -- TEST 'gnv1_nested_intel' [09:46, 07:06](1664 MB) + +PASS -- COMPILE 'hafs_all_intel' [37:13, 36:17] ( 1263 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:22, 08:40](744 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:26, 08:43](733 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:22] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 03:41](1065 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:10](1035 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:41](940 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 03:38](923 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:40](927 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 03:39](1064 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:40](1066 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 03:37](942 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 07:58](893 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:18, 07:48](853 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:38](1066 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:07](2420 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:19](2407 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:38] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 08:10](1015 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:27] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 03:37](1066 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:46] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:39](232 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:23](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:53](252 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:13, 36:36] ( 1013 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:17, 05:29](1893 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [36:13, 35:44] ( 1013 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:33, 05:42](1894 MB) + +PASS -- COMPILE 'atml_intel' [37:13, 37:05] ( 8 warnings 1165 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:46, 07:57](1845 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:46, 07:56](1854 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 04:13](1065 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 06:07] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:48, 08:01](1888 MB) + +PASS -- COMPILE 'atmw_intel' [38:14, 37:55] ( 1258 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:35, 02:33](1851 MB) + +PASS -- COMPILE 'atmaero_intel' [36:13, 35:42] ( 1096 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:26, 05:41](1933 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:20, 06:20](1712 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:09, 06:33](1722 MB) SYNOPSIS: -Starting Date/Time: 20240809 11:54:43 -Ending Date/Time: 20240809 19:34:18 -Total Time: 07h:40m:12s +Starting Date/Time: 20240819 22:24:20 +Ending Date/Time: 20240820 02:44:40 +Total Time: 04h:22m:30s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 568d6ae430..55bab8d4bc 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: -09690a092f727349365fac81c2d2096127bb8f12 +4507a4e71f5490cf64ae981fd7b9facf85867858 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 5c9aee9ab1f61281bc62f38e0a22c13fb23c520a MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10196-g5c9aee9ab) + 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,285 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240813 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2094749 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240819 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_742584 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 18:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:38, 14:25](2084 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 17:28] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:52, 14:42](2081 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 23:45] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:36, 18:08](1948 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:11, 18:59](2129 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:52](1218 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:38, 20:16](1873 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:11, 25:21] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:56, 18:06](1959 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:06, 19:04](2131 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:59, 09:03](1204 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:50, 20:16](1874 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 22:23] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:43, 17:45](1944 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:55] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:48, 17:43](1940 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 09:09] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:52, 27:29](1925 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 09:19] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:39, 27:32](1940 MB) PASS -- COMPILE 's2swa_intel' [18:11, 17:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:30, 14:25](2129 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:38, 14:14](2130 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:48, 07:48](1819 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:30, 14:22](2154 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:48, 08:01](1705 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:31, 13:06](2431 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:29, 14:19](2119 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:30, 12:29](2040 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:42, 14:04](2134 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:27, 16:32](2720 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:54, 08:36](2714 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:14, 11:38](3687 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:42, 07:09](3497 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:25, 05:52](2101 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 16:38] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:59, 13:59](1976 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:10, 04:47](2041 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 09:08] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:28, 08:39](2165 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:31] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:08, 06:10](2003 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:41] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:16, 04:46](2041 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 15:56] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:56, 10:11](3053 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:56, 03:23](3030 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:57, 02:12](2480 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:27] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:26, 14:34](2133 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:56] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:15, 18:14](1995 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:17, 08:58](1242 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:06, 20:25](1910 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 08:21] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:19, 29:35](1975 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:25, 03:45](690 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 03:09](1591 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:48, 03:19](1594 MB) -PASS -- TEST 'control_latlon_intel' [04:38, 03:10](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 03:11](1582 MB) -PASS -- TEST 'control_c48_intel' [10:48, 09:29](1709 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:31, 08:07](834 MB) -PASS -- TEST 'control_c192_intel' [12:50, 11:41](1717 MB) -PASS -- TEST 'control_c384_intel' [14:45, 12:45](1959 MB) -PASS -- TEST 'control_c384gdas_intel' [12:25, 09:48](1326 MB) -PASS -- TEST 'control_stochy_intel' [02:24, 01:50](642 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:36, 01:05](476 MB) -PASS -- TEST 'control_lndp_intel' [02:20, 01:45](650 MB) -PASS -- TEST 'control_iovr4_intel' [03:24, 02:43](640 MB) -PASS -- TEST 'control_iovr5_intel' [03:23, 02:42](642 MB) -PASS -- TEST 'control_p8_intel' [05:15, 03:28](1870 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:16, 03:28](1874 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:28, 03:19](1878 MB) -PASS -- TEST 'control_restart_p8_intel' [03:01, 02:03](1089 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:05, 03:23](1870 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:12, 02:02](1123 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:00, 03:34](1869 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:55, 03:44](1954 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:46, 05:55](1874 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:23, 04:56](1934 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:18, 03:28](1883 MB) -PASS -- TEST 'merra2_thompson_intel' [05:31, 03:48](1877 MB) -PASS -- TEST 'regional_control_intel' [07:37, 06:26](1080 MB) -PASS -- TEST 'regional_restart_intel' [04:35, 03:33](1075 MB) -PASS -- TEST 'regional_decomp_intel' [07:37, 07:03](1070 MB) -PASS -- TEST 'regional_2threads_intel' [05:34, 04:33](1065 MB) -PASS -- TEST 'regional_noquilt_intel' [07:37, 06:22](1383 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:37, 06:23](1087 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 06:24](1077 MB) -PASS -- TEST 'regional_wofs_intel' [08:32, 07:51](1900 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 13:12] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:15, 08:27](1056 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 05:10](1235 MB) -PASS -- TEST 'rap_decomp_intel' [09:56, 08:41](1027 MB) -PASS -- TEST 'rap_2threads_intel' [10:19, 08:29](1160 MB) -PASS -- TEST 'rap_restart_intel' [06:28, 04:23](1044 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:55, 08:19](1046 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:55, 08:37](1027 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:29, 06:17](1079 MB) -PASS -- TEST 'hrrr_control_intel' [06:08, 04:20](1028 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:58, 04:25](1021 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:55, 04:09](1090 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:48, 02:21](944 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:20, 08:16](1050 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 10:00](1987 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:43](2031 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 12:27] -PASS -- TEST 'control_csawmg_intel' [07:36, 06:36](1017 MB) -PASS -- TEST 'control_ras_intel' [04:22, 03:29](712 MB) - -PASS -- COMPILE 'wam_intel' [13:11, 12:40] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:44, 12:37](1666 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 13:02] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:17, 03:20](1885 MB) -PASS -- TEST 'regional_control_faster_intel' [07:34, 06:17](1071 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 10:12] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:47](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:41](1619 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:25, 03:04](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:46](820 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:45, 04:19](1127 MB) -PASS -- TEST 'control_ras_debug_intel' [03:25, 02:48](818 MB) -PASS -- TEST 'control_diag_debug_intel' [03:49, 02:50](1673 MB) -PASS -- TEST 'control_debug_p8_intel' [04:49, 03:09](1907 MB) -PASS -- TEST 'regional_debug_intel' [18:45, 17:28](1093 MB) -PASS -- TEST 'rap_control_debug_intel' [05:28, 05:02](1212 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:40](1198 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:50](1205 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:24, 04:59](1198 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 05:20](1211 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:29, 05:13](1287 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:20, 05:02](1209 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 05:08](1211 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 05:02](1201 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:27, 04:58](1212 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:51](1197 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 04:56](1211 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 08:07](1198 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 04:48](1203 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 06:07](1207 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:55](1205 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:28, 08:38](1213 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:10, 06:21] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:47, 13:18](1679 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:10, 12:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:01, 04:53](1130 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:23, 07:08](999 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:23, 03:48](933 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:09, 07:18](1067 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:04, 03:41](938 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:03, 03:55](904 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:31, 05:20](973 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:29, 02:03](879 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:49, 02:44](1168 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:41, 01:14](1116 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:31](1065 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:42] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 04:34](974 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 06:40] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:54](1083 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:49](1086 MB) -PASS -- TEST 'conus13km_debug_intel' [15:47, 15:03](1229 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 15:14](926 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:52, 08:28](1168 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:49](1306 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:32] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 05:01](1140 MB) - -PASS -- COMPILE 'hafsw_intel' [15:10, 14:38] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:17, 06:01](732 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 06:18](1123 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 07:35](828 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:16, 24:27](848 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:18, 28:16](867 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:00, 07:00](520 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:30, 08:17](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:54, 03:26](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:20, 09:25](483 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:54, 04:37](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:51, 04:23](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:54, 05:37](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:32](402 MB) -PASS -- TEST 'gnv1_nested_intel' [07:14, 04:24](1730 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:10, 06:43] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:04, 13:11](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:10, 14:38] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:02, 13:09](642 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:10, 13:04](724 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 14:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:22, 08:40](707 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 13:36] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:16, 07:24](814 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 07:31](799 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:21](1203 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:19] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:58](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:57](1112 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 02:50](1024 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:53](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:54](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:58](1139 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:59](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:51](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:07, 06:34](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:01, 06:30](1005 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 03:01](1149 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 04:19](2451 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:24](2448 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 06:04] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:31](1085 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:57] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:57](1154 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:35] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:02](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:56](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:36](319 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:10, 13:15] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:09, 04:12](1963 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:10, 13:10] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:05, 03:57](1947 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 13:51] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:30, 04:48](1865 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:20, 04:51](1865 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:50, 02:45](1048 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:10, 07:26] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:21, 05:49](1896 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 13:17] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:17, 02:07](1908 MB) - -PASS -- COMPILE 'atmaero_intel' [13:11, 12:35] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:14, 04:33](1983 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:13, 05:21](1782 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:58, 05:24](1779 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:55] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:55, 20:19](4564 MB) +PASS -- TEST 'cpld_control_p8_intel' [16:42, 15:01](2125 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:50, 14:32](2129 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:47, 08:09](1822 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:42, 14:26](2159 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:47, 08:04](1705 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:42, 13:15](2428 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:42, 14:19](2124 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:50, 12:17](2036 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:50, 14:37](2135 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:44, 16:20](2717 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:00, 09:05](2719 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:40, 11:40](3691 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:49, 07:17](3497 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:33, 06:00](2117 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 15:33] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:04, 13:49](1973 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:13, 04:48](2044 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:10, 09:18] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:13, 08:49](2153 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:30] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:05, 06:07](2005 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:57] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:14, 04:49](2046 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 14:50] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:57, 10:04](3051 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:56, 03:30](3029 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:02, 02:17](2487 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:31] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:24, 14:49](2136 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:20] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:13, 18:29](1994 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:26, 09:00](1244 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:04, 20:31](1916 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 08:05] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:14, 29:33](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:29, 03:49](691 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:52, 03:09](1582 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:53, 03:16](1586 MB) +PASS -- TEST 'control_latlon_intel' [04:44, 03:12](1592 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:54, 03:14](1588 MB) +PASS -- TEST 'control_c48_intel' [10:50, 09:31](1705 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:34, 08:09](844 MB) +PASS -- TEST 'control_c192_intel' [12:52, 11:45](1731 MB) +PASS -- TEST 'control_c384_intel' [14:49, 12:51](1964 MB) +PASS -- TEST 'control_c384gdas_intel' [12:34, 09:52](1339 MB) +PASS -- TEST 'control_stochy_intel' [02:22, 01:51](639 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:43, 01:04](477 MB) +PASS -- TEST 'control_lndp_intel' [02:27, 01:43](644 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:46](638 MB) +PASS -- TEST 'control_iovr5_intel' [03:28, 02:43](641 MB) +PASS -- TEST 'control_p8_intel' [05:13, 03:38](1891 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:15, 03:41](1887 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:24, 03:28](1884 MB) +PASS -- TEST 'control_restart_p8_intel' [03:15, 02:02](1091 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:20, 03:26](1879 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:11, 02:00](1127 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:04, 03:33](1863 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:59, 03:38](1960 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:40, 05:59](1872 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:22, 04:58](1950 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:14, 03:34](1889 MB) +PASS -- TEST 'merra2_thompson_intel' [05:32, 03:52](1885 MB) +PASS -- TEST 'regional_control_intel' [07:34, 06:30](1077 MB) +PASS -- TEST 'regional_restart_intel' [04:37, 03:33](1077 MB) +PASS -- TEST 'regional_decomp_intel' [07:31, 06:48](1073 MB) +PASS -- TEST 'regional_2threads_intel' [05:36, 04:41](1062 MB) +PASS -- TEST 'regional_noquilt_intel' [07:33, 06:27](1388 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 06:25](1077 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 06:29](1080 MB) +PASS -- TEST 'regional_wofs_intel' [08:31, 07:57](1899 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 13:38] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:16, 08:26](1054 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:55, 05:19](1258 MB) +PASS -- TEST 'rap_decomp_intel' [10:10, 08:40](1020 MB) +PASS -- TEST 'rap_2threads_intel' [09:55, 08:29](1165 MB) +PASS -- TEST 'rap_restart_intel' [06:34, 04:23](1039 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:54, 08:22](1049 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:53, 08:38](1018 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:29, 06:17](1066 MB) +PASS -- TEST 'hrrr_control_intel' [05:58, 04:23](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:58, 04:26](1022 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:55, 04:11](1096 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:39, 02:23](950 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:17, 08:17](1051 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:23, 10:05](1986 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 09:43](2024 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 12:47] +PASS -- TEST 'control_csawmg_intel' [07:39, 06:38](1020 MB) +PASS -- TEST 'control_ras_intel' [04:31, 03:30](714 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 12:24] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:50, 12:35](1655 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 12:45] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:20, 03:23](1884 MB) +PASS -- TEST 'regional_control_faster_intel' [07:31, 06:16](1071 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 09:27] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:46](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:51, 02:47](1616 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:04](817 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:51](822 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:46, 04:23](1127 MB) +PASS -- TEST 'control_ras_debug_intel' [03:24, 02:51](818 MB) +PASS -- TEST 'control_diag_debug_intel' [03:48, 02:52](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [04:48, 03:09](1906 MB) +PASS -- TEST 'regional_debug_intel' [18:44, 17:36](1094 MB) +PASS -- TEST 'rap_control_debug_intel' [05:25, 05:03](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:15](1208 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:26, 04:56](1204 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:24, 05:00](1207 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:20, 05:02](1209 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:30, 05:17](1290 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 05:03](1214 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:06](1204 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:27, 05:00](1206 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:27, 04:56](1210 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:28, 04:43](1207 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 04:53](1204 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:20, 08:00](1209 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:55](1197 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 06:11](1201 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:21, 04:59](1210 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:22, 08:36](1210 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 06:33] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:52, 13:13](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 13:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 04:52](1121 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:15, 07:10](1000 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:32, 03:47](933 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:50, 07:18](1069 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:05, 03:40](943 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 03:54](897 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:23, 05:22](975 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:26, 02:03](874 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 13:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:56, 02:41](1172 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:16](1110 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:44, 01:32](1071 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:33](968 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 06:30] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:53](1083 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:47](1069 MB) +PASS -- TEST 'conus13km_debug_intel' [15:49, 14:35](1228 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:46, 15:01](932 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:50](1169 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 14:35](1293 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 07:26] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:25, 05:05](1132 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 15:16] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:16, 06:00](743 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 06:23](1111 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:27, 07:33](819 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:14, 24:38](848 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:18, 28:17](871 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:07, 07:02](494 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:26, 08:21](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:52, 03:27](378 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:20, 09:29](482 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:42](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:57, 04:26](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:56, 05:41](578 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:37](400 MB) +PASS -- TEST 'gnv1_nested_intel' [07:17, 04:23](1727 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:10, 07:55] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:04, 13:16](584 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:11, 15:07] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:06, 13:00](639 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:10, 13:14](727 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 14:07] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:18, 08:41](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 14:01] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:20, 07:30](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 07:32](793 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:17](1202 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:49] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 03:00](1161 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 02:00](1110 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:53](1023 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:53](1024 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:55](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:59](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 03:02](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:52](1021 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:12, 06:35](1012 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:11, 06:26](1004 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 03:04](1163 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 04:20](2446 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:23](2388 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 05:07] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:31](1066 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 09:54] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:58](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:37] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 01:02](251 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 01:00](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:36](322 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 13:34] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:07, 04:08](1976 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:11, 13:17] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:12, 03:56](1943 MB) + +PASS -- COMPILE 'atml_intel' [15:10, 14:12] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:23, 04:52](1870 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:21, 04:50](1861 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:09, 02:45](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:10, 08:15] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:27, 06:06](1899 MB) + +PASS -- COMPILE 'atmw_intel' [14:10, 13:27] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:10](1906 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 13:09] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:12, 04:39](1995 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:14, 05:22](1774 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 05:24](1785 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:10, 06:27] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:00, 20:26](4557 MB) SYNOPSIS: -Starting Date/Time: 20240816 07:58:43 -Ending Date/Time: 20240816 09:32:32 -Total Time: 01h:34m:18s +Starting Date/Time: 20240819 14:15:54 +Ending Date/Time: 20240819 15:49:36 +Total Time: 01h:34m:22s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 7c0ec9e0c0..f9edcb1f64 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: -09690a092f727349365fac81c2d2096127bb8f12 +4507a4e71f5490cf64ae981fd7b9facf85867858 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e4) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) + 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop-66-g66bded5) 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - 5c9aee9ab1f61281bc62f38e0a22c13fb23c520a MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10196-g5c9aee9ab) + 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,239 +35,239 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240813 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/dusan.jovic/FV3_RT/rt_219249 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240819 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237615 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:25, 11:06] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [55:42, 01:36](3102 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:29, 11:54] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [54:38, 01:57](1819 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [36:32, 01:41](1843 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [36:19, 02:18](973 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:39, 01:38](1791 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:29, 11:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [54:38, 01:15](1805 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:19, 05:20] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [00:49, 01:54](1843 MB) - -PASS -- COMPILE 's2swa_intel' [11:25, 10:57] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [55:42, 01:31](3132 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [55:42, 01:46](3129 MB) -PASS -- TEST 'cpld_restart_p8_intel' [47:28, 01:01](3061 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [55:42, 01:23](3153 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [47:27, 00:59](3082 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [55:42, 01:09](3371 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [55:42, 01:28](3121 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [55:43, 01:40](3075 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [55:42, 01:46](3135 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [55:51, 04:19](4118 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [36:58, 04:03](4263 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [55:42, 01:46](3117 MB) - -PASS -- COMPILE 's2sw_intel' [11:24, 10:34] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [55:43, 00:49](1831 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [55:43, 01:00](1891 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:32] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [55:43, 01:03](1885 MB) - -PASS -- COMPILE 's2s_intel' [11:24, 10:27] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [55:42, 00:53](2866 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [55:42, 01:27](2873 MB) -PASS -- TEST 'cpld_restart_c48_intel' [51:39, 01:11](2293 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:34, 16:29] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [49:33, 01:47](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:29, 11:41] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [54:38, 00:59](1817 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:08, 01:24](983 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:51, 01:46](1802 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:13] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:30, 01:43](1860 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:22, 08:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [46:20, 01:17](571 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [46:20, 00:26](1467 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [46:20, 00:28](1475 MB) -PASS -- TEST 'control_latlon_intel' [46:20, 00:29](1473 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [46:20, 00:33](1475 MB) -PASS -- TEST 'control_c48_intel' [46:19, 00:50](1563 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [46:19, 00:41](692 MB) -PASS -- TEST 'control_c192_intel' [46:20, 01:11](1572 MB) -PASS -- TEST 'control_c384_intel' [46:24, 01:50](1865 MB) -PASS -- TEST 'control_c384gdas_intel' [46:24, 01:57](1063 MB) -PASS -- TEST 'control_stochy_intel' [46:20, 00:24](526 MB) -PASS -- TEST 'control_stochy_restart_intel' [43:54, 01:01](330 MB) -PASS -- TEST 'control_lndp_intel' [46:20, 00:30](527 MB) -PASS -- TEST 'control_iovr4_intel' [46:20, 00:38](522 MB) -PASS -- TEST 'control_iovr5_intel' [46:20, 00:40](518 MB) -PASS -- TEST 'control_p8_intel' [43:54, 01:48](1753 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [42:52, 01:57](1761 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [42:51, 02:00](1769 MB) -PASS -- TEST 'control_restart_p8_intel' [38:32, 00:57](908 MB) -PASS -- TEST 'control_noqr_p8_intel' [42:51, 01:49](1759 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [37:30, 01:08](920 MB) -PASS -- TEST 'control_decomp_p8_intel' [42:34, 01:30](1753 MB) -PASS -- TEST 'control_2threads_p8_intel' [42:31, 01:47](1840 MB) -PASS -- TEST 'control_p8_lndp_intel' [42:25, 01:02](1756 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [42:20, 01:47](1817 MB) -PASS -- TEST 'control_p8_mynn_intel' [41:54, 01:47](1773 MB) -PASS -- TEST 'merra2_thompson_intel' [41:54, 01:41](1761 MB) -PASS -- TEST 'regional_control_intel' [41:45, 01:10](844 MB) -PASS -- TEST 'regional_restart_intel' [35:04, 00:25](836 MB) -PASS -- TEST 'regional_decomp_intel' [41:37, 00:55](842 MB) -PASS -- TEST 'regional_2threads_intel' [41:25, 00:51](898 MB) -PASS -- TEST 'regional_noquilt_intel' [41:10, 00:26](1172 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [40:47, 01:19](844 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [39:34, 00:11](845 MB) -PASS -- TEST 'regional_wofs_intel' [39:33, 00:23](1569 MB) - -PASS -- COMPILE 'rrfs_intel' [09:22, 08:28] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [38:20, 01:35](911 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [37:31, 01:06](1065 MB) -PASS -- TEST 'rap_decomp_intel' [37:30, 01:14](916 MB) -PASS -- TEST 'rap_2threads_intel' [37:27, 01:27](992 MB) -PASS -- TEST 'rap_restart_intel' [29:07, 01:15](783 MB) -PASS -- TEST 'rap_sfcdiff_intel' [37:21, 02:01](908 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [37:21, 01:42](909 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [27:56, 01:48](778 MB) -PASS -- TEST 'hrrr_control_intel' [36:34, 01:12](907 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [35:59, 00:57](907 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [35:43, 01:14](981 MB) -PASS -- TEST 'hrrr_control_restart_intel' [31:09, 01:02](736 MB) -PASS -- TEST 'rrfs_v1beta_intel' [35:26, 02:05](904 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [35:07, 00:40](1865 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [35:01, 01:02](1858 MB) - -PASS -- COMPILE 'csawmg_intel' [08:21, 07:54] -PASS -- TEST 'control_csawmg_intel' [47:21, 00:23](865 MB) -PASS -- TEST 'control_ras_intel' [47:21, 00:50](557 MB) - -PASS -- COMPILE 'wam_intel' [08:21, 07:50] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [47:20, 00:26](1564 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:21, 08:05] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [47:20, 02:03](1762 MB) -PASS -- TEST 'regional_control_faster_intel' [47:19, 00:23](838 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:22, 07:26] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:42, 01:17](1498 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [34:23, 01:26](1493 MB) -PASS -- TEST 'control_stochy_debug_intel' [34:22, 00:41](703 MB) -PASS -- TEST 'control_lndp_debug_intel' [34:11, 01:01](702 MB) -PASS -- TEST 'control_csawmg_debug_intel' [34:05, 00:28](1003 MB) -PASS -- TEST 'control_ras_debug_intel' [33:58, 01:07](705 MB) -PASS -- TEST 'control_diag_debug_intel' [33:58, 01:11](1556 MB) -PASS -- TEST 'control_debug_p8_intel' [33:12, 00:51](1787 MB) -PASS -- TEST 'regional_debug_intel' [33:02, 00:21](886 MB) -PASS -- TEST 'rap_control_debug_intel' [32:34, 00:47](1082 MB) -PASS -- TEST 'hrrr_control_debug_intel' [31:55, 00:48](1078 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [31:18, 00:41](1080 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [31:17, 00:41](1081 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [30:50, 00:40](1083 MB) -PASS -- TEST 'rap_diag_debug_intel' [30:34, 00:36](1164 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [29:51, 00:33](1085 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [29:47, 00:34](1082 MB) -PASS -- TEST 'rap_lndp_debug_intel' [29:45, 00:37](1085 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [29:26, 00:43](1082 MB) -PASS -- TEST 'rap_noah_debug_intel' [29:23, 00:46](1081 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [29:07, 00:44](1080 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [29:05, 00:27](1076 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [28:30, 00:50](1078 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [28:28, 00:58](1083 MB) -PASS -- TEST 'rap_flake_debug_intel' [28:23, 00:41](1086 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:56, 01:53](1085 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:21, 04:26] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [49:17, 01:16](1577 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:23, 07:53] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:40, 01:16](917 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:46, 01:54](781 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:00, 02:19](781 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [25:58, 01:42](838 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [25:44, 02:23](827 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:34, 01:45](779 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:38, 01:28](680 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:13, 00:20](660 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:22, 07:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [25:24, 01:06](993 MB) -PASS -- TEST 'conus13km_2threads_intel' [21:32, 00:56](994 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [20:44, 00:44](869 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:24, 07:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [25:21, 01:27](808 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 04:34] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [25:07, 00:56](959 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [24:50, 00:54](957 MB) -PASS -- TEST 'conus13km_debug_intel' [24:48, 01:16](1045 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:22, 01:04](716 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:59, 01:07](1046 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:37, 01:17](1115 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:19, 04:40] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [23:23, 00:48](981 MB) - -PASS -- COMPILE 'hafsw_intel' [10:25, 09:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [23:24, 02:14](599 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [23:20, 01:01](947 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [22:55, 01:51](647 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [22:55, 02:21](674 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:35, 02:14](698 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [21:54, 01:05](376 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [21:50, 02:15](391 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [21:39, 01:38](302 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:29, 03:43](376 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [20:13, 01:40](404 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:13, 00:56](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:55, 00:47](483 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:36, 00:28](319 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:19, 04:52] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:32, 01:09](511 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:24, 09:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:49, 01:39](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:41, 01:31](703 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:25, 09:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:38, 01:10](707 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:22, 08:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [18:21, 02:48](644 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:00, 02:40](622 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:44, 01:07](879 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:25, 09:33] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [17:05, 00:39](1828 MB) - -PASS -- COMPILE 'atml_intel' [09:23, 08:52] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [06:20, 05:28] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [08:27, 08:03] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [17:04, 01:18](3026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [16:53, 01:47](2912 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [16:36, 01:42](2921 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:19, 04:27] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [16:21, 01:22](4447 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:27, 11:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [52:47, 01:27](3103 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:29, 11:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [52:45, 01:54](1805 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [34:40, 01:40](1837 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [34:37, 02:13](973 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:46, 02:25](1792 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:30, 12:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [51:45, 01:08](1812 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:21, 05:25] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [58:55, 01:51](1839 MB) + +PASS -- COMPILE 's2swa_intel' [12:29, 12:08] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [52:45, 01:37](3134 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [52:45, 01:54](3127 MB) +PASS -- TEST 'cpld_restart_p8_intel' [44:26, 01:14](3059 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [52:45, 01:34](3149 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [44:26, 01:42](3077 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [52:45, 01:01](3372 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [52:45, 01:39](3122 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [52:46, 01:29](3073 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [52:45, 01:50](3132 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [52:54, 04:22](4125 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [33:53, 05:26](4265 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [52:45, 01:54](3109 MB) + +PASS -- COMPILE 's2sw_intel' [11:27, 11:07] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [53:49, 00:44](1821 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [53:49, 01:54](1888 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:27, 10:15] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [53:48, 01:59](1894 MB) + +PASS -- COMPILE 's2s_intel' [11:27, 10:49] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [53:48, 00:52](2867 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [53:48, 01:22](2879 MB) +PASS -- TEST 'cpld_restart_c48_intel' [49:42, 01:14](2286 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:34, 16:04] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [48:41, 02:02](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:25, 11:32] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:49, 00:58](1820 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:23, 01:22](981 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:24, 01:42](1805 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:30, 05:14] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [52:24, 01:23](1858 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:29, 09:04] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [44:19, 01:24](568 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [44:19, 00:25](1470 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [44:19, 01:25](1478 MB) +PASS -- TEST 'control_latlon_intel' [44:19, 01:21](1470 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [44:19, 01:28](1476 MB) +PASS -- TEST 'control_c48_intel' [44:18, 00:48](1558 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [44:18, 00:40](692 MB) +PASS -- TEST 'control_c192_intel' [44:19, 01:09](1575 MB) +PASS -- TEST 'control_c384_intel' [44:23, 02:01](1846 MB) +PASS -- TEST 'control_c384gdas_intel' [44:23, 02:45](1065 MB) +PASS -- TEST 'control_stochy_intel' [44:19, 00:23](523 MB) +PASS -- TEST 'control_stochy_restart_intel' [41:53, 01:05](331 MB) +PASS -- TEST 'control_lndp_intel' [44:19, 00:29](526 MB) +PASS -- TEST 'control_iovr4_intel' [44:19, 00:42](521 MB) +PASS -- TEST 'control_iovr5_intel' [44:19, 00:41](522 MB) +PASS -- TEST 'control_p8_intel' [44:18, 02:00](1765 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [44:10, 01:58](1754 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [44:06, 02:03](1769 MB) +PASS -- TEST 'control_restart_p8_intel' [38:39, 00:47](909 MB) +PASS -- TEST 'control_noqr_p8_intel' [41:53, 01:40](1752 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [36:34, 01:02](917 MB) +PASS -- TEST 'control_decomp_p8_intel' [40:49, 01:33](1758 MB) +PASS -- TEST 'control_2threads_p8_intel' [40:48, 01:56](1841 MB) +PASS -- TEST 'control_p8_lndp_intel' [40:47, 00:57](1755 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [40:29, 01:47](1813 MB) +PASS -- TEST 'control_p8_mynn_intel' [40:02, 01:39](1774 MB) +PASS -- TEST 'merra2_thompson_intel' [39:31, 01:38](1765 MB) +PASS -- TEST 'regional_control_intel' [39:23, 00:15](841 MB) +PASS -- TEST 'regional_restart_intel' [33:29, 00:22](841 MB) +PASS -- TEST 'regional_decomp_intel' [39:19, 00:59](842 MB) +PASS -- TEST 'regional_2threads_intel' [39:17, 00:50](893 MB) +PASS -- TEST 'regional_noquilt_intel' [38:42, 00:16](1170 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [38:28, 01:20](840 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [38:27, 01:17](844 MB) +PASS -- TEST 'regional_wofs_intel' [38:26, 00:27](1573 MB) + +PASS -- COMPILE 'rrfs_intel' [09:29, 08:33] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [37:53, 02:11](910 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [37:38, 01:01](1059 MB) +PASS -- TEST 'rap_decomp_intel' [37:35, 01:43](910 MB) +PASS -- TEST 'rap_2threads_intel' [36:19, 01:19](991 MB) +PASS -- TEST 'rap_restart_intel' [28:07, 01:21](779 MB) +PASS -- TEST 'rap_sfcdiff_intel' [35:26, 01:54](907 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [35:26, 01:37](909 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [25:56, 01:26](777 MB) +PASS -- TEST 'hrrr_control_intel' [34:43, 01:52](906 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [34:31, 01:46](906 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [34:04, 01:46](982 MB) +PASS -- TEST 'hrrr_control_restart_intel' [28:33, 00:58](737 MB) +PASS -- TEST 'rrfs_v1beta_intel' [33:58, 02:09](904 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [33:51, 00:36](1866 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [33:02, 01:01](1852 MB) + +PASS -- COMPILE 'csawmg_intel' [08:27, 07:53] +PASS -- TEST 'control_csawmg_intel' [45:21, 00:20](863 MB) +PASS -- TEST 'control_ras_intel' [45:21, 00:48](557 MB) + +PASS -- COMPILE 'wam_intel' [08:29, 07:51] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [33:00, 00:20](1554 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:27, 08:01] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [32:28, 01:13](1757 MB) +PASS -- TEST 'regional_control_faster_intel' [32:22, 00:25](827 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:25, 07:17] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [32:10, 01:17](1496 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [31:41, 01:18](1499 MB) +PASS -- TEST 'control_stochy_debug_intel' [31:40, 00:42](702 MB) +PASS -- TEST 'control_lndp_debug_intel' [31:39, 01:01](701 MB) +PASS -- TEST 'control_csawmg_debug_intel' [31:37, 00:25](1002 MB) +PASS -- TEST 'control_ras_debug_intel' [31:36, 00:59](708 MB) +PASS -- TEST 'control_diag_debug_intel' [31:29, 01:06](1557 MB) +PASS -- TEST 'control_debug_p8_intel' [30:37, 00:44](1790 MB) +PASS -- TEST 'regional_debug_intel' [30:11, 00:18](886 MB) +PASS -- TEST 'rap_control_debug_intel' [29:41, 00:36](1086 MB) +PASS -- TEST 'hrrr_control_debug_intel' [28:33, 00:41](1078 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [28:31, 00:35](1082 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [28:07, 00:38](1081 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [28:00, 00:42](1087 MB) +PASS -- TEST 'rap_diag_debug_intel' [27:39, 00:37](1168 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [27:14, 00:33](1084 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [27:10, 00:37](1083 MB) +PASS -- TEST 'rap_lndp_debug_intel' [27:10, 00:40](1082 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [27:09, 00:41](1083 MB) +PASS -- TEST 'rap_noah_debug_intel' [26:45, 00:43](1078 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [26:43, 00:39](1083 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [26:33, 00:37](1080 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [25:56, 00:50](1079 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [25:55, 00:56](1087 MB) +PASS -- TEST 'rap_flake_debug_intel' [25:42, 00:37](1083 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [25:03, 01:51](1087 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:18, 04:29] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [47:27, 00:20](1591 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:22, 07:47] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [24:54, 01:27](919 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:39, 02:07](781 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:24, 01:55](783 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:11, 01:48](841 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:28, 02:03](826 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [23:21, 01:30](780 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:12, 01:36](681 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [18:55, 00:23](665 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:26, 07:55] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [23:12, 01:07](996 MB) +PASS -- TEST 'conus13km_2threads_intel' [19:05, 00:50](993 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [18:27, 00:43](865 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:25, 08:02] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [22:26, 01:32](809 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:17, 04:43] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [21:57, 00:48](957 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:57, 01:00](956 MB) +PASS -- TEST 'conus13km_debug_intel' [21:37, 00:43](1046 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:23, 00:25](714 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [20:58, 01:02](1047 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:42, 00:26](1113 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:18, 04:36] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [20:37, 00:44](981 MB) + +PASS -- COMPILE 'hafsw_intel' [10:25, 09:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [20:40, 01:51](601 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [20:39, 00:50](947 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [20:19, 01:42](651 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [20:16, 02:18](674 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:02, 01:19](693 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [19:20, 01:08](378 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:13, 02:15](390 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [18:28, 01:35](292 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:23, 02:42](366 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [18:08, 01:34](406 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [18:08, 00:57](407 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [16:52, 00:46](485 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [16:42, 00:26](318 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:19, 05:02] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:25, 01:27](514 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:24, 09:09] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:17, 00:53](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:02, 01:38](704 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:25, 09:19] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:31, 01:21](704 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:24, 08:45] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [15:18, 01:55](643 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:16, 01:56](630 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [15:11, 00:25](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:26, 10:07] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [15:02, 01:45](1817 MB) + +PASS -- COMPILE 'atml_intel' [09:24, 09:03] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [06:20, 05:15] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [08:29, 08:13] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [14:43, 01:17](3026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:05, 01:59](2909 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:03, 01:56](2924 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:26, 04:26] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [13:16, 01:38](4452 MB) SYNOPSIS: -Starting Date/Time: 20240816 11:52:28 -Ending Date/Time: 20240816 13:09:44 -Total Time: 01h:17m:47s +Starting Date/Time: 20240819 19:54:30 +Ending Date/Time: 20240819 21:13:14 +Total Time: 01h:19m:26s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/parm/MOM_input_050.IN b/tests/parm/MOM_input_050.IN index d26b887e9a..6712c11877 100644 --- a/tests/parm/MOM_input_050.IN +++ b/tests/parm/MOM_input_050.IN @@ -306,7 +306,7 @@ REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" ! Parameters providing information about the lateral grid. ! === module MOM_state_initialization === -INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False +INIT_LAYERS_FROM_Z_FILE = @[MOM6_INIT_FROM_Z] ! [Boolean] default = False ! If true, initialize the layer thicknesses, temperatures, and salinities from a ! Z-space file on a latitude-longitude grid. @@ -328,7 +328,96 @@ Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False Z_INIT_REMAP_OLD_ALG = True ! [Boolean] default = True ! If false, uses the preferred remapping algorithm for initialization. If true, ! use an older, less robust algorithm for remapping. +! === WARMSTARTS === +THICKNESS_CONFIG = "file" ! default = "uniform" + ! A string that determines how the initial layer thicknesses are specified for a + ! new run: + ! file - read interface heights from the file specified + ! by (THICKNESS_FILE). + ! thickness_file - read thicknesses from the file specified + ! by (THICKNESS_FILE). + ! mass_file - read thicknesses in units of mass per unit area from the file + ! specified by (THICKNESS_FILE). + ! coord - determined by ALE coordinate. + ! uniform - uniform thickness layers evenly distributed + ! between the surface and MAXIMUM_DEPTH. + ! list - read a list of positive interface depths. + ! DOME - use a slope and channel configuration for the + ! DOME sill-overflow test case. + ! ISOMIP - use a configuration for the + ! ISOMIP test case. + ! benchmark - use the benchmark test case thicknesses. + ! Neverworld - use the Neverworld test case thicknesses. + ! search - search a density profile for the interface + ! densities. This is not yet implemented. + ! circle_obcs - the circle_obcs test case is used. + ! DOME2D - 2D version of DOME initialization. + ! adjustment2d - 2D lock exchange thickness ICs. + ! sloshing - sloshing gravity thickness ICs. + ! seamount - no motion test with seamount ICs. + ! dumbbell - sloshing channel ICs. + ! soliton - Equatorial Rossby soliton. + ! rossby_front - a mixed layer front in thermal wind balance. + ! USER - call a user modified routine. +THICKNESS_FILE = @[MOM6_WARMSTART_FILE] ! + ! The name of the thickness file. +ADJUST_THICKNESS = True ! [Boolean] default = False + ! If true, all mass below the bottom removed if the topography is shallower than + ! the thickness input file would indicate. +THICKNESS_TOLERANCE = 0.1 ! [m] default = 0.1 + ! A parameter that controls the tolerance when adjusting the thickness to fit + ! the bathymetry. Used when ADJUST_THICKNESS=True. +INTERFACE_IC_VAR = "eta" ! default = "eta" + ! The variable name for initial conditions for interface heights relative to + ! mean sea level, positive upward unless otherwise rescaled. +INTERFACE_IC_RESCALE = 1.0 ! [various] default = 1.0 + ! A factor by which to rescale the initial interface heights to convert them to + ! units of m or correct sign conventions to positive upward. +TS_CONFIG = "file" ! + ! A string that determines how the initial temperatures and salinities are + ! specified for a new run: + ! file - read velocities from the file specified + ! by (TS_FILE). + ! fit - find the temperatures that are consistent with + ! the layer densities and salinity S_REF. + ! TS_profile - use temperature and salinity profiles + ! (read from TS_FILE) to set layer densities. + ! benchmark - use the benchmark test case T & S. + ! linear - linear in logical layer space. + ! DOME2D - 2D DOME initialization. + ! ISOMIP - ISOMIP initialization. + ! adjustment2d - 2d lock exchange T/S ICs. + ! sloshing - sloshing mode T/S ICs. + ! seamount - no motion test with seamount ICs. + ! dumbbell - sloshing channel ICs. + ! rossby_front - a mixed layer front in thermal wind balance. + ! SCM_CVMix_tests - used in the SCM CVMix tests. + ! USER - call a user modified routine. +TS_FILE = @[MOM6_WARMSTART_FILE] ! + ! The initial condition file for temperature. +TEMP_IC_VAR = "Temp" ! default = "PTEMP" + ! The initial condition variable for potential temperature. +SALT_IC_VAR = "Salt" ! default = "SALT" + ! The initial condition variable for salinity. +SALT_FILE = @[MOM6_WARMSTART_FILE] ! default = "none" + ! The initial condition file for salinity. +VELOCITY_CONFIG = @[MOM6_INIT_UV] ! default = "zero" + ! A string that determines how the initial velocities are specified for a new + ! run: + ! file - read velocities from the file specified + ! by (VELOCITY_FILE). + ! zero - the fluid is initially at rest. + ! uniform - the flow is uniform (determined by + ! parameters INITIAL_U_CONST and INITIAL_V_CONST). + ! rossby_front - a mixed layer front in thermal wind balance. + ! soliton - Equatorial Rossby soliton. + ! USER - call a user modified routine. +VELOCITY_FILE = @[MOM6_WARMSTART_FILE] ! + ! The name of the velocity initial condition file. +U_IC_VAR = "u" ! default = "u" + ! The initial condition variable for zonal velocity in VELOCITY_FILE. +V_IC_VAR = "v" ! default = "v" ! === module MOM_diag_mediator === !Jiande NUM_DIAG_COORDS = 2 ! default = 1 NUM_DIAG_COORDS = 1 ! default = 1 diff --git a/tests/parm/MOM_input_100.IN b/tests/parm/MOM_input_100.IN index 315cbe8995..9f68d0515b 100644 --- a/tests/parm/MOM_input_100.IN +++ b/tests/parm/MOM_input_100.IN @@ -289,7 +289,7 @@ REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" ! Parameters providing information about the lateral grid. ! === module MOM_state_initialization === -INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False +INIT_LAYERS_FROM_Z_FILE = @[MOM6_INIT_FROM_Z] ! [Boolean] default = False ! If true, initialize the layer thicknesses, temperatures, and salinities from a ! Z-space file on a latitude-longitude grid. @@ -310,7 +310,96 @@ Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False Z_INIT_REMAP_OLD_ALG = True ! [Boolean] default = False ! If false, uses the preferred remapping algorithm for initialization. If true, ! use an older, less robust algorithm for remapping. +! === WARMSTARTS === +THICKNESS_CONFIG = "file" ! default = "uniform" + ! A string that determines how the initial layer thicknesses are specified for a + ! new run: + ! file - read interface heights from the file specified + ! by (THICKNESS_FILE). + ! thickness_file - read thicknesses from the file specified + ! by (THICKNESS_FILE). + ! mass_file - read thicknesses in units of mass per unit area from the file + ! specified by (THICKNESS_FILE). + ! coord - determined by ALE coordinate. + ! uniform - uniform thickness layers evenly distributed + ! between the surface and MAXIMUM_DEPTH. + ! list - read a list of positive interface depths. + ! DOME - use a slope and channel configuration for the + ! DOME sill-overflow test case. + ! ISOMIP - use a configuration for the + ! ISOMIP test case. + ! benchmark - use the benchmark test case thicknesses. + ! Neverworld - use the Neverworld test case thicknesses. + ! search - search a density profile for the interface + ! densities. This is not yet implemented. + ! circle_obcs - the circle_obcs test case is used. + ! DOME2D - 2D version of DOME initialization. + ! adjustment2d - 2D lock exchange thickness ICs. + ! sloshing - sloshing gravity thickness ICs. + ! seamount - no motion test with seamount ICs. + ! dumbbell - sloshing channel ICs. + ! soliton - Equatorial Rossby soliton. + ! rossby_front - a mixed layer front in thermal wind balance. + ! USER - call a user modified routine. +THICKNESS_FILE = @[MOM6_WARMSTART_FILE] ! + ! The name of the thickness file. +ADJUST_THICKNESS = True ! [Boolean] default = False + ! If true, all mass below the bottom removed if the topography is shallower than + ! the thickness input file would indicate. +THICKNESS_TOLERANCE = 0.1 ! [m] default = 0.1 + ! A parameter that controls the tolerance when adjusting the thickness to fit + ! the bathymetry. Used when ADJUST_THICKNESS=True. +INTERFACE_IC_VAR = "eta" ! default = "eta" + ! The variable name for initial conditions for interface heights relative to + ! mean sea level, positive upward unless otherwise rescaled. +INTERFACE_IC_RESCALE = 1.0 ! [various] default = 1.0 + ! A factor by which to rescale the initial interface heights to convert them to + ! units of m or correct sign conventions to positive upward. +TS_CONFIG = "file" ! + ! A string that determines how the initial temperatures and salinities are + ! specified for a new run: + ! file - read velocities from the file specified + ! by (TS_FILE). + ! fit - find the temperatures that are consistent with + ! the layer densities and salinity S_REF. + ! TS_profile - use temperature and salinity profiles + ! (read from TS_FILE) to set layer densities. + ! benchmark - use the benchmark test case T & S. + ! linear - linear in logical layer space. + ! DOME2D - 2D DOME initialization. + ! ISOMIP - ISOMIP initialization. + ! adjustment2d - 2d lock exchange T/S ICs. + ! sloshing - sloshing mode T/S ICs. + ! seamount - no motion test with seamount ICs. + ! dumbbell - sloshing channel ICs. + ! rossby_front - a mixed layer front in thermal wind balance. + ! SCM_CVMix_tests - used in the SCM CVMix tests. + ! USER - call a user modified routine. +TS_FILE = @[MOM6_WARMSTART_FILE] ! + ! The initial condition file for temperature. +TEMP_IC_VAR = "Temp" ! default = "PTEMP" + ! The initial condition variable for potential temperature. +SALT_IC_VAR = "Salt" ! default = "SALT" + ! The initial condition variable for salinity. +SALT_FILE = @[MOM6_WARMSTART_FILE] ! default = "none" + ! The initial condition file for salinity. +VELOCITY_CONFIG = @[MOM6_INIT_UV] ! default = "zero" + ! A string that determines how the initial velocities are specified for a new + ! run: + ! file - read velocities from the file specified + ! by (VELOCITY_FILE). + ! zero - the fluid is initially at rest. + ! uniform - the flow is uniform (determined by + ! parameters INITIAL_U_CONST and INITIAL_V_CONST). + ! rossby_front - a mixed layer front in thermal wind balance. + ! soliton - Equatorial Rossby soliton. + ! USER - call a user modified routine. +VELOCITY_FILE = @[MOM6_WARMSTART_FILE] ! + ! The name of the velocity initial condition file. +U_IC_VAR = "u" ! default = "u" + ! The initial condition variable for zonal velocity in VELOCITY_FILE. +V_IC_VAR = "v" ! default = "v" ! === module MOM_diag_mediator === !Jiande NUM_DIAG_COORDS = 2 ! default = 1 NUM_DIAG_COORDS = 1 diff --git a/tests/rt.sh b/tests/rt.sh index 8d2ed7a467..ff3808ac0e 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -16,7 +16,7 @@ usage() { echo " -a to use on for HPC queue" echo " -b create new baselines only for tests listed in " echo " -c create new baseline results" - echo " -d delete run direcotries that are not used by other tests" + echo " -d delete run directories that are not used by other tests" echo " -e use ecFlow workflow manager" echo " -h display this help" echo " -k keep run directory after rt.sh is completed" diff --git a/tests/test_changes.list b/tests/test_changes.list index af65968c39..462c09af4f 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,53 +1 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 intel -cpld_control_sfs intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_control_c192_p8 intel -cpld_restart_c192_p8 intel -cpld_bmark_p8 intel -cpld_restart_bmark_p8 intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_noaero_p8_agrid intel -cpld_control_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel -datm_cdeps_control_cfsr intel -datm_cdeps_restart_cfsr intel -datm_cdeps_control_gefs intel -datm_cdeps_iau_gefs intel -datm_cdeps_stochy_gefs intel -datm_cdeps_ciceC_cfsr intel -datm_cdeps_bulk_cfsr intel -datm_cdeps_bulk_gefs intel -datm_cdeps_mx025_cfsr intel -datm_cdeps_mx025_gefs intel -datm_cdeps_3072x1536_cfsr intel -datm_cdeps_gfs intel -datm_cdeps_debug_cfsr intel -datm_cdeps_control_cfsr_faster intel -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu -cpld_debug_pdlib_p8 gnu -datm_cdeps_control_cfsr gnu +cpld_control_sfs intel \ No newline at end of file diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index c4ddae40b3..1d2f12753a 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -46,6 +46,13 @@ OCN_tasks=$OCN_tasks_cpl_unstr ICE_tasks=$ICE_tasks_cpl_unstr WAV_tasks=$WAV_tasks_cpl_unstr +# use downscaled warmstarts for ocean and ice +export OCNICE_WARMSTART=.true. +export MOM6_INIT_FROM_Z=False +export MOM6_INIT_UV=file +export MOM6_WARMSTART_FILE=mom6.warmstart.nc +export CICE_ICE_IC=cice.warmstart.nc + export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads From 4952814d85ae2a9a092c80c60e5f647f15afff24 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Fri, 23 Aug 2024 15:38:07 +0000 Subject: [PATCH 19/33] Add MPAS to default_vars.sh --- tests/default_vars.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index ef44dfe4a9..493e847298 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -494,6 +494,7 @@ export MODEL_CONFIGURE=model_configure.IN export atm_model=fv3 export FV3=true +export MPAS=true export S2S=false export HAFS=false export AQM=false @@ -1065,6 +1066,7 @@ export_cmeps() { export_cpl () { export FV3=true +export MPAS=false export S2S=true export HAFS=false export AQM=false @@ -1251,6 +1253,7 @@ export_35d_run () export_datm_cdeps () { export FV3=false + export MPAS=false export S2S=false export HAFS=false export AQM=false @@ -1328,6 +1331,7 @@ export_datm_cdeps () export_hafs_datm_cdeps () { export FV3=false + export MPAS=false export S2S=false export HAFS=true export AQM=false @@ -1347,6 +1351,7 @@ export_hafs_datm_cdeps () export_hafs_docn_cdeps () { export FV3=true + export MPAS=false export S2S=false export HAFS=true export AQM=false @@ -1366,6 +1371,7 @@ export_hafs_docn_cdeps () export_hafs_regional () { export FV3=true + export MPAS=false export S2S=false export HAFS=true export AQM=false @@ -1439,6 +1445,7 @@ export_hafs () { export_fv3_v16 export FV3=true +export MPAS=false export S2S=false export HAFS=true export AQM=false From fcc9f8461db5eafbfd1f080da61ea79156ca0145 Mon Sep 17 00:00:00 2001 From: "Samuel Trahan (NOAA contractor)" <39415369+SamuelTrahanNOAA@users.noreply.github.com> Date: Fri, 23 Aug 2024 11:53:20 -0600 Subject: [PATCH 20/33] sync with head of NOAA-EMC UPP develop (#2326) * UFSWM - update g2tmpl library, g2 library, UPP hash. Sync parm files with new UPP version. * FV3 - update inline post for UPP, point UPP submodule to head of develop, revise spack.yaml --- .../{build_test.yml => build_test._yml} | 0 FV3 | 2 +- modulefiles/ufs_common.lua | 4 +- modulefiles/ufs_derecho.gnu.lua | 2 +- modulefiles/ufs_derecho.intel.lua | 2 +- modulefiles/ufs_gaea.intel.lua | 2 +- modulefiles/ufs_hera.gnu.lua | 2 +- modulefiles/ufs_hera.intel.lua | 2 +- modulefiles/ufs_hercules.gnu.lua | 2 +- modulefiles/ufs_hercules.intel.lua | 2 +- modulefiles/ufs_jet.intel.lua | 2 +- modulefiles/ufs_orion.intel.lua | 2 +- modulefiles/ufs_s4.intel.lua | 11 +- modulefiles/ufs_wcoss2.intel.lua | 4 +- tests/auto-jenkins/jobs/bl.py | 6 +- tests/auto-jenkins/jobs/rt.py | 2 +- tests/auto-jenkins/rt_auto_jenkins.py | 4 +- tests/auto-jenkins/start_rt_auto_jenkins.sh | 8 +- tests/auto/jobs/bl.py | 6 +- tests/auto/jobs/rt.py | 2 +- tests/auto/start_rt_auto.sh | 4 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 4 + tests/fv3_conf/control_run.IN | 6 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 561 +- tests/logs/RegressionTests_derecho.log | 550 +- tests/logs/RegressionTests_gaea.log | 550 +- tests/logs/RegressionTests_hera.log | 786 +- tests/logs/RegressionTests_hercules.log | 737 +- tests/logs/RegressionTests_jet.log | 488 +- tests/logs/RegressionTests_orion.log | 528 +- tests/logs/RegressionTests_s4.log | 297 + tests/logs/RegressionTests_wcoss2.log | 529 +- tests/parm/params_grib2_tbl_new | 396 +- tests/parm/post_itag_hafs_ar | 6 + tests/parm/postxconfig-NT-fv3lam.txt | 8340 +++++++++++------ tests/parm/postxconfig-NT-gfs.txt | 1780 +++- tests/parm/postxconfig-NT-gfs_FH00.txt | 1073 ++- tests/parm/postxconfig-NT-hafs.txt | 646 +- tests/parm/postxconfig-NT-hafs_ar_nosat.txt | 4554 +++++++++ tests/rt.sh | 13 +- tests/test_changes.list | 145 +- tests/tests/gnv1_nested | 5 + 46 files changed, 16532 insertions(+), 5637 deletions(-) rename .github/workflows/{build_test.yml => build_test._yml} (100%) create mode 100644 tests/logs/RegressionTests_s4.log mode change 100644 => 100755 tests/parm/params_grib2_tbl_new create mode 100644 tests/parm/post_itag_hafs_ar create mode 100644 tests/parm/postxconfig-NT-hafs_ar_nosat.txt diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test._yml similarity index 100% rename from .github/workflows/build_test.yml rename to .github/workflows/build_test._yml diff --git a/FV3 b/FV3 index 66bded5b3e..ee3378b9d5 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 66bded5b3e6fefc181f7df433acd18c392267311 +Subproject commit ee3378b9d56d5d4fa1b9e1cd16b06760ad810601 diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua index 6e9c1f6f45..a1c4fcfd18 100644 --- a/modulefiles/ufs_common.lua +++ b/modulefiles/ufs_common.lua @@ -14,8 +14,8 @@ local ufs_modules = { {["fms"] = "2023.04"}, {["bacio"] = "2.4.1"}, {["crtm"] = "2.4.0"}, - {["g2"] = "3.4.5"}, - {["g2tmpl"] = "1.10.2"}, + {["g2"] = "3.5.1"}, + {["g2tmpl"] = "1.13.0"}, {["ip"] = "4.3.0"}, {["sp"] = "2.5.0"}, {["w3emc"] = "2.10.0"}, diff --git a/modulefiles/ufs_derecho.gnu.lua b/modulefiles/ufs_derecho.gnu.lua index cb70e716ab..4c21b69b0e 100644 --- a/modulefiles/ufs_derecho.gnu.lua +++ b/modulefiles/ufs_derecho.gnu.lua @@ -9,7 +9,7 @@ load("mysql/8.0.33") setenv("LMOD_TMOD_FIND_FIRST","yes") prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles_extra") -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") unload("ncarcompilers") stack_gnu_ver=os.getenv("stack_gnu_ver") or "12.2.0" diff --git a/modulefiles/ufs_derecho.intel.lua b/modulefiles/ufs_derecho.intel.lua index 24b93b8f19..1f3c823f99 100644 --- a/modulefiles/ufs_derecho.intel.lua +++ b/modulefiles/ufs_derecho.intel.lua @@ -9,7 +9,7 @@ load("mysql/8.0.33") setenv("LMOD_TMOD_FIND_FIRST","yes") prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles_extra") -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") unload("ncarcompilers") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.10.0" diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index c202ad6423..fb2eb49a1b 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -5,7 +5,7 @@ help([[ whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) -prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index 861019fb02..0b38f9c1f4 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -4,7 +4,7 @@ loads UFS Model prerequisites for Hera/GNU prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/installs/gnu/modulefiles") prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/installs/openmpi/modulefiles") -prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/spack-stack/spack-stack-1.6.0_gnu13/envs/ufs-wm-srw-rocky8/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/spack-stack/spack-stack-1.6.0_gnu13/envs/upp-addon-env/install/modulefiles/Core") stack_gnu_ver=os.getenv("stack_gnu_ver") or "13.3.0" load(pathJoin("stack-gcc", stack_gnu_ver)) diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index 993e05372a..7d3c3b4e27 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hera/Intel ]]) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.6.0/envs/unified-env-rocky8/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_hercules.gnu.lua b/modulefiles/ufs_hercules.gnu.lua index 69534c28d8..6645dd3c80 100644 --- a/modulefiles/ufs_hercules.gnu.lua +++ b/modulefiles/ufs_hercules.gnu.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hercules/GNU ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") -- for mvapich2, need: prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/modulefiles") diff --git a/modulefiles/ufs_hercules.intel.lua b/modulefiles/ufs_hercules.intel.lua index 63cfaa989c..8f16440134 100644 --- a/modulefiles/ufs_hercules.intel.lua +++ b/modulefiles/ufs_hercules.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hercules/Intel ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index b29373eec1..8e54160be8 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Jet/Intel ]]) -prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.6.0/envs/unified-env-rocky8/install/modulefiles/Core") +prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index 1d717663ae..51cc375df8 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Orion/Intel ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/unified-env-rocky9/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_s4.intel.lua b/modulefiles/ufs_s4.intel.lua index e42a2ddde6..60b48c46d4 100644 --- a/modulefiles/ufs_s4.intel.lua +++ b/modulefiles/ufs_s4.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for S4/Intel ]]) -prepend_path("MODULEPATH", "/data/prod/jedi/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/data/prod/jedi/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) @@ -10,8 +10,17 @@ load(pathJoin("stack-intel", stack_intel_ver)) stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.0" load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + load("ufs_common") +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + setenv("CC", "mpiicc") setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") diff --git a/modulefiles/ufs_wcoss2.intel.lua b/modulefiles/ufs_wcoss2.intel.lua index 47326f4e45..a2445a9026 100644 --- a/modulefiles/ufs_wcoss2.intel.lua +++ b/modulefiles/ufs_wcoss2.intel.lua @@ -29,8 +29,8 @@ local ufs_modules = { {["fms-C"] = "2023.04"}, {["bacio"] = "2.4.1"}, {["crtm"] = "2.4.0"}, - {["g2"] = "3.4.5"}, - {["g2tmpl"] = "1.10.2"}, + {["g2"] = "3.5.1"}, + {["g2tmpl"] = "1.13.0"}, {["ip"] = "3.3.3"}, {["sp"] = "2.3.3"}, {["w3emc"] = "2.9.2"}, diff --git a/tests/auto-jenkins/jobs/bl.py b/tests/auto-jenkins/jobs/bl.py index 7b18e54ac8..026e27cb07 100644 --- a/tests/auto-jenkins/jobs/bl.py +++ b/tests/auto-jenkins/jobs/bl.py @@ -24,9 +24,9 @@ def set_directories(job_obj): rtbldir = '/scratch1/NCEPDEV/stmp4/emc.nemspara/FV3_RT/'\ f'REGRESSION_TEST' elif job_obj.machine == 'jet': - workdir = '/lfs4/HFIP/h-nems/emc.nemspara/autort/pr' - blstore = '/lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/' - rtbldir = '/lfs4/HFIP/h-nems/emc.nemspara/RT_BASELINE/'\ + workdir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/autort/pr' + blstore = '/lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs' + rtbldir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/RT_BASELINE/'\ f'emc.nemspara/FV3_RT/REGRESSION_TEST' elif job_obj.machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/tests/auto/pr' diff --git a/tests/auto-jenkins/jobs/rt.py b/tests/auto-jenkins/jobs/rt.py index 6622eae37a..06428b6fd5 100644 --- a/tests/auto-jenkins/jobs/rt.py +++ b/tests/auto-jenkins/jobs/rt.py @@ -26,7 +26,7 @@ def set_directories(job_obj): if job_obj.machine == 'hera': workdir = '/scratch1/NCEPDEV/nems/role.epic/autort/pr' elif job_obj.machine == 'jet': - workdir = '/lfs4/HFIP/hfv3gfs/role.epic/autort/pr' + workdir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/autort/pr' elif job_obj.machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/tests/auto/pr' elif job_obj.machine == 'hercules': diff --git a/tests/auto-jenkins/rt_auto_jenkins.py b/tests/auto-jenkins/rt_auto_jenkins.py index 9c54a7d3a5..3f29bf140a 100755 --- a/tests/auto-jenkins/rt_auto_jenkins.py +++ b/tests/auto-jenkins/rt_auto_jenkins.py @@ -76,7 +76,7 @@ def delete_pr_dirs(each_pr, machine): if machine == 'hera': workdir = '/scratch1/NCEPDEV/nems/role.epic/autort/pr' elif machine == 'jet': - workdir = '/lfs4/HFIP/hfv3gfs/role.epic/autort/pr' + workdir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/autort/pr' elif machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/pr' elif machine == 'hercules': @@ -110,7 +110,7 @@ def delete_rt_dirs(in_dir, machine, workdir): if machine == 'hera': rt_dir ='/scratch1/NCEPDEV/stmp4/role.epic/FV3_RT' elif machine == 'jet': - rt_dir ='/lfs4/HFIP/hfv3gfs/role.epic/RT_BASELINE/'\ + rt_dir ='/lfs5/HFIP/hfv3gfs/role.epic/h-nems/RT_BASELINE/'\ f'emc.nemspara/FV3_RT' elif machine == 'orion': rt_dir = '/work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT' diff --git a/tests/auto-jenkins/start_rt_auto_jenkins.sh b/tests/auto-jenkins/start_rt_auto_jenkins.sh index 7c40126b89..0a65d86466 100755 --- a/tests/auto-jenkins/start_rt_auto_jenkins.sh +++ b/tests/auto-jenkins/start_rt_auto_jenkins.sh @@ -14,11 +14,11 @@ elif [[ $HOSTNAME == Hercules-login-* ]]; then export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $HOSTNAME == fe* ]]; then - export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages + export PATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/bin:/contrib/spack-stack/miniconda3/23.11.0/bin:${PATH} + export PYTHONPATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/lib/python3.8/site-packages:/contrib/spack-stack/miniconda3/23.11.0/lib/python3.8/site-packages elif [[ $HOSTNAME == tfe* ]]; then - export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages + export PATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/bin:/contrib/spack-stack/miniconda3/23.11.0/bin:${PATH} + export PYTHONPATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/lib/python3.8/site-packages:/contrib/spack-stack/miniconda3/23.11.0/lib/python3.8/site-packages elif [[ $HOSTNAME == gaea* ]]; then export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages diff --git a/tests/auto/jobs/bl.py b/tests/auto/jobs/bl.py index 581056ac81..bcf4f9eeda 100644 --- a/tests/auto/jobs/bl.py +++ b/tests/auto/jobs/bl.py @@ -24,9 +24,9 @@ def set_directories(job_obj): rtbldir = '/scratch1/NCEPDEV/stmp4/emc.nemspara/FV3_RT/'\ f'REGRESSION_TEST_{job_obj.compiler.upper()}' elif job_obj.machine == 'jet': - workdir = '/lfs4/HFIP/h-nems/emc.nemspara/autort/pr' - blstore = '/lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/' - rtbldir = '/lfs4/HFIP/h-nems/emc.nemspara/RT_BASELINE/'\ + workdir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/autort/pr' + blstore = '/lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs' + rtbldir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/RT_BASELINE/'\ f'emc.nemspara/FV3_RT/REGRESSION_TEST_{job_obj.compiler.upper()}' elif job_obj.machine == 'orion': workdir = '/work/noaa/nems/emc.nemspara/autort/pr' diff --git a/tests/auto/jobs/rt.py b/tests/auto/jobs/rt.py index 706c5058c7..59b787f5f0 100644 --- a/tests/auto/jobs/rt.py +++ b/tests/auto/jobs/rt.py @@ -17,7 +17,7 @@ def set_directories(job_obj): if job_obj.machine == 'hera': workdir = '/scratch1/NCEPDEV/nems/emc.nemspara/autort/pr' elif job_obj.machine == 'jet': - workdir = '/lfs4/HFIP/h-nems/emc.nemspara/autort/pr' + workdir = '/lfs5/HFIP/hfv3gfs/role.epic/h-nems/autort/pr' elif job_obj.machine == 'orion': workdir = '/work/noaa/nems/emc.nemspara/autort/pr' elif job_obj.machine == 'derecho': diff --git a/tests/auto/start_rt_auto.sh b/tests/auto/start_rt_auto.sh index d0817f7356..18b4362496 100644 --- a/tests/auto/start_rt_auto.sh +++ b/tests/auto/start_rt_auto.sh @@ -11,8 +11,8 @@ elif [[ $HOSTNAME == Orion-login-* ]]; then export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $HOSTNAME == fe* ]]; then - export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages + export PATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/bin:/contrib/spack-stack/miniconda3/23.11.0/bin:${PATH} + export PYTHONPATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/lib/python3.8/site-packages:/contrib/spack-stack/miniconda3/23.11.0/lib/python3.8/site-packages elif [[ $HOSTNAME == gaea* ]]; then export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 157bf4a50b..70085f0b53 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240819 +export BL_DATE=20240821 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index facee8e4b1..bfa6815354 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -493,6 +493,10 @@ export UFS_CONFIGURE=ufs.configure.atm_esmf.IN export MODEL_CONFIGURE=model_configure.IN export atm_model=fv3 +export POST_ITAG=post_itag_gfs +export POSTXCONFIG=postxconfig-NT-gfs.txt +export POSTXCONFIG_FH00=postxconfig-NT-gfs_FH00.txt + export FV3=true export S2S=false export HAFS=false diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index 32eb089d7d..22ae9d58ee 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -122,9 +122,9 @@ fi #inline post if [[ $POSTAPP = 'global' ]]; then - cp ${PATHRT}/parm/post_itag_gfs itag - cp ${PATHRT}/parm/postxconfig-NT-gfs.txt postxconfig-NT.txt - cp ${PATHRT}/parm/postxconfig-NT-gfs_FH00.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/@[POST_ITAG] itag + cp ${PATHRT}/parm/@[POSTXCONFIG] postxconfig-NT.txt + cp ${PATHRT}/parm/@[POSTXCONFIG_FH00] postxconfig-NT_FH00.txt cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new fi diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index c9b50e6883..ee8e4842f2 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Aug 19 23:31:13 UTC 2024 +Wed Aug 21 22:05:02 UTC 2024 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_541162/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3986824/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 = 287.839117 - 0: The maximum resident set size (KB) = 1460536 + 0: The total amount of wall time = 280.831970 + 0: The maximum resident set size (KB) = 1448916 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_541162/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3986824/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 = 976.777842 - 0: The maximum resident set size (KB) = 1413764 + 0: The total amount of wall time = 992.336985 + 0: The maximum resident set size (KB) = 1437772 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_541162/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3986824/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 = 258.107962 - 0: The maximum resident set size (KB) = 1430104 + 0: The total amount of wall time = 255.618968 + 0: The maximum resident set size (KB) = 1425456 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_541162/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3986824/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 = 256.322579 - 0: The maximum resident set size (KB) = 1419972 + 0: The total amount of wall time = 250.392410 + 0: The maximum resident set size (KB) = 1437096 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_541162/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3986824/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 = 251.588379 - 0: The maximum resident set size (KB) = 1423556 + 0: The total amount of wall time = 257.380091 + 0: The maximum resident set size (KB) = 1423788 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_541162/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3986824/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 = 259.349362 - 0: The maximum resident set size (KB) = 1425980 + 0: The total amount of wall time = 267.250624 + 0: The maximum resident set size (KB) = 1421992 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_541162/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3986824/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 = 271.924255 - 0: The maximum resident set size (KB) = 1426080 + 0: The total amount of wall time = 257.163548 + 0: The maximum resident set size (KB) = 1434436 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Aug 20 00:36:54 UTC 2024 -Elapsed time: 01h:05m:42s. Have a nice day! +Wed Aug 21 23:13:54 UTC 2024 +Elapsed time: 01h:08m:53s. 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 a1d74982f1..6bf6a5ff37 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Aug 19 22:27:02 UTC 2024 +Wed Aug 21 20:56:23 UTC 2024 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_3480289/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3387682/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 = 1390.344099 - 0: The maximum resident set size (KB) = 1534724 + 0: The total amount of wall time = 1337.925051 + 0: The maximum resident set size (KB) = 1527960 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_3480289/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3387682/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 = 497.678068 - 0: The maximum resident set size (KB) = 1527568 + 0: The total amount of wall time = 429.025844 + 0: The maximum resident set size (KB) = 1528532 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_3480289/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3387682/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 = 434.165467 - 0: The maximum resident set size (KB) = 1524884 + 0: The total amount of wall time = 441.109791 + 0: The maximum resident set size (KB) = 1516924 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Aug 19 23:31:12 UTC 2024 -Elapsed time: 01h:04m:11s. Have a nice day! +Wed Aug 21 22:05:01 UTC 2024 +Elapsed time: 01h:08m:39s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 15f2c54c42..d06a471ae6 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Aug 19 17:06:27 UTC 2024 +Wed Aug 21 18:19:56 UTC 2024 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_3485589/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_65311/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 = 1462.378045 - 0: The maximum resident set size (KB) = 778120 + 0: The total amount of wall time = 1391.521656 + 0: The maximum resident set size (KB) = 777236 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_3485589/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_65311/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 = 2184.968736 - 0: The maximum resident set size (KB) = 721156 + 0: The total amount of wall time = 2169.925001 + 0: The maximum resident set size (KB) = 743380 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_3485589/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_65311/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 = 2182.336233 - 0: The maximum resident set size (KB) = 739780 + 0: The total amount of wall time = 2169.154728 + 0: The maximum resident set size (KB) = 733176 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_3485589/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_65311/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 = 2264.402737 - 0: The maximum resident set size (KB) = 719596 + 0: The total amount of wall time = 2203.506465 + 0: The maximum resident set size (KB) = 733136 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Aug 19 22:27:01 UTC 2024 -Elapsed time: 05h:20m:34s. Have a nice day! +Wed Aug 21 20:56:22 UTC 2024 +Elapsed time: 02h:36m:27s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index a12d38fe74..1538677c9c 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: -b31bee9d28f985abeb40e588121d2e2ee86ab1ec +6ccfb11529c2bd172bc7d4956eadfab0b55bf12d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (remotes/origin/HEAD) + d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) @@ -35,277 +35,281 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240819 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4144766 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240821 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2126453 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:35, 10:23] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:45, 01:43](3316 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:40, 15:55] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [01:40, 02:33](2097 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [41:02, 03:17](2122 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [41:00, 03:07](1230 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [01:41, 01:38](2160 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:41, 16:07] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [01:38, 01:16](2071 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:31, 05:55] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [11:49, 02:50](2174 MB) - -PASS -- COMPILE 's2swa_intel' [20:36, 10:17] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:43, 01:16](3339 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:43, 02:22](3338 MB) -PASS -- TEST 'cpld_restart_p8_intel' [58:53, 01:46](3263 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:43, 01:11](3341 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [58:54, 01:54](3282 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:43, 01:32](3619 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:43, 01:56](3333 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:44, 01:42](3450 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:43, 01:49](3339 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:43, 01:56](3266 MB) - -PASS -- COMPILE 's2sw_intel' [20:34, 09:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:45, 01:44](2006 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:45, 02:13](2024 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [20:35, 09:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:44, 02:18](2044 MB) - -PASS -- COMPILE 's2s_intel' [20:36, 09:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:42, 01:00](2889 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:42, 01:30](2899 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:01, 01:29](2307 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:41, 15:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [02:38, 01:45](3340 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:42, 15:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [01:37, 01:28](2097 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [41:49, 01:04](1274 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:33, 01:16](2160 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:34] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:30, 01:40](2197 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:22, 09:04] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [58:23, 00:31](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [58:23, 00:47](1546 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:23, 00:39](1552 MB) -PASS -- TEST 'control_latlon_intel' [58:23, 00:59](1556 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [58:23, 01:08](1547 MB) -PASS -- TEST 'control_c48_intel' [58:22, 01:25](1578 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [58:22, 00:47](711 MB) -PASS -- TEST 'control_c192_intel' [58:23, 00:47](1776 MB) -PASS -- TEST 'control_c384_intel' [58:27, 02:38](3083 MB) -PASS -- TEST 'control_c384gdas_intel' [58:27, 02:37](2302 MB) -PASS -- TEST 'control_stochy_intel' [58:23, 00:32](605 MB) -PASS -- TEST 'control_stochy_restart_intel' [44:37, 00:38](411 MB) -PASS -- TEST 'control_lndp_intel' [58:23, 01:07](609 MB) -PASS -- TEST 'control_iovr4_intel' [58:23, 01:15](599 MB) -PASS -- TEST 'control_iovr5_intel' [57:28, 00:32](604 MB) -PASS -- TEST 'control_p8_intel' [56:29, 02:46](1826 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [53:36, 02:23](1840 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [53:22, 02:40](1841 MB) -PASS -- TEST 'control_restart_p8_intel' [36:48, 01:18](991 MB) -PASS -- TEST 'control_noqr_p8_intel' [52:19, 02:41](1830 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [36:48, 02:11](1001 MB) -PASS -- TEST 'control_decomp_p8_intel' [51:34, 01:42](1812 MB) -PASS -- TEST 'control_2threads_p8_intel' [51:25, 02:00](1930 MB) -PASS -- TEST 'control_p8_lndp_intel' [50:25, 00:57](1839 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [46:38, 01:56](1888 MB) -PASS -- TEST 'control_p8_mynn_intel' [46:20, 02:25](1852 MB) -PASS -- TEST 'merra2_thompson_intel' [44:38, 02:19](1829 MB) -PASS -- TEST 'regional_control_intel' [43:35, 00:45](874 MB) -PASS -- TEST 'regional_restart_intel' [26:54, 00:27](866 MB) -PASS -- TEST 'regional_decomp_intel' [41:50, 01:05](864 MB) -PASS -- TEST 'regional_2threads_intel' [40:42, 01:08](1183 MB) -PASS -- TEST 'regional_noquilt_intel' [40:36, 00:55](1191 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [40:34, 00:28](868 MB) -PASS -- TEST 'regional_wofs_intel' [40:13, 00:16](1595 MB) - -PASS -- COMPILE 'ifi_intel' [08:21, 07:51] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [59:21, 01:10](863 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [59:21, 01:05](859 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [59:22, 01:00](1174 MB) - -PASS -- COMPILE 'rrfs_intel' [09:23, 08:33] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [39:26, 02:45](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [39:20, 00:39](1656 MB) -PASS -- TEST 'rap_decomp_intel' [39:07, 02:06](993 MB) -PASS -- TEST 'rap_2threads_intel' [39:02, 01:32](1093 MB) -PASS -- TEST 'rap_restart_intel' [29:01, 02:35](836 MB) -PASS -- TEST 'rap_sfcdiff_intel' [38:54, 02:22](993 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [38:00, 02:03](990 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'rap_sfcdiff_restart_intel' [, ]( MB) -PASS -- TEST 'hrrr_control_intel' [37:06, 02:20](987 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [36:54, 02:11](983 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [36:49, 02:54](1218 MB) -PASS -- TEST 'hrrr_control_restart_intel' [29:32, 01:14](787 MB) -PASS -- TEST 'rrfs_v1beta_intel' [36:40, 02:14](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [35:21, 01:01](1951 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [35:15, 01:13](1938 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:17] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [34:43, 00:39](941 MB) -PASS -- TEST 'control_ras_intel' [34:39, 00:50](641 MB) - -PASS -- COMPILE 'wam_intel' [12:25, 08:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [34:03, 00:29](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:27, 08:28] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [33:49, 02:27](1837 MB) -PASS -- TEST 'regional_control_faster_intel' [33:01, 00:48](862 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:24, 07:08] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [31:42, 00:28](1584 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [31:20, 00:50](1585 MB) -PASS -- TEST 'control_stochy_debug_intel' [30:03, 00:33](794 MB) -PASS -- TEST 'control_lndp_debug_intel' [29:51, 00:59](795 MB) -PASS -- TEST 'control_csawmg_debug_intel' [29:32, 00:39](1096 MB) -PASS -- TEST 'control_ras_debug_intel' [28:28, 00:23](800 MB) -PASS -- TEST 'control_diag_debug_intel' [28:31, 00:45](1654 MB) -PASS -- TEST 'control_debug_p8_intel' [27:34, 00:39](1864 MB) -PASS -- TEST 'regional_debug_intel' [27:06, 00:23](926 MB) -PASS -- TEST 'rap_control_debug_intel' [26:46, 00:39](1173 MB) -PASS -- TEST 'hrrr_control_debug_intel' [26:28, 00:31](1166 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [26:18, 00:18](1172 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [26:17, 00:25](1169 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [25:54, 01:13](1173 MB) -PASS -- TEST 'rap_diag_debug_intel' [25:33, 01:27](1261 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [25:27, 00:23](1173 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [25:21, 01:15](1177 MB) -PASS -- TEST 'rap_lndp_debug_intel' [24:57, 00:50](1176 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [23:56, 00:18](1176 MB) -PASS -- TEST 'rap_noah_debug_intel' [23:47, 01:00](1169 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [23:30, 00:58](1173 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [23:31, 00:21](1168 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [22:44, 00:39](1168 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [22:42, 00:21](1174 MB) -PASS -- TEST 'rap_flake_debug_intel' [22:34, 00:46](1172 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [21:39, 02:29](1174 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:23, 10:42] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:32, 02:36](3318 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:18] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [34:26, 03:00](2096 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:22, 02:53](2130 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:14, 03:10](1249 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:27, 01:53](2174 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:30, 16:07] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [35:26, 01:22](2101 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:19, 05:46] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [45:38, 03:00](2168 MB) + +PASS -- COMPILE 's2swa_intel' [11:26, 10:14] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [40:30, 01:59](3324 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:30, 02:26](3338 MB) +PASS -- TEST 'cpld_restart_p8_intel' [26:43, 02:09](3260 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [40:30, 01:50](3343 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [26:44, 02:06](3279 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [40:30, 01:45](3624 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [40:30, 01:20](3333 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [40:31, 01:37](3452 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:30, 01:48](3341 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [40:30, 02:04](3253 MB) + +PASS -- COMPILE 's2sw_intel' [10:25, 09:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [41:31, 01:46](2023 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [41:31, 02:09](2041 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:32, 02:05](2040 MB) + +PASS -- COMPILE 's2s_intel' [10:23, 09:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [41:32, 01:06](2889 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [41:32, 01:32](2899 MB) +PASS -- TEST 'cpld_restart_c48_intel' [37:03, 01:42](2310 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:16] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [36:26, 02:27](3324 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 16:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:24, 01:04](2088 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:43, 01:23](1269 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:40, 01:19](2176 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:31] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:19, 01:38](2206 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:23, 09:04] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [32:10, 00:51](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [32:10, 01:12](1547 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [32:10, 01:03](1554 MB) +PASS -- TEST 'control_latlon_intel' [32:10, 01:00](1549 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [32:10, 01:06](1555 MB) +PASS -- TEST 'control_c48_intel' [32:09, 00:35](1573 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [32:09, 01:13](712 MB) +PASS -- TEST 'control_c192_intel' [32:10, 00:54](1777 MB) +PASS -- TEST 'control_c384_intel' [32:14, 02:41](3086 MB) +PASS -- TEST 'control_c384gdas_intel' [32:14, 03:17](2305 MB) +PASS -- TEST 'control_stochy_intel' [32:10, 01:00](605 MB) +PASS -- TEST 'control_stochy_restart_intel' [23:34, 00:35](413 MB) +PASS -- TEST 'control_lndp_intel' [31:53, 01:14](610 MB) +PASS -- TEST 'control_iovr4_intel' [31:30, 01:20](602 MB) +PASS -- TEST 'control_iovr5_intel' [31:21, 01:06](601 MB) +PASS -- TEST 'control_p8_intel' [31:15, 02:29](1826 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [29:33, 02:02](1819 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [28:15, 02:12](1849 MB) +PASS -- TEST 'control_restart_p8_intel' [11:41, 02:19](993 MB) +PASS -- TEST 'control_noqr_p8_intel' [27:21, 01:44](1839 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [11:39, 02:24](1001 MB) +PASS -- TEST 'control_decomp_p8_intel' [26:15, 01:49](1833 MB) +PASS -- TEST 'control_2threads_p8_intel' [26:13, 01:50](1920 MB) +PASS -- TEST 'control_p8_lndp_intel' [25:11, 00:49](1840 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [24:26, 02:37](1877 MB) +PASS -- TEST 'control_p8_mynn_intel' [21:14, 02:32](1835 MB) +PASS -- TEST 'merra2_thompson_intel' [20:30, 03:12](1811 MB) +PASS -- TEST 'regional_control_intel' [18:01, 00:53](869 MB) +PASS -- TEST 'regional_restart_intel' [07:04, 01:04](862 MB) +PASS -- TEST 'regional_decomp_intel' [17:19, 00:24](863 MB) +PASS -- TEST 'regional_2threads_intel' [17:03, 01:04](1177 MB) +PASS -- TEST 'regional_noquilt_intel' [16:14, 00:56](1188 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [15:48, 00:57](863 MB) +PASS -- TEST 'regional_wofs_intel' [15:44, 00:38](1596 MB) + +PASS -- COMPILE 'ifi_intel' [08:22, 07:49] ( 1 warnings ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_ifi_control_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_ifi_decomp_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_ifi_2threads_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_intel' [09:23, 08:24] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [14:34, 02:57](993 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:04, 00:51](1656 MB) +PASS -- TEST 'rap_decomp_intel' [13:34, 02:30](990 MB) +PASS -- TEST 'rap_2threads_intel' [12:56, 02:08](1084 MB) +PASS -- TEST 'rap_restart_intel' [03:02, 02:53](836 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:02, 02:42](989 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:47, 02:13](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [00:38, 02:28](839 MB) +PASS -- TEST 'hrrr_control_intel' [11:41, 02:25](985 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [11:20, 02:13](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:27, 02:11](1214 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:16, 00:45](785 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:26, 03:04](981 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:09, 00:56](1949 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:16, 00:40](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:16] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:01, 00:28](941 MB) +PASS -- TEST 'control_ras_intel' [09:00, 00:24](639 MB) + +PASS -- COMPILE 'wam_intel' [09:24, 08:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [08:19, 01:09](1636 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:24] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:39, 02:48](1836 MB) +PASS -- TEST 'regional_control_faster_intel' [07:34, 00:43](860 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:25, 07:15] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:30, 01:12](1588 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:52, 00:52](1585 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:48, 00:27](793 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:22, 01:01](792 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:50, 01:18](1077 MB) +PASS -- TEST 'control_ras_debug_intel' [03:54, 01:12](797 MB) +PASS -- TEST 'control_diag_debug_intel' [03:22, 00:52](1653 MB) +PASS -- TEST 'control_debug_p8_intel' [03:22, 00:45](1861 MB) +PASS -- TEST 'regional_debug_intel' [03:01, 01:05](938 MB) +PASS -- TEST 'rap_control_debug_intel' [02:24, 00:59](1173 MB) +PASS -- TEST 'hrrr_control_debug_intel' [01:40, 01:12](1168 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [01:29, 01:01](1170 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [00:43, 00:19](1169 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [00:35, 00:36](1176 MB) +PASS -- TEST 'rap_diag_debug_intel' [00:16, 00:41](1262 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [00:15, 00:37](1175 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [59:47, 00:52](1174 MB) +PASS -- TEST 'rap_lndp_debug_intel' [59:13, 00:36](1177 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [59:04, 00:49](1173 MB) +PASS -- TEST 'rap_noah_debug_intel' [58:49, 01:04](1167 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [58:41, 00:53](1170 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [58:07, 00:38](1168 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [57:30, 01:10](1168 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [57:29, 00:58](1173 MB) +PASS -- TEST 'rap_flake_debug_intel' [57:22, 00:50](1173 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [57:21, 02:56](1176 MB) PASS -- COMPILE 'wam_debug_intel' [08:21, 04:50] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [21:35, 00:34](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:24, 08:14] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [20:40, 01:11](1522 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [20:13, 02:24](864 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [19:53, 04:04](860 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [19:44, 02:47](935 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [19:45, 02:26](1063 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [18:55, 03:47](859 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:27, 02:20](759 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:19, 01:14](743 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:24, 08:16] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [18:23, 01:22](1069 MB) -PASS -- TEST 'conus13km_2threads_intel' [13:11, 01:10](1399 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [13:10, 00:51](911 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 08:13] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [17:55, 00:52](893 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [50:06, 04:54] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:16, 00:46](1051 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:16, 00:54](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [08:16, 00:54](1158 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [08:16, 00:58](840 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:17, 00:57](1471 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [08:16, 00:35](1229 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [49:07, 04:48] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:12, 00:28](1075 MB) - -PASS -- COMPILE 'hafsw_intel' [54:13, 09:38] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [03:41, 02:12](1669 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [03:26, 01:06](2019 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [02:40, 02:02](1196 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [02:07, 01:31](1229 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [01:46, 02:17](1375 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [01:42, 00:55](922 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [57:44, 01:47](1212 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [56:55, 01:46](1100 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [55:57, 03:04](1993 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [55:21, 01:32](957 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [54:17, 00:53](964 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [52:47, 01:15](1549 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [51:46, 01:05](1128 MB) -PASS -- TEST 'gnv1_nested_intel' [49:48, 03:17](1897 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [46:03, 05:30] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [08:20, 01:13](1627 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [49:07, 09:06] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:15, 00:54](1587 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [04:15, 01:28](1765 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [48:06, 09:32] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [49:38, 01:33](1764 MB) - -PASS -- COMPILE 'hafs_all_intel' [46:02, 08:54] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [05:01, 01:27](1185 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:01, 02:13](1167 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [04:59, 01:12](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [46:02, 09:15] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:10, 01:05](769 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [33:13, 00:23](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:10, 00:27](649 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 01:09](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 00:44](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:10, 00:13](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 00:13](770 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:10, 01:09](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [04:11, 00:57](813 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [04:11, 01:36](796 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:10, 00:45](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 01:13](2035 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 01:04](2036 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [46:03, 09:15] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 01:05](756 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [38:55, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [11:04, 00:46](610 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:04, 00:42](747 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [08:33, 01:02](750 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:23, 09:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [49:34, 01:19](1959 MB) - -PASS -- COMPILE 'atml_intel' [09:22, 09:10] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [48:53, 02:30](2169 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [47:50, 02:13](2169 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [35:18, 01:04](1317 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:19, 05:42] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [47:34, 02:07](2225 MB) - -PASS -- COMPILE 'atmw_intel' [09:23, 08:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [44:34, 02:31](1937 MB) - -PASS -- COMPILE 'atmaero_intel' [09:22, 08:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [44:29, 02:27](3216 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [43:05, 02:19](3001 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [42:29, 02:19](3005 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [32:47, 04:54] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [31:25, 01:16](4820 MB) +PASS -- TEST 'control_wam_debug_intel' [57:13, 01:03](1677 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:28, 08:08] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [57:05, 01:03](1528 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [56:37, 02:30](866 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [55:58, 03:29](862 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:54, 02:36](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [53:52, 02:40](1065 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [53:36, 03:04](864 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:45, 02:01](764 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:09, 00:15](746 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [52:06, 08:17] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [42:20, 00:46](1068 MB) +PASS -- TEST 'conus13km_2threads_intel' [38:20, 00:39](1399 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [38:19, 01:16](913 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [53:11, 08:17] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:59, 01:29](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [48:06, 04:48] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [44:03, 00:46](1055 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:03, 01:00](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [44:03, 00:42](1157 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [44:03, 00:32](828 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [44:04, 01:07](1476 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:03, 00:26](1232 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [49:08, 04:42] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:00, 00:36](1074 MB) + +PASS -- COMPILE 'hafsw_intel' [53:08, 09:28] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [38:05, 02:16](1665 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [38:05, 00:37](2015 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [38:03, 01:38](1199 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [38:03, 01:25](1224 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [38:04, 01:55](1377 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [38:03, 01:38](920 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [38:04, 01:36](1211 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [38:04, 01:41](1101 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:07, 03:02](1947 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [38:03, 01:00](954 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [38:03, 00:47](960 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [38:05, 01:38](1549 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [38:04, 00:57](1129 MB) +PASS -- TEST 'gnv1_nested_intel' [38:02, 03:05](1898 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [49:07, 05:30] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [42:01, 01:21](1640 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [51:06, 09:16] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [37:33, 01:41](1586 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:31, 01:21](1762 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [49:05, 09:23] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [37:03, 01:40](1760 MB) + +PASS -- COMPILE 'hafs_all_intel' [47:08, 09:00] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [36:26, 01:46](1183 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [36:31, 01:53](1174 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [36:11, 00:33](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [43:00, 09:25] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [36:05, 00:22](756 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [29:39, 00:40](757 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [32:47, 00:33](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [32:07, 00:15](648 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [31:42, 00:46](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:25, 01:04](756 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [26:44, 00:36](756 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [26:41, 00:28](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [26:38, 01:26](814 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [26:38, 01:20](799 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [25:15, 00:23](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [25:14, 00:24](2038 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [24:16, 01:10](2038 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 09:21] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [24:12, 00:28](770 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 01:04] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [40:46, 00:37](609 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [40:46, 00:31](747 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [24:04, 00:57](751 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:23, 09:29] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:31, 00:51](1963 MB) + +PASS -- COMPILE 'atml_intel' [09:22, 09:04] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [22:05, 02:06](2169 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [21:15, 02:54](2151 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 00:59](1296 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:21, 05:41] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [21:21, 02:29](2201 MB) + +PASS -- COMPILE 'atmw_intel' [10:23, 08:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:58, 02:15](1940 MB) + +PASS -- COMPILE 'atmaero_intel' [10:23, 08:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [20:17, 01:33](3217 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [20:09, 01:46](2994 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:50, 01:35](3009 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [28:42, 04:50] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [09:16, 01:38](4817 MB) SYNOPSIS: -Starting Date/Time: 20240820 19:31:22 -Ending Date/Time: 20240820 21:55:29 -Total Time: 02h:24m:34s +Starting Date/Time: 20240823 14:07:45 +Ending Date/Time: 20240823 16:17:33 +Total Time: 02h:10m:16s Compiles Completed: 38/38 -Tests Completed: 178/179 +Tests Completed: 176/179 Failed Tests: -* TEST rap_sfcdiff_restart_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/DeniseWorthen/ufs-weather-model/tests/logs/log_acorn/run_rap_sfcdiff_restart_intel.log +* TEST regional_ifi_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_acorn/run_regional_ifi_control_intel.log +* TEST regional_ifi_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_acorn/run_regional_ifi_decomp_intel.log +* TEST regional_ifi_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_acorn/run_regional_ifi_2threads_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -318,7 +322,7 @@ Result: FAILURE ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -b31bee9d28f985abeb40e588121d2e2ee86ab1ec +6ccfb11529c2bd172bc7d4956eadfab0b55bf12d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -328,14 +332,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (remotes/origin/HEAD) + d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) @@ -352,24 +356,25 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240819 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_571598 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240821 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2781112 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-n) - RUN SINGLE TEST: rap_sfcdiff_restart +* (-l) - USE CONFIG FILE: rt.test * (-e) - USE ECFLOW -PASS -- COMPILE 'rrfs_intel' [09:21, 08:32] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_sfcdiff_intel' [52:22, 02:53](991 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [41:56, 01:35](838 MB) +PASS -- COMPILE 'ifi_intel' [08:21, 07:53] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [15:14, 00:20](864 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [15:14, 00:49](859 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [15:15, 00:52](1173 MB) SYNOPSIS: -Starting Date/Time: 20240820 21:58:16 -Ending Date/Time: 20240820 22:26:55 -Total Time: 00h:28m:48s +Starting Date/Time: 20240823 16:36:26 +Ending Date/Time: 20240823 16:52:46 +Total Time: 00h:16m:23s Compiles Completed: 1/1 -Tests Completed: 2/2 +Tests Completed: 3/3 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index dfcdfb1844..954908d2f9 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: -005f5bb75deef6080db91a19b536b11d94dec8cf +97b1ccdffe7d4378da4e279e2f2fb73d1539d227 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - aa1484378de6cc665910b63a691a1475809f6bb3 FV3 (remotes/origin/production/HREF.v3beta-334-gaa14843) - 7c3102fccc493d4c006c936ea88e4b512f6f5251 FV3/atmos_cubed_sphere (201912_public_release-403-g7c3102f) + d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) + 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) @@ -35,284 +35,284 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240819 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_77059 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240821 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_107803 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: scsg0002 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:27, 21:22] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:40, 05:32](3206 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:35, 23:38] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:10, 14:33](1911 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:47, 15:42](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:26, 07:43](1057 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:01, 16:23](1885 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:25, 23:14] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:29, 14:14](1914 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:27, 12:00] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:47, 22:41](1934 MB) - -PASS -- COMPILE 's2swa_intel' [22:22, 21:05] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:34, 06:14](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:30, 06:21](3220 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:28, 03:49](3149 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:21, 06:15](3251 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:07, 04:01](3177 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:52, 05:54](3733 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:51, 06:07](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:11, 05:21](3535 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:12, 06:21](3228 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:28, 09:23](3816 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:50, 06:27](3620 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:32, 10:19](4519 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:52, 06:57](4670 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:16, 06:14](3208 MB) - -PASS -- COMPILE 's2sw_intel' [21:24, 20:00] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:32, 04:51](1920 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:47, 05:03](1988 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:17, 11:56] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:14, 08:07](3298 MB) - -PASS -- COMPILE 's2sw_debug_intel' [12:16, 11:04] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:28, 05:37](1959 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:18, 16:00] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 04:46](1986 MB) - -PASS -- COMPILE 's2s_intel' [17:18, 15:56] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:10, 06:34](2892 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:10, 02:15](2898 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:49, 01:25](2311 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:21, 23:52] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:20, 06:09](3230 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:19, 22:01] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:02, 14:48](1924 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:46, 07:40](1102 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:32, 16:34](1906 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:16, 11:14] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 24:08](1957 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:48, 14:05] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:59, 03:24](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:27, 02:25](1559 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:38, 02:29](1567 MB) -PASS -- TEST 'control_latlon_intel' [04:28, 02:22](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:31, 02:23](1564 MB) -PASS -- TEST 'control_c48_intel' [08:23, 06:08](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:19](713 MB) -PASS -- TEST 'control_c192_intel' [11:03, 08:50](1672 MB) -PASS -- TEST 'control_c384_intel' [14:09, 08:48](1945 MB) -PASS -- TEST 'control_c384gdas_intel' [14:52, 07:05](1172 MB) -PASS -- TEST 'control_stochy_intel' [02:34, 01:25](623 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:34, 00:52](436 MB) -PASS -- TEST 'control_lndp_intel' [02:39, 01:22](624 MB) -PASS -- TEST 'control_iovr4_intel' [03:51, 02:15](618 MB) -PASS -- TEST 'control_iovr5_intel' [03:47, 02:04](619 MB) -PASS -- TEST 'control_p8_intel' [05:45, 03:04](1856 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:44, 03:10](1855 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:16, 02:55](1855 MB) -PASS -- TEST 'control_restart_p8_intel' [04:15, 02:01](1007 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:24, 03:05](1851 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 02:01](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:15, 03:13](1851 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:01](1936 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:21, 05:02](1857 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:37, 03:51](1913 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:59, 03:09](1864 MB) -PASS -- TEST 'merra2_thompson_intel' [07:10, 03:17](1864 MB) -PASS -- TEST 'regional_control_intel' [06:33, 04:43](862 MB) -PASS -- TEST 'regional_restart_intel' [04:25, 02:50](864 MB) -PASS -- TEST 'regional_decomp_intel' [06:32, 04:57](862 MB) -PASS -- TEST 'regional_noquilt_intel' [06:28, 04:39](1185 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:35, 04:41](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:29, 04:43](870 MB) -PASS -- TEST 'regional_wofs_intel' [07:11, 05:37](1592 MB) - -PASS -- COMPILE 'rrfs_intel' [14:20, 12:53] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:59, 06:10](1001 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:13, 03:42](1146 MB) -PASS -- TEST 'rap_decomp_intel' [09:17, 06:25](1004 MB) -PASS -- TEST 'rap_2threads_intel' [09:17, 05:41](1083 MB) -PASS -- TEST 'rap_restart_intel' [06:34, 03:13](874 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:19, 06:05](1001 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:18, 06:25](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:32, 04:35](876 MB) -PASS -- TEST 'hrrr_control_intel' [05:56, 03:15](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:59, 03:36](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:54, 02:49](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:38, 01:44](828 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:03, 05:59](1005 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:10, 07:29](1954 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:07, 07:10](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [13:16, 11:55] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:56, 06:25](957 MB) -PASS -- TEST 'control_ras_intel' [03:56, 02:53](657 MB) - -PASS -- COMPILE 'wam_intel' [12:19, 11:38] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:25, 10:07](1646 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:27, 11:40] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:51, 03:04](1857 MB) -PASS -- TEST 'regional_control_faster_intel' [06:11, 04:25](860 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:19, 13:49] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:14, 02:35](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:18, 02:27](1611 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:42, 02:50](805 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:40, 02:36](806 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:22, 04:41](1110 MB) -PASS -- TEST 'control_ras_debug_intel' [03:37, 02:38](813 MB) -PASS -- TEST 'control_diag_debug_intel' [04:54, 02:34](1665 MB) -PASS -- TEST 'control_debug_p8_intel' [05:12, 03:16](1896 MB) -PASS -- TEST 'regional_debug_intel' [18:14, 16:10](920 MB) -PASS -- TEST 'rap_control_debug_intel' [05:35, 04:37](1188 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:45, 04:37](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:47, 04:36](1189 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:39, 04:40](1188 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 04:40](1188 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:32, 04:50](1273 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:39, 04:46](1187 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:29, 04:57](1189 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:28, 04:42](1194 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:38](1187 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:40, 04:32](1189 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:36, 04:40](1188 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:38, 07:28](1187 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:36](1180 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:34, 05:26](1191 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:34, 04:38](1191 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:59, 08:07](1191 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:15, 07:32] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:20, 12:23](1685 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:20, 11:30] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:29, 03:29](1015 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 05:07](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:47, 02:45](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:50, 04:45](939 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:05, 02:24](932 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:52, 02:55](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:47, 03:52](791 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:48, 01:32](773 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:52, 12:59] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:14, 01:51](1074 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:06, 00:55](1067 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:57, 01:07](961 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:15, 11:40] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:19, 03:36](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:20, 07:35] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:48, 04:33](1065 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:47, 04:43](1062 MB) -PASS -- TEST 'conus13km_debug_intel' [15:37, 13:28](1147 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:18, 13:43](826 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:25, 07:59](1138 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:09, 13:30](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:18, 07:29] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:32](1089 MB) - -PASS -- COMPILE 'hafsw_intel' [18:17, 17:11] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:33, 04:29](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:57, 04:56](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:32, 06:23](749 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:37, 10:57](767 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:33, 12:09](794 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:12, 04:34](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:26, 05:37](479 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:51, 02:14](383 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:49, 06:00](453 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:59, 03:15](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:20, 03:00](494 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 03:45](568 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:10](418 MB) -PASS -- TEST 'gnv1_nested_intel' [07:09, 04:04](1704 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:19, 08:16] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:08, 12:16](625 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:21, 16:47] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:18, 07:04](609 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:10, 07:13](674 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:19, 18:44] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:12, 05:19](666 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:06, 15:48] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:24, 05:36](740 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:31, 05:39](722 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:15, 16:12](908 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:23, 08:15] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:27](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:41, 01:30](746 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:25, 02:20](653 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:32, 02:22](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:23](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:24, 02:28](755 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:37, 02:29](770 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:26, 02:18](657 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:03, 05:37](697 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:08, 05:36](679 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:20, 02:27](767 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:24, 03:51](2036 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:26, 03:51](2032 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:14, 05:46] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:10](751 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 08:19] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:32, 02:26](768 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:43] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:39, 01:08](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:02](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:38, 00:42](449 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:38, 13:06] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:22, 03:55](1910 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:15, 12:26] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:26, 03:45](1901 MB) - -PASS -- COMPILE 'atml_intel' [15:14, 14:21] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:38, 06:10](1886 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:41, 06:29](1880 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:01, 04:11](1034 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:22, 10:25] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:26, 06:16](1918 MB) - -PASS -- COMPILE 'atmw_intel' [14:15, 13:31] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:12](1875 MB) - -PASS -- COMPILE 'atmaero_intel' [14:14, 12:51] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:19, 04:23](3125 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:24, 04:17](3001 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:12, 04:21](3015 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:19, 08:03] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:21, 21:40](4544 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:19, 21:06] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:18, 05:28](3198 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:19, 23:09] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:42, 14:35](1917 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:00, 15:42](1936 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:50, 07:35](1061 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:41, 16:18](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:19, 23:08] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:12, 14:09](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:16, 11:34] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:41, 22:48](1934 MB) + +PASS -- COMPILE 's2swa_intel' [22:19, 20:59] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:30, 06:18](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:37, 06:13](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:07, 04:00](3152 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:30, 06:15](3253 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:07, 03:54](3180 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:19, 05:52](3738 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:19, 06:06](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:17, 05:07](3538 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:39, 06:21](3235 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:22, 09:24](3822 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:42, 06:11](3619 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:30, 10:09](4524 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:27, 06:50](4666 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:14, 05:53](3208 MB) + +PASS -- COMPILE 's2sw_intel' [20:17, 19:34] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:20, 04:26](1913 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:32, 04:32](1982 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:16, 11:35] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:14, 08:11](3304 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:16, 10:51] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 05:56](1954 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:15, 15:54] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:54, 04:24](1989 MB) + +PASS -- COMPILE 's2s_intel' [17:17, 15:59] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:03, 06:31](2886 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:02, 02:07](2886 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:57, 01:16](2306 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:17, 23:29] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:04, 06:14](3234 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:18, 22:11] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:38, 14:40](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:50, 07:51](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:32, 16:43](1891 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:15, 10:55] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:27, 24:02](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:18, 13:59] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:39, 03:23](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:57, 02:23](1559 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:09, 02:25](1566 MB) +PASS -- TEST 'control_latlon_intel' [03:53, 02:22](1562 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:01, 02:24](1565 MB) +PASS -- TEST 'control_c48_intel' [07:59, 06:06](1569 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:37, 05:16](707 MB) +PASS -- TEST 'control_c192_intel' [10:46, 08:42](1666 MB) +PASS -- TEST 'control_c384_intel' [14:20, 08:44](1948 MB) +PASS -- TEST 'control_c384gdas_intel' [15:31, 07:03](1189 MB) +PASS -- TEST 'control_stochy_intel' [02:36, 01:25](618 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:35, 00:51](435 MB) +PASS -- TEST 'control_lndp_intel' [02:33, 01:18](621 MB) +PASS -- TEST 'control_iovr4_intel' [03:37, 02:04](615 MB) +PASS -- TEST 'control_iovr5_intel' [03:37, 02:04](620 MB) +PASS -- TEST 'control_p8_intel' [05:25, 02:54](1851 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 02:59](1850 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 03:02](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [04:16, 01:50](1004 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:33, 03:09](1845 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:21, 01:57](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:22, 03:05](1850 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:22, 02:57](1931 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:11, 04:39](1856 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:29, 03:58](1903 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:31, 03:12](1863 MB) +PASS -- TEST 'merra2_thompson_intel' [05:22, 03:09](1863 MB) +PASS -- TEST 'regional_control_intel' [05:52, 04:42](861 MB) +PASS -- TEST 'regional_restart_intel' [03:44, 02:42](859 MB) +PASS -- TEST 'regional_decomp_intel' [05:48, 04:49](870 MB) +PASS -- TEST 'regional_noquilt_intel' [05:56, 04:34](1182 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:58, 04:38](860 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:52, 04:35](857 MB) +PASS -- TEST 'regional_wofs_intel' [06:44, 05:39](1590 MB) + +PASS -- COMPILE 'rrfs_intel' [13:16, 12:34] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:19, 06:07](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 03:37](1160 MB) +PASS -- TEST 'rap_decomp_intel' [08:19, 06:22](1007 MB) +PASS -- TEST 'rap_2threads_intel' [07:27, 05:38](1084 MB) +PASS -- TEST 'rap_restart_intel' [05:04, 03:12](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:21, 06:05](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:21, 06:20](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:07, 04:34](880 MB) +PASS -- TEST 'hrrr_control_intel' [05:02, 03:12](1003 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:02, 03:16](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:02, 02:50](1080 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:39, 01:44](829 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:23, 06:00](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:59, 07:20](1953 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:11](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [12:14, 11:29] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:59, 06:33](959 MB) +PASS -- TEST 'control_ras_intel' [04:42, 02:50](657 MB) + +PASS -- COMPILE 'wam_intel' [12:14, 11:20] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:24, 10:12](1652 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:14, 11:37] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:31, 03:04](1854 MB) +PASS -- TEST 'regional_control_faster_intel' [05:57, 04:32](859 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:15, 13:57] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:04, 02:36](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:05, 02:32](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:38, 02:53](812 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:28, 02:40](808 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:51, 04:41](1113 MB) +PASS -- TEST 'control_ras_debug_intel' [03:26, 02:41](812 MB) +PASS -- TEST 'control_diag_debug_intel' [04:47, 02:38](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [04:45, 03:16](1893 MB) +PASS -- TEST 'regional_debug_intel' [17:49, 16:32](930 MB) +PASS -- TEST 'rap_control_debug_intel' [06:30, 04:45](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:38, 04:33](1187 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:35, 04:41](1188 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:36, 04:46](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:34, 04:44](1187 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:35, 04:53](1270 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:38, 04:56](1189 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:38, 04:47](1188 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:35, 04:49](1191 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:37, 04:48](1192 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:35, 04:36](1187 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:33, 04:44](1192 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 07:50](1185 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:35, 04:43](1181 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:46](1192 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:36, 04:49](1188 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:04, 08:12](1193 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:12, 07:07] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:10, 12:24](1689 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:19, 11:09] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:14, 03:27](1016 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:58, 05:04](879 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:54, 02:43](879 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:58, 04:42](935 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:00, 02:22](929 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:58, 02:50](876 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:50, 03:51](790 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 01:31](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:14, 11:12] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:46, 01:50](1072 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:16, 00:53](1072 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:13, 01:06](962 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:21, 11:24] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:53, 03:37](900 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:19, 07:27] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 04:29](1065 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:26, 04:24](1068 MB) +PASS -- TEST 'conus13km_debug_intel' [15:15, 13:38](1144 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:21, 13:38](830 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:20, 08:08](1141 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:20, 13:44](1212 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:17, 07:11] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:34, 04:35](1088 MB) + +PASS -- COMPILE 'hafsw_intel' [18:20, 17:16] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:10, 04:28](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:38, 04:56](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:47, 06:21](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:30, 10:49](769 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:29, 11:57](796 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:05, 04:35](462 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:30, 05:38](480 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:56, 02:14](387 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:55, 05:59](456 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:57, 03:13](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:00, 03:00](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:09, 03:47](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:27, 01:09](421 MB) +PASS -- TEST 'gnv1_nested_intel' [07:06, 03:53](1700 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:18, 08:42] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:13, 11:56](629 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:19, 16:44] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:19, 07:07](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:31, 07:14](676 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:15, 18:10] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 05:17](671 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:20, 15:26] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:26, 05:36](740 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:27, 05:45](726 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:09, 16:15](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:18, 08:19] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:34, 02:29](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:31](757 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:28, 02:21](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:26, 02:25](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:37, 02:23](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:28](768 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:39, 02:28](769 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:31, 02:20](650 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:11, 05:39](697 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:19, 05:37](680 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:27](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:32, 03:50](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 03:50](2035 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:51] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:16](751 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:18, 08:22] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:26](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:34] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:54, 01:04](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:00](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:42](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:19, 13:13] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:35, 03:34](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:19, 12:33] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:28, 03:43](1899 MB) + +PASS -- COMPILE 'atml_intel' [15:21, 14:32] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:23, 06:38](1877 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:24, 06:21](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:49, 03:29](1032 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:22, 10:43] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:32, 06:10](1923 MB) + +PASS -- COMPILE 'atmw_intel' [14:18, 13:39] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:13, 02:09](1872 MB) + +PASS -- COMPILE 'atmaero_intel' [13:20, 12:36] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:28, 04:09](3126 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:33, 04:16](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:08, 04:19](3015 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:17, 08:03] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:36, 21:45](4537 MB) SYNOPSIS: -Starting Date/Time: 20240819 13:51:21 -Ending Date/Time: 20240819 15:28:45 -Total Time: 01h:38m:33s +Starting Date/Time: 20240822 07:13:47 +Ending Date/Time: 20240822 08:47:42 +Total Time: 01h:34m:55s Compiles Completed: 41/41 Tests Completed: 184/184 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 9c7cc0b61a..ac864bfc2d 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -ed15c21712242a15f47d8e809925de16e2a3c5d6 +3df9dd2e0931e3fda968f8f9949f530a1b7983e0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) + d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) @@ -35,285 +35,285 @@ 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-20240819 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_215585 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240821 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_17706 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [24:13, 23:35] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:06, 08:30](3208 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:17, 24:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:56, 13:42](1914 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:02, 14:36](1934 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:55, 07:05](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:55, 15:03](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:14, 25:26] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:04, 13:32](1906 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:16, 16:47] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:37, 25:44](1939 MB) - -PASS -- COMPILE 's2swa_intel' [22:14, 21:45] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:34, 08:13](3223 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:06, 08:14](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:07, 05:24](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:16, 08:14](3249 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:48, 05:31](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:24, 07:01](3464 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:42, 08:37](3223 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:21, 07:18](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:06, 08:22](3223 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:29, 10:37](3446 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:40, 07:31](3605 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:17, 13:15](4207 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:28, 09:15](4364 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:21, 08:04](3211 MB) - -PASS -- COMPILE 's2sw_intel' [22:14, 21:02] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:24, 05:13](1927 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:34, 05:42](1993 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:16, 16:35] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:29, 09:55](3283 MB) - -PASS -- COMPILE 's2sw_debug_intel' [17:16, 16:01] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:21, 06:03](1949 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [21:13, 19:36] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:53, 05:30](1996 MB) - -PASS -- COMPILE 's2s_intel' [19:16, 18:20] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:24, 06:31](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:38, 02:06](2877 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:11, 01:11](2288 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:13, 22:40] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:58, 08:35](3223 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:13, 23:22] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:46, 15:53](1924 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:33, 07:27](1085 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:55, 17:17](1903 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 14:52] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:44, 27:30](1949 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:13, 16:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:43, 03:49](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:01, 03:24](1560 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:11, 03:45](1565 MB) -PASS -- TEST 'control_latlon_intel' [07:30, 03:03](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:38, 03:43](1563 MB) -PASS -- TEST 'control_c48_intel' [09:16, 06:33](1561 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:01, 05:44](697 MB) -PASS -- TEST 'control_c192_intel' [16:07, 10:34](1670 MB) -PASS -- TEST 'control_c384_intel' [24:29, 18:39](1928 MB) -PASS -- TEST 'control_c384gdas_intel' [20:16, 14:42](1154 MB) -PASS -- TEST 'control_stochy_intel' [02:54, 02:02](618 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:36, 01:06](425 MB) -PASS -- TEST 'control_lndp_intel' [04:03, 01:53](618 MB) -PASS -- TEST 'control_iovr4_intel' [03:55, 02:39](616 MB) -PASS -- TEST 'control_iovr5_intel' [05:03, 03:09](616 MB) -PASS -- TEST 'control_p8_intel' [08:10, 03:54](1860 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:47, 03:44](1848 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:16, 03:19](1851 MB) -PASS -- TEST 'control_restart_p8_intel' [04:32, 02:17](1004 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:10, 03:20](1843 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:32, 02:08](1013 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:28, 03:57](1849 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:47, 02:48](1926 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:13, 05:46](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:44, 04:39](1905 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:38, 04:18](1863 MB) -PASS -- TEST 'merra2_thompson_intel' [06:24, 04:32](1855 MB) -PASS -- TEST 'regional_control_intel' [07:15, 05:18](848 MB) -PASS -- TEST 'regional_restart_intel' [03:41, 02:31](847 MB) -PASS -- TEST 'regional_decomp_intel' [07:37, 05:00](850 MB) -PASS -- TEST 'regional_2threads_intel' [06:14, 03:12](987 MB) -PASS -- TEST 'regional_noquilt_intel' [07:59, 04:51](1177 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:07, 04:50](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 04:56](855 MB) -PASS -- TEST 'regional_wofs_intel' [08:46, 06:21](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [16:17, 15:09] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:04, 07:06](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:28, 04:06](1147 MB) -PASS -- TEST 'rap_decomp_intel' [10:10, 07:29](1007 MB) -PASS -- TEST 'rap_2threads_intel' [09:21, 06:27](1082 MB) -PASS -- TEST 'rap_restart_intel' [07:00, 03:54](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:15, 07:16](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:20, 07:06](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:04, 05:16](875 MB) -PASS -- TEST 'hrrr_control_intel' [06:18, 03:49](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:09, 04:14](1001 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:02, 03:09](1077 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:17](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:12, 06:48](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:43, 08:39](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:41, 08:07](1946 MB) - -PASS -- COMPILE 'csawmg_intel' [15:16, 14:48] -PASS -- TEST 'control_csawmg_intel' [08:45, 06:52](957 MB) -PASS -- TEST 'control_ras_intel' [05:30, 03:29](653 MB) - -PASS -- COMPILE 'wam_intel' [15:16, 14:27] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:37, 11:46](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 15:19] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:11, 03:11](1847 MB) -PASS -- TEST 'regional_control_faster_intel' [05:41, 04:33](852 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:13, 16:18] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:55, 02:58](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:55, 03:09](1594 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:35, 03:14](795 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:30, 02:53](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:28](1101 MB) -PASS -- TEST 'control_ras_debug_intel' [05:31, 03:07](802 MB) -PASS -- TEST 'control_diag_debug_intel' [05:49, 02:57](1654 MB) -PASS -- TEST 'control_debug_p8_intel' [05:37, 03:27](1884 MB) -PASS -- TEST 'regional_debug_intel' [18:42, 16:21](900 MB) -PASS -- TEST 'rap_control_debug_intel' [08:35, 05:22](1184 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:36, 05:22](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:35, 05:05](1179 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:33, 05:18](1179 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:28, 05:19](1180 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:41, 05:25](1263 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:33, 05:18](1178 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:10, 05:22](1181 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:13, 05:14](1183 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:10, 05:17](1180 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:13, 05:15](1178 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:08, 05:19](1182 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 08:02](1177 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:04, 05:15](1172 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:33, 06:00](1183 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:55, 05:08](1181 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:16, 08:35](1181 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:15, 12:52] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:19, 13:16](1673 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:14, 16:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:38, 03:52](1008 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:54, 05:57](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:26, 03:54](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:05, 05:22](933 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:18, 02:43](921 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:02, 03:31](876 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:05, 04:39](773 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:37, 02:37](759 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 15:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:25, 02:43](1086 MB) -PASS -- TEST 'conus13km_2threads_intel' [11:02, 01:10](1064 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [13:03, 01:57](964 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:13, 15:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:09, 04:45](903 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 11:18] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:36, 05:30](1051 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:36, 05:39](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [17:04, 15:00](1136 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:22, 14:38](807 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [18:49, 08:44](1113 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:40, 14:55](1201 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:13, 11:24] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:07, 05:15](1080 MB) - -PASS -- COMPILE 'hafsw_intel' [18:14, 17:52] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:14, 05:22](682 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:56, 04:34](1031 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:55, 07:50](725 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:40, 11:55](757 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:50, 13:43](780 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:21, 05:25](463 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:35, 06:44](479 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:32, 03:03](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:14, 08:14](433 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:17, 03:56](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:29, 04:11](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [18:16, 04:55](558 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [12:51, 01:53](399 MB) -PASS -- TEST 'gnv1_nested_intel' [19:15, 06:10](1706 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:14, 13:36] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:16, 13:27](586 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:14, 19:01] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:25, 07:46](601 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:31, 07:53](777 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:15, 17:56] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:41, 06:07](775 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:13, 18:30] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [21:19, 06:30](718 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:31, 06:33](705 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:24, 20:04](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:17, 12:47] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [14:28, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:29, 01:35](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [14:35, 02:30](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [14:35, 02:31](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [13:31, 02:36](641 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [12:28, 02:40](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [11:29, 02:37](751 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [11:34, 02:33](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:11, 06:22](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:24, 05:55](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:32, 02:43](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 04:40](2029 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [12:27, 04:40](2032 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:11, 08:03] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [13:29, 05:39](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:12, 12:50] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [10:26, 02:36](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:16, 03:32] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [09:08, 02:01](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:59, 01:33](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:55, 01:04](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 16:03] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:38, 04:16](1914 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:14, 15:06] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:48, 04:07](1898 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 15:59] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:51, 07:37](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:51, 07:43](1881 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:50, 04:04](1031 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:14, 13:00] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:39, 06:33](1922 MB) - -PASS -- COMPILE 'atmw_intel' [17:13, 16:16] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:12, 02:48](1883 MB) - -PASS -- COMPILE 'atmaero_intel' [16:13, 15:12] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:23, 06:42](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:23, 07:08](3008 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:15, 07:16](3018 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [15:11, 13:15] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:45, 18:17](4491 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:12, 20:02] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:57, 07:42](3205 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 23:22] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:58, 14:26](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:39, 14:42](1937 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:00, 06:55](1073 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:42, 15:32](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:12, 24:01] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:05, 13:54](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:13, 15:45] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:38, 25:37](1942 MB) + +PASS -- COMPILE 's2swa_intel' [21:14, 20:12] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [21:12, 08:39](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:19, 08:37](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:46, 05:50](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:24, 08:21](3246 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:44, 05:31](3172 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:10, 07:16](3461 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [21:03, 08:38](3223 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:02, 07:29](3167 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:29, 08:41](3224 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [25:38, 10:38](3450 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:45, 06:40](3604 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:57, 10:57](4211 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:14, 06:44](4360 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:18, 08:18](3212 MB) + +PASS -- COMPILE 's2sw_intel' [20:12, 19:59] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:54, 05:10](1926 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:01, 05:42](1986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:13, 15:27] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:54, 10:35](3283 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:14, 14:41] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:31, 06:09](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:15, 17:01] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:53, 05:30](1994 MB) + +PASS -- COMPILE 's2s_intel' [18:15, 17:40] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:17, 06:31](2873 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:31, 02:01](2877 MB) +PASS -- TEST 'cpld_restart_c48_intel' [13:24, 01:17](2288 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:11, 21:43] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:55, 08:10](3223 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:12, 22:57] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:04, 15:46](1927 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:58, 07:46](1087 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:06, 17:45](1906 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 15:22] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:52, 26:44](1945 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:11, 15:05] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:46, 04:03](665 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:17, 03:36](1561 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:48, 03:32](1566 MB) +PASS -- TEST 'control_latlon_intel' [08:42, 03:31](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:59, 03:40](1564 MB) +PASS -- TEST 'control_c48_intel' [13:05, 06:40](1569 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:53, 05:49](699 MB) +PASS -- TEST 'control_c192_intel' [13:53, 10:06](1671 MB) +PASS -- TEST 'control_c384_intel' [23:27, 18:50](1929 MB) +PASS -- TEST 'control_c384gdas_intel' [20:39, 14:30](1152 MB) +PASS -- TEST 'control_stochy_intel' [03:29, 02:02](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:33, 01:00](426 MB) +PASS -- TEST 'control_lndp_intel' [04:34, 02:11](620 MB) +PASS -- TEST 'control_iovr4_intel' [04:35, 02:43](616 MB) +PASS -- TEST 'control_iovr5_intel' [04:31, 03:02](616 MB) +PASS -- TEST 'control_p8_intel' [05:08, 03:49](1850 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:26, 03:30](1850 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:15, 03:30](1852 MB) +PASS -- TEST 'control_restart_p8_intel' [03:10, 01:46](1006 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:06, 03:25](1846 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:10, 01:57](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:09, 03:22](1851 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:04, 02:52](1927 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:47, 05:23](1849 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:21, 04:15](1905 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:29, 03:18](1864 MB) +PASS -- TEST 'merra2_thompson_intel' [05:21, 03:38](1857 MB) +PASS -- TEST 'regional_control_intel' [05:41, 04:40](858 MB) +PASS -- TEST 'regional_restart_intel' [04:40, 03:01](837 MB) +PASS -- TEST 'regional_decomp_intel' [05:41, 04:50](859 MB) +PASS -- TEST 'regional_2threads_intel' [03:41, 02:55](1000 MB) +PASS -- TEST 'regional_noquilt_intel' [05:41, 04:27](1176 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:49, 04:51](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 04:47](850 MB) +PASS -- TEST 'regional_wofs_intel' [07:40, 06:19](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [15:12, 14:35] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:20, 07:26](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:20, 03:46](1148 MB) +PASS -- TEST 'rap_decomp_intel' [13:24, 07:35](1005 MB) +PASS -- TEST 'rap_2threads_intel' [11:28, 06:12](1086 MB) +PASS -- TEST 'rap_restart_intel' [05:08, 03:22](876 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:23, 07:25](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:20, 07:38](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:10, 05:17](875 MB) +PASS -- TEST 'hrrr_control_intel' [06:20, 04:06](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:20, 04:19](995 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:20, 03:21](1075 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:41, 02:05](830 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:27, 06:48](998 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:54, 08:41](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:54, 08:29](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [15:16, 14:04] +PASS -- TEST 'control_csawmg_intel' [07:43, 06:47](957 MB) +PASS -- TEST 'control_ras_intel' [04:31, 03:24](653 MB) + +PASS -- COMPILE 'wam_intel' [14:20, 13:37] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:14, 11:56](1646 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:15, 14:49] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:21, 03:21](1847 MB) +PASS -- TEST 'regional_control_faster_intel' [05:48, 04:33](827 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 15:16] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:56, 03:03](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 03:03](1593 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:10](794 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:27, 03:06](795 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:44, 04:25](1098 MB) +PASS -- TEST 'control_ras_debug_intel' [04:37, 03:06](802 MB) +PASS -- TEST 'control_diag_debug_intel' [04:49, 03:12](1660 MB) +PASS -- TEST 'control_debug_p8_intel' [04:42, 03:19](1887 MB) +PASS -- TEST 'regional_debug_intel' [17:38, 16:30](897 MB) +PASS -- TEST 'rap_control_debug_intel' [06:31, 05:12](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:31, 05:07](1173 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 05:23](1177 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 05:22](1177 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 05:07](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:37, 05:37](1261 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:30, 05:21](1176 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:28, 05:16](1182 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:33, 05:11](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:46, 05:13](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:39, 05:04](1176 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:38, 05:09](1180 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:39, 07:56](1175 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:38, 04:58](1170 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:35, 06:11](1180 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:37, 05:11](1176 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:18, 08:51](1178 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:11, 10:57] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:20, 13:22](1672 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:14, 14:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:27, 03:40](1014 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:16, 05:57](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 03:52](879 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:13, 05:26](940 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:12, 02:49](925 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 03:34](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:16, 04:15](775 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:43, 02:10](763 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:03] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:38, 02:11](1088 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:11, 01:18](1064 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:05, 01:53](965 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:11, 14:13] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:19, 04:48](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:10, 10:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:41, 05:02](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 05:00](1049 MB) +PASS -- TEST 'conus13km_debug_intel' [16:33, 14:46](1133 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:32, 15:05](805 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:23, 08:30](1110 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:26, 14:26](1198 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:10, 10:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 05:16](1079 MB) + +PASS -- COMPILE 'hafsw_intel' [18:13, 16:53] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:36, 04:51](685 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:54, 04:06](1035 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:42, 07:19](731 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:17, 11:37](760 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:49, 12:29](785 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:25, 05:16](468 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:38, 06:16](480 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:36, 02:27](370 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:11, 06:59](434 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:01, 03:42](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:18, 03:24](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:14, 04:13](558 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:50, 01:29](400 MB) +PASS -- TEST 'gnv1_nested_intel' [08:29, 05:15](1710 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:11, 12:37] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:20, 12:23](588 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 16:30] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:23, 07:16](603 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:35, 07:22](782 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 17:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:49, 05:25](776 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:11, 16:25] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:25, 06:09](720 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:31, 06:22](712 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:24, 20:01](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:11, 13:35] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:36, 02:42](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:36](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:29, 02:27](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:29, 02:27](641 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:30, 02:32](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:25, 02:34](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:30, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:30, 02:26](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:23, 06:11](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:12, 06:06](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 04:40](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 04:41](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 08:44] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:32, 05:33](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:14, 13:24] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:34, 02:38](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:31] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:14, 02:38](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:55, 01:35](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:56, 01:06](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 15:57] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:13, 04:14](1914 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 14:42] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:34, 04:06](1903 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 15:43] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:59, 08:13](1883 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:02, 07:54](1883 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:52, 03:48](1032 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:10, 12:30] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:50, 06:37](1920 MB) + +PASS -- COMPILE 'atmw_intel' [17:12, 16:34] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:31, 02:26](1884 MB) + +PASS -- COMPILE 'atmaero_intel' [15:13, 14:43] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:31, 06:24](3118 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 07:11](3009 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:20, 07:16](3019 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:12, 12:12] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:55, 18:21](4480 MB) SYNOPSIS: -Starting Date/Time: 20240819 18:26:08 -Ending Date/Time: 20240819 20:20:13 -Total Time: 01h:55m:26s +Starting Date/Time: 20240821 16:22:45 +Ending Date/Time: 20240821 18:02:09 +Total Time: 01h:40m:40s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index d4da07de43..1e3c9edb0e 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -ed15c21712242a15f47d8e809925de16e2a3c5d6 +3df9dd2e0931e3fda968f8f9949f530a1b7983e0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) + d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) @@ -24,376 +24,432 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240819 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_537572 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240821 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1568042 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nems +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:10, 12:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:20, 05:40](3316 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:10, 16:05] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:05, 17:24](1973 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:19, 18:16](2159 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:13, 08:17](1249 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:03, 19:33](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:10, 15:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:46, 17:04](1972 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:57] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:01, 23:26](1890 MB) - -PASS -- COMPILE 's2swa_intel' [13:10, 12:30] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:17, 06:00](3359 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:25, 05:59](3349 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:46, 03:37](3260 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:17, 06:01](3367 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:46, 03:39](3271 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:14, 05:34](3635 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:09, 06:26](3344 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:07, 04:48](3201 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:25, 06:02](3355 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:05, 10:30](3536 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:32, 06:31](3624 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:26, 09:38](4293 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:24, 06:04](4385 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:14, 05:25](3335 MB) - -PASS -- COMPILE 's2sw_intel' [12:10, 11:42] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:54, 04:50](1995 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:02, 04:28](2038 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:55] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:04, 08:36](3371 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:23] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:00, 05:48](1985 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:10, 11:05] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:05, 04:25](2023 MB) - -PASS -- COMPILE 's2s_intel' [11:10, 10:57] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:41, 09:03](3050 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:38, 02:50](2991 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:42, 01:35](2483 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:12, 16:42] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:21, 05:48](3357 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:15] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:06, 17:42](2020 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:16, 08:24](1271 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:07, 20:07](1915 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:28] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:54, 26:37](1953 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 10:26] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:36, 04:05](703 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:04, 03:06](1607 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:15, 03:09](1605 MB) -PASS -- TEST 'control_latlon_intel' [05:57, 03:01](1598 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:05, 03:06](1596 MB) -PASS -- TEST 'control_c48_intel' [08:57, 07:33](1726 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 06:33](856 MB) -PASS -- TEST 'control_c192_intel' [14:20, 10:54](1736 MB) -PASS -- TEST 'control_c384_intel' [15:19, 11:52](1976 MB) -PASS -- TEST 'control_c384gdas_intel' [13:13, 08:44](1367 MB) -PASS -- TEST 'control_stochy_intel' [04:25, 01:41](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:36, 01:04](496 MB) -PASS -- TEST 'control_lndp_intel' [02:25, 01:36](658 MB) -PASS -- TEST 'control_iovr4_intel' [05:34, 02:30](656 MB) -PASS -- TEST 'control_iovr5_intel' [05:33, 02:32](652 MB) -PASS -- TEST 'control_p8_intel' [06:18, 03:19](1862 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:24, 03:21](1861 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:25, 03:13](1887 MB) -PASS -- TEST 'control_restart_p8_intel' [02:49, 01:47](1130 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:17, 03:16](1880 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:58, 01:53](1158 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:17, 03:26](1879 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:58, 03:01](1967 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:53, 05:28](1896 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:55, 04:09](1959 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:04, 03:20](1895 MB) -PASS -- TEST 'merra2_thompson_intel' [05:00, 03:28](1896 MB) -PASS -- TEST 'regional_control_intel' [06:42, 05:25](1097 MB) -PASS -- TEST 'regional_restart_intel' [04:39, 02:53](1087 MB) -PASS -- TEST 'regional_decomp_intel' [06:40, 05:43](1088 MB) -PASS -- TEST 'regional_2threads_intel' [04:41, 03:31](1081 MB) -PASS -- TEST 'regional_noquilt_intel' [06:43, 05:20](1382 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:42, 06:09](1102 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:40, 05:22](1093 MB) -PASS -- TEST 'regional_wofs_intel' [09:38, 08:12](1902 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 10:24] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:39, 07:50](1102 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:06, 04:15](1256 MB) -PASS -- TEST 'rap_decomp_intel' [09:33, 08:13](1036 MB) -PASS -- TEST 'rap_2threads_intel' [08:34, 07:21](1165 MB) -PASS -- TEST 'rap_restart_intel' [06:40, 04:07](1106 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:40, 07:57](1084 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:33, 08:21](1045 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:46, 05:54](1133 MB) -PASS -- TEST 'hrrr_control_intel' [05:38, 04:14](1041 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:37, 04:12](1028 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:43, 03:46](1103 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:27, 02:10](1004 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:43, 07:53](1099 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:37](1987 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:32, 09:22](2057 MB) - -PASS -- COMPILE 'csawmg_intel' [10:10, 09:53] -PASS -- TEST 'control_csawmg_intel' [09:41, 06:13](1020 MB) -PASS -- TEST 'control_ras_intel' [06:23, 03:17](746 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 04:17] -PASS -- TEST 'control_csawmg_gnu' [11:54, 10:59](742 MB) - -PASS -- COMPILE 'wam_intel' [10:10, 09:50] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:51, 11:13](1671 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 10:02] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:58, 02:47](1853 MB) -PASS -- TEST 'regional_control_faster_intel' [05:38, 04:51](1084 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 07:26] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:45, 02:45](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:42, 02:40](1616 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:22, 03:04](832 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:47](828 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:36, 04:20](1147 MB) -PASS -- TEST 'control_ras_debug_intel' [03:21, 02:48](835 MB) -PASS -- TEST 'control_diag_debug_intel' [03:43, 02:44](1684 MB) -PASS -- TEST 'control_debug_p8_intel' [03:38, 03:03](1895 MB) -PASS -- TEST 'regional_debug_intel' [18:35, 17:38](1084 MB) -PASS -- TEST 'rap_control_debug_intel' [07:22, 05:06](1217 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:54](1212 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 05:02](1223 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:22, 08:54](1216 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 05:04](1220 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:40, 05:21](1303 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:24](1221 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:08](1217 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:22, 05:08](1225 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:20, 05:04](1227 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 05:00](1209 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 05:05](1209 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 08:12](1211 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:54](1208 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 06:24](1221 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:11](1224 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:38, 08:41](1229 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:15] -PASS -- TEST 'control_csawmg_debug_gnu' [03:35, 02:20](728 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:55] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:41, 13:46](1668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:43] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:03, 03:57](1129 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:37, 06:30](1051 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:46, 03:25](982 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:34, 06:11](1086 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:38, 03:16](964 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:31, 04:16](932 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:40, 04:57](1032 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:48, 01:53](933 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 09:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:02, 02:04](1186 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:45, 00:56](1117 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:15](1104 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 09:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:43, 04:16](989 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:49] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:25, 04:58](1095 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:24, 04:56](1096 MB) -PASS -- TEST 'conus13km_debug_intel' [22:59, 15:09](1226 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [22:57, 15:20](941 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:49, 08:35](1169 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:49, 15:24](1315 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 04:38] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:26, 05:08](1138 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 11:27] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [11:31, 05:05](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:36, 05:55](1090 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:30, 07:09](814 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [21:26, 13:53](850 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:59, 15:24](880 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:10, 05:37](490 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:35, 06:52](496 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:47, 02:46](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:52, 07:26](484 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:47, 03:42](521 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:47, 03:34](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:55, 04:05](577 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:14](402 MB) -PASS -- TEST 'gnv1_nested_intel' [06:41, 04:15](1740 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:12, 05:23] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 13:24](595 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:08] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:03, 08:42](661 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:08, 08:51](746 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:19] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:32, 06:29](732 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:01] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:49](796 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:17, 06:37](808 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:06, 16:19](1220 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:50] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:45](1167 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:39](1110 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:21, 02:37](1026 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:20, 02:37](1029 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:37](1027 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:43](1177 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:42](1165 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:37](1029 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:25, 06:15](1072 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:18, 06:08](1037 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:43](1163 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:22, 03:56](2491 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:22, 03:59](2467 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:21] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 06:19](1083 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:40] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:42](1149 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:09] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:45](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:55](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:26, 00:31](323 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:12, 10:50] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 03:43](1988 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 10:37] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:13, 03:39](1975 MB) - -PASS -- COMPILE 'atml_intel' [11:11, 10:47] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:08, 04:23](1854 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:06, 04:36](1868 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:44, 02:24](1097 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:46] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:57, 05:49](1860 MB) - -PASS -- COMPILE 'atmw_intel' [11:12, 10:34] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:52, 01:50](1930 MB) - -PASS -- COMPILE 'atmaero_intel' [11:11, 10:23] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:00, 04:11](3211 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:58, 05:01](3101 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 05:09](3090 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 05:27] ( 884 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [05:11, 04:34] -PASS -- TEST 'control_c48_gnu' [12:39, 11:24](1513 MB) -PASS -- TEST 'control_stochy_gnu' [06:24, 03:31](495 MB) -PASS -- TEST 'control_ras_gnu' [08:23, 04:50](509 MB) -PASS -- TEST 'control_p8_gnu' [07:55, 04:54](1433 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:48, 04:43](1448 MB) -PASS -- TEST 'control_flake_gnu' [13:23, 10:25](538 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:26] -PASS -- TEST 'rap_control_gnu' [12:34, 10:56](811 MB) -PASS -- TEST 'rap_decomp_gnu' [12:32, 11:10](809 MB) -PASS -- TEST 'rap_2threads_gnu' [11:36, 09:59](920 MB) -PASS -- TEST 'rap_restart_gnu' [07:40, 05:34](574 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:40, 10:57](814 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:33, 11:25](812 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:47, 07:59](576 MB) -PASS -- TEST 'hrrr_control_gnu' [06:37, 05:38](812 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 05:41](797 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:31, 05:04](910 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:29, 05:37](807 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:24, 02:57](562 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:25, 02:56](650 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:49, 10:43](805 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 06:48] -PASS -- TEST 'control_diag_debug_gnu' [04:49, 01:42](1275 MB) -PASS -- TEST 'regional_debug_gnu' [13:38, 11:31](749 MB) -PASS -- TEST 'rap_control_debug_gnu' [05:24, 02:42](826 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [05:23, 02:42](826 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [05:21, 02:43](833 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:41](833 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:38, 02:55](914 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:22, 04:13](826 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:42](828 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:39](822 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:41](458 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:21, 01:49](454 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:51](1430 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:42](829 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 03:00](828 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:39, 04:20](833 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:35] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:10] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:29, 09:33](702 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:33, 05:02](708 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:34](750 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:32, 04:36](747 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:32, 05:03](704 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:36, 07:05](563 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:22, 02:37](539 MB) -PASS -- TEST 'conus13km_control_gnu' [06:01, 03:14](873 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:46, 06:16](873 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:45, 01:55](559 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:10, 09:48] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:43, 05:41](730 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:11] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:24, 02:32](715 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [06:24, 03:49](710 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:49, 06:59](890 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:44, 07:09](581 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:41, 07:59](895 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:40, 07:10](958 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:12, 07:05] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:24, 02:38](733 MB) - -PASS -- COMPILE 's2swa_gnu' [17:11, 16:19] - -PASS -- COMPILE 's2s_gnu' [17:11, 16:05] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:11, 07:24](1513 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:14] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 16:09] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [20:59, 19:25](1448 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:12] - -PASS -- COMPILE 'datm_cdeps_gnu' [23:13, 15:56] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 03:02](695 MB) +PASS -- COMPILE 's2swa_32bit_intel' [25:14, 13:24] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:11, 06:19](3301 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:16, 17:12] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:17, 17:29](1983 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:28, 18:18](2174 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:23, 08:22](1229 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:59, 19:31](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [28:16, 16:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:47, 17:11](1963 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:13, 06:15] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [41:16, 23:37](1933 MB) + +PASS -- COMPILE 's2swa_intel' [24:14, 13:00] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:16, 05:56](3326 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:29, 05:57](3350 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:28, 03:36](3252 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:16, 05:58](3359 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:28, 03:41](3278 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:18, 05:32](3635 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:13, 06:03](3313 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:18, 04:53](3217 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:27, 06:00](3330 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [23:19, 10:38](3525 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:51, 06:36](3628 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [29:50, 10:16](4305 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:19, 06:48](4395 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [16:19, 05:27](3301 MB) + +PASS -- COMPILE 's2sw_intel' [24:14, 12:33] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:14, 05:01](1993 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:26, 04:30](2036 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:14, 06:12] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [26:24, 08:47](3361 MB) + +PASS -- COMPILE 's2sw_debug_intel' [18:14, 06:29] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [23:02, 05:57](1978 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [22:14, 11:32] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [17:16, 04:24](2038 MB) + +PASS -- COMPILE 's2s_intel' [22:14, 11:07] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [21:45, 09:03](3058 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [15:46, 02:40](3049 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:49, 01:35](2499 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:50] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:12, 05:49](3327 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:24] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:05, 17:38](2011 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:31, 08:26](1273 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:14, 20:05](1900 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [22:14, 06:09] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:16, 25:40](1960 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [23:17, 10:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:25, 03:23](710 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:45, 02:54](1598 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:46, 03:02](1608 MB) +PASS -- TEST 'control_latlon_intel' [08:42, 03:01](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:56, 03:00](1597 MB) +PASS -- TEST 'control_c48_intel' [12:55, 07:36](1714 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:31, 06:32](854 MB) +PASS -- TEST 'control_c192_intel' [15:10, 12:01](1757 MB) +PASS -- TEST 'control_c384_intel' [15:09, 10:46](1969 MB) +PASS -- TEST 'control_c384gdas_intel' [12:25, 08:03](1376 MB) +PASS -- TEST 'control_stochy_intel' [04:27, 01:38](661 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:28, 01:00](505 MB) +PASS -- TEST 'control_lndp_intel' [04:27, 01:33](659 MB) +PASS -- TEST 'control_iovr4_intel' [05:31, 02:29](659 MB) +PASS -- TEST 'control_iovr5_intel' [05:26, 02:29](654 MB) +PASS -- TEST 'control_p8_intel' [06:04, 03:06](1894 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:12, 03:03](1904 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:58, 02:57](1898 MB) +PASS -- TEST 'control_restart_p8_intel' [06:44, 01:44](1130 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:58, 03:02](1895 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:44](1169 MB) +PASS -- TEST 'control_decomp_p8_intel' [11:50, 03:12](1887 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:45, 02:55](1967 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:43, 05:21](1888 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:53, 04:03](1955 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:53, 03:06](1892 MB) +PASS -- TEST 'merra2_thompson_intel' [09:49, 03:24](1907 MB) +PASS -- TEST 'regional_control_intel' [11:36, 05:15](1087 MB) +PASS -- TEST 'regional_restart_intel' [03:45, 02:55](1091 MB) +PASS -- TEST 'regional_decomp_intel' [11:34, 05:38](1095 MB) +PASS -- TEST 'regional_2threads_intel' [09:37, 03:22](1084 MB) +PASS -- TEST 'regional_noquilt_intel' [10:41, 05:18](1395 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:41, 05:16](1100 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:35, 05:20](1097 MB) +PASS -- TEST 'regional_wofs_intel' [08:42, 06:48](1909 MB) + +PASS -- COMPILE 'rrfs_intel' [23:16, 10:21] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:40, 07:51](1101 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:19, 04:04](1257 MB) +PASS -- TEST 'rap_decomp_intel' [09:37, 08:13](1041 MB) +PASS -- TEST 'rap_2threads_intel' [08:37, 07:24](1169 MB) +PASS -- TEST 'rap_restart_intel' [04:46, 04:04](1101 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:44, 07:46](1104 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:39, 08:13](1043 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:46, 05:55](1135 MB) +PASS -- TEST 'hrrr_control_intel' [05:42, 03:58](1034 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 04:06](1036 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:37, 03:41](1101 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:10](1004 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:49, 07:40](1098 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:17](1996 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:29, 09:08](2068 MB) + +PASS -- COMPILE 'csawmg_intel' [20:16, 09:53] +PASS -- TEST 'control_csawmg_intel' [12:50, 06:09](1016 MB) +PASS -- TEST 'control_ras_intel' [06:30, 03:16](746 MB) + +PASS -- COMPILE 'csawmg_gnu' [15:14, 04:09] +PASS -- TEST 'control_csawmg_gnu' [09:44, 08:25](739 MB) + +PASS -- COMPILE 'wam_intel' [21:17, 09:53] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:54, 11:12](1664 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:16, 09:59] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:01, 02:47](1886 MB) +PASS -- TEST 'regional_control_faster_intel' [05:47, 04:52](1086 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:15, 07:30] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:54, 02:45](1622 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:58, 02:35](1621 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:30, 03:05](836 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:30, 02:46](833 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:51, 04:15](1142 MB) +PASS -- TEST 'control_ras_debug_intel' [08:32, 02:52](841 MB) +PASS -- TEST 'control_diag_debug_intel' [11:11, 02:46](1685 MB) +PASS -- TEST 'control_debug_p8_intel' [11:01, 03:07](1888 MB) +PASS -- TEST 'regional_debug_intel' [25:50, 17:37](1102 MB) +PASS -- TEST 'rap_control_debug_intel' [09:30, 05:00](1220 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:34, 04:56](1212 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:33, 05:01](1225 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:32, 05:02](1218 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:29, 05:09](1225 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:52, 05:17](1305 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:26, 05:02](1219 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:25, 05:12](1208 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:25, 05:06](1223 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:04](1218 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:26, 04:56](1217 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 05:03](1220 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:27, 08:04](1214 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:59](1213 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 06:00](1221 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:25, 04:56](1220 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:45, 08:41](1221 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:11, 04:05] +PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:28](723 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:09] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:55, 13:27](1664 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 03:51](1128 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:35, 06:26](1054 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:42, 03:23](989 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 06:09](1091 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:09](958 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:35](930 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:42, 04:56](1042 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 01:52](930 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:13, 09:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:05, 02:08](1189 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:58, 00:52](1117 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:50, 01:13](1098 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:12, 10:03] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 04:12](983 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 05:05] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1096 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:55](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [19:50, 15:37](1244 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:50, 15:09](941 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:44, 08:25](1162 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 14:47](1315 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:13, 04:40] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 04:59](1139 MB) + +PASS -- COMPILE 'hafsw_intel' [15:13, 11:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:17, 04:55](728 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:31, 05:40](1101 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:23, 06:54](820 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:23, 13:37](843 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:27, 15:13](871 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:01, 05:27](488 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 06:38](510 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:46, 02:38](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:11, 07:04](483 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:48, 03:39](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:56, 03:30](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:02](582 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:29, 01:10](407 MB) +PASS -- TEST 'gnv1_nested_intel' [05:37, 04:02](1734 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:13, 05:11] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:07](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:13, 11:06] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:01, 08:34](646 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:11, 08:41](702 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:13, 11:27] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:40, 06:24](723 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:14, 10:51] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:22, 06:58](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 06:26](804 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:58, 16:07](1219 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:12, 06:25] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:43](1152 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:36](1114 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:35](1036 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:39](1035 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:42](1013 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:42](1157 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:21, 02:38](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:37](1034 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:38, 06:24](1074 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:26, 06:01](1050 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:42](1169 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:54](2508 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:54](2510 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:12, 03:26] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:23](1093 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:12, 06:39] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:43](1169 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 01:08] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:34, 00:45](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:25, 00:48](321 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:27, 00:33](329 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:13, 10:34] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:16, 03:40](1983 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:13, 10:17] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:06, 03:36](1962 MB) + +PASS -- COMPILE 'atml_intel' [18:12, 10:44] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:06, 04:23](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:03, 04:19](1862 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:57, 02:24](1097 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:13, 05:51] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:57, 05:46](1891 MB) + +PASS -- COMPILE 'atmw_intel' [16:12, 10:53] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:50, 01:53](1895 MB) + +PASS -- COMPILE 'atmaero_intel' [15:13, 10:28] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:01, 04:22](3182 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:57, 04:55](3104 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:54, 05:05](3081 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:12, 04:52] ( 884 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [07:12, 04:45] +PASS -- TEST 'control_c48_gnu' [12:40, 11:16](1510 MB) +PASS -- TEST 'control_stochy_gnu' [08:26, 03:29](490 MB) +PASS -- TEST 'control_ras_gnu' [09:23, 04:54](508 MB) +PASS -- TEST 'control_p8_gnu' [09:58, 04:53](1454 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [09:55, 04:37](1455 MB) +PASS -- TEST 'control_flake_gnu' [16:27, 10:24](533 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:12, 04:33] +PASS -- TEST 'rap_control_gnu' [16:42, 11:03](846 MB) +PASS -- TEST 'rap_decomp_gnu' [16:39, 11:00](844 MB) +PASS -- TEST 'rap_2threads_gnu' [14:43, 09:52](917 MB) +PASS -- TEST 'rap_restart_gnu' [07:48, 05:29](575 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [15:44, 10:48](810 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [16:43, 11:01](808 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:45, 08:08](576 MB) +PASS -- TEST 'hrrr_control_gnu' [11:48, 05:38](812 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [11:50, 05:35](797 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:42, 05:10](909 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [10:41, 05:39](811 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:33, 02:57](563 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:30, 02:51](657 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [15:55, 10:32](844 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:12, 06:38] +PASS -- TEST 'control_diag_debug_gnu' [06:55, 01:40](1269 MB) +PASS -- TEST 'regional_debug_gnu' [16:40, 11:28](740 MB) +PASS -- TEST 'rap_control_debug_gnu' [07:24, 02:39](819 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [07:23, 02:34](819 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [06:24, 02:36](827 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [05:26, 02:40](825 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:46, 02:55](905 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:35, 04:09](823 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:26, 02:40](820 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:22, 02:37](820 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:35](456 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:21, 01:50](455 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:45, 01:50](1428 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:37, 03:22](822 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 03:07](826 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:42, 04:24](826 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:12, 02:37] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:18] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:33, 09:35](705 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:37, 05:04](703 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:39, 08:40](750 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:34, 04:33](747 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:36, 05:09](706 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:42, 07:03](555 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:27, 02:36](540 MB) +PASS -- TEST 'conus13km_control_gnu' [07:10, 03:13](873 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:53, 06:15](876 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 02:19](567 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:12, 09:49] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:49, 05:45](724 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:39] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:24, 02:35](715 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:25, 02:31](710 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:58, 07:09](892 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [10:52, 07:06](580 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:45, 08:00](891 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:47, 07:00](960 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 06:39] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:27, 02:36](734 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 16:32] + +PASS -- COMPILE 's2s_gnu' [17:12, 16:05] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:45, 07:20](1518 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:13] + +PASS -- COMPILE 's2sw_pdlib_gnu' [20:12, 16:17] +FAILED: TEST TIMED OUT -- TEST 'cpld_control_pdlib_p8_gnu' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 03:15] + +PASS -- COMPILE 'datm_cdeps_gnu' [18:11, 15:56] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:24, 03:04](689 MB) SYNOPSIS: -Starting Date/Time: 20240819 23:11:40 -Ending Date/Time: 20240820 00:49:59 -Total Time: 01h:38m:44s +Starting Date/Time: 20240821 19:42:31 +Ending Date/Time: 20240821 22:11:33 +Total Time: 02h:29m:20s Compiles Completed: 57/57 -Tests Completed: 243/243 +Tests Completed: 242/243 +Failed Tests: +* TEST cpld_control_pdlib_p8_gnu: FAILED: TEST TIMED OUT +-- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1568042/cpld_control_pdlib_p8_gnu/err + +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 HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +3df9dd2e0931e3fda968f8f9949f530a1b7983e0 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240821 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2832122 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-n) - RUN SINGLE TEST: cpld_control_pdlib_p8 +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:24] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:03, 24:00](1446 MB) + +SYNOPSIS: +Starting Date/Time: 20240821 22:32:51 +Ending Date/Time: 20240821 23:16:19 +Total Time: 00h:43m:40s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 9407438f00..c5a0f691c7 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: -ed15c21712242a15f47d8e809925de16e2a3c5d6 +3df9dd2e0931e3fda968f8f9949f530a1b7983e0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) + d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) @@ -35,375 +35,376 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240819 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1519162 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240821 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3147877 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [12:07, 12:07] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:26, 07:39](2109 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:58, 16:58] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:35, 13:48](2007 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:14, 14:07](2278 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:47, 06:38](1311 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:52, 15:05](1906 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:09, 17:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:17, 13:53](1992 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 06:12] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:48, 22:04](1980 MB) - -PASS -- COMPILE 's2swa_intel' [12:05, 12:05] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:36, 07:50](2183 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:24, 07:44](2172 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:18, 04:28](1999 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:26, 07:43](2198 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [29:12, 28:14](1745 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:22, 08:51](2549 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:25, 07:43](2163 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:49, 06:26](2093 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:55, 08:14](2178 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:46, 15:20](2984 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:49, 06:05](2924 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:47, 12:16](3833 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:41, 07:20](3633 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:38, 05:55](2154 MB) - -PASS -- COMPILE 's2sw_intel' [11:50, 11:50] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:56, 07:14](2020 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:22, 04:43](2083 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:35, 05:35] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [07:50, 07:05](2199 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:14, 05:14] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:30, 04:54](2045 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:05, 10:05] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:06, 04:23](2074 MB) - -PASS -- COMPILE 's2s_intel' [09:54, 09:54] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:28, 07:01](3052 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:42, 02:10](3039 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:27, 01:12](2477 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:06, 14:05] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:21, 07:35](2181 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:28, 16:28] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:28, 13:49](2036 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:20, 06:54](1368 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:01, 15:25](1962 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:53, 04:53] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:41, 22:58](2007 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:32, 09:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:06, 02:54](710 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [02:48, 02:28](1604 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:53, 02:33](1611 MB) -PASS -- TEST 'control_latlon_intel' [02:52, 02:30](1618 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:01, 02:31](1600 MB) -PASS -- TEST 'control_c48_intel' [08:01, 07:33](1705 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:45, 06:29](837 MB) -PASS -- TEST 'control_c192_intel' [09:43, 09:13](1752 MB) -PASS -- TEST 'control_c384_intel' [10:26, 09:20](1986 MB) -PASS -- TEST 'control_c384gdas_intel' [08:44, 07:23](1507 MB) -PASS -- TEST 'control_stochy_intel' [01:40, 01:28](660 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:16, 00:57](531 MB) -PASS -- TEST 'control_lndp_intel' [01:37, 01:28](668 MB) -PASS -- TEST 'control_iovr4_intel' [02:32, 02:15](665 MB) -PASS -- TEST 'control_iovr5_intel' [02:17, 02:07](668 MB) -PASS -- TEST 'control_p8_intel' [03:20, 02:37](1893 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:21, 02:40](1907 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:15, 02:39](1894 MB) -PASS -- TEST 'control_restart_p8_intel' [02:36, 01:45](1151 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:11, 02:40](1899 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:07, 01:32](1203 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:15, 02:40](1901 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:17, 02:30](1979 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:09, 04:41](1906 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:29, 03:42](1972 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:23, 02:47](1914 MB) -PASS -- TEST 'merra2_thompson_intel' [03:30, 02:52](1908 MB) -PASS -- TEST 'regional_control_intel' [05:04, 04:45](1200 MB) -PASS -- TEST 'regional_restart_intel' [02:58, 02:39](1169 MB) -PASS -- TEST 'regional_decomp_intel' [05:24, 05:06](1185 MB) -PASS -- TEST 'regional_2threads_intel' [03:18, 03:00](1152 MB) -PASS -- TEST 'regional_noquilt_intel' [04:44, 04:24](1522 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:09, 04:47](1192 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:00, 04:39](1194 MB) -PASS -- TEST 'regional_wofs_intel' [08:18, 07:59](2077 MB) - -PASS -- COMPILE 'rrfs_intel' [10:37, 10:37] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:06, 07:26](1216 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:52, 04:09](1352 MB) -PASS -- TEST 'rap_decomp_intel' [08:34, 07:58](1159 MB) -PASS -- TEST 'rap_2threads_intel' [07:59, 07:23](1370 MB) -PASS -- TEST 'rap_restart_intel' [04:41, 03:58](1162 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:05, 07:27](1233 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 07:55](1152 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 05:43](1210 MB) -PASS -- TEST 'hrrr_control_intel' [04:26, 03:48](1108 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:38, 04:02](1051 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:36, 08:54](1116 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:25, 02:06](1045 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:46, 06:59](1203 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:17, 08:09](2015 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:58, 07:44](2172 MB) - -PASS -- COMPILE 'csawmg_intel' [08:03, 08:03] -PASS -- TEST 'control_csawmg_intel' [06:03, 05:42](1054 MB) -PASS -- TEST 'control_ras_intel' [03:22, 03:07](832 MB) - -PASS -- COMPILE 'csawmg_gnu' [03:59, 03:59] -PASS -- TEST 'control_csawmg_gnu' [07:48, 07:26](1080 MB) - -PASS -- COMPILE 'wam_intel' [09:14, 09:14] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:19, 09:56](1675 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:05, 09:05] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:15, 02:32](1893 MB) -PASS -- TEST 'regional_control_faster_intel' [04:42, 04:23](1191 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:02, 07:02] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:37, 02:17](1644 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:46, 02:14](1649 MB) -PASS -- TEST 'control_stochy_debug_intel' [02:48, 02:42](842 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:36, 02:23](843 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:02, 03:41](1158 MB) -PASS -- TEST 'control_ras_debug_intel' [02:38, 02:25](856 MB) -PASS -- TEST 'control_diag_debug_intel' [02:39, 02:19](1699 MB) -PASS -- TEST 'control_debug_p8_intel' [02:59, 02:43](1926 MB) -PASS -- TEST 'regional_debug_intel' [16:13, 15:57](1145 MB) -PASS -- TEST 'rap_control_debug_intel' [04:23, 04:16](1234 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:37, 04:25](1219 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:26, 04:13](1229 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:37, 04:25](1231 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:33, 04:21](1228 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:39, 04:25](1322 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:43, 04:36](1228 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:27, 04:19](1237 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:31, 04:22](1232 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:28, 04:17](1234 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:22, 04:10](1230 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:28, 04:18](1232 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:48, 07:37](1234 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:32, 04:21](1228 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:19, 05:06](1249 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:51, 04:38](1236 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:53, 07:17](1235 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:20, 05:20] -PASS -- TEST 'control_csawmg_debug_gnu' [02:24, 02:09](1049 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:30, 04:30] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:30, 08:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:46, 03:13](1241 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:57, 05:26](1144 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:39, 02:52](1020 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:37, 05:05](1291 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:45, 07:59](1033 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:48, 03:03](993 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:39, 04:05](1093 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:52, 01:35](970 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:57, 07:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:10, 01:46](1282 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:04, 00:44](1196 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:23, 01:03](1144 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:30, 09:29] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:20, 03:59](1091 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:28, 05:28] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:13, 04:03](1104 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:06, 03:54](1105 MB) -PASS -- TEST 'conus13km_debug_intel' [12:26, 12:03](1350 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:08, 12:43](1006 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:31, 07:12](1251 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:30, 12:11](1417 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:15, 04:15] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:31, 04:19](1175 MB) - -PASS -- COMPILE 'hafsw_intel' [10:08, 10:08] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:14, 05:22](862 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:13, 04:56](1264 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:29, 06:25](936 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:58, 14:02](953 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:18, 15:12](997 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:58, 05:20](598 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:57, 06:51](610 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:11, 02:36](436 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:16, 07:37](546 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:29, 03:55](611 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:20, 03:42](606 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:24, 04:48](666 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:33, 01:16](448 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:47, 04:46] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:35, 11:53](638 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:57, 09:57] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:26, 15:43](732 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:54, 16:01](840 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:39, 09:39] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:22, 10:04](819 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:04, 10:04] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:26, 05:31](932 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:30, 05:35](924 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:56, 16:22](1341 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [05:49, 05:49] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:02, 02:54](1128 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:24, 01:18](1100 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:13, 02:07](1009 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 03:11](1001 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:12, 02:09](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:23, 03:16](1125 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:19, 02:12](1158 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:14, 02:07](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:34, 04:57](1155 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:30, 04:52](1147 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:15, 02:11](1163 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:10, 03:05](2450 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:13, 03:06](2396 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:20, 05:20] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 05:11](1070 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:16, 05:16] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:09, 03:05](1143 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:05, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:09, 00:54](336 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:02, 00:49](559 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:53, 00:36](576 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:29, 09:29] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:14, 03:31](2016 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:22, 09:22] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:19, 03:35](1996 MB) - -PASS -- COMPILE 'atml_intel' [09:36, 09:36] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:11, 06:23](1892 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:50, 06:00](1888 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:25, 02:58](1143 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:39, 04:39] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:32, 05:42](1929 MB) - -PASS -- COMPILE 'atmw_intel' [09:31, 09:31] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:38, 02:00](1947 MB) - -PASS -- COMPILE 'atmaero_intel' [10:04, 10:04] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:30, 03:57](2013 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:01, 04:23](1801 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [04:59, 04:28](1819 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:46, 04:46] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [17:42, 16:36](4575 MB) - -PASS -- COMPILE 'atm_gnu' [04:54, 04:54] -PASS -- TEST 'control_c48_gnu' [10:06, 09:34](1527 MB) -PASS -- TEST 'control_stochy_gnu' [02:36, 02:26](723 MB) -PASS -- TEST 'control_ras_gnu' [03:56, 03:44](728 MB) -PASS -- TEST 'control_p8_gnu' [04:42, 04:02](1719 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:13, 03:40](1721 MB) -PASS -- TEST 'control_flake_gnu' [05:02, 04:50](812 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:45, 04:44] -PASS -- TEST 'rap_control_gnu' [08:57, 08:25](1089 MB) -PASS -- TEST 'rap_decomp_gnu' [08:45, 08:13](1085 MB) -PASS -- TEST 'rap_2threads_gnu' [08:03, 07:26](1137 MB) -PASS -- TEST 'rap_restart_gnu' [04:54, 04:11](884 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:45, 08:10](1083 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:55, 08:21](1080 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:30, 05:52](884 MB) -PASS -- TEST 'hrrr_control_gnu' [04:36, 04:02](1068 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:54, 04:24](1138 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:22, 03:45](1043 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:57, 04:14](1069 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:23, 02:08](881 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:29, 02:10](932 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:47, 08:03](1079 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:49, 06:49] -PASS -- TEST 'control_diag_debug_gnu' [01:42, 01:18](1629 MB) -PASS -- TEST 'regional_debug_gnu' [06:53, 06:34](1151 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:07](1096 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:08, 01:55](1089 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:28, 02:08](1093 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:20, 02:08](1092 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:30, 02:13](1273 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:38, 03:27](1095 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:18, 02:06](1094 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:07, 02:00](1092 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:19, 01:13](725 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:37, 01:27](720 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:55, 01:32](1720 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:16, 02:08](1098 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:31, 02:19](1098 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:04, 03:25](1099 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:22, 02:22] -PASS -- TEST 'control_wam_debug_gnu' [05:56, 05:33](1560 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:04, 04:04] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:29, 07:53](962 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:53, 04:07](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:27, 06:45](968 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:39, 03:50](881 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:44, 03:57](949 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:31, 05:47](864 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:18, 02:00](866 MB) -PASS -- TEST 'conus13km_control_gnu' [02:55, 02:32](1272 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:41, 01:13](1182 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:50, 01:29](928 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:40, 08:40] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:11, 04:36](993 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:23, 06:23] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:27, 02:14](976 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:06, 01:57](970 MB) -PASS -- TEST 'conus13km_debug_gnu' [05:58, 05:36](1285 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:24, 06:00](960 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:08, 03:43](1195 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:20, 05:59](1353 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:36, 07:29] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:26, 02:11](1002 MB) - -PASS -- COMPILE 's2swa_gnu' [17:30, 17:30] - -PASS -- COMPILE 's2s_gnu' [16:16, 16:16] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:09, 05:23](3086 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:31, 03:31] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:48, 16:48] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:30, 26:41](3019 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:00, 04:00] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:49, 12:07](3056 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [17:02, 17:02] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:29, 02:22](774 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:13] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:41, 08:33](2120 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:11, 14:21](1994 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:30, 14:52](2318 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:30, 07:26](1297 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:11, 15:45](1906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:11, 15:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:53, 13:58](1980 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:44] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:32, 21:59](1964 MB) + +PASS -- COMPILE 's2swa_intel' [12:11, 11:24] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:20, 08:54](2179 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:37, 08:35](2187 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:32, 04:52](1965 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:20, 09:04](2206 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:32, 05:14](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:23, 10:11](2543 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:16, 08:38](2172 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:30, 07:10](2075 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:39, 08:41](2183 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [25:05, 15:43](2980 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:28, 07:03](2918 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:19, 11:31](3832 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:55, 07:59](3636 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:29, 06:29](2146 MB) + +PASS -- COMPILE 's2sw_intel' [11:11, 10:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:13, 08:13](2019 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:19, 05:21](2089 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:06] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:29, 08:28](2201 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:32] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:16, 05:51](2050 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:11, 10:10] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:18, 04:50](2075 MB) + +PASS -- COMPILE 's2s_intel' [11:11, 10:24] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:59, 08:16](3061 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:59, 03:08](3034 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:54, 02:18](2489 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:34] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:06, 07:26](2173 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:32] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:00, 14:51](2031 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:15, 07:32](1384 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:54, 15:53](1959 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:49] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:04, 23:51](2022 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [10:25, 02:54](712 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:35, 02:31](1607 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:39, 02:36](1624 MB) +PASS -- TEST 'control_latlon_intel' [09:30, 02:30](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:38, 02:32](1609 MB) +PASS -- TEST 'control_c48_intel' [13:36, 06:56](1704 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:30, 05:49](831 MB) +PASS -- TEST 'control_c192_intel' [16:47, 09:08](1758 MB) +PASS -- TEST 'control_c384_intel' [15:37, 09:36](1993 MB) +PASS -- TEST 'control_c384gdas_intel' [12:11, 07:43](1506 MB) +PASS -- TEST 'control_stochy_intel' [04:22, 01:28](670 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:35, 00:53](535 MB) +PASS -- TEST 'control_lndp_intel' [04:22, 01:22](666 MB) +PASS -- TEST 'control_iovr4_intel' [04:28, 02:11](661 MB) +PASS -- TEST 'control_iovr5_intel' [04:28, 02:07](657 MB) +PASS -- TEST 'control_p8_intel' [06:03, 03:16](1903 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:04, 03:25](1907 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 03:14](1896 MB) +PASS -- TEST 'control_restart_p8_intel' [03:48, 01:33](1153 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:50, 03:34](1881 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [08:07, 02:27](1215 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:50, 03:35](1891 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:44, 03:35](1975 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:39, 05:13](1907 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:17, 04:30](1970 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:10, 03:42](1906 MB) +PASS -- TEST 'merra2_thompson_intel' [09:15, 03:51](1900 MB) +PASS -- TEST 'regional_control_intel' [09:37, 05:28](1197 MB) +PASS -- TEST 'regional_restart_intel' [06:34, 03:33](1173 MB) +PASS -- TEST 'regional_decomp_intel' [09:35, 05:34](1179 MB) +PASS -- TEST 'regional_2threads_intel' [04:39, 03:04](1157 MB) +PASS -- TEST 'regional_noquilt_intel' [08:41, 05:30](1515 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:44, 05:18](1198 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:30, 05:30](1200 MB) +PASS -- TEST 'regional_wofs_intel' [08:31, 05:49](2066 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 09:28] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:58, 07:02](1222 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:54, 03:54](1350 MB) +PASS -- TEST 'rap_decomp_intel' [12:42, 07:00](1154 MB) +PASS -- TEST 'rap_2threads_intel' [11:38, 06:29](1359 MB) +PASS -- TEST 'rap_restart_intel' [07:56, 03:39](1134 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:41, 06:49](1215 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:51, 06:54](1152 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:01, 05:13](1207 MB) +PASS -- TEST 'hrrr_control_intel' [08:37, 03:45](1094 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:35, 03:36](1039 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:47, 03:18](1126 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:21, 02:16](1037 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:00, 07:01](1211 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 08:02](2005 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 08:00](2177 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 08:59] +PASS -- TEST 'control_csawmg_intel' [15:42, 06:22](1050 MB) +PASS -- TEST 'control_ras_intel' [12:22, 02:54](821 MB) + +PASS -- COMPILE 'csawmg_gnu' [07:10, 04:52] +PASS -- TEST 'control_csawmg_gnu' [11:46, 07:59](1068 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 08:59] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [18:45, 09:54](1673 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:11, 08:37] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:59, 03:14](1907 MB) +PASS -- TEST 'regional_control_faster_intel' [08:36, 05:28](1192 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 06:01] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:41, 02:15](1641 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:38, 02:29](1633 MB) +PASS -- TEST 'control_stochy_debug_intel' [10:20, 02:53](853 MB) +PASS -- TEST 'control_lndp_debug_intel' [10:20, 02:31](839 MB) +PASS -- TEST 'control_csawmg_debug_intel' [12:32, 04:55](1155 MB) +PASS -- TEST 'control_ras_debug_intel' [09:23, 02:30](849 MB) +PASS -- TEST 'control_diag_debug_intel' [09:39, 02:31](1703 MB) +PASS -- TEST 'control_debug_p8_intel' [10:37, 03:25](1936 MB) +PASS -- TEST 'regional_debug_intel' [21:37, 16:00](1149 MB) +PASS -- TEST 'rap_control_debug_intel' [07:20, 04:24](1240 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:22, 04:24](1231 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:18, 04:22](1244 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:20](1228 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:36](1236 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:30, 04:32](1325 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 04:31](1236 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:18](1238 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:19, 04:20](1233 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:20, 04:11](1243 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:28](1225 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 04:18](1241 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:19, 07:40](1235 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 04:12](1232 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:21, 05:14](1231 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:29](1232 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:56, 07:23](1231 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:01] +PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:18](1052 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 03:26] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 07:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:16](1234 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:50, 05:22](1142 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:59, 02:52](1034 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:35, 05:08](1280 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:40, 02:42](1038 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:39, 02:59](981 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:51, 04:05](1116 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:32, 01:42](967 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:11, 08:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:45, 01:43](1305 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:35, 00:54](1199 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [09:32, 01:08](1152 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 08:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 04:01](1090 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:38] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:19, 04:21](1104 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:19, 03:55](1107 MB) +PASS -- TEST 'conus13km_debug_intel' [19:35, 12:19](1355 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:35, 12:37](990 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:31, 07:25](1252 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:31, 12:24](1418 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:27] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:19, 04:24](1173 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 10:27] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:05, 05:36](847 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 05:53](1240 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:21, 07:20](921 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:04, 14:07](956 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:16, 15:08](979 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 06:17](598 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:25, 08:07](603 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [11:43, 03:24](434 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:03, 08:41](547 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:45, 04:19](601 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:45, 04:05](600 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 05:03](654 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:26, 01:24](455 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 04:27] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:46, 11:30](645 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 10:01] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:48, 16:24](758 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:01, 15:46](838 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 10:02] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:35, 09:44](817 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 10:34] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:08, 05:51](933 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:02, 06:04](916 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:47, 16:32](1340 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 05:03] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:16, 02:13](1140 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [09:18, 01:26](1099 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:09](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:16, 02:10](1012 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:16, 02:13](1017 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:15, 02:15](1135 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:15, 02:16](1139 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:08](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:02, 04:56](1159 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:59, 04:58](1156 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:12](1158 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:03](2444 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:04](2461 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 03:34] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:13](1081 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 05:30] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:15](1157 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:06] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:26, 00:58](337 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:20, 00:50](572 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:22, 00:34](563 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 09:36] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:52, 03:38](2020 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:18] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:57, 04:08](2001 MB) + +PASS -- COMPILE 'atml_intel' [11:10, 08:41] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:09, 05:43](1894 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:07, 05:39](1900 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:46, 03:34](1136 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 04:38] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:59, 05:28](1918 MB) + +PASS -- COMPILE 'atmw_intel' [11:10, 09:18] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:55, 01:47](1950 MB) + +PASS -- COMPILE 'atmaero_intel' [09:11, 08:48] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:50, 05:07](2032 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:48, 04:37](1801 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:42, 04:37](1807 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:33] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:38, 16:49](4601 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 04:08] +PASS -- TEST 'control_c48_gnu' [16:43, 09:27](1530 MB) +PASS -- TEST 'control_stochy_gnu' [09:23, 02:24](726 MB) +PASS -- TEST 'control_ras_gnu' [10:22, 03:58](732 MB) +PASS -- TEST 'control_p8_gnu' [11:52, 05:04](1729 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [11:47, 04:45](1725 MB) +PASS -- TEST 'control_flake_gnu' [11:25, 04:35](814 MB) + +PASS -- COMPILE 'rrfs_gnu' [09:11, 04:01] +PASS -- TEST 'rap_control_gnu' [14:36, 07:54](1083 MB) +PASS -- TEST 'rap_decomp_gnu' [14:34, 08:23](1082 MB) +PASS -- TEST 'rap_2threads_gnu' [13:51, 07:15](1121 MB) +PASS -- TEST 'rap_restart_gnu' [05:56, 04:29](884 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:53, 08:18](1082 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:35, 08:28](1080 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:57, 06:20](883 MB) +PASS -- TEST 'hrrr_control_gnu' [10:37, 04:19](1069 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [10:38, 04:04](1132 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [09:48, 03:42](1016 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [10:42, 04:14](1068 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:25, 02:12](883 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:30, 02:07](934 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:58, 07:54](1079 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:10, 06:05] +PASS -- TEST 'control_diag_debug_gnu' [07:37, 01:16](1625 MB) +PASS -- TEST 'regional_debug_gnu' [11:36, 07:22](1136 MB) +PASS -- TEST 'rap_control_debug_gnu' [05:21, 02:06](1097 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [05:19, 02:13](1087 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:04](1096 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:19, 02:04](1097 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:36, 02:14](1270 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 03:15](1093 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 02:17](1099 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:18, 02:05](1092 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:10](728 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:18, 01:16](721 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:36, 01:35](1700 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:22, 01:57](1096 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:19, 02:20](1097 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:53, 03:24](1101 MB) + +PASS -- COMPILE 'wam_debug_gnu' [06:11, 03:00] +PASS -- TEST 'control_wam_debug_gnu' [06:53, 05:07](1565 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 04:03] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:38, 07:40](978 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:56, 04:03](952 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:46, 06:47](969 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:41, 03:36](889 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:40, 04:22](949 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:48, 05:59](865 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:25, 02:07](863 MB) +PASS -- TEST 'conus13km_control_gnu' [03:43, 02:50](1268 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:35, 01:28](1179 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:34, 01:41](940 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 08:53] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:34, 04:40](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:08] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:20, 02:08](977 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:25, 01:51](971 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:36, 05:35](1286 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:35, 05:52](963 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:30, 03:19](1198 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:37, 05:32](1353 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 06:42] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:32, 02:06](1005 MB) + +PASS -- COMPILE 's2swa_gnu' [22:11, 16:59] + +PASS -- COMPILE 's2s_gnu' [19:11, 15:24] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:20, 05:10](2730 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [06:11, 03:44] + +PASS -- COMPILE 's2sw_pdlib_gnu' [20:11, 17:48] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:03, 26:07](3048 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:10, 04:11] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:07, 12:04](2929 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 16:10] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:34](767 MB) SYNOPSIS: -Starting Date/Time: 20240819 15:40:05 -Ending Date/Time: 20240819 21:39:49 -Total Time: 06h:00m:22s +Starting Date/Time: 20240822 08:11:58 +Ending Date/Time: 20240822 10:07:25 +Total Time: 01h:56m:17s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 75d85aa171..441b624429 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -ed15c21712242a15f47d8e809925de16e2a3c5d6 +6ccfb11529c2bd172bc7d4956eadfab0b55bf12d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) + d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) @@ -35,254 +35,254 @@ 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: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240819 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1955508 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240821 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_271319 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [43:14, 42:44] ( 1 warnings 1378 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:54, 07:15](2009 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:15, 53:18] ( 1 warnings 1425 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:06, 21:35](1889 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [47:18, 23:13](1985 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [22:55, 11:15](1117 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:46, 24:30](1836 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:15, 49:35] ( 1 warnings 1422 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:58, 20:53](1876 MB) - -PASS -- COMPILE 's2swa_intel' [42:14, 41:24] ( 1379 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:19, 07:56](2057 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:43, 08:05](2059 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:49, 04:56](1720 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:20, 08:05](2073 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:48, 04:55](1740 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:14, 07:49](2317 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:13, 08:00](2050 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:41, 06:52](2015 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:39, 08:04](2014 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:30, 07:34](2040 MB) - -PASS -- COMPILE 's2sw_intel' [41:14, 40:41] ( 1277 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:33, 06:25](1903 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:45, 06:25](1968 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:24] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:32, 10:49](2071 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 06:00] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:22, 07:34](1932 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [39:15, 36:32] ( 1008 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:51, 06:11](1969 MB) - -PASS -- COMPILE 's2s_intel' [39:15, 37:04] ( 1013 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:11, 12:30](3018 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [19:13, 03:55](3010 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:05, 02:10](2454 MB) - -PASS -- COMPILE 's2swa_faster_intel' [39:18, 34:06] ( 1607 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:59, 07:41](2051 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [10:16, 47:39] ( 1337 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:33, 21:13](1910 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:38, 10:50](1134 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:33, 24:33](1888 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [27:13, 06:17] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:36, 33:40](1929 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [46:14, 38:03] ( 1 warnings 1124 remarks ) -PASS -- TEST 'control_flake_intel' [05:34, 04:29](646 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:10, 03:57](1542 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:14, 04:09](1546 MB) -PASS -- TEST 'control_latlon_intel' [05:05, 03:53](1549 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:17, 04:04](1553 MB) -PASS -- TEST 'control_c48_intel' [13:16, 11:45](1702 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:41, 10:16](834 MB) -PASS -- TEST 'control_c192_intel' [20:27, 14:21](1667 MB) -PASS -- TEST 'control_c384_intel' [23:18, 18:00](1802 MB) -PASS -- TEST 'control_c384gdas_intel' [20:23, 13:23](1003 MB) -PASS -- TEST 'control_stochy_intel' [03:32, 02:11](603 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:32, 01:22](434 MB) -PASS -- TEST 'control_lndp_intel' [03:32, 02:05](597 MB) -PASS -- TEST 'control_iovr4_intel' [04:34, 03:20](600 MB) -PASS -- TEST 'control_iovr5_intel' [04:34, 03:19](600 MB) -PASS -- TEST 'control_p8_intel' [06:30, 04:39](1838 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:59, 04:35](1833 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:49, 04:29](1843 MB) -PASS -- TEST 'control_restart_p8_intel' [05:07, 02:55](1049 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:35, 04:31](1837 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:20, 02:44](1072 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:37, 04:36](1826 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:37, 04:23](1912 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:12, 07:27](1838 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:03, 05:55](1889 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:50, 04:33](1849 MB) -PASS -- TEST 'merra2_thompson_intel' [07:07, 04:53](1842 MB) -PASS -- TEST 'regional_control_intel' [09:03, 07:43](1009 MB) -PASS -- TEST 'regional_restart_intel' [06:38, 04:28](1002 MB) -PASS -- TEST 'regional_decomp_intel' [09:03, 08:00](998 MB) -PASS -- TEST 'regional_2threads_intel' [07:02, 06:05](995 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:10, 07:44](999 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:47, 07:54](999 MB) - -PASS -- COMPILE 'rrfs_intel' [48:14, 38:17] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [12:05, 10:07](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:16, 05:37](1169 MB) -PASS -- TEST 'rap_decomp_intel' [12:01, 10:45](981 MB) -PASS -- TEST 'rap_2threads_intel' [11:25, 09:41](1070 MB) -PASS -- TEST 'rap_restart_intel' [07:26, 05:22](989 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:22, 10:05](983 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:05, 10:37](981 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:35, 07:35](992 MB) -PASS -- TEST 'hrrr_control_intel' [07:22, 05:10](988 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 05:19](980 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:54, 04:49](1062 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:31, 02:52](914 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:42, 09:59](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 12:28](1945 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:38, 12:11](1940 MB) - -PASS -- COMPILE 'csawmg_intel' [49:15, 35:07] ( 1089 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:37, 08:55](935 MB) -PASS -- TEST 'control_ras_intel' [05:24, 04:27](661 MB) - -PASS -- COMPILE 'wam_intel' [36:13, 35:28] ( 992 remarks ) -PASS -- TEST 'control_wam_intel' [15:58, 14:23](1612 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [38:13, 37:15] ( 1292 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:34, 04:06](1816 MB) -PASS -- TEST 'regional_control_faster_intel' [07:45, 06:46](994 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:34] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:50, 03:19](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:56, 03:19](1569 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:31, 03:49](772 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:31, 03:26](775 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:47, 05:43](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [05:29, 03:28](780 MB) -PASS -- TEST 'control_diag_debug_intel' [07:53, 03:24](1628 MB) -PASS -- TEST 'control_debug_p8_intel' [08:59, 04:04](1857 MB) -PASS -- TEST 'regional_debug_intel' [27:55, 22:31](1029 MB) -PASS -- TEST 'rap_control_debug_intel' [10:27, 06:12](1156 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:27, 06:08](1155 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:27, 06:15](1161 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:28, 06:16](1160 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:28, 06:16](1165 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:33](1241 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 06:24](1159 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:25, 06:22](1158 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:26, 06:13](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:12](1161 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:25, 06:04](1157 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 06:11](1161 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:29, 10:08](1138 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 06:09](1154 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:27, 07:28](1165 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:25, 06:11](1153 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:28, 10:43](1162 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 05:29] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:00, 16:39](1644 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 31:21] ( 3 warnings 1024 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:18, 05:13](1044 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:02, 08:16](897 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:04, 04:23](866 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:23, 07:56](943 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 04:01](898 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:04, 04:39](855 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:29, 06:27](895 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 02:23](847 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [35:13, 32:52] ( 3 warnings 1197 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:58, 02:54](1097 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:38](1037 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:47](1008 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:13, 31:50] ( 3 warnings 1044 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 05:32](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:08] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:30, 06:06](1040 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 05:58](1043 MB) -PASS -- TEST 'conus13km_debug_intel' [20:02, 18:49](1145 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:00, 19:14](860 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:55, 10:52](1094 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:54, 18:56](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:17] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:28, 06:22](1059 MB) - -PASS -- COMPILE 'hafsw_intel' [40:13, 39:34] ( 1 warnings 1416 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:28, 06:57](698 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:39, 06:21](1050 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:42, 09:20](757 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:30, 16:40](784 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:44, 18:07](796 MB) -PASS -- TEST 'gnv1_nested_intel' [09:46, 07:06](1664 MB) - -PASS -- COMPILE 'hafs_all_intel' [37:13, 36:17] ( 1263 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:22, 08:40](744 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:26, 08:43](733 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:22] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 03:41](1065 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:10](1035 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:41](940 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 03:38](923 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:40](927 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 03:39](1064 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:40](1066 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 03:37](942 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 07:58](893 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:18, 07:48](853 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:38](1066 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:07](2420 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:19](2407 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:38] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 08:10](1015 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:27] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 03:37](1066 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:46] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:39](232 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:23](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:53](252 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:13, 36:36] ( 1013 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:17, 05:29](1893 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [36:13, 35:44] ( 1013 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:33, 05:42](1894 MB) - -PASS -- COMPILE 'atml_intel' [37:13, 37:05] ( 8 warnings 1165 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:46, 07:57](1845 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:46, 07:56](1854 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 04:13](1065 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 06:07] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:48, 08:01](1888 MB) - -PASS -- COMPILE 'atmw_intel' [38:14, 37:55] ( 1258 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:35, 02:33](1851 MB) - -PASS -- COMPILE 'atmaero_intel' [36:13, 35:42] ( 1096 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:26, 05:41](1933 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:20, 06:20](1712 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:09, 06:33](1722 MB) +PASS -- COMPILE 's2swa_32bit_intel' [43:14, 42:23] ( 1 warnings 1378 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:10, 06:56](2012 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:31] ( 1 warnings 1425 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:05, 20:32](1886 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:26, 21:50](2016 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:07, 10:01](1124 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:05, 23:49](1861 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:14, 48:57] ( 1 warnings 1422 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:49, 20:09](1885 MB) + +PASS -- COMPILE 's2swa_intel' [43:14, 42:22] ( 1379 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:07, 07:30](2055 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:21, 07:25](2045 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:22, 04:18](1719 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:07, 07:32](2079 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:21, 04:25](1737 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:03, 07:09](2327 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:03, 07:27](2054 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:14, 06:20](2005 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:20, 07:34](2068 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:14, 07:05](2035 MB) + +PASS -- COMPILE 's2sw_intel' [41:14, 40:26] ( 1277 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:26, 05:48](1912 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:43, 05:44](1972 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:30] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:17, 10:29](2092 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:49] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:59, 07:18](1936 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [36:13, 35:43] ( 1008 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:20, 05:28](1979 MB) + +PASS -- COMPILE 's2s_intel' [37:13, 36:13] ( 1013 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:51, 11:57](3021 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 03:26](3015 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:04, 02:00](2452 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:25, 33:28] ( 1607 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:45, 06:53](2050 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:15, 48:44] ( 1337 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:19, 18:50](1927 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:20, 10:00](1136 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:19, 24:04](1889 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:54] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:11, 33:02](1935 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:14, 37:18] ( 1 warnings 1124 remarks ) +PASS -- TEST 'control_flake_intel' [05:31, 04:25](653 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [10:05, 03:46](1557 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:07, 03:52](1556 MB) +PASS -- TEST 'control_latlon_intel' [13:03, 03:48](1545 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:10, 03:55](1544 MB) +PASS -- TEST 'control_c48_intel' [19:13, 11:41](1707 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:38, 10:13](831 MB) +PASS -- TEST 'control_c192_intel' [16:19, 14:20](1680 MB) +PASS -- TEST 'control_c384_intel' [20:13, 17:57](1794 MB) +PASS -- TEST 'control_c384gdas_intel' [17:08, 13:21](1008 MB) +PASS -- TEST 'control_stochy_intel' [03:31, 02:11](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:28, 01:17](435 MB) +PASS -- TEST 'control_lndp_intel' [03:31, 02:06](604 MB) +PASS -- TEST 'control_iovr4_intel' [04:33, 03:20](605 MB) +PASS -- TEST 'control_iovr5_intel' [04:32, 03:16](598 MB) +PASS -- TEST 'control_p8_intel' [06:28, 04:06](1842 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [13:27, 04:01](1842 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:16, 03:50](1845 MB) +PASS -- TEST 'control_restart_p8_intel' [05:54, 02:14](1052 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:21, 03:54](1828 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:11](1071 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:18, 04:01](1834 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:17, 03:41](1925 MB) +PASS -- TEST 'control_p8_lndp_intel' [15:09, 06:59](1839 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:19, 05:11](1896 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:23, 03:58](1845 MB) +PASS -- TEST 'merra2_thompson_intel' [10:19, 04:19](1842 MB) +PASS -- TEST 'regional_control_intel' [08:01, 07:07](1007 MB) +PASS -- TEST 'regional_restart_intel' [05:34, 03:55](1005 MB) +PASS -- TEST 'regional_decomp_intel' [09:01, 07:31](998 MB) +PASS -- TEST 'regional_2threads_intel' [06:01, 04:26](999 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:44, 07:04](1018 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [14:35, 07:06](990 MB) + +PASS -- COMPILE 'rrfs_intel' [47:16, 36:44] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [11:39, 10:14](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:10, 05:32](1171 MB) +PASS -- TEST 'rap_decomp_intel' [11:36, 10:42](991 MB) +PASS -- TEST 'rap_2threads_intel' [10:48, 09:44](1079 MB) +PASS -- TEST 'rap_restart_intel' [06:46, 05:11](994 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:41, 10:11](992 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:41, 10:47](982 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:49, 07:32](997 MB) +PASS -- TEST 'hrrr_control_intel' [06:44, 05:16](988 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:44, 05:26](980 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:47, 04:49](1059 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:51](920 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:51, 10:09](988 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:29, 12:30](1950 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:28, 12:12](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [39:19, 34:31] ( 1089 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:45, 08:06](956 MB) +PASS -- TEST 'control_ras_intel' [05:29, 04:22](666 MB) + +PASS -- COMPILE 'wam_intel' [35:17, 34:21] ( 992 remarks ) +PASS -- TEST 'control_wam_intel' [15:55, 14:18](1626 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [50:17, 36:02] ( 1292 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:56, 03:38](1841 MB) +PASS -- TEST 'regional_control_faster_intel' [08:40, 06:35](999 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:22] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 03:24](1578 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 03:20](1581 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:51](781 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 03:27](781 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:43, 05:33](1092 MB) +PASS -- TEST 'control_ras_debug_intel' [04:26, 03:31](787 MB) +PASS -- TEST 'control_diag_debug_intel' [04:51, 03:28](1642 MB) +PASS -- TEST 'control_debug_p8_intel' [05:48, 03:50](1872 MB) +PASS -- TEST 'regional_debug_intel' [23:51, 22:05](1045 MB) +PASS -- TEST 'rap_control_debug_intel' [07:27, 06:12](1165 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:26, 06:06](1156 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:26, 06:11](1163 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:26, 06:14](1161 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:12](1162 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:39, 06:31](1248 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 06:19](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:17](1165 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:27, 06:11](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:06](1162 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:58](1165 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 06:06](1163 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:01](1168 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 06:01](1165 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:27, 07:18](1169 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:06](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:48, 10:39](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 05:12] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:51, 16:42](1654 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [36:16, 30:38] ( 3 warnings 1024 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [26:09, 05:05](1067 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [32:47, 08:15](905 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [29:48, 04:25](879 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [30:50, 07:54](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:48, 04:04](906 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [30:44, 04:48](865 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:45, 06:23](900 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [12:34, 02:25](854 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [04:19, 31:43] ( 3 warnings 1197 remarks ) +PASS -- TEST 'conus13km_control_intel' [11:58, 02:51](1104 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:15](1038 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:33](1022 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [03:18, 31:07] ( 3 warnings 1044 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:51, 05:32](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [26:15, 05:12] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [40:30, 06:05](1050 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [40:29, 05:57](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [55:02, 18:49](1157 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [55:02, 18:57](868 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [35:52, 10:50](1100 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [54:57, 18:46](1227 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:14, 05:06] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [40:29, 06:13](1080 MB) + +PASS -- COMPILE 'hafsw_intel' [02:17, 39:01] ( 1 warnings 1416 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:24, 06:50](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:16](1082 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:40, 09:03](762 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:28, 16:06](784 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:43, 18:06](801 MB) +PASS -- TEST 'gnv1_nested_intel' [08:43, 06:30](1680 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:19, 35:26] ( 1263 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:24, 08:29](756 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:21, 08:30](739 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [44:16, 08:22] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 03:36](1084 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:12](1028 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:30](935 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 03:34](929 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:35](929 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 03:36](1064 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:39](1076 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 03:30](934 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:19, 07:43](894 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:43](849 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1072 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:03](2363 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 05:09](2420 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [12:13, 03:30] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:24, 08:02](1004 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [17:12, 08:24] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 03:36](1073 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 01:48] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:21](241 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:08](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:42](259 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [36:13, 35:40] ( 1013 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:06, 04:53](1904 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [35:13, 35:06] ( 1013 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:35, 04:36](1902 MB) + +PASS -- COMPILE 'atml_intel' [38:14, 37:32] ( 8 warnings 1165 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:00, 06:22](1862 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 06:12](1864 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:53, 03:15](1069 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 06:24] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:11, 07:24](1896 MB) + +PASS -- COMPILE 'atmw_intel' [36:14, 35:47] ( 1258 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:57, 02:20](1859 MB) + +PASS -- COMPILE 'atmaero_intel' [36:14, 35:17] ( 1096 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:01, 05:17](1942 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:00, 06:17](1720 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:50, 06:22](1729 MB) SYNOPSIS: -Starting Date/Time: 20240819 22:24:20 -Ending Date/Time: 20240820 02:44:40 -Total Time: 04h:22m:30s +Starting Date/Time: 20240822 14:44:21 +Ending Date/Time: 20240822 19:32:08 +Total Time: 04h:48m:27s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 55bab8d4bc..ff4afde445 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: -4507a4e71f5490cf64ae981fd7b9facf85867858 +3df9dd2e0931e3fda968f8f9949f530a1b7983e0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop) + d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) @@ -35,285 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240819 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_742584 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240821 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_828849 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 17:28] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:52, 14:42](2081 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:11, 25:21] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:56, 18:06](1959 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:06, 19:04](2131 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:59, 09:03](1204 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:50, 20:16](1874 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:55] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:48, 17:43](1940 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 09:19] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:39, 27:32](1940 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 17:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:42, 15:01](2125 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:50, 14:32](2129 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:47, 08:09](1822 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:42, 14:26](2159 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:47, 08:04](1705 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:42, 13:15](2428 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:42, 14:19](2124 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:50, 12:17](2036 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:50, 14:37](2135 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:44, 16:20](2717 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:00, 09:05](2719 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:40, 11:40](3691 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:49, 07:17](3497 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:33, 06:00](2117 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 15:33] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:04, 13:49](1973 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:13, 04:48](2044 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:10, 09:18] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:13, 08:49](2153 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:30] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:05, 06:07](2005 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:57] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:14, 04:49](2046 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 14:50] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:57, 10:04](3051 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:56, 03:30](3029 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:02, 02:17](2487 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:31] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:24, 14:49](2136 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:20] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:13, 18:29](1994 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:26, 09:00](1244 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:04, 20:31](1916 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 08:05] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:14, 29:33](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:29, 03:49](691 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:52, 03:09](1582 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:53, 03:16](1586 MB) -PASS -- TEST 'control_latlon_intel' [04:44, 03:12](1592 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:54, 03:14](1588 MB) -PASS -- TEST 'control_c48_intel' [10:50, 09:31](1705 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:34, 08:09](844 MB) -PASS -- TEST 'control_c192_intel' [12:52, 11:45](1731 MB) -PASS -- TEST 'control_c384_intel' [14:49, 12:51](1964 MB) -PASS -- TEST 'control_c384gdas_intel' [12:34, 09:52](1339 MB) -PASS -- TEST 'control_stochy_intel' [02:22, 01:51](639 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:43, 01:04](477 MB) -PASS -- TEST 'control_lndp_intel' [02:27, 01:43](644 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:46](638 MB) -PASS -- TEST 'control_iovr5_intel' [03:28, 02:43](641 MB) -PASS -- TEST 'control_p8_intel' [05:13, 03:38](1891 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:15, 03:41](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:24, 03:28](1884 MB) -PASS -- TEST 'control_restart_p8_intel' [03:15, 02:02](1091 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:20, 03:26](1879 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:11, 02:00](1127 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:04, 03:33](1863 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:59, 03:38](1960 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:40, 05:59](1872 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:22, 04:58](1950 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:14, 03:34](1889 MB) -PASS -- TEST 'merra2_thompson_intel' [05:32, 03:52](1885 MB) -PASS -- TEST 'regional_control_intel' [07:34, 06:30](1077 MB) -PASS -- TEST 'regional_restart_intel' [04:37, 03:33](1077 MB) -PASS -- TEST 'regional_decomp_intel' [07:31, 06:48](1073 MB) -PASS -- TEST 'regional_2threads_intel' [05:36, 04:41](1062 MB) -PASS -- TEST 'regional_noquilt_intel' [07:33, 06:27](1388 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 06:25](1077 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 06:29](1080 MB) -PASS -- TEST 'regional_wofs_intel' [08:31, 07:57](1899 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 13:38] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:16, 08:26](1054 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:55, 05:19](1258 MB) -PASS -- TEST 'rap_decomp_intel' [10:10, 08:40](1020 MB) -PASS -- TEST 'rap_2threads_intel' [09:55, 08:29](1165 MB) -PASS -- TEST 'rap_restart_intel' [06:34, 04:23](1039 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:54, 08:22](1049 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:53, 08:38](1018 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:29, 06:17](1066 MB) -PASS -- TEST 'hrrr_control_intel' [05:58, 04:23](1029 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:58, 04:26](1022 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:55, 04:11](1096 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:39, 02:23](950 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:17, 08:17](1051 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:23, 10:05](1986 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 09:43](2024 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 12:47] -PASS -- TEST 'control_csawmg_intel' [07:39, 06:38](1020 MB) -PASS -- TEST 'control_ras_intel' [04:31, 03:30](714 MB) - -PASS -- COMPILE 'wam_intel' [13:11, 12:24] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:50, 12:35](1655 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 12:45] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:20, 03:23](1884 MB) -PASS -- TEST 'regional_control_faster_intel' [07:31, 06:16](1071 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 09:27] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:46](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:51, 02:47](1616 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:04](817 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:51](822 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:46, 04:23](1127 MB) -PASS -- TEST 'control_ras_debug_intel' [03:24, 02:51](818 MB) -PASS -- TEST 'control_diag_debug_intel' [03:48, 02:52](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [04:48, 03:09](1906 MB) -PASS -- TEST 'regional_debug_intel' [18:44, 17:36](1094 MB) -PASS -- TEST 'rap_control_debug_intel' [05:25, 05:03](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:15](1208 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:26, 04:56](1204 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:24, 05:00](1207 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:20, 05:02](1209 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:30, 05:17](1290 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 05:03](1214 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:06](1204 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:27, 05:00](1206 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:27, 04:56](1210 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:28, 04:43](1207 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 04:53](1204 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:20, 08:00](1209 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:55](1197 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 06:11](1201 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:21, 04:59](1210 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:22, 08:36](1210 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 06:33] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:52, 13:13](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 13:04] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 04:52](1121 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:15, 07:10](1000 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:32, 03:47](933 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:50, 07:18](1069 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:05, 03:40](943 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 03:54](897 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:23, 05:22](975 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:26, 02:03](874 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 13:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:56, 02:41](1172 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:16](1110 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:44, 01:32](1071 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:23] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:33](968 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 06:30] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:53](1083 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:47](1069 MB) -PASS -- TEST 'conus13km_debug_intel' [15:49, 14:35](1228 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:46, 15:01](932 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:50](1169 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 14:35](1293 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 07:26] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:25, 05:05](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [16:11, 15:16] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:16, 06:00](743 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 06:23](1111 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:27, 07:33](819 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:14, 24:38](848 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:18, 28:17](871 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:07, 07:02](494 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:26, 08:21](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:52, 03:27](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:20, 09:29](482 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:42](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:57, 04:26](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:56, 05:41](578 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:37](400 MB) -PASS -- TEST 'gnv1_nested_intel' [07:17, 04:23](1727 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:10, 07:55] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:04, 13:16](584 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:11, 15:07] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:06, 13:00](639 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:10, 13:14](727 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 14:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:18, 08:41](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 14:01] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:20, 07:30](816 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 07:32](793 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:17](1202 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:49] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 03:00](1161 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 02:00](1110 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:53](1023 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:53](1024 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:55](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:59](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 03:02](1151 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:52] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:43, 14:25](2074 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 18:07](1960 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:10, 19:07](2126 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 09:03](1219 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:44, 20:14](1870 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:23] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:43, 17:43](1948 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 09:36] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:36, 27:26](1925 MB) + +PASS -- COMPILE 's2swa_intel' [17:11, 16:23] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:31, 14:23](2135 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:43, 14:24](2137 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:50, 07:52](1821 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:31, 14:30](2167 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:50, 07:59](1700 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:30, 13:28](2428 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:32, 14:44](2135 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 12:21](2039 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:42, 14:24](2134 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:29, 16:17](2715 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:09, 08:29](2712 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:21, 11:39](3690 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:11, 07:20](3494 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:22, 05:56](2113 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 16:08] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:06, 13:40](1978 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:14, 04:49](2051 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:23] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:22, 08:36](2158 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 09:06] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:07, 06:16](2005 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:35] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:12, 04:46](2038 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 14:24] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:55, 09:59](3059 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:54, 03:28](3036 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:59, 02:05](2483 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:23] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:24, 15:00](2132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:24] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:23, 18:12](1989 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:34, 09:26](1237 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:20, 20:27](1913 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 07:53] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:11, 29:30](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 13:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:25, 03:41](685 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:50, 03:10](1585 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:54, 03:16](1584 MB) +PASS -- TEST 'control_latlon_intel' [04:45, 03:13](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:55, 03:14](1582 MB) +PASS -- TEST 'control_c48_intel' [10:53, 09:28](1711 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:33, 08:04](844 MB) +PASS -- TEST 'control_c192_intel' [12:57, 11:40](1717 MB) +PASS -- TEST 'control_c384_intel' [14:56, 12:49](1956 MB) +PASS -- TEST 'control_c384gdas_intel' [12:48, 09:44](1326 MB) +PASS -- TEST 'control_stochy_intel' [02:23, 01:49](640 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:03](476 MB) +PASS -- TEST 'control_lndp_intel' [02:23, 01:43](642 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:43](637 MB) +PASS -- TEST 'control_iovr5_intel' [03:28, 02:42](643 MB) +PASS -- TEST 'control_p8_intel' [05:11, 03:34](1874 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:17, 03:31](1884 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:24, 03:20](1875 MB) +PASS -- TEST 'control_restart_p8_intel' [03:16, 02:05](1088 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:15, 03:24](1878 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 02:01](1137 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:10, 03:29](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:07, 03:41](1960 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:43, 06:03](1869 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:35, 04:50](1937 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:21, 03:27](1888 MB) +PASS -- TEST 'merra2_thompson_intel' [05:35, 03:46](1879 MB) +PASS -- TEST 'regional_control_intel' [07:38, 06:29](1084 MB) +PASS -- TEST 'regional_restart_intel' [04:36, 03:42](1077 MB) +PASS -- TEST 'regional_decomp_intel' [07:35, 06:47](1071 MB) +PASS -- TEST 'regional_2threads_intel' [05:40, 04:38](1067 MB) +PASS -- TEST 'regional_noquilt_intel' [07:42, 06:26](1383 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:45, 06:35](1078 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 06:29](1081 MB) +PASS -- TEST 'regional_wofs_intel' [08:36, 07:51](1901 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 13:00] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:26, 08:25](1058 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:58, 05:10](1257 MB) +PASS -- TEST 'rap_decomp_intel' [10:10, 08:39](1024 MB) +PASS -- TEST 'rap_2threads_intel' [09:56, 08:30](1150 MB) +PASS -- TEST 'rap_restart_intel' [06:39, 04:23](1032 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:09, 08:19](1054 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:02, 08:41](1013 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 06:14](1076 MB) +PASS -- TEST 'hrrr_control_intel' [06:00, 04:19](1024 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:56, 04:25](1016 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 04:09](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:46, 02:20](947 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:21, 08:15](1051 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:58](1983 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:29, 09:45](2024 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 12:13] +PASS -- TEST 'control_csawmg_intel' [07:31, 06:41](1018 MB) +PASS -- TEST 'control_ras_intel' [04:25, 03:28](720 MB) + +PASS -- COMPILE 'wam_intel' [13:10, 12:26] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:45, 12:39](1659 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 12:59] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:25, 03:19](1881 MB) +PASS -- TEST 'regional_control_faster_intel' [07:37, 06:11](1071 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 09:41] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 02:43](1618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:41, 02:44](1620 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:11](824 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:19, 02:45](820 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:45, 04:20](1127 MB) +PASS -- TEST 'control_ras_debug_intel' [03:22, 02:45](826 MB) +PASS -- TEST 'control_diag_debug_intel' [03:50, 02:49](1677 MB) +PASS -- TEST 'control_debug_p8_intel' [04:50, 03:12](1922 MB) +PASS -- TEST 'regional_debug_intel' [18:42, 17:48](1091 MB) +PASS -- TEST 'rap_control_debug_intel' [05:23, 04:56](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:28, 04:47](1207 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:22, 04:58](1207 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:24, 05:04](1210 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 04:58](1205 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:31, 05:16](1292 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:21, 05:00](1204 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 05:05](1213 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:57](1210 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 05:02](1206 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:48](1203 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 05:01](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 08:03](1201 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 04:51](1198 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 06:10](1206 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:21, 04:55](1208 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:21](1205 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:10, 06:42] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:53, 13:25](1690 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 12:18] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 04:56](1127 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:19, 07:08](1002 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:41, 03:46](928 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:53, 07:18](1064 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 03:42](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:07, 04:01](896 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:24, 05:23](980 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:49, 02:02](880 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:50, 02:44](1164 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:16](1109 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:50, 01:31](1060 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:29] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:47, 04:35](973 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 07:04] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 04:52](1081 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:51](1086 MB) +PASS -- TEST 'conus13km_debug_intel' [15:53, 14:29](1226 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:52](940 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:44, 08:35](1169 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:52, 14:44](1294 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 04:57](1139 MB) + +PASS -- COMPILE 'hafsw_intel' [15:11, 14:13] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:21, 06:12](734 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:25, 06:42](1114 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:31, 07:44](816 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:15, 24:41](850 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:22, 29:02](873 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:07, 07:06](501 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:40, 08:37](504 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:01, 03:27](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:34, 09:35](480 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:05, 04:44](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:53, 04:31](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:09, 05:43](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:34](402 MB) +PASS -- TEST 'gnv1_nested_intel' [07:17, 04:20](1724 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:10, 06:47] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:10, 13:52](589 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:11, 14:13] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:58, 13:01](670 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:26, 12:57](725 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 14:09] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:26, 08:41](716 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 13:56] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:17, 07:35](814 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 07:35](800 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:56, 16:26](1198 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:00] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:59](1156 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:56](1110 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:20, 02:53](1022 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:58](1023 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:55](1016 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 03:03](1160 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:21, 03:02](1160 MB) PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:52](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:12, 06:35](1012 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:11, 06:26](1004 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 03:04](1163 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 04:20](2446 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:23](2388 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:36](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:06, 06:28](1010 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:59](1149 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:21](2452 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:24](2452 MB) -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 05:07] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:31](1066 MB) +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:37] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:30](1081 MB) -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 09:54] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:58](1151 MB) +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:30] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 03:01](1160 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:37] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 01:02](251 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 01:00](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:36](322 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:25] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:01](250 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:57](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:40](324 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 13:34] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:07, 04:08](1976 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:10, 13:44] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:12, 04:11](1979 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:11, 13:17] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:12, 03:56](1943 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:10, 12:53] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:11, 03:59](1951 MB) -PASS -- COMPILE 'atml_intel' [15:10, 14:12] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:23, 04:52](1870 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:21, 04:50](1861 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:09, 02:45](1075 MB) +PASS -- COMPILE 'atml_intel' [14:11, 13:46] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:38, 04:51](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:27, 05:01](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:12, 02:54](1069 MB) -PASS -- COMPILE 'atml_debug_intel' [09:10, 08:15] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:27, 06:06](1899 MB) +PASS -- COMPILE 'atml_debug_intel' [08:11, 07:38] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:35, 06:04](1886 MB) -PASS -- COMPILE 'atmw_intel' [14:10, 13:27] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:10](1906 MB) +PASS -- COMPILE 'atmw_intel' [14:11, 13:15] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:23, 02:10](1904 MB) -PASS -- COMPILE 'atmaero_intel' [13:11, 13:09] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:12, 04:39](1995 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:14, 05:22](1774 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 05:24](1785 MB) +PASS -- COMPILE 'atmaero_intel' [14:11, 13:21] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:20, 04:34](1986 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 05:22](1766 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:05, 05:21](1785 MB) -PASS -- COMPILE 'atmaq_debug_intel' [07:10, 06:27] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:00, 20:26](4557 MB) +PASS -- COMPILE 'atmaq_debug_intel' [07:10, 06:21] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:59, 20:37](4559 MB) SYNOPSIS: -Starting Date/Time: 20240819 14:15:54 -Ending Date/Time: 20240819 15:49:36 -Total Time: 01h:34m:22s +Starting Date/Time: 20240822 08:12:59 +Ending Date/Time: 20240822 09:46:15 +Total Time: 01h:34m:11s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_s4.log b/tests/logs/RegressionTests_s4.log new file mode 100644 index 0000000000..3d3336f7c1 --- /dev/null +++ b/tests/logs/RegressionTests_s4.log @@ -0,0 +1,297 @@ +====START OF S4 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +78892e674c5b283ae3fe4f575efc5836350a8bc8 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28f) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-1415-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) ++29e8d774f650f41231e302687e3061712aa680c0 FV3 (29e8d77) + 7c3102fccc493d4c006c936ea88e4b512f6f5251 FV3/atmos_cubed_sphere (201912_public_release-403-g7c3102f) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b076) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ++81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a8) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777e) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c7) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /data/prod/emc.nemspara/RT/NEMSfv3gfs/develop-20240808 +COMPARISON DIRECTORY: /scratch/users/isouopgui/FV3_RT/rt_438194 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: star +* (-c) - CREATE NEW BASELINES +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [12:10, 12:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:01, 06:58](2020 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:10, 12:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:36, 17:41](1880 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:55, 18:57](2049 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_mpi_gfsv17_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:10, 12:48] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:32, 17:35](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 05:49] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:45, 25:38](1913 MB) + +PASS -- COMPILE 's2swa_intel' [12:11, 12:00] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:05, 06:48](2061 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:06, 07:00](2058 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_restart_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_control_qr_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_restart_qr_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_2threads_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_decomp_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_mpi_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:03, 07:27](2059 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [31:02, 06:33](2040 MB) + +PASS -- COMPILE 's2sw_intel' [12:10, 11:45] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [27:01, 05:16](1909 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [29:02, 05:31](1965 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:05] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:29, 09:26](2092 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:49] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:26, 06:30](1939 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:10, 11:22] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:02, 05:39](1976 MB) + +PASS -- COMPILE 's2s_intel' [12:10, 11:26] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [25:55, 09:50](3011 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [48:00, 03:02](2998 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_restart_c48_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:11, 15:51] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:06, 06:33](2059 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:11, 11:44] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:33, 18:12](1909 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:34] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:35, 27:24](1942 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:10, 09:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [24:23, 04:45](642 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [27:55, 03:26](1542 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:57, 03:47](1547 MB) +PASS -- TEST 'control_latlon_intel' [25:55, 03:28](1537 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:54, 03:36](1540 MB) +PASS -- TEST 'control_c48_intel' [44:56, 07:35](1687 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [44:23, 06:38](824 MB) +PASS -- TEST 'control_c192_intel' [25:02, 12:17](1667 MB) +PASS -- TEST 'control_c384_intel' [21:34, 13:51](1943 MB) +PASS -- TEST 'control_c384gdas_intel' [41:14, 19:02](1336 MB) +PASS -- TEST 'control_stochy_intel' [20:22, 02:02](601 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_stochy_restart_intel' [, ]( MB) +PASS -- TEST 'control_lndp_intel' [21:22, 01:55](601 MB) +PASS -- TEST 'control_iovr4_intel' [22:23, 03:09](597 MB) +PASS -- TEST 'control_iovr5_intel' [22:23, 03:26](591 MB) +PASS -- TEST 'control_p8_intel' [24:59, 03:52](1832 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [23:41, 03:44](1835 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [22:38, 03:40](1828 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_restart_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_noqr_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_restart_noqr_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_decomp_p8_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_2threads_p8_intel' [, ]( MB) +PASS -- TEST 'control_p8_lndp_intel' [21:31, 06:31](1829 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [18:31, 04:51](1892 MB) +PASS -- TEST 'control_p8_mynn_intel' [16:32, 03:45](1839 MB) +PASS -- TEST 'merra2_thompson_intel' [16:30, 04:02](1848 MB) +PASS -- TEST 'regional_control_intel' [18:28, 07:44](1017 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'regional_restart_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'regional_decomp_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'regional_2threads_intel' [, ]( MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [26:28, 09:10](1013 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'regional_2dwrtdecomp_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_intel' [10:10, 10:01] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [19:24, 09:30](1004 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:51, 05:37](1219 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_decomp_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_2threads_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_restart_intel' [, ]( MB) +PASS -- TEST 'rap_sfcdiff_intel' [18:23, 09:17](1006 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_sfcdiff_decomp_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_sfcdiff_restart_intel' [, ]( MB) +PASS -- TEST 'hrrr_control_intel' [14:25, 04:49](992 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'hrrr_control_decomp_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'hrrr_control_2threads_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'hrrr_control_restart_intel' [, ]( MB) +PASS -- TEST 'rrfs_v1beta_intel' [18:21, 09:11](996 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [19:22, 10:56](1941 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:20, 10:25](1979 MB) + +PASS -- COMPILE 'csawmg_intel' [10:10, 09:48] +PASS -- TEST 'control_csawmg_intel' [18:29, 07:37](964 MB) +PASS -- TEST 'control_ras_intel' [13:16, 03:55](667 MB) + +PASS -- COMPILE 'wam_intel' [09:10, 08:58] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [30:45, 13:05](1615 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:10, 10:11] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [13:31, 03:24](1838 MB) +PASS -- TEST 'regional_control_faster_intel' [18:32, 08:29](1022 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [51:11, 07:00] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [35:44, 02:53](1560 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [38:46, 02:55](1569 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:22](779 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:58](775 MB) +PASS -- TEST 'control_csawmg_debug_intel' [37:43, 04:43](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 03:04](783 MB) +PASS -- TEST 'control_diag_debug_intel' [37:53, 03:06](1625 MB) +PASS -- TEST 'control_debug_p8_intel' [36:46, 03:15](1854 MB) +PASS -- TEST 'regional_debug_intel' [59:43, 20:28](1040 MB) +PASS -- TEST 'rap_control_debug_intel' [13:24, 05:25](1157 MB) +PASS -- TEST 'hrrr_control_debug_intel' [37:26, 05:25](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [37:26, 05:36](1157 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [33:26, 05:22](1163 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_unified_drag_suite_debug_intel' [, ]( MB) +PASS -- TEST 'rap_diag_debug_intel' [09:32, 05:33](1237 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [32:25, 05:44](1160 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_unified_ugwp_debug_intel' [, ]( MB) +PASS -- TEST 'rap_lndp_debug_intel' [32:25, 05:31](1161 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:23, 05:14](1161 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:24, 05:11](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [33:26, 05:34](1163 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:23, 08:32](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:24, 05:26](1158 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [41:20, 06:21](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [41:18, 05:24](1157 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [44:23, 09:19](1161 MB) + +PASS -- COMPILE 'wam_debug_intel' [49:11, 04:30] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:48, 15:11](1646 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [54:12, 09:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:49, 05:07](1091 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [41:21, 07:51](949 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [38:20, 04:11](899 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_2threads_dyn32_phy32_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'rap_restart_dyn32_phy32_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:11, 09:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [37:47, 02:53](1125 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'conus13km_2threads_intel' [, ]( MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:38, 01:35](1031 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [46:11, 09:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:23, 05:05](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [40:11, 04:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 05:21](1035 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 05:20](1035 MB) +PASS -- TEST 'conus13km_debug_intel' [18:21, 16:09](1175 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'conus13km_debug_qr_intel' [, ]( MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:20, 16:30](1231 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [42:11, 04:37] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [40:17, 05:29](1081 MB) + +PASS -- COMPILE 'hafsw_intel' [47:11, 11:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:29, 07:41](713 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:20, 08:21](1083 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:33, 10:10](788 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [29:27, 16:43](816 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:32, 18:10](834 MB) + +PASS -- COMPILE 'hafs_all_intel' [47:11, 10:46] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [20:23, 09:48](784 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [23:24, 10:47](760 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [43:11, 06:53] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [27:17, 02:49](1083 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'datm_cdeps_restart_cfsr_intel' [, ]( MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [25:15, 02:41](955 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [25:16, 02:50](953 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [24:15, 02:49](955 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [19:14, 02:41](1072 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [14:15, 02:47](1074 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:14, 02:41](958 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:08, 06:22](944 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:04, 06:07](903 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [, ]( MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:48](2447 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [10:15, 03:48](2442 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:18] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [12:15, 06:41](1011 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 07:02] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:15, 02:46](1081 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:08] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 01:03](234 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 01:05](287 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'datm_cdeps_lnd_era5_rst_intel' [, ]( MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [50:11, 09:55] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:40, 04:30](1904 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [49:11, 09:28] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:46, 04:19](1895 MB) + +PASS -- COMPILE 'atml_intel' [49:11, 10:27] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 06:07](1865 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:32, 05:58](1848 MB) +SKIPPED: TEST DOES NOT GENERATE BASELINE -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB) + +PASS -- COMPILE 'atml_debug_intel' [43:10, 04:57] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:41, 06:26](1888 MB) + +PASS -- COMPILE 'atmw_intel' [48:11, 10:20] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:29, 02:09](1865 MB) + +PASS -- COMPILE 'atmaero_intel' [47:11, 09:50] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:38, 04:36](1939 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:39, 05:39](1722 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:26, 05:48](1725 MB) + +SYNOPSIS: +Starting Date/Time: 20240814 12:03:01 +Ending Date/Time: 20240814 14:10:59 +Total Time: 02h:08m:33s +Compiles Completed: 37/37 +Tests Completed: 121/164 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF S4 REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index f9edcb1f64..7b6eb88269 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: -4507a4e71f5490cf64ae981fd7b9facf85867858 +6ccfb11529c2bd172bc7d4956eadfab0b55bf12d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,14 +11,14 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e4) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 66bded5b3e6fefc181f7df433acd18c392267311 FV3 (heads/develop-66-g66bded5) + d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5297-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) @@ -35,241 +35,306 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240819 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_237615 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240821 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75332 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:27, 11:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [52:47, 01:27](3103 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:29, 11:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [52:45, 01:54](1805 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [34:40, 01:40](1837 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [34:37, 02:13](973 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:46, 02:25](1792 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:30, 12:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [51:45, 01:08](1812 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:21, 05:25] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [58:55, 01:51](1839 MB) - -PASS -- COMPILE 's2swa_intel' [12:29, 12:08] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [52:45, 01:37](3134 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [52:45, 01:54](3127 MB) -PASS -- TEST 'cpld_restart_p8_intel' [44:26, 01:14](3059 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [52:45, 01:34](3149 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [44:26, 01:42](3077 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [52:45, 01:01](3372 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [52:45, 01:39](3122 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [52:46, 01:29](3073 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [52:45, 01:50](3132 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [52:54, 04:22](4125 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [33:53, 05:26](4265 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [52:45, 01:54](3109 MB) - -PASS -- COMPILE 's2sw_intel' [11:27, 11:07] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [53:49, 00:44](1821 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [53:49, 01:54](1888 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:27, 10:15] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [53:48, 01:59](1894 MB) - -PASS -- COMPILE 's2s_intel' [11:27, 10:49] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [53:48, 00:52](2867 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [53:48, 01:22](2879 MB) -PASS -- TEST 'cpld_restart_c48_intel' [49:42, 01:14](2286 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:34, 16:04] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [48:41, 02:02](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:25, 11:32] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:49, 00:58](1820 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:23, 01:22](981 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:24, 01:42](1805 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:30, 05:14] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [52:24, 01:23](1858 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:29, 09:04] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [44:19, 01:24](568 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [44:19, 00:25](1470 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [44:19, 01:25](1478 MB) -PASS -- TEST 'control_latlon_intel' [44:19, 01:21](1470 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [44:19, 01:28](1476 MB) -PASS -- TEST 'control_c48_intel' [44:18, 00:48](1558 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [44:18, 00:40](692 MB) -PASS -- TEST 'control_c192_intel' [44:19, 01:09](1575 MB) -PASS -- TEST 'control_c384_intel' [44:23, 02:01](1846 MB) -PASS -- TEST 'control_c384gdas_intel' [44:23, 02:45](1065 MB) -PASS -- TEST 'control_stochy_intel' [44:19, 00:23](523 MB) -PASS -- TEST 'control_stochy_restart_intel' [41:53, 01:05](331 MB) -PASS -- TEST 'control_lndp_intel' [44:19, 00:29](526 MB) -PASS -- TEST 'control_iovr4_intel' [44:19, 00:42](521 MB) -PASS -- TEST 'control_iovr5_intel' [44:19, 00:41](522 MB) -PASS -- TEST 'control_p8_intel' [44:18, 02:00](1765 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [44:10, 01:58](1754 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [44:06, 02:03](1769 MB) -PASS -- TEST 'control_restart_p8_intel' [38:39, 00:47](909 MB) -PASS -- TEST 'control_noqr_p8_intel' [41:53, 01:40](1752 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [36:34, 01:02](917 MB) -PASS -- TEST 'control_decomp_p8_intel' [40:49, 01:33](1758 MB) -PASS -- TEST 'control_2threads_p8_intel' [40:48, 01:56](1841 MB) -PASS -- TEST 'control_p8_lndp_intel' [40:47, 00:57](1755 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [40:29, 01:47](1813 MB) -PASS -- TEST 'control_p8_mynn_intel' [40:02, 01:39](1774 MB) -PASS -- TEST 'merra2_thompson_intel' [39:31, 01:38](1765 MB) -PASS -- TEST 'regional_control_intel' [39:23, 00:15](841 MB) -PASS -- TEST 'regional_restart_intel' [33:29, 00:22](841 MB) -PASS -- TEST 'regional_decomp_intel' [39:19, 00:59](842 MB) -PASS -- TEST 'regional_2threads_intel' [39:17, 00:50](893 MB) -PASS -- TEST 'regional_noquilt_intel' [38:42, 00:16](1170 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [38:28, 01:20](840 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [38:27, 01:17](844 MB) -PASS -- TEST 'regional_wofs_intel' [38:26, 00:27](1573 MB) - -PASS -- COMPILE 'rrfs_intel' [09:29, 08:33] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [37:53, 02:11](910 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [37:38, 01:01](1059 MB) -PASS -- TEST 'rap_decomp_intel' [37:35, 01:43](910 MB) -PASS -- TEST 'rap_2threads_intel' [36:19, 01:19](991 MB) -PASS -- TEST 'rap_restart_intel' [28:07, 01:21](779 MB) -PASS -- TEST 'rap_sfcdiff_intel' [35:26, 01:54](907 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [35:26, 01:37](909 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [25:56, 01:26](777 MB) -PASS -- TEST 'hrrr_control_intel' [34:43, 01:52](906 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [34:31, 01:46](906 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [34:04, 01:46](982 MB) -PASS -- TEST 'hrrr_control_restart_intel' [28:33, 00:58](737 MB) -PASS -- TEST 'rrfs_v1beta_intel' [33:58, 02:09](904 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [33:51, 00:36](1866 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [33:02, 01:01](1852 MB) - -PASS -- COMPILE 'csawmg_intel' [08:27, 07:53] -PASS -- TEST 'control_csawmg_intel' [45:21, 00:20](863 MB) -PASS -- TEST 'control_ras_intel' [45:21, 00:48](557 MB) - -PASS -- COMPILE 'wam_intel' [08:29, 07:51] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [33:00, 00:20](1554 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:27, 08:01] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [32:28, 01:13](1757 MB) -PASS -- TEST 'regional_control_faster_intel' [32:22, 00:25](827 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:25, 07:17] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [32:10, 01:17](1496 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [31:41, 01:18](1499 MB) -PASS -- TEST 'control_stochy_debug_intel' [31:40, 00:42](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [31:39, 01:01](701 MB) -PASS -- TEST 'control_csawmg_debug_intel' [31:37, 00:25](1002 MB) -PASS -- TEST 'control_ras_debug_intel' [31:36, 00:59](708 MB) -PASS -- TEST 'control_diag_debug_intel' [31:29, 01:06](1557 MB) -PASS -- TEST 'control_debug_p8_intel' [30:37, 00:44](1790 MB) -PASS -- TEST 'regional_debug_intel' [30:11, 00:18](886 MB) -PASS -- TEST 'rap_control_debug_intel' [29:41, 00:36](1086 MB) -PASS -- TEST 'hrrr_control_debug_intel' [28:33, 00:41](1078 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [28:31, 00:35](1082 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [28:07, 00:38](1081 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [28:00, 00:42](1087 MB) -PASS -- TEST 'rap_diag_debug_intel' [27:39, 00:37](1168 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [27:14, 00:33](1084 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [27:10, 00:37](1083 MB) -PASS -- TEST 'rap_lndp_debug_intel' [27:10, 00:40](1082 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [27:09, 00:41](1083 MB) -PASS -- TEST 'rap_noah_debug_intel' [26:45, 00:43](1078 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [26:43, 00:39](1083 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [26:33, 00:37](1080 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [25:56, 00:50](1079 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [25:55, 00:56](1087 MB) -PASS -- TEST 'rap_flake_debug_intel' [25:42, 00:37](1083 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [25:03, 01:51](1087 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:18, 04:29] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [47:27, 00:20](1591 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:22, 07:47] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [24:54, 01:27](919 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:39, 02:07](781 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:24, 01:55](783 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:11, 01:48](841 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:28, 02:03](826 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [23:21, 01:30](780 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:12, 01:36](681 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [18:55, 00:23](665 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:26, 07:55] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [23:12, 01:07](996 MB) -PASS -- TEST 'conus13km_2threads_intel' [19:05, 00:50](993 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [18:27, 00:43](865 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:25, 08:02] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [22:26, 01:32](809 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:17, 04:43] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [21:57, 00:48](957 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:57, 01:00](956 MB) -PASS -- TEST 'conus13km_debug_intel' [21:37, 00:43](1046 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:23, 00:25](714 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [20:58, 01:02](1047 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:42, 00:26](1113 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:18, 04:36] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [20:37, 00:44](981 MB) - -PASS -- COMPILE 'hafsw_intel' [10:25, 09:20] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [20:40, 01:51](601 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [20:39, 00:50](947 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [20:19, 01:42](651 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [20:16, 02:18](674 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:02, 01:19](693 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [19:20, 01:08](378 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:13, 02:15](390 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [18:28, 01:35](292 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:23, 02:42](366 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [18:08, 01:34](406 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [18:08, 00:57](407 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [16:52, 00:46](485 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [16:42, 00:26](318 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:19, 05:02] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:25, 01:27](514 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:24, 09:09] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:17, 00:53](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:02, 01:38](704 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:25, 09:19] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:31, 01:21](704 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:24, 08:45] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [15:18, 01:55](643 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:16, 01:56](630 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [15:11, 00:25](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:26, 10:07] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [15:02, 01:45](1817 MB) - -PASS -- COMPILE 'atml_intel' [09:24, 09:03] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [06:20, 05:15] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [08:29, 08:13] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [14:43, 01:17](3026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [14:05, 01:59](2909 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:03, 01:56](2924 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:26, 04:26] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [13:16, 01:38](4452 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 11:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [02:14, 01:18](3107 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:26, 12:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [01:13, 01:33](1817 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:59, 02:22](1829 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [42:38, 02:02](974 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [01:14, 01:57](1788 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:25, 11:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [01:13, 01:00](1810 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:18, 05:21] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [07:21, 01:28](1843 MB) + +PASS -- COMPILE 's2swa_intel' [12:25, 11:27] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [01:13, 01:20](3132 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [01:13, 01:37](3131 MB) +PASS -- TEST 'cpld_restart_p8_intel' [52:44, 01:07](3058 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [01:13, 01:22](3160 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [52:45, 01:03](3078 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [01:13, 01:43](3371 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [01:13, 01:23](3125 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [01:14, 01:32](3074 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [01:13, 01:41](3131 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [01:22, 04:32](4123 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [41:23, 04:24](4271 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [01:13, 01:42](3107 MB) + +PASS -- COMPILE 's2sw_intel' [12:25, 11:24] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [01:13, 01:41](1831 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [01:13, 01:52](1886 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:12] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [02:14, 01:49](1891 MB) + +PASS -- COMPILE 's2s_intel' [11:24, 10:43] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [02:13, 00:49](2871 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:13, 01:17](2876 MB) +PASS -- TEST 'cpld_restart_c48_intel' [58:07, 01:02](2289 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:30, 16:17] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [56:08, 01:51](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:30, 11:53] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [01:09, 01:48](1825 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [42:33, 01:15](999 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:26, 01:37](1795 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:19] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [01:02, 01:21](1850 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:22, 08:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [52:51, 00:20](568 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [52:51, 01:27](1469 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [52:51, 01:20](1480 MB) +PASS -- TEST 'control_latlon_intel' [52:51, 00:19](1469 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [52:51, 01:29](1469 MB) +PASS -- TEST 'control_c48_intel' [52:50, 00:50](1553 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [52:50, 00:44](690 MB) +PASS -- TEST 'control_c192_intel' [52:51, 01:08](1581 MB) +PASS -- TEST 'control_c384_intel' [52:55, 02:02](1859 MB) +PASS -- TEST 'control_c384gdas_intel' [52:55, 02:43](1065 MB) +PASS -- TEST 'control_stochy_intel' [52:51, 00:24](522 MB) +PASS -- TEST 'control_stochy_restart_intel' [50:25, 01:00](380 MB) +PASS -- TEST 'control_lndp_intel' [52:51, 00:30](527 MB) +PASS -- TEST 'control_iovr4_intel' [52:46, 00:39](519 MB) +PASS -- TEST 'control_iovr5_intel' [52:46, 00:42](517 MB) +PASS -- TEST 'control_p8_intel' [52:33, 01:52](1762 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [52:26, 02:01](1765 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [52:19, 01:52](1759 MB) +PASS -- TEST 'control_restart_p8_intel' [47:03, 00:51](909 MB) +PASS -- TEST 'control_noqr_p8_intel' [50:26, 01:51](1759 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [45:01, 01:45](915 MB) +PASS -- TEST 'control_decomp_p8_intel' [49:17, 01:23](1751 MB) +PASS -- TEST 'control_2threads_p8_intel' [49:15, 01:50](1832 MB) +PASS -- TEST 'control_p8_lndp_intel' [49:14, 01:09](1761 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [49:08, 02:01](1821 MB) +PASS -- TEST 'control_p8_mynn_intel' [48:21, 01:46](1768 MB) +PASS -- TEST 'merra2_thompson_intel' [48:02, 01:57](1761 MB) +PASS -- TEST 'regional_control_intel' [47:59, 01:10](844 MB) +PASS -- TEST 'regional_restart_intel' [41:11, 00:20](841 MB) +PASS -- TEST 'regional_decomp_intel' [47:56, 00:55](842 MB) +PASS -- TEST 'regional_2threads_intel' [47:54, 00:47](905 MB) +PASS -- TEST 'regional_noquilt_intel' [47:38, 00:14](1172 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [46:55, 00:22](848 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [46:55, 00:13](854 MB) +PASS -- TEST 'regional_wofs_intel' [46:47, 00:30](1569 MB) + +PASS -- COMPILE 'rrfs_intel' [09:23, 08:31] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [46:48, 02:00](909 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [46:06, 01:03](1057 MB) +PASS -- TEST 'rap_decomp_intel' [46:01, 01:19](912 MB) +PASS -- TEST 'rap_2threads_intel' [44:51, 01:04](988 MB) +PASS -- TEST 'rap_restart_intel' [37:13, 01:15](780 MB) +PASS -- TEST 'rap_sfcdiff_intel' [44:20, 01:56](908 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [44:08, 01:33](908 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [34:52, 01:34](780 MB) +PASS -- TEST 'hrrr_control_intel' [43:46, 01:08](904 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [43:46, 01:03](903 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [43:17, 01:13](988 MB) +PASS -- TEST 'hrrr_control_restart_intel' [38:29, 01:02](732 MB) +PASS -- TEST 'rrfs_v1beta_intel' [43:01, 02:01](902 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [42:10, 00:44](1862 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [41:59, 00:55](1850 MB) + +PASS -- COMPILE 'csawmg_intel' [08:23, 07:55] +PASS -- TEST 'control_csawmg_intel' [53:50, 00:22](864 MB) +PASS -- TEST 'control_ras_intel' [53:50, 00:51](557 MB) + +PASS -- COMPILE 'wam_intel' [08:23, 07:55] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [41:12, 00:23](1560 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:23, 08:09] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [41:12, 02:07](1749 MB) +PASS -- TEST 'regional_control_faster_intel' [41:04, 00:20](832 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:23, 07:29] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [40:43, 01:19](1494 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [40:40, 01:21](1500 MB) +PASS -- TEST 'control_stochy_debug_intel' [40:19, 00:45](702 MB) +PASS -- TEST 'control_lndp_debug_intel' [40:17, 01:04](700 MB) +PASS -- TEST 'control_csawmg_debug_intel' [40:09, 00:26](1006 MB) +PASS -- TEST 'control_ras_debug_intel' [39:57, 01:00](707 MB) +PASS -- TEST 'control_diag_debug_intel' [39:56, 01:22](1561 MB) +PASS -- TEST 'control_debug_p8_intel' [38:59, 00:56](1793 MB) +PASS -- TEST 'regional_debug_intel' [38:46, 00:20](885 MB) +PASS -- TEST 'rap_control_debug_intel' [38:29, 00:41](1086 MB) +PASS -- TEST 'hrrr_control_debug_intel' [38:18, 00:47](1081 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [37:30, 00:41](1085 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [36:56, 00:43](1083 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [36:51, 00:38](1086 MB) +PASS -- TEST 'rap_diag_debug_intel' [35:49, 00:34](1172 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:48, 00:32](1086 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:45, 00:32](1091 MB) +PASS -- TEST 'rap_lndp_debug_intel' [35:43, 00:37](1088 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [35:32, 00:41](1088 MB) +PASS -- TEST 'rap_noah_debug_intel' [35:27, 00:44](1080 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [35:27, 00:41](1084 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [34:55, 00:34](1081 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [34:55, 00:43](1081 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [34:52, 00:49](1083 MB) +PASS -- TEST 'rap_flake_debug_intel' [34:24, 00:44](1089 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [34:04, 02:07](1091 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:19, 04:31] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [55:53, 01:07](1592 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:22, 07:53] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [33:33, 01:21](912 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [32:53, 01:43](783 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [32:25, 01:56](785 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [32:23, 01:37](843 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [32:04, 01:50](830 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [31:56, 01:19](782 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [24:58, 01:32](679 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [26:59, 00:16](664 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:27, 08:02] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [31:45, 01:12](996 MB) +PASS -- TEST 'conus13km_2threads_intel' [27:37, 00:54](995 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [27:24, 00:42](869 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:27, 07:55] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [31:43, 01:21](813 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:21, 04:32] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [31:27, 00:47](957 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [30:58, 00:56](955 MB) +PASS -- TEST 'conus13km_debug_intel' [30:25, 00:43](1045 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [30:22, 00:29](717 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [29:14, 01:05](1045 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [29:13, 00:24](1112 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:19, 04:26] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [29:13, 00:45](986 MB) + +PASS -- COMPILE 'hafsw_intel' [09:29, 09:12] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [29:08, 02:03](601 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [29:08, 01:10](946 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:59, 01:30](647 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [28:58, 01:28](677 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [28:23, 02:13](692 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [28:18, 01:01](378 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [27:54, 02:15](389 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [27:24, 01:46](299 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:15, 02:22](369 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [27:00, 01:38](407 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:59, 00:58](410 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [25:55, 00:46](475 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [25:14, 00:25](330 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:18, 04:53] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:08, 01:29](517 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:28, 09:06] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:54, 01:43](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:38, 01:33](701 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:31, 09:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [24:35, 01:09](701 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:29, 08:38] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [24:27, 01:57](648 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [24:24, 01:51](628 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:55, 00:34](879 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:28, 09:58] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:44, 00:41](1813 MB) + +PASS -- COMPILE 'atml_intel' [09:23, 08:57] ( 8 warnings 2 remarks ) + +FAILED: UNABLE TO FINISH COMPILE -- COMPILE 'atml_debug_intel' [, ] + +PASS -- COMPILE 'atmaero_intel' [09:24, 08:11] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [22:40, 01:18](3026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [22:31, 01:47](2910 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [22:14, 01:45](2916 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:22, 04:26] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:05, 01:15](4444 MB) SYNOPSIS: -Starting Date/Time: 20240819 19:54:30 -Ending Date/Time: 20240819 21:13:14 -Total Time: 01h:19m:26s -Compiles Completed: 33/33 +Starting Date/Time: 20240822 16:46:02 +Ending Date/Time: 20240822 18:04:22 +Total Time: 01h:18m:59s +Compiles Completed: 32/33 Tests Completed: 156/156 +Failed Compiles: +* COMPILE atml_debug_intel: FAILED: UNABLE TO FINISH COMPILE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_wcoss2/compile_atml_debug_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF WCOSS2 REGRESSION TESTING LOG==== +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +6ccfb11529c2bd172bc7d4956eadfab0b55bf12d + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e4) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) + 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5297-g1d9b0765) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) + 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240821 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_85439 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-l) - USE CONFIG FILE: rt.test +* (-o) - COMPILE ONLY, SKIP TESTS + +PASS -- COMPILE 'atml_debug_intel' [06:19, 05:39] ( 868 warnings 2 remarks ) + +SYNOPSIS: +Starting Date/Time: 20240822 18:58:56 +Ending Date/Time: 20240822 19:05:16 +Total Time: 00h:06m:43s +Compiles Completed: 1/1 +Tests Completed: 0/0 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/params_grib2_tbl_new b/tests/parm/params_grib2_tbl_new old mode 100644 new mode 100755 index 396a77e9ca..20ab866ed4 --- a/tests/parm/params_grib2_tbl_new +++ b/tests/parm/params_grib2_tbl_new @@ -5,6 +5,7 @@ 0 3 15 0 5WAVH 0 3 193 1 5WAVH 0 20 106 0 AACOEF + 4 10 4 0 AATRATE 0 2 11 0 ABSD 4 2 5 0 ABSFRQ 0 1 18 0 ABSH @@ -24,8 +25,10 @@ 0 2 36 0 AFRWE 0 20 50 0 AIA 0 18 10 0 AIRCON + 10 0 82 0 AIRDENOC 2 0 208 1 AKHS 2 0 209 1 AKMS + 10 2 14 0 ALBDOICE 0 19 1 0 ALBDO 0 20 108 0 ALBGRD 0 20 107 0 ALBSAT @@ -37,6 +40,7 @@ 0 3 11 0 ALTS 10 0 37 0 ALTWH 2 0 219 1 AMIXL + 4 5 0 0 AMPL 3 192 11 0 AMSRE10 3 192 12 0 AMSRE11 3 192 13 0 AMSRE12 @@ -65,7 +69,11 @@ 0 190 0 0 ATEXT 3 1 13 0 ATMDIV 0 20 101 0 ATMTK + 4 10 7 0 AURELEC + 20 1 8 0 AVECTNUM + 20 1 7 0 AVHRATIO 2 3 201 1 AVSFT + 10 191 4 0 BARDSF 2 3 200 1 BARET 10 4 7 0 BATHY 10 0 44 0 BENINX @@ -79,6 +87,7 @@ 2 0 197 1 BMIXL 0 7 201 1 BNEGELAY 2 3 4 0 BOTLST + 10 4 29 0 BPEH 0 7 202 1 BPOSELAY 0 15 1 0 BREF 3 1 27 0 BRFLF @@ -87,6 +96,11 @@ 0 15 2 0 BRVEL 0 15 0 0 BSWID 4 3 0 0 BTOT + 2 6 2 0 BUILDCOVER + 2 6 3 0 BUILDHGT + 2 4 21 0 BURNABAREA + 2 4 20 0 BURNAREA + 2 4 17 0 BURNIDX 4 3 1 0 BVEC1 4 3 2 0 BVEC2 4 3 3 0 BVEC3 @@ -94,6 +108,7 @@ 4 8 4 0 CAIIRAD 0 7 206 1 CANGLE 2 1 192 1 CANL + 2 0 63 0 CANTMP 0 7 6 0 CAPE 0 1 88 0 CATCP 0 19 29 0 CATEDR @@ -111,27 +126,48 @@ 0 6 11 0 CDCB 0 6 22 0 CDCC 0 17 3 0 CDCDLTFD + 0 1 162 0 CDCIMF 0 6 23 0 CDCIMR + 0 1 161 0 CDCLWMF 0 6 2 0 CDCON 0 6 12 0 CDCTOP 0 6 8 0 CDCT 0 17 2 0 CDGDLTFD + 0 3 43 0 CDGFLUX + 0 20 80 0 CDIVMF 0 6 14 0 CDLYR 0 6 192 1 CDLYR + 0 1 163 0 CDRMF + 0 1 164 0 CDSMF + 0 3 35 0 CDTMF + 0 1 165 0 CDTWMF 0 4 195 1 CDUVB + 0 1 160 0 CDWFMF + 0 3 42 0 CDWGFLUX 10 0 16 0 CDWW 0 2 29 0 CD 0 2 196 1 CD + 0 1 154 0 CECIMF + 0 1 152 0 CECLWMF + 0 1 158 0 CEFMF + 0 3 40 0 CEGFLUX 0 6 13 0 CEIL + 0 20 78 0 CEMF + 0 1 156 0 CERMF + 0 3 36 0 CETMF + 0 1 150 0 CEWVMF 0 5 197 1 CFNLF 0 4 199 1 CFNSF 0 1 34 0 CFRZR 0 1 193 1 CFRZR 0 20 54 0 CGDRC 0 20 53 0 CGPRC + 10 0 76 0 CHNCK + 0 1 147 0 CHPRECIP 10 3 2 0 CH 0 18 17 0 CIAIRC 0 19 206 1 CICEL + 0 1 146 0 CICEPR 0 1 35 0 CICEP 0 1 194 1 CICEP 10 2 12 0 CICES @@ -147,6 +183,7 @@ 2 3 22 0 CISICE 2 3 20 0 CISOILM 2 0 23 0 CISOILW + 0 19 50 0 CITEDR 0 19 207 1 CIVIS 3 2 9 0 CLDALB 3 2 10 0 CLDEMISS @@ -156,12 +193,23 @@ 3 2 6 0 CLDPER 3 2 4 0 CLDPHAS 3 1 16 0 CLDRAD + 3 1 31 0 CLDREF 3 2 3 0 CLDTYPE 0 1 235 1 CLLMR 0 1 22 0 CLMR 3 0 7 0 CLOUDM + 3 1 32 0 CLRREF + 0 3 39 0 CMATMOS + 0 1 155 0 CNCIMF + 0 1 153 0 CNCLWMF + 0 20 81 0 CNETS + 0 3 41 0 CNGFLUX 0 2 216 1 CNGWDU 0 2 217 1 CNGWDV + 0 20 79 0 CNMF + 0 1 157 0 CNRMF + 0 1 159 0 CNSMF + 0 3 37 0 CNTMF 0 3 209 1 CNVDEMF 0 3 208 1 CNVDMF 0 0 196 1 CNVHR @@ -171,8 +219,10 @@ 0 2 213 1 CNVV 2 0 13 0 CNWAT 2 0 196 1 CNWAT + 0 1 151 0 CNWVMF 0 20 56 0 COAIA 0 20 1 0 COLMD + 2 4 24 0 COMBCO 0 20 51 0 CONAIR 0 7 19 0 CONAPES 0 1 216 1 CONDP @@ -209,6 +259,7 @@ 0 1 33 0 CRAIN 0 1 192 1 CRAIN 0 20 71 0 CRERELSP + 2 0 48 0 CROPCOV 0 1 76 0 CRRATE 4 2 9 0 CRTFRQ 1 2 13 0 CSAFC @@ -219,6 +270,8 @@ 3 1 17 0 CSKYRAD 0 1 36 0 CSNOW 0 1 195 1 CSNOW + 20 3 8 0 CSPPCAP + 20 3 9 0 CSPPROD 0 1 58 0 CSRATE 0 1 55 0 CSRWE 0 5 195 1 CSULF @@ -230,29 +283,41 @@ 0 19 21 0 CTP 0 6 16 0 CUEFI 0 6 194 1 CUEFI + 0 19 239 1 CWASP + 0 1 149 0 CWATERMR 0 6 6 0 CWAT 0 7 195 1 CWDI 0 6 15 0 CWORK 0 6 193 1 CWORK 0 1 48 0 CWP 1 1 195 1 CWR + 0 1 166 0 CWVF + 0 19 41 0 DBHEIGHT 10 4 195 1 DBSS 0 7 203 1 DCAPE + 2 4 33 0 DDLMC 0 20 12 0 DDMFLX 0 3 30 0 DDRATE + 2 6 8 0 DDROAD + 2 6 6 0 DDROOF 0 20 15 0 DDVEL - 2 0 30 0 DECF + 2 4 35 0 DDWMC + 2 0 30 0 DECFC + 0 2 61 0 DEC 0 3 14 0 DENALT 0 3 10 0 DEN 0 0 7 0 DEPR 1 0 13 0 DEPWSS + 20 1 6 0 DFPRATIO 10 2 2 0 DICED + 4 10 3 0 DIDXSG 4 4 2 0 DIFEFLUX 4 4 4 0 DIFIFLUX 4 4 0 0 DIFPFLUX 3 6 5 0 DIFSOLEX 3 6 4 0 DIFSOLIR 0 4 14 0 DIFSWRF + 2 6 7 0 DIOWALL 10 1 0 0 DIRC 2 3 14 0 DIREC 10 0 10 0 DIRPW @@ -263,36 +328,82 @@ 10 0 32 0 DIRWWW 1 0 7 0 DISRS 0 3 6 0 DIST + 0 21 13 0 DIVENTFLUX + 0 21 16 0 DIVKENGFLUX + 0 21 14 0 DIVPOTFLUX + 0 21 17 0 DIVTOTFLUX + 0 21 18 0 DIVWENTFLUX + 0 21 15 0 DIVWPOTFLUX + 2 4 29 0 DLFL 0 5 8 0 DLWRFCS 0 5 3 0 DLWRF 0 5 192 1 DLWRF 0 3 28 0 DMFLX + 0 4 54 0 DNSWRFLX + 0 1 123 0 DPTYPE 0 0 6 0 DPT + 2 0 43 0 DRAINDIR + 2 4 13 0 DRFACT 2 4 8 0 DRTCODE 0 18 12 0 DRYDEP 0 19 237 1 DRYTPROB 4 7 2 0 DSKDAY 4 7 1 0 DSKINT 4 7 3 0 DSKNGT + 10 3 20 0 DSLIBARCOR 10 3 1 0 DSLM 10 191 3 0 DSLOBSO 0 191 3 0 DSLOBS 0 4 52 0 DSWRFCS + 0 4 61 0 DSWRFLXCS 0 4 13 0 DSWRFLX 0 4 7 0 DSWRF 0 4 192 1 DSWRF + 0 2 60 0 DTC 0 4 204 1 DTRF 2 4 7 0 DUFMCODE 0 4 194 1 DUVB + 2 4 30 0 DWFL + 10 3 4 0 DWHFLUX 0 4 12 0 DWUVR 0 2 9 0 DZDT 0 7 207 1 E3KH + 0 21 22 0 EADYGR 3 2 11 0 EAODR + 10 1 5 0 EASTCUR + 0 21 5 0 EASTENTFLUX + 0 21 19 0 EASTHFLUX + 0 21 9 0 EASTKINFLUX + 0 21 7 0 EASTPOTFLUX + 0 21 11 0 EASTTOTFLUX + 0 2 64 0 EASTTSSOD + 0 2 66 0 EASTTSSSR + 0 2 62 0 EASTTSS + 10 3 5 0 EASTWSS + 10 4 23 0 EASTWVEL 3 5 5 0 EBSDSSTS 3 5 4 0 EBSSTSTD + 2 0 61 0 ECORFLUX + 4 10 6 0 EDISSTIX 0 19 30 0 EDPARM + 0 1 138 0 EFARCICE + 0 1 140 0 EFARGRL + 0 1 141 0 EFARHAIL + 0 1 137 0 EFARRAIN + 0 1 142 0 EFARSIC + 0 1 139 0 EFARSNOW + 20 0 5 0 EFFTEMP 0 7 204 1 EFHL + 0 1 129 0 EFRCCWAT + 0 1 131 0 EFRCICE + 0 1 133 0 EFRGRL + 0 1 134 0 EFRHAIL + 0 1 130 0 EFRRAIN + 0 1 136 0 EFRSICEC + 0 1 135 0 EFRSLC + 0 1 132 0 EFRSNOW 0 3 222 1 EFSH + 10 0 89 0 EFWS 0 7 9 0 EHLX 2 0 237 1 EIWATER 4 2 1 0 ELCDEN @@ -302,9 +413,15 @@ 0 0 205 1 ELMELT 0 191 197 1 ELONN 0 191 193 1 ELON + 0 20 76 0 EMISFLX + 2 0 62 0 EMISS + 10 0 93 0 EMIWAVE 0 1 211 1 EMNP + 2 4 19 0 ENRELCOM + 0 21 3 0 ENTHALPY 0 0 3 0 EPOT 0 19 218 1 EPSR + 4 2 13 0 EQSLABT 10 3 252 1 EROSNP 1 0 3 0 ESCT 0 2 233 1 ESHR @@ -312,6 +429,8 @@ 3 1 0 0 ESTP 3 1 4 0 ESTUGRD 3 1 5 0 ESTVGRD + 10 3 14 0 ESURFWVEL + 10 4 38 0 ESWVP 0 2 32 0 ETACVV 10 3 250 1 ETCWL 4 3 4 0 ETOT @@ -319,6 +438,7 @@ 0 2 38 0 ETSS 4 6 3 0 EUVIRR 4 8 1 0 EUVRAD + 2 0 39 0 EVAPTRAT 2 0 6 0 EVAPT 0 1 79 0 EVARATE 2 3 198 1 EVBS @@ -326,22 +446,29 @@ 4 3 5 0 EVEC1 4 3 6 0 EVEC2 4 3 7 0 EVEC3 - 2 0 29 0 EVERF + 2 0 29 0 EVGFC 0 1 6 0 EVP 2 0 213 1 EWATR + 0 2 50 0 EWINDSTR 0 2 39 0 EWTPARM + 0 3 26 0 EXPRES 4 6 5 0 F107 + 20 1 5 0 FALPRATE 2 4 3 0 FBAREA 2 4 10 0 FBUPINX 0 6 37 0 FCONPC + 10 0 81 0 FCVOCEAN + 2 4 32 0 FDLMC 3 5 3 0 FDNSSTMP 2 4 11 0 FDSRTE + 2 4 34 0 FDWMC 1 0 0 0 FFLDG 1 0 1 0 FFLDRO 2 4 6 0 FFMCODE 0 1 228 1 FICEAC 0 6 21 0 FICE 0 6 199 1 FICE + 2 4 15 0 FIREDIDX 3 0 9 0 FIREDI 2 4 1 0 FIREODT 2 4 0 0 FIREOLK @@ -349,11 +476,15 @@ 1 0 12 0 FLDPSW 0 19 205 1 FLGHT 0 7 18 0 FLXRN + 20 1 9 0 FMALVRH + 0 6 50 0 FOG 2 4 4 0 FOSINDX 0 1 67 0 FPRATE 0 6 32 0 FRACCC + 2 4 36 0 FRADPOW 0 1 43 0 FRAIN 0 1 202 1 FRAIN + 4 5 2 0 FREQ 10 0 63 0 FREWWW 10 0 17 0 FRICVW 0 2 30 0 FRICV @@ -361,12 +492,19 @@ 0 1 227 1 FROZR 2 3 24 0 FRSTINX 10 0 64 0 FRWWTSW + 10 2 29 0 FRZDATE + 10 2 27 0 FRZMLTPOT 0 1 225 1 FRZR 10 3 204 1 FRZSPR 0 1 121 0 FSNOWC 0 6 36 0 FSTRPC + 2 4 23 0 FUELLOAD + 2 4 25 0 FUELMC + 10 4 31 0 FWFC + 10 4 30 0 FWFSW 2 4 5 0 FWINX 0 1 95 0 FZPRATE + 0 3 33 0 GAMSL 0 18 3 0 GDCES 0 18 4 0 GDIOD 0 18 5 0 GDRADP @@ -376,13 +514,19 @@ 0 2 44 0 GEOWS 2 0 10 0 GFLUX 2 0 193 1 GFLUX + 0 3 34 0 GHARGRD + 2 5 0 0 GLACCOV 2 5 1 0 GLACTMP + 0 19 47 0 GLIRRTS + 20 0 3 0 GLOBETMP 0 3 9 0 GPA 0 1 75 0 GPRATE 0 3 4 0 GP 0 4 3 0 GRAD + 2 0 49 0 GRASSCOV 0 7 17 0 GRDRN 0 1 32 0 GRLE + 2 0 60 0 GROSSFLUX 3 6 1 0 GSOLEXP 3 6 0 0 GSOLIRR 0 2 22 0 GUST @@ -396,13 +540,16 @@ 0 19 198 1 HAILPROB 0 1 73 0 HAILPR 0 1 31 0 HAIL + 10 3 10 0 HALOCSSH 4 8 2 0 HARAD 0 19 210 1 HAVNI + 20 1 3 0 HBRATEAV 0 6 5 0 HCDC 0 6 26 0 HCONCB 0 6 27 0 HCONCT 0 0 12 0 HEATX 4 8 6 0 HELCOR + 10 3 18 0 HFLUXCOR 2 0 24 0 HFLUX 0 20 62 0 HGTMD 0 3 211 1 HGTN @@ -411,6 +558,7 @@ 0 3 5 0 HGT 0 19 32 0 HIFREL 2 4 2 0 HINDEX + 2 0 54 0 HIVEGCOV 0 7 8 0 HLCY 0 18 16 0 HMXACON 0 3 18 0 HPBL @@ -421,14 +569,22 @@ 0 15 15 0 HSR 0 3 7 0 HSTDV 10 0 3 0 HTSGW + 20 0 4 0 HUMIDX + 0 3 44 0 HWBT 0 3 3 0 ICAHT 1 2 7 0 ICECIL 10 2 0 0 ICEC 10 2 7 0 ICED + 10 2 19 0 ICEFTHCK 10 2 6 0 ICEG + 10 2 21 0 ICEMPD + 10 2 20 0 ICEMPF + 10 2 22 0 ICEMPV 10 2 9 0 ICEPRS + 0 1 127 0 ICEP 0 19 27 0 ICESC 0 19 37 0 ICESEV + 2 3 29 0 ICETEMP 1 2 6 0 ICETIL 10 2 1 0 ICETK 10 2 8 0 ICETMP @@ -441,6 +597,7 @@ 0 19 234 1 ICSEV 1 2 5 0 ICTKIL 2 0 207 1 ICWAT + 2 4 18 0 IGNCOMP 0 1 20 0 ILIQW 10 0 27 0 IMFTSW 10 0 26 0 IMFWW @@ -454,13 +611,19 @@ 4 0 3 0 IONTMP 0 1 68 0 IPRATE 3 1 1 0 IRRATE + 2 0 47 0 IRRCOV 10 191 0 0 IRTSEC 3 5 0 0 ISSTMP 0 19 235 1 JFWPRB 10 3 201 1 KENG + 0 21 1 0 KINENG 0 7 3 0 KOX + 4 10 5 0 KP + 2 4 12 0 KRIDX 10 0 43 0 KSSEDW 0 7 2 0 KX + 2 0 56 0 LAIHI + 2 0 55 0 LAILO 0 7 198 1 LAI 2 0 234 1 LAKEFRC 2 0 233 1 LANDFRC @@ -476,19 +639,26 @@ 0 3 205 1 LAYTH 0 6 3 0 LCDC 10 3 203 1 LCH + 1 2 15 0 LDEPTH 2 0 28 0 LEAINX + 2 4 31 0 LFMC 0 7 10 0 LFTX 0 7 192 1 LFTX + 0 0 30 0 LHFLXE + 0 0 31 0 LHFLXS 0 0 10 0 LHTFL 0 1 229 1 LICEAC 0 13 195 1 LIPMF 2 3 10 0 LIQVSM + 2 4 27 0 LLFL 0 15 4 0 LMAXBR 4 7 0 0 LMBINT 0 3 210 1 LMH 0 2 218 1 LMV + 1 2 14 0 LNDSNOWT 0 2 203 1 LOPP 0 2 199 1 LOUV + 2 0 53 0 LOVEGCOV 0 2 201 1 LOVV 2 3 3 0 LOWLSM 0 13 194 1 LPMTF @@ -507,9 +677,13 @@ 0 17 192 1 LTNG 0 17 1 0 LTPINX 0 5 2 0 LWAVR + 2 4 28 0 LWFL 0 5 194 1 LWHR 0 4 5 0 LWRAD 2 3 23 0 LWSNWP + 20 1 1 0 MACPRATE + 20 1 0 0 MALACASE + 20 1 4 0 MALAIMM 4 8 7 0 MASK 0 6 38 0 MASSDCD 0 6 39 0 MASSDCI @@ -525,6 +699,7 @@ 0 2 21 0 MAXGUST 0 16 198 1 MAXREF 0 1 27 0 MAXRH + 4 2 10 0 MAXUFZ 0 2 220 1 MAXUVV 0 2 222 1 MAXUW 0 1 245 1 MAXVIG @@ -538,16 +713,22 @@ 0 1 112 0 MDLWGVA 0 1 109 0 MDLWHVA 0 1 115 0 MDLWSVA + 10 0 74 0 MDTSWEL + 10 0 75 0 MDWWAVE 3 2 30 0 MEACST + 20 0 1 0 MEANRTMP + 0 19 44 0 MEANVGRTL 0 6 200 1 MFLUX 0 2 26 0 MFLX 0 2 193 1 MFLX 0 0 14 0 MINDPD 0 1 198 1 MINRH + 0 19 45 0 MINVGRTL 0 19 3 0 MIXHT 0 19 204 1 MIXLY 0 1 2 0 MIXR 0 7 212 1 MLFC + 10 2 28 0 MLTDATE 0 191 195 1 MLYNO 0 1 114 0 MMLWGDA 0 1 111 0 MMLWHDA @@ -566,6 +747,7 @@ 10 0 20 0 MSSW 2 0 11 0 MSTAV 2 0 194 1 MSTAV + 2 3 204 1 MSTAV 2 0 7 0 MTERH 10 4 1 0 MTHA 10 4 0 0 MTHD @@ -598,25 +780,53 @@ 0 6 30 0 NDENCD 2 0 31 0 NDVINX 2 0 217 1 NDVI + 2 0 59 0 NECOFLUX + 10 0 85 0 NEFOCEAN + 10 0 83 0 NEFW + 0 19 46 0 NETRADFLUX + 10 3 13 0 NETUPWFLUX + 0 5 9 0 NIRALBDIF + 0 5 11 0 NIRALBDIRG + 0 5 12 0 NIRALBDIRI + 0 5 13 0 NIRALBDIRV + 0 5 10 0 NIRALBDIR 0 191 196 1 NLATN 0 191 192 1 NLAT 0 3 206 1 NLGSP 0 3 25 0 NLPRES + 0 2 54 0 NLSRLH + 0 2 55 0 NLSRLM 0 5 6 0 NLWRCS 0 5 5 0 NLWRF 0 5 0 0 NLWRS 0 5 1 0 NLWRT + 20 0 6 0 NOREFTMP + 10 3 6 0 NORTHWSS 3 1 6 0 NPIXU + 10 1 6 0 NRTHCUR + 0 21 6 0 NRTHENTFLUX + 0 21 20 0 NRTHHFLUX + 0 21 10 0 NRTHKINFLUX + 0 21 8 0 NRTHPOTFLUX + 0 21 12 0 NRTHTOTFLUX + 0 2 65 0 NRTHTSSOD + 0 2 67 0 NRTHTSSSR + 0 2 63 0 NRTHTSS + 10 4 24 0 NRTHWVEL + 10 0 84 0 NSOCEAN + 10 3 15 0 NSURFWVEL 0 4 11 0 NSWRFCS 0 4 9 0 NSWRF 0 4 0 0 NSWRS 0 4 1 0 NSWRT + 10 4 39 0 NSWVP 4 4 6 0 NTRNFLUX 0 2 37 0 NTSS 0 1 106 0 NUMDG 0 1 107 0 NUMDH 0 1 104 0 NUMDR 0 1 105 0 NUMDS + 0 2 51 0 NWINDSTR 0 2 34 0 NWIND 0 19 214 1 NWSALB 10 0 19 0 NWSTR @@ -648,19 +858,35 @@ 2 0 235 1 PAHFLX 3 3 2 0 PBINFRC 3 3 1 0 PBLIFRC + 0 1 126 0 PBLIZZ 0 19 12 0 PBLREG 3 3 0 0 PBMVFRC + 0 1 125 0 PBSNOW + 0 19 49 0 PCONTB + 0 19 48 0 PCONTT 0 1 234 1 PCPDUR 0 14 202 1 PDMAX1 0 14 203 1 PDMAX24 + 10 0 72 0 PDTSWELL + 10 0 71 0 PDWWAVE + 4 2 12 0 PEAKDEN + 4 2 11 0 PEAKH + 20 0 8 0 PEQUTMP + 0 1 143 0 PERATE 10 0 11 0 PERPW 1 0 16 0 PERRATE 10 0 13 0 PERSW + 2 0 40 0 PEVAPTRAT 0 1 40 0 PEVAP 0 1 199 1 PEVAP 0 1 41 0 PEVPR 0 1 200 1 PEVPR + 20 1 2 0 PFEIRATE + 4 5 1 0 PHASE + 0 4 60 0 PHOARFCS 0 4 10 0 PHOTAR + 0 1 122 0 PIIDX + 0 21 21 0 PILENERGY 3 0 8 0 PIXST 2 0 238 1 PLANTTR 0 7 0 0 PLI @@ -669,9 +895,12 @@ 10 0 23 0 PMAXWH 0 13 192 1 PMTC 0 13 193 1 PMTF + 20 2 0 0 POPDEN 1 1 2 0 POP 2 3 9 0 POROS 2 3 197 1 POROS + 0 20 18 0 POTHPH + 0 21 0 0 POTINTENG 0 0 2 0 POT 0 14 199 1 POZO 0 14 198 1 POZT @@ -681,11 +910,13 @@ 1 1 194 1 PPFFG 0 1 231 1 PPINDX 1 1 1 0 PPOSP + 10 3 3 0 PRACTSAL 0 1 7 0 PRATE 4 0 4 0 PRATMP 0 15 5 0 PREC 0 3 13 0 PRESALT 0 3 8 0 PRESA + 0 3 46 0 PRESDHS 0 3 212 1 PRESN 0 3 0 0 PRES 0 3 1 0 PRMSL @@ -697,6 +928,7 @@ 0 19 216 1 PRSIGSVR 0 19 215 1 PRSVR 10 4 21 0 PRTSAL + 0 1 124 0 PSHOW 0 19 36 0 PSNOWS 0 3 2 0 PTEND 0 1 19 0 PTYPE @@ -705,23 +937,33 @@ 0 1 3 0 PWAT 10 0 46 0 PWAVEDIR 0 1 30 0 PWCAT + 10 0 68 0 PWDFSPAR + 10 0 69 0 PWDSSPAR + 10 0 70 0 PWDTSPAR 10 0 34 0 PWPER + 10 0 65 0 PWPFSPAR + 10 0 66 0 PWPSSPAR + 10 0 67 0 PWPTSPAR 0 1 226 1 PWTHER 0 1 219 1 QMAX 0 1 220 1 QMIN + 1 1 196 1 QPFARI + 1 1 197 1 QPFFFG 2 0 215 1 QREC 0 1 218 1 QZ0 0 16 201 1 RADARVIL 2 3 202 1 RADT + 2 4 14 0 RATESPRD 3 1 8 0 RAZA - 2 0 21 0 RCQ + 2 0 20 0 RCQ 2 0 204 1 RCQ - 2 0 20 0 RCSOL + 2 0 21 0 RCSOL 2 0 205 1 RCSOL 2 0 18 0 RCS 2 0 202 1 RCS 2 0 19 0 RCT 2 0 203 1 RCT + 1 2 16 0 RDEPTH 2 0 206 1 RDRIP 0 15 6 0 RDSP1 0 15 7 0 RDSP2 @@ -739,6 +981,8 @@ 0 16 192 1 REFZR 0 2 13 0 RELD 0 2 12 0 RELV + 20 3 0 0 RENPCAP + 20 3 1 0 RENPPROD 0 16 3 0 RETOP 0 16 197 1 RETOP 0 0 194 1 REV @@ -746,6 +990,7 @@ 0 15 10 0 RFCI 0 15 13 0 RFGRPL 0 15 14 0 RFHAIL + 3 1 30 0 RFL04 3 1 9 0 RFL06 3 1 10 0 RFL08 3 1 11 0 RFL16 @@ -763,6 +1008,8 @@ 0 7 194 1 RI 2 3 6 0 RLYRS 2 3 193 1 RLYRS + 2 6 1 0 ROADCOVER + 4 10 2 0 ROTIDX 0 1 65 0 RPRATE 2 0 16 0 RSMIN 2 0 200 1 RSMIN @@ -770,11 +1017,13 @@ 0 191 194 1 RTSEC 10 3 206 1 RUNUP 1 0 11 0 RVERSW + 10 0 80 0 RWAVEAFW 0 1 24 0 RWMR 0 18 14 0 SACON 0 20 100 0 SADEN 0 19 19 0 SALBD 3 0 1 0 SALBEDO + 10 3 21 0 SALINITY 10 4 193 1 SALIN 1 2 12 0 SALTIL 10 4 3 0 SALTY @@ -812,6 +1061,16 @@ 3 192 36 0 SBTA177 3 192 37 0 SBTA178 3 192 38 0 SBTA179 + 3 192 79 0 SBTA1810 + 3 192 80 0 SBTA1811 + 3 192 81 0 SBTA1812 + 3 192 82 0 SBTA1813 + 3 192 83 0 SBTA1814 + 3 192 84 0 SBTA1815 + 3 192 85 0 SBTA1816 + 3 192 76 0 SBTA187 + 3 192 77 0 SBTA188 + 3 192 78 0 SBTA189 3 192 55 0 SBTAGR10 3 192 56 0 SBTAGR11 3 192 57 0 SBTAGR12 @@ -834,22 +1093,39 @@ 3 192 68 0 SBTAHI9 3 0 2 0 SBTMP 0 7 210 1 SCCP - 4 2 10 0 SCINT + 4 10 1 0 SCIDEXS4 + 4 10 0 0 SCINIDX 0 1 84 0 SCLIWC 0 1 83 0 SCLLWC 3 1 29 0 SCRAD 0 20 112 0 SCTAOTK 3 0 5 0 SCTPRES + 2 6 5 0 SDBUILDHGT 0 20 6 0 SDDMFLX 0 1 61 0 SDEN + 0 3 38 0 SDFSO 3 1 99 0 SDMPEMRR 0 3 20 0 SDSGSO 0 1 60 0 SDWE + 10 4 48 0 SEACMMT + 10 4 44 0 SEACMVT + 10 4 50 0 SEACPSALT + 10 4 51 0 SEACSALT + 10 4 49 0 SEACZMT + 10 4 45 0 SEACZVT + 10 4 46 0 SEAMMT + 10 4 42 0 SEAMVT + 10 3 12 0 SEASFLUX + 10 4 47 0 SEAZMT + 10 4 43 0 SEAZVT 0 20 11 0 SEDMFLX 1 2 3 0 SEDTK 1 2 4 0 SEDTMP + 0 19 39 0 SEEINDEX 10 3 207 1 SETUP 0 1 62 0 SEVAP + 10 0 86 0 SEVWAVE + 0 20 77 0 SFCEFLX 2 0 216 1 SFCRH 2 0 1 0 SFCR 2 0 34 0 SFCWRO @@ -869,6 +1145,8 @@ 3 192 33 0 SFRA174 3 192 34 0 SFRA175 3 192 35 0 SFRA176 + 0 2 47 0 SFRHEAT + 0 2 48 0 SFRMOIST 10 4 11 0 SFSALP 1 2 9 0 SFSAL 10 4 12 0 SFTMPP @@ -882,17 +1160,24 @@ 0 1 108 0 SHTPRM 0 7 13 0 SHWINX 10 2 3 0 SICED + 10 2 17 0 SICEHC + 10 2 15 0 SICEVOL + 4 8 8 0 SICFL + 10 2 23 0 SIFTP 4 9 1 0 SIGHAL 0 7 209 1 SIGH 4 9 2 0 SIGPAR 4 9 0 0 SIGPED 0 7 211 1 SIGT 0 19 217 1 SIPD + 2 0 50 0 SKINRC 0 0 17 0 SKINT 3 5 1 0 SKSSTMP + 0 19 38 0 SKYIDX 0 1 230 1 SLACC 0 19 23 0 SLDP 3 0 4 0 SLFTI + 0 17 5 0 SLNGPIDX 10 3 202 1 SLTFL 2 3 194 1 SLTYP 0 6 34 0 SLWTC @@ -901,6 +1186,7 @@ 0 1 113 0 SMLWGMA 0 1 110 0 SMLWHMA 0 1 116 0 SMLWSMA + 2 0 41 0 SMRATE 2 3 7 0 SMREF 2 3 195 1 SMREF 0 19 18 0 SNFALB @@ -917,17 +1203,23 @@ 0 1 208 1 SNOT 0 1 42 0 SNOWC 0 1 201 1 SNOWC + 0 1 148 0 SNOWERAT 0 1 233 1 SNOWLR + 0 19 40 0 SNOWLVL 0 19 236 1 SNOWLVL + 2 3 28 0 SNOWTMP + 10 2 13 0 SNOWTSI 0 1 222 1 SNOWT + 20 3 6 0 SNPVPCAP + 20 3 7 0 SNPVPPROD + 10 2 18 0 SNSIHC + 10 2 16 0 SNVOLSI 2 3 25 0 SNWDEB 2 3 27 0 SOILDEP 2 3 21 0 SOILICE 2 3 5 0 SOILL 2 3 192 1 SOILL 2 3 19 0 SOILMOI - 2 0 3 0 SOILM - 2 0 22 0 SOILM 2 3 15 0 SOILP 2 0 239 1 SOILSE 2 3 18 0 SOILTMP @@ -939,6 +1231,7 @@ 3 1 28 0 SPBRT 10 1 1 0 SPC 4 6 4 0 SPECIRR + 10 0 88 0 SPECWI 4 1 0 0 SPEED 0 1 0 0 SPFH 10 0 45 0 SPFTR @@ -947,7 +1240,10 @@ 0 1 100 0 SPNCR 0 1 101 0 SPNCS 0 1 66 0 SPRATE + 2 4 16 0 SPRDCOMP 4 2 7 0 SPRDF + 20 3 4 0 SPVPCAP + 20 3 5 0 SPVPPROD 3 0 3 0 SPWAT 3 0 0 0 SRAD 0 1 85 0 SRAINC @@ -958,16 +1254,20 @@ 3 192 49 0 SRFAGR4 3 192 50 0 SRFAGR5 3 192 51 0 SRFAGR6 + 0 1 144 0 SRWATERC 0 1 12 0 SRWEQ 0 20 103 0 SSALBK 0 3 22 0 SSGSO + 10 3 19 0 SSHGTPARM 10 3 195 1 SSHG 3 5 2 0 SSKSSTMP 3 192 62 0 SSMS1715 3 192 63 0 SSMS1716 3 192 64 0 SSMS1717 3 192 65 0 SSMS1718 + 0 1 145 0 SSNOWWC 0 1 86 0 SSNOWW + 0 1 168 0 SSPFHW 1 0 6 0 SSRUN 1 0 193 1 SSRUN 10 3 200 1 SSST @@ -975,22 +1275,31 @@ 2 0 211 1 SSTOR 10 3 199 1 SSTT 0 6 35 0 SSWTC + 20 0 7 0 STDEFTMP + 10 3 11 0 STERCSSH + 10 0 96 0 STMCREST + 10 0 97 0 STMWAVE 0 19 200 1 STORPROB 0 7 208 1 STPC 0 2 4 0 STRM 0 1 87 0 STRPRATE + 2 0 52 0 SUBSRATE + 0 6 51 0 SUNFRAC 0 6 33 0 SUNSD 0 6 201 1 SUNSD 0 6 24 0 SUNS + 2 0 51 0 SURFRATE 10 3 192 1 SURGE 0 19 220 1 SVRTS 10 3 208 1 SWASH + 0 3 32 0 SWATERVP 0 4 2 0 SWAVR 10 0 7 0 SWDIR 0 20 7 0 SWDMFLX 0 7 5 0 SWEATX 10 0 8 0 SWELL 1 0 4 0 SWEPON + 2 3 30 0 SWET 10 0 47 0 SWHFSWEL 0 4 197 1 SWHR 10 0 48 0 SWHSSWEL @@ -1000,10 +1309,18 @@ 3 1 194 1 SWQI 0 4 6 0 SWRAD 0 19 212 1 SWSALB + 10 4 41 0 SWSTBC + 10 4 35 0 SWSTNR + 10 4 37 0 SWSTP + 10 4 40 0 SWTTBC + 10 4 34 0 SWTTNR + 10 4 36 0 SWTTP 0 6 1 0 TCDC + 0 191 4 0 TCDTRACK 0 0 204 1 TCHP 0 1 81 0 TCICON 0 14 2 0 TCIOZ + 0 1 169 0 TCISSPFHW 0 1 64 0 TCIWV 2 0 35 0 TCLASS 0 1 209 1 TCLSW @@ -1026,6 +1343,7 @@ 0 6 17 0 TCONDO 0 1 21 0 TCOND 0 6 195 1 TCOND + 0 1 167 0 TCSLW 10 3 242 1 TCSRG20 10 3 243 1 TCSRG30 10 3 244 1 TCSRG40 @@ -1037,7 +1355,10 @@ 0 1 51 0 TCWAT 0 0 20 0 TDCHT 0 2 31 0 TDCMOM + 10 0 94 0 TDMCREST + 10 0 95 0 TDMWAVE 2 0 36 0 TFRCT + 10 3 9 0 THERCSSH 0 0 197 1 THFLX 0 3 12 0 THICK 0 6 10 0 THUNC @@ -1046,10 +1367,13 @@ 0 18 7 0 TIACIP 0 18 8 0 TIACRP 10 3 251 1 TIDE + 0 7 20 0 TIIDEX 0 1 206 1 TIPD 0 19 11 0 TKE 0 1 90 0 TKMFLX + 0 19 42 0 TLBHEIGHT 0 17 4 0 TLGTFD + 0 19 43 0 TLTHEIGH 0 6 9 0 TMAXT 0 0 4 0 TMAX 0 0 5 0 TMIN @@ -1064,12 +1388,15 @@ 0 19 197 1 TORPROB 0 7 4 0 TOTALX 0 1 80 0 TOTCON + 0 21 2 0 TOTENG 0 18 13 0 TOTLWD 0 14 0 0 TOZNE 0 14 197 1 TOZ 2 0 37 0 TPERCT 0 19 219 1 TPFI 0 1 52 0 TPRATE + 0 2 231 1 TPWDIR + 0 2 232 1 TPWSPD 0 20 13 0 TRANHH 2 3 12 0 TRANSO 2 0 230 1 TRANS @@ -1078,11 +1405,13 @@ 0 2 225 1 TRWSPD 0 0 200 1 TSD1D 0 191 0 0 TSEC + 0 2 58 0 TSFCSTR 4 6 0 0 TSI 0 3 199 1 TSLSA 0 1 50 0 TSNOWP 0 1 241 1 TSNOW 2 0 2 0 TSOIL + 0 1 128 0 TSPRATE 0 1 57 0 TSRATE 0 1 53 0 TSRWE 0 19 203 1 TSTMC @@ -1107,8 +1436,11 @@ 10 3 205 1 TWLWAV 0 20 58 0 TYAAL 0 20 57 0 TYABA + 2 0 58 0 TYPHIVEG + 2 0 57 0 TYPLOVEG 0 3 16 0 U-GWD 0 3 194 1 U-GWD + 0 4 57 0 UBALBDIRG 10 1 194 1 UBARO 0 3 31 0 UCLSPRS 0 1 120 0 UCSCIW @@ -1126,8 +1458,10 @@ 0 5 4 0 ULWRF 0 5 193 1 ULWRF 0 3 27 0 UMFLX + 2 4 22 0 UNBURNAREA 0 1 118 0 UNCSH 0 2 45 0 UNDIV + 0 2 56 0 UNWIND 10 1 2 0 UOGRD 1 0 14 0 UPAPCP 1 0 15 0 UPASM @@ -1135,17 +1469,28 @@ 0 7 197 1 UPHL 2 3 2 0 UPLSM 2 3 1 0 UPLST + 2 0 44 0 UPSAREA + 10 4 27 0 UPWWVEL + 2 6 0 0 URBCOVER 3 1 192 1 USCT + 10 0 90 0 USMFO 10 0 21 0 USSD 0 2 27 0 USTM 0 2 194 1 USTM 0 4 53 0 USWRFCS 0 4 8 0 USWRF 0 4 193 1 USWRF + 20 0 0 0 UTHCIDX 0 4 205 1 UTRF + 0 4 15 0 UUVEARTH + 0 4 55 0 UVALBDIF + 0 4 58 0 UVALBDIRI + 0 4 56 0 UVALBDIR + 0 4 59 0 UVBDIRV 0 4 50 0 UVIUCS 0 4 51 0 UVI 0 7 196 1 UVI + 0 2 52 0 UWINDSTR 0 3 17 0 V-GWD 0 3 195 1 V-GWD 0 19 232 1 VAFTD @@ -1158,6 +1503,8 @@ 0 14 195 1 VDFOZ 0 2 208 1 VDFUA 0 2 209 1 VDFVA + 0 2 59 0 VDIV + 10 4 28 0 VEDDYDIF 0 2 204 1 VEDH 2 0 232 1 VEGMAX 2 0 231 1 VEGMIN @@ -1184,6 +1531,7 @@ 0 19 0 0 VIS 0 1 92 0 VKMFLX 0 20 52 0 VMXR + 0 2 57 0 VNWIND 10 1 3 0 VOGRD 3 4 4 0 VOLACDEM 3 4 7 0 VOLACDEN @@ -1202,6 +1550,9 @@ 0 0 15 0 VPTMP 0 2 224 1 VRATE 3 1 193 1 VSCT + 10 4 33 0 VSFC + 10 4 32 0 VSFSW + 10 0 91 0 VSMFO 2 0 25 0 VSOILM 2 3 16 0 VSOSM 10 0 22 0 VSSD @@ -1213,18 +1564,29 @@ 0 2 16 0 VVCSH 0 2 8 0 VVEL 2 0 27 0 VWILTM + 0 2 53 0 VWINDSTR 0 2 25 0 VWSH 0 2 192 1 VWSH + 2 6 4 0 VZAFRAC 10 4 17 0 WATDENA + 0 21 4 0 WATENTHALPY 10 4 16 0 WATERDEN 2 0 236 1 WATERSA 10 4 20 0 WATPDENA 10 4 19 0 WATPDEN 10 4 18 0 WATPTEMP 2 0 5 0 WATR + 10 0 79 0 WAVEFDIR + 10 0 78 0 WAVEFMAG 10 0 62 0 WAVEFREW + 4 5 3 0 WAVELGTH + 10 0 87 0 WAVEMSLC + 10 0 77 0 WAVESPSK + 10 0 92 0 WAVETEFO + 10 0 73 0 WCAPFRAC 2 0 223 1 WCCONV 0 0 13 0 WCF + 10 4 22 0 WCHEATC 2 0 221 1 WCINC 2 0 226 1 WCUFLX 2 0 227 1 WCVFLX @@ -1238,9 +1600,15 @@ 10 0 58 0 WDWTSWEL 0 1 13 0 WEASD 10 0 42 0 WESP + 20 0 2 0 WETBGTMP + 0 0 32 0 WETBPT 0 0 27 0 WETBT + 2 0 45 0 WETCOV 0 18 11 0 WETDEP + 0 0 206 1 WETGLBT + 2 0 46 0 WETTYPE 0 20 75 0 WFIREFLX + 2 4 26 0 WFIREPOT 1 2 2 0 WFRACT 10 0 59 0 WFWFSWEL 10 0 60 0 WFWSSWEL @@ -1250,13 +1618,18 @@ 2 0 26 0 WILT 2 0 201 1 WILT 0 2 33 0 WINDF + 20 3 2 0 WINDPCAP + 20 3 3 0 WINDPPROD 0 19 199 1 WINDPROB + 0 2 49 0 WINDSTR 3 1 19 0 WINDS 0 2 1 0 WIND 0 19 25 0 WIWW 10 0 193 1 WLENG 0 20 9 0 WLSMFLX 0 2 19 0 WMIXE + 0 3 45 0 WOBT + 2 0 42 0 WRDRATE 2 0 33 0 WROD 10 0 192 1 WSTP 10 0 18 0 WSTR @@ -1276,8 +1649,15 @@ 2 0 224 1 WVUFLX 2 0 225 1 WVVFLX 10 0 14 0 WWSDIR + 10 3 7 0 XCOMPSS + 10 4 25 0 XCOMPWV + 10 2 24 0 XICE 4 6 1 0 XLONG - 0 3 26 0 XPRES 4 8 0 0 XRAYRAD 4 6 2 0 XSHRT + 10 3 16 0 XSURFWVEL + 10 3 8 0 YCOMPSS + 10 4 26 0 YCOMPWV + 10 2 25 0 YICE + 10 3 17 0 YSURFVWEL 10 2 10 0 ZVCICEP diff --git a/tests/parm/post_itag_hafs_ar b/tests/parm/post_itag_hafs_ar new file mode 100644 index 0000000000..6504929887 --- /dev/null +++ b/tests/parm/post_itag_hafs_ar @@ -0,0 +1,6 @@ +&MODEL_INPUTS + MODELNAME='FV3R' +/ +&NAMPGB + KPO=57,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,40.,30.,20.,15.,10.,7.,5.,3.,2.,1.,0.7,0.4,0.2,0.1,0.07,0.04,0.02,0.01, +/ diff --git a/tests/parm/postxconfig-NT-fv3lam.txt b/tests/parm/postxconfig-NT-fv3lam.txt index 83972b3ed3..4490a42059 100644 --- a/tests/parm/postxconfig-NT-fv3lam.txt +++ b/tests/parm/postxconfig-NT-fv3lam.txt @@ -1,6 +1,6 @@ 2 -225 -263 +210 +278 PRSLEV 32769 ncep_nco @@ -37,6 +37,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -74,6 +79,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -111,6 +121,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -148,6 +163,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -185,6 +205,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -222,6 +247,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -259,6 +289,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -296,6 +331,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -333,6 +373,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -370,6 +415,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -407,6 +457,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -444,6 +499,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -481,6 +541,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -490,8 +551,12 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 @@ -518,48 +583,16 @@ hybrid_lvl ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -6.0 -0 -0 -0 -? -? -? -187 -RIME_ON_HYBRID_LVL -? -1 -tmpl4_0 -RIME -NCEP -? -hybrid_lvl -0 -? -2 -1. 2. -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -592,6 +625,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -601,6 +635,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -615,7 +653,7 @@ REFD_ON_HYBRID_LVL 1 tmpl4_0 REFD -NCEP +? ? hybrid_lvl 0 @@ -629,54 +667,22 @@ hybrid_lvl ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -4.0 -0 -0 -0 -? -? -? -146 -BMIXL_ON_HYBRID_LVL -? -1 -tmpl4_0 -BMIXL -NCEP -? -hybrid_lvl -0 -? -1 -1. -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +4.0 0 0 0 @@ -694,8 +700,8 @@ HGT isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -703,6 +709,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -712,6 +719,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -731,8 +742,8 @@ TMP isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -740,6 +751,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -749,6 +761,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -768,8 +784,8 @@ DPT isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -777,6 +793,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -786,6 +803,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -805,8 +826,8 @@ SPFH isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -814,6 +835,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -823,6 +845,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -842,8 +868,8 @@ RH isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -851,6 +877,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -860,6 +887,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -868,19 +899,19 @@ isobaric_sfc ? ? ? -85 -MCONV_ON_ISOBARIC_SFC +18 +UGRD_ON_ISOBARIC_SFC ? 1 tmpl4_0 -MCONV +UGRD ? ? isobaric_sfc 0 ? -2 -85000. 95000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -888,6 +919,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -897,27 +929,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -18 -UGRD_ON_ISOBARIC_SFC +19 +VGRD_ON_ISOBARIC_SFC ? 1 tmpl4_0 -UGRD +VGRD ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -925,6 +961,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -934,6 +971,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -942,19 +983,19 @@ isobaric_sfc ? ? ? -19 -VGRD_ON_ISOBARIC_SFC +284 +DZDT_ON_ISOBARIC_SFC ? 1 tmpl4_0 -VGRD +DZDT ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -962,6 +1003,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -971,20 +1013,24 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +-5.0 0 0 0 ? ? ? -20 -VVEL_ON_ISOBARIC_SFC +21 +ABSV_ON_ISOBARIC_SFC ? 1 tmpl4_0 -VVEL +ABSV ? ? isobaric_sfc @@ -999,6 +1045,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1008,27 +1055,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -284 -DZDT_ON_ISOBARIC_SFC +86 +STRM_ON_ISOBARIC_SFC ? 1 tmpl4_0 -DZDT +STRM ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +2 +25000. 50000. ? 0 ? @@ -1036,6 +1087,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1045,27 +1097,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --5.0 +3.0 0 0 0 ? ? ? -21 -ABSV_ON_ISOBARIC_SFC +166 +ICMR_ON_ISOBARIC_SFC ? 1 tmpl4_0 -ABSV +ICMR ? ? isobaric_sfc 0 ? -10 -20000. 25000. 30000. 40000. 50000. 70000. 75000. 85000. 92500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1073,6 +1129,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1082,27 +1139,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +6.0 0 0 0 ? ? ? -86 -STRM_ON_ISOBARIC_SFC +153 +CLMR_ON_ISOBARIC_SFC ? 1 tmpl4_0 -STRM +CLMR ? ? isobaric_sfc 0 ? -2 -25000. 50000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1110,6 +1171,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1119,27 +1181,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -22 -TKE_ON_ISOBARIC_SFC +183 +RWMR_ON_ISOBARIC_SFC ? 1 tmpl4_0 -TKE +RWMR ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1147,6 +1213,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1156,6 +1223,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1164,19 +1235,19 @@ isobaric_sfc ? ? ? -166 -ICMR_ON_ISOBARIC_SFC -? +416 +GRLE_ON_ISOBARIC_SFC +Graupel mixing ration on isobaric surface 1 tmpl4_0 -ICMR +GRLE ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1184,6 +1255,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1193,27 +1265,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -153 -CLMR_ON_ISOBARIC_SFC +184 +SNMR_ON_ISOBARIC_SFC ? 1 tmpl4_0 -CLMR +SNMR ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1221,6 +1297,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1230,27 +1307,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -183 -RWMR_ON_ISOBARIC_SFC +85 +MCONV_ON_ISOBARIC_SFC ? 1 tmpl4_0 -RWMR +MCONV ? ? isobaric_sfc 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +2 +85000. 95000. ? 0 ? @@ -1258,6 +1339,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1267,31 +1349,36 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -416 -GRLE_ON_ISOBARIC_SFC -Graupel mixing ration on isobaric surface +88 +MCONV_ON_SPEC_PRES_ABOVE_GRND +? 1 tmpl4_0 -GRLE +MCONV ? ? -isobaric_sfc +spec_pres_above_grnd 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. -? +1 +3000. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -1304,6 +1391,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1312,19 +1403,19 @@ isobaric_sfc ? ? ? -184 -SNMR_ON_ISOBARIC_SFC +295 +MCONV_ON_ENTIRE_ATMOS ? 1 tmpl4_0 -SNMR +MCONV ? ? -isobaric_sfc +entire_atmos_single_lyr +0 +? 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1332,6 +1423,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1341,27 +1433,31 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +5.0 0 0 0 ? ? ? -263 -RIME_ON_ISOBARIC_SFC -? +749 +GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS +RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER 1 tmpl4_0 -RIME +RHPW NCEP ? -isobaric_sfc +entire_atmos +0 +? 0 ? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -1369,6 +1465,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1378,8 +1475,12 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-0.1 0 0 0 @@ -1406,48 +1507,16 @@ mean_sea_lvl ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -6.0 -0 -0 -0 -? -? -? -105 -PRES_ON_MEAN_SEA_LVL -? -1 -tmpl4_0 -PRMSL -? -? -mean_sea_lvl -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -1480,6 +1549,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1489,6 +1559,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1517,6 +1591,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1526,6 +1601,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1554,6 +1633,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1563,6 +1643,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1591,6 +1675,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1600,6 +1685,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1628,6 +1717,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1637,6 +1727,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1665,6 +1759,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1674,6 +1769,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1702,6 +1801,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1711,6 +1811,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1739,6 +1843,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1748,6 +1853,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1756,19 +1865,19 @@ spec_pres_above_grnd ? ? ? -158 -POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +24 +PRES_ON_SURFACE ? 1 tmpl4_0 -POT +PRES ? ? -spec_hgt_lvl_above_grnd +surface +0 +? 0 ? -1 -10. ? 0 ? @@ -1776,6 +1885,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1785,27 +1895,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -159 -SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +25 +HGT_ON_SURFACE ? 1 tmpl4_0 -SPFH +HGT ? ? -spec_hgt_lvl_above_grnd +surface +0 +? 0 ? -1 -10. ? 0 ? @@ -1813,6 +1927,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1822,20 +1937,24 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -24 -PRES_ON_SURFACE +27 +POT_ON_SURFACE ? 1 tmpl4_0 -PRES +POT ? ? surface @@ -1850,6 +1969,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1859,20 +1979,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +5.0 0 0 0 ? ? ? -25 -HGT_ON_SURFACE +28 +SPFH_ON_SURFACE ? 1 tmpl4_0 -HGT +SPFH ? ? surface @@ -1887,6 +2011,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1896,57 +2021,24 @@ surface 0.0 0 0.0 -1 -6.0 -0 0 -0 -? -? -? -27 -POT_ON_SURFACE -? -1 -tmpl4_0 -POT -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 +0.0 0 0.0 1 -5.0 +3.0 0 0 0 ? ? ? -28 -SPFH_ON_SURFACE +26 +TMP_ON_SURFACE ? 1 tmpl4_0 -SPFH +TMP ? ? surface @@ -1961,48 +2053,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -26 -TMP_ON_SURFACE -? -1 -tmpl4_0 -TMP -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -2015,19 +2075,19 @@ surface ? ? ? -115 -TSOIL_ON_DEPTH_BEL_LAND_SFC_3m +713 +CISOILM_ON_DEPTH_BEL_LAND_SFC ? 1 tmpl4_0 -TSOIL +CISOILM ? ? depth_bel_land_sfc 0 ? -1 -3. +0 +? ? 0 ? @@ -2035,6 +2095,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -2044,6 +2105,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2061,15 +2126,16 @@ TSOIL ? ? depth_bel_land_sfc -4 -2 2 2 2 -4 -0. 10. 40. 100. +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. depth_bel_land_sfc -4 -2 2 2 2 -4 -10. 40. 100. 200. +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? ? ? 0 @@ -2081,6 +2147,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2098,59 +2168,27 @@ SOILW NCEP ? depth_bel_land_sfc -4 -2 2 2 2 -4 -0. 10. 40. 100. +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. depth_bel_land_sfc -4 -2 2 2 2 -4 -10. 40. 100. 200. +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -225 -SOILL_ON_DEPTH_BEL_LAND_SFC -? -1 -tmpl4_0 -SOILL -NCEP -? -depth_bel_land_sfc -4 -2 2 2 2 -4 -0. 10. 40. 100. -depth_bel_land_sfc -4 -2 2 2 2 -4 -10. 40. 100. 200. -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -2163,24 +2201,25 @@ depth_bel_land_sfc ? ? ? -36 -SOILM_ON_DEPTH_BEL_LAND_SFC +225 +SOILL_ON_DEPTH_BEL_LAND_SFC ? 1 tmpl4_0 -SOILM +SOILL ? ? depth_bel_land_sfc 1 2 -1 -0. +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. depth_bel_land_sfc 1 2 -1 -200. +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? ? ? 0 @@ -2192,6 +2231,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2206,7 +2249,7 @@ CNWAT_ON_SURFACE 1 tmpl4_0 CNWAT -NCEP +? ? surface 0 @@ -2220,6 +2263,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2229,6 +2273,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2257,54 +2305,22 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -4.0 -0 -0 -0 -? -? -? -120 -SNOWC_ON_SURFACE -? -1 -tmpl4_0 -SNOWC -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2317,7 +2333,7 @@ SFEXC_ON_SURFACE 1 tmpl4_0 SFEXC -NCEP +? ? surface 0 @@ -2331,6 +2347,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2340,6 +2357,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2368,6 +2389,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2377,6 +2399,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2405,6 +2431,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2414,6 +2441,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2442,6 +2473,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2451,6 +2483,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2459,12 +2495,12 @@ surface ? ? ? -226 -SNFALB_ON_SURFACE +227 +MXSALB_ON_SURFACE ? 1 tmpl4_0 -SNFALB +MXSALB NCEP ? surface @@ -2479,6 +2515,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2488,6 +2525,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2496,12 +2537,12 @@ surface ? ? ? -227 -MXSALB_ON_SURFACE +220 +CCOND_ON_SURFACE ? 1 tmpl4_0 -MXSALB +CCOND NCEP ? surface @@ -2516,6 +2557,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2525,6 +2567,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2533,12 +2579,12 @@ surface ? ? ? -220 -CCOND_ON_SURFACE +237 +SMREF_ON_SURFACE ? 1 tmpl4_0 -CCOND +SMREF NCEP ? surface @@ -2553,6 +2599,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2562,6 +2609,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2570,12 +2621,12 @@ surface ? ? ? -238 -RCS_ON_SURFACE +233 +POROS_ON_SURFACE ? 1 tmpl4_0 -RCS +POROS NCEP ? surface @@ -2590,6 +2641,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2599,6 +2651,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2607,12 +2663,12 @@ surface ? ? ? -239 -RCT_ON_SURFACE +235 +RLYRS_ON_SURFACE ? 1 tmpl4_0 -RCT +RLYRS NCEP ? surface @@ -2627,6 +2683,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2636,20 +2693,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +3.0 0 0 0 ? ? ? -240 -RCQ_ON_SURFACE +234 +RSMIN_ON_SURFACE ? 1 tmpl4_0 -RCQ +RSMIN NCEP ? surface @@ -2664,48 +2725,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -241 -RCSOL_ON_SURFACE -? -1 -tmpl4_0 -RCSOL -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -2718,13 +2747,13 @@ surface ? ? ? -237 -SMREF_ON_SURFACE +224 +SNOD_ON_SURFACE ? 1 tmpl4_0 -SMREF -NCEP +SNOD +? ? surface 0 @@ -2738,68 +2767,36 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -233 -POROS_ON_SURFACE -? -1 -tmpl4_0 -POROS -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +6.0 0 0 0 ? ? ? -235 -RLYRS_ON_SURFACE +725 +GSD_ACM_SNOD_ON_SURFACE ? 1 -tmpl4_0 -RLYRS -NCEP +tmpl4_8 +ASNOW ? +ACM surface 0 ? @@ -2812,6 +2809,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2821,20 +2819,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +9.0 0 0 0 ? ? ? -234 -RSMIN_ON_SURFACE +232 +SMDRY_ON_SURFACE ? 1 tmpl4_0 -RSMIN +SMDRY NCEP ? surface @@ -2849,66 +2851,34 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -224 -SNOD_ON_SURFACE -? -1 -tmpl4_0 -SNOD -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -6.0 +3.0 0 0 0 ? ? ? -232 -SMDRY_ON_SURFACE +236 +WILT_ON_SURFACE ? 1 tmpl4_0 -SMDRY +WILT NCEP ? surface @@ -2923,6 +2893,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2932,6 +2903,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2940,15 +2915,15 @@ surface ? ? ? -236 -WILT_ON_SURFACE +171 +RUC_MSTAV_ON_DEPTH_BEL_LAND_SFC ? 1 tmpl4_0 -WILT -NCEP +MSTAV ? -surface +? +depth_bel_land_sfc 0 ? 0 @@ -2960,48 +2935,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -171 -MSTAV_ON_DEPTH_BEL_LAND_SFC -? -1 -tmpl4_0 -MSTAV -NCEP -? -depth_bel_land_sfc -1 -2 -1 -0. -depth_bel_land_sfc -1 -2 -1 -100. -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -3034,6 +2977,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3043,6 +2987,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3057,7 +3005,7 @@ LFTX_ON_ISOBARIC_SFC_500-1000hpa 1 tmpl4_0 LFTX -NCEP +? ? isobaric_sfc 0 @@ -3071,6 +3019,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -3080,6 +3029,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3094,7 +3047,7 @@ isobaric_sfc 1 tmpl4_0 4LFTX -NCEP +? ? spec_pres_above_grnd 0 @@ -3108,6 +3061,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3117,6 +3071,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3145,6 +3103,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3154,6 +3113,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3182,6 +3145,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3191,6 +3155,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3219,6 +3187,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3228,6 +3197,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3256,6 +3229,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3265,6 +3239,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3293,6 +3271,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3302,6 +3281,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3310,23 +3293,24 @@ spec_pres_above_grnd ? ? ? -107 -CIN_ON_SURFACE +950 +CAPE_ON_0_3KM_ABOVE_GRND ? 1 tmpl4_0 -CIN -? +CAPE ? -surface -0 ? +spec_hgt_lvl_above_grnd 0 ? -? +1 +0. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +3000. ? ? ? @@ -3339,6 +3323,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3347,24 +3335,25 @@ surface ? ? ? -567 -BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +107 +CIN_ON_SURFACE ? 1 tmpl4_0 CIN ? ? -spec_pres_above_grnd +surface +0 +? +0 +? +? 0 ? -1 -18000. -spec_pres_above_grnd 0 ? -1 -0. +? ? ? 0 @@ -3376,7 +3365,53 @@ spec_pres_above_grnd 0.0 0 0.0 -1 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 4.0 0 0 @@ -3404,6 +3439,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3413,6 +3449,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3441,6 +3481,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3450,6 +3491,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3478,6 +3523,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3487,6 +3533,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3515,6 +3565,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3524,6 +3575,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3532,13 +3587,97 @@ spec_hgt_lvl_above_grnd ? ? ? +953 +EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +EFHL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +957 +CRITICAL_ANGLE +? +1 +tmpl4_0 +CANGLE +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +500. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? 163 USTM_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_0 USTM -NCEP +? ? spec_hgt_lvl_above_grnd 0 @@ -3552,6 +3691,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3561,6 +3701,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3575,7 +3719,7 @@ VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND 1 tmpl4_0 VSTM -NCEP +? ? spec_hgt_lvl_above_grnd 0 @@ -3589,6 +3733,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3598,6 +3743,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3626,6 +3775,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3635,6 +3785,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3663,6 +3817,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3672,6 +3827,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3700,6 +3859,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3709,6 +3869,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3737,6 +3901,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3746,6 +3911,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3774,6 +3943,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3783,6 +3953,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3811,6 +3985,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3820,6 +3995,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3848,6 +4027,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3857,6 +4037,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3865,12 +4049,12 @@ surface ? ? ? -34 -ACM_NCPCP_ON_SURFACE +417 +CACM_APCP_ON_SURFACE ? 1 tmpl4_8 -NCPCP +APCP ? ACM surface @@ -3885,6 +4069,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3894,6 +4079,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3902,12 +4091,12 @@ surface ? ? ? -417 -CACM_APCP_ON_SURFACE +121 +ACM_SNOM_ON_SURFACE ? 1 tmpl4_8 -APCP +SNOM ? ACM surface @@ -3922,6 +4111,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3931,20 +4121,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +4.0 0 0 0 ? ? ? -419 -CACM_NCPCP_ON_SURFACE +122 +ACM_SSRUN_ON_SURFACE ? 1 tmpl4_8 -NCPCP +SSRUN ? ACM surface @@ -3959,6 +4153,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3968,22 +4163,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +6.0 0 0 0 ? ? ? -121 -ACM_SNOM_ON_SURFACE -? +407 +GSD_INST_CRAIN_ON_SURFACE +GSD_instant precipitation type on surface 1 -tmpl4_8 -SNOM +tmpl4_0 +CRAIN +? ? -ACM surface 0 ? @@ -3996,6 +4195,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4005,22 +4205,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +1.0 0 0 0 ? ? ? -122 -ACM_SSRUN_ON_SURFACE -? +559 +GSD_CSNOW_ON_SURFACE +GSD_Categorical snow on surface 1 -tmpl4_8 -SSRUN -NCEP -ACM +tmpl4_0 +CSNOW +? +? surface 0 ? @@ -4033,6 +4237,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4042,95 +4247,25 @@ surface 0.0 0 0.0 -1 -6.0 -0 0 -0 -? -? -? -123 -ACM_BGRUN_ON_SURFACE -? -1 -tmpl4_8 -BGRUN -NCEP -ACM -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -6.0 -0 -0 -0 -? -? -? -343 -ACM_WATR_ON_SURFACE -? -1 -tmpl4_8 -WATR -? -ACM -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 +0.0 0 0.0 1 -6.0 +1.0 0 0 0 ? ? ? -160 -INST_CRAIN_ON_SURFACE -? +560 +GSD_CICEP_ON_SURFACE +GSD_Categorical ice pellets on surface 1 tmpl4_0 -CRAIN -NCEP +CICEP +? ? surface 0 @@ -4144,48 +4279,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -1.0 -0 -0 -0 -? -? -? -551 -CSNOW_ON_SURFACE -Categorical snow on surface -1 -tmpl4_0 -CSNOW -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -4198,13 +4301,13 @@ surface ? ? ? -552 -CICEP_ON_SURFACE -Categorical ice pellets on surface +561 +GSD_CFRZR_ON_SURFACE +GSD_Categorical freezing rain on surface 1 tmpl4_0 -CICEP -NCEP +CFRZR +? ? surface 0 @@ -4218,48 +4321,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -1.0 -0 -0 -0 -? -? -? -553 -CFRZR_ON_SURFACE -Categorical freezing rain on surface -1 -tmpl4_0 -CFRZR -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -4292,6 +4363,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4301,6 +4373,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4315,7 +4391,7 @@ CPOFP_ON_SURFACE 1 tmpl4_0 CPOFP -NCEP +? ? surface 0 @@ -4329,6 +4405,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4338,6 +4415,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4366,6 +4447,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4375,6 +4457,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4403,6 +4489,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4412,8 +4499,12 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 @@ -4440,6 +4531,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4449,6 +4541,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4477,6 +4573,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4486,6 +4583,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4514,6 +4615,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4523,6 +4625,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4551,6 +4657,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4560,6 +4667,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4588,6 +4699,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4597,6 +4709,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4605,15 +4721,15 @@ high_cloud_lyr ? ? ? -161 -INST_TCDC_ON_ENTIRE_ATMOS +799 +TCDC_ON_BOUND_LYR ? 1 tmpl4_0 TCDC ? ? -entire_atmos_single_lyr +bound_lyr_cloud_lyr 0 ? 0 @@ -4625,6 +4741,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4634,6 +4751,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4642,14 +4763,14 @@ entire_atmos_single_lyr ? ? ? -144 -AVE_TCDC_ON_ENTIRE_ATMOS +161 +INST_TCDC_ON_ENTIRE_ATMOS ? 1 -tmpl4_8 +tmpl4_0 TCDC ? -AVE +? entire_atmos_single_lyr 0 ? @@ -4662,6 +4783,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4671,6 +4793,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4679,13 +4805,13 @@ entire_atmos_single_lyr ? ? ? -139 -AVE_CDLYR_ON_ENTIRE_ATMOS +144 +AVE_TCDC_ON_ENTIRE_ATMOS ? 1 tmpl4_8 -CDLYR -NCEP +TCDC +? AVE entire_atmos_single_lyr 0 @@ -4699,6 +4825,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4708,6 +4835,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4736,6 +4867,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4745,6 +4877,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4773,6 +4909,7 @@ lvl_of_adiab_cond_from_sfc ? ? ? +? 0 0.0 0 @@ -4782,6 +4919,10 @@ lvl_of_adiab_cond_from_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4810,6 +4951,7 @@ lvl_of_adiab_cond_from_sfc ? ? ? +? 0 0.0 0 @@ -4819,6 +4961,10 @@ lvl_of_adiab_cond_from_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4833,7 +4979,7 @@ INST_USWRF_ON_SURFACE 1 tmpl4_0 USWRF -NCEP +? ? surface 0 @@ -4847,6 +4993,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4856,6 +5003,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4870,7 +5021,7 @@ INST_ULWRF_ON_SURFACE 1 tmpl4_0 ULWRF -NCEP +? ? surface 0 @@ -4884,6 +5035,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4893,6 +5045,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4907,7 +5063,7 @@ AVE_DSWRF_ON_SURFACE 1 tmpl4_8 DSWRF -NCEP +? AVE surface 0 @@ -4921,6 +5077,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4930,6 +5087,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4944,7 +5105,7 @@ AVE_DLWRF_ON_SURFACE 1 tmpl4_8 DLWRF -NCEP +? AVE surface 0 @@ -4958,6 +5119,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4967,6 +5129,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4981,7 +5147,7 @@ AVE_USWRF_ON_SURFACE 1 tmpl4_8 USWRF -NCEP +? AVE surface 0 @@ -4995,6 +5161,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5004,6 +5171,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5018,7 +5189,7 @@ AVE_ULWRF_ON_SURFACE 1 tmpl4_8 ULWRF -NCEP +? AVE surface 0 @@ -5032,6 +5203,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5041,6 +5213,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5055,7 +5231,7 @@ AVE_USWRF_ON_TOP_OF_ATMOS 1 tmpl4_8 USWRF -NCEP +? AVE top_of_atmos 0 @@ -5069,6 +5245,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5078,6 +5255,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5092,7 +5273,7 @@ AVE_ULWRF_ON_TOP_OF_ATMOS 1 tmpl4_8 ULWRF -NCEP +? AVE top_of_atmos 0 @@ -5106,6 +5287,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5115,6 +5297,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5129,7 +5315,7 @@ INST_ULWRF_ON_TOP_OF_ATMOS 1 tmpl4_0 ULWRF -NCEP +? ? top_of_atmos 0 @@ -5143,6 +5329,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5152,6 +5339,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5180,6 +5371,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5189,6 +5381,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5203,7 +5399,7 @@ INST_DSWRF_ON_SURFACE 1 tmpl4_0 DSWRF -NCEP +? ? surface 0 @@ -5217,6 +5413,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5226,6 +5423,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5240,7 +5441,7 @@ INST_DLWRF_ON_SURFACE 1 tmpl4_0 DLWRF -NCEP +? ? surface 0 @@ -5254,6 +5455,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5263,6 +5465,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5271,12 +5477,12 @@ surface ? ? ? -262 -INST_CSDSF_ON_SURFACE +772 +INST_SWDDNI_ON_SURFACE ? 1 tmpl4_0 -CSDSF +VBDSF NCEP ? surface @@ -5291,6 +5497,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5300,6 +5507,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5308,13 +5519,13 @@ surface ? ? ? -44 -SFCR_ON_SURFACE +773 +INST_SWDDIF_ON_SURFACE ? 1 tmpl4_0 -SFCR -? +VDDSF +NCEP ? surface 0 @@ -5328,6 +5539,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5337,20 +5549,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.7 +4.0 0 0 0 ? ? ? -45 -FRICV_ON_SURFACE +262 +INST_CSDSF_ON_SURFACE ? 1 tmpl4_0 -FRICV +CSDSF NCEP ? surface @@ -5365,6 +5581,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5374,6 +5591,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5382,13 +5603,13 @@ surface ? ? ? -132 -CD_ON_SURFACE +44 +SFCR_ON_SURFACE ? 1 tmpl4_0 -CD -NCEP +SFCR +? ? surface 0 @@ -5402,6 +5623,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5411,20 +5633,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +2.7 0 0 0 ? ? ? -133 -UFLX_ON_SURFACE +45 +FRICV_ON_SURFACE ? 1 tmpl4_0 -UFLX +FRICV ? ? surface @@ -5439,6 +5665,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5448,20 +5675,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -134 -VFLX_ON_SURFACE +132 +CD_ON_SURFACE ? 1 tmpl4_0 -VFLX +CD ? ? surface @@ -5476,6 +5707,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5485,6 +5717,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5513,6 +5749,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5522,6 +5759,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5550,6 +5791,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5559,6 +5801,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5573,7 +5819,7 @@ AVE_SNOHF_ON_SURFACE 1 tmpl4_8 SNOHF -NCEP +? AVE surface 0 @@ -5587,6 +5833,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5596,6 +5843,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5624,48 +5875,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -4.0 -0 -0 -0 -? -? -? -47 -ACM_EVP_ON_SURFACE -? -1 -tmpl4_8 -EVP -? -ACM -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -5684,7 +5903,7 @@ ACM_PEVAP_ON_SURFACE 1 tmpl4_8 PEVAP -NCEP +? ACM surface 0 @@ -5698,6 +5917,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5707,6 +5927,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5735,6 +5959,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5744,6 +5969,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5772,6 +6001,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5781,6 +6011,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5809,6 +6043,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5818,6 +6053,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5846,6 +6085,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5855,6 +6095,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5883,6 +6127,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5892,6 +6137,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -5920,6 +6169,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5929,6 +6179,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5957,6 +6211,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5966,6 +6221,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5994,6 +6253,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6003,6 +6263,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6031,6 +6295,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6040,6 +6305,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6068,6 +6337,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6077,6 +6347,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6105,6 +6379,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6114,6 +6389,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6142,6 +6421,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6151,6 +6431,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6179,6 +6463,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6188,6 +6473,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6216,6 +6505,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6225,6 +6515,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6239,7 +6533,7 @@ VWSH_ON_TROPOPAUSE 1 tmpl4_0 VWSH -NCEP +? ? tropopause 0 @@ -6253,6 +6547,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6262,6 +6557,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6290,6 +6589,7 @@ spec_hgt_lvl_above_grnd 1000. ? ? +? 0 0.0 0 @@ -6299,6 +6599,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6327,6 +6631,7 @@ spec_hgt_lvl_above_grnd 1000. ? ? +? 0 0.0 0 @@ -6336,6 +6641,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6364,6 +6673,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -6373,6 +6683,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6401,6 +6715,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -6410,6 +6725,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6438,6 +6757,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6447,6 +6767,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6466,8 +6790,8 @@ TMP spec_hgt_lvl_above_grnd 0 ? -4 -30. 50. 80. 100. +6 +30. 50. 80. 100. 160. 320. ? 0 ? @@ -6475,6 +6799,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6484,6 +6809,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6492,19 +6821,19 @@ spec_hgt_lvl_above_grnd ? ? ? -60 -UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +578 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT ? 1 tmpl4_0 -UGRD +SPFH ? ? -spec_alt_above_mean_sea_lvl +spec_hgt_lvl_above_grnd 0 ? -10 -305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +1 +80. ? 0 ? @@ -6512,6 +6841,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6521,27 +6851,31 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -576 -UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +579 +PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT ? 1 tmpl4_0 -UGRD +PRES ? ? spec_hgt_lvl_above_grnd 0 ? -4 -30. 50. 80. 100. +1 +80. ? 0 ? @@ -6549,6 +6883,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6558,20 +6893,24 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -61 -VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +60 +UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL ? 1 tmpl4_0 -VGRD +UGRD ? ? spec_alt_above_mean_sea_lvl @@ -6586,6 +6925,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6595,6 +6935,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6603,19 +6947,19 @@ spec_alt_above_mean_sea_lvl ? ? ? -577 -VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +576 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT ? 1 tmpl4_0 -VGRD +UGRD ? ? spec_hgt_lvl_above_grnd 0 ? -4 -30. 50. 80. 100. +6 +30. 50. 80. 100. 160. 320. ? 0 ? @@ -6623,6 +6967,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6632,6 +6977,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6640,19 +6989,19 @@ spec_hgt_lvl_above_grnd ? ? ? -451 -SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +61 +VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL ? 1 tmpl4_0 -SPFH +VGRD ? ? spec_alt_above_mean_sea_lvl 0 ? -1 -305. +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -6660,6 +7009,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6669,27 +7019,31 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -578 -SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +577 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT ? 1 tmpl4_0 -SPFH +VGRD ? ? spec_hgt_lvl_above_grnd 0 ? -4 -30. 50. 80. 100. +6 +30. 50. 80. 100. 160. 320. ? 0 ? @@ -6697,6 +7051,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6706,27 +7061,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -579 -PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +451 +SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL ? 1 tmpl4_0 -PRES +SPFH ? ? -spec_hgt_lvl_above_grnd +spec_alt_above_mean_sea_lvl 0 ? -4 -30. 50. 80. 100. +1 +305. ? 0 ? @@ -6734,6 +7093,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6743,8 +7103,12 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +5.0 0 0 0 @@ -6771,6 +7135,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -6780,6 +7145,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6808,6 +7177,7 @@ RH ? ? ? +? 0 0.0 0 @@ -6817,6 +7187,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -6845,6 +7219,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -6854,6 +7229,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6862,15 +7241,15 @@ hghst_trop_frz_lvl ? ? ? -247 -HGT_ON_LWST_LVL_OF_WET_BULB_ZERO +350 +RH_ON_HGHST_TROP_FRZ_LVL ? 1 tmpl4_0 -HGT +RH ? ? -lwst_lvl_of_wet_bulb_zero +hghst_trop_frz_lvl 0 ? 0 @@ -6882,6 +7261,7 @@ lwst_lvl_of_wet_bulb_zero ? ? ? +? 0 0.0 0 @@ -6891,32 +7271,37 @@ lwst_lvl_of_wet_bulb_zero 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --5.0 +-0.1 0 0 0 ? ? ? -67 -PRES_ON_SPEC_PRES_ABOVE_GRND -? +779 +HGT_ON_HGHST_TROP_-20C_LVL +height on highest tropospheric -20C level 1 tmpl4_0 -PRES +HGT ? ? -spec_pres_above_grnd +isothermal +0 +? +1 +253. +? 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -6928,32 +7313,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -68 -TMP_ON_SPEC_PRES_ABOVE_GRND -? +443 +HGT_ON_EQUIL_LVL +geopotential height on Equilibrium level 1 tmpl4_0 -TMP +HGT ? ? -spec_pres_above_grnd +equil_lvl 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +? +0 +? +0 +? +? ? ? 0 @@ -6965,6 +7355,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6973,24 +7367,25 @@ spec_pres_above_grnd ? ? ? -69 -POT_ON_SPEC_PRES_ABOVE_GRND +247 +HGT_ON_LWST_LVL_OF_WET_BULB_ZERO ? 1 tmpl4_0 -POT +HGT +? +? +lwst_lvl_of_wet_bulb_zero +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -1 -3000. -spec_pres_above_grnd 0 ? -1 -0. +? ? ? 0 @@ -7002,32 +7397,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +-5.0 0 0 0 ? ? ? -70 -DPT_ON_SPEC_PRES_ABOVE_GRND +67 +PRES_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -DPT +PRES ? ? spec_pres_above_grnd 0 ? -1 -3000. +6 +3000. 6000. 9000. 12000. 15000. 18000. spec_pres_above_grnd 0 ? -1 -0. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -7039,20 +7439,24 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -71 -SPFH_ON_SPEC_PRES_ABOVE_GRND +68 +TMP_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -SPFH +TMP ? ? spec_pres_above_grnd @@ -7067,6 +7471,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -7076,32 +7481,37 @@ spec_pres_above_grnd 0.0 0 0.0 -1 -5.0 +0 +0.0 +0 +0.0 +1 +3.0 0 0 0 ? ? ? -72 -RH_ON_SPEC_PRES_ABOVE_GRND +69 +POT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -RH +POT ? ? spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. +1 +3000. spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +1 +0. +? ? ? 0 @@ -7113,20 +7523,24 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 +4.0 0 0 0 ? ? ? -88 -MCONV_ON_SPEC_PRES_ABOVE_GRND +70 +DPT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -MCONV +DPT ? ? spec_pres_above_grnd @@ -7141,6 +7555,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -7150,6 +7565,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7158,24 +7577,25 @@ spec_pres_above_grnd ? ? ? -89 -PWAT_ON_SPEC_PRES_ABOVE_GRND +71 +SPFH_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -PWAT +SPFH ? ? spec_pres_above_grnd 0 ? -1 -3000. +6 +3000. 6000. 9000. 12000. 15000. 18000. spec_pres_above_grnd 0 ? -1 -0. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -7187,20 +7607,24 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +5.0 0 0 0 ? ? ? -73 -UGRD_ON_SPEC_PRES_ABOVE_GRND +72 +RH_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -UGRD +RH ? ? spec_pres_above_grnd @@ -7215,6 +7639,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -7224,20 +7649,66 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +2.0 0 0 0 ? ? ? -74 -VGRD_ON_SPEC_PRES_ABOVE_GRND +89 +PWAT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -VGRD +PWAT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +73 +UGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +UGRD ? ? spec_pres_above_grnd @@ -7252,6 +7723,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -7261,6 +7733,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7269,24 +7745,25 @@ spec_pres_above_grnd ? ? ? -90 -VVEL_ON_SPEC_PRES_ABOVE_GRND +74 +VGRD_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -VVEL +VGRD ? ? spec_pres_above_grnd 0 ? -3 -3000. 9000. 18000. +6 +3000. 6000. 9000. 12000. 15000. 18000. spec_pres_above_grnd 0 ? -3 -0. 6000. 15000. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -7298,8 +7775,12 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 @@ -7326,6 +7807,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -7335,6 +7817,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7363,6 +7849,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7372,6 +7859,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7400,6 +7891,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7409,6 +7901,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -7437,6 +7933,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -7446,6 +7943,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7474,6 +7975,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7483,6 +7985,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7511,6 +8017,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7520,6 +8027,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -7548,6 +8059,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7557,6 +8069,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7585,6 +8101,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7594,6 +8111,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7622,6 +8143,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7631,6 +8153,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7659,6 +8185,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7668,6 +8195,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7682,7 +8213,7 @@ REFC_ON_ENTIRE_ATMOS 1 tmpl4_0 REFC -NCEP +? ? entire_atmos_single_lyr 0 @@ -7696,6 +8227,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -7705,6 +8237,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7713,19 +8249,19 @@ entire_atmos_single_lyr ? ? ? -276 -REFZR_ON_ENTIRE_ATMOS +253 +REFD_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_0 -REFZR -NCEP +REFD ? -entire_atmos_single_lyr -0 ? +spec_hgt_lvl_above_grnd 0 ? +2 +4000. 1000. ? 0 ? @@ -7733,6 +8269,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -7742,23 +8279,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +4.0 0 0 0 ? ? ? -277 -REFZI_ON_ENTIRE_ATMOS +221 +HPBL_ON_SURFACE ? 1 tmpl4_0 -REFZI -NCEP +HPBL ? -entire_atmos_single_lyr +? +surface 0 ? 0 @@ -7770,6 +8311,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -7779,27 +8321,31 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +6.0 0 0 0 ? ? ? -253 -REFD_ON_SPEC_HGT_LVL_ABOVE_GRND +194 +PRES_ON_GRID_SCALE_CLOUD_BOT_LVL ? 1 tmpl4_0 -REFD -NCEP +PRES +? +? +grid_scale_cloud_bot_lvl +0 ? -spec_hgt_lvl_above_grnd 0 ? -2 -4000. 1000. ? 0 ? @@ -7807,6 +8353,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7816,27 +8363,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +6.0 0 0 0 ? ? ? -279 -REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND +195 +PRES_ON_GRID_SCALE_CLOUD_TOP_LVL ? 1 tmpl4_0 -REFZR -NCEP +PRES +? +? +grid_scale_cloud_top_lvl +0 ? -spec_hgt_lvl_above_grnd 0 ? -2 -4000. 1000. ? 0 ? @@ -7844,6 +8395,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7853,27 +8405,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +6.0 0 0 0 ? ? ? -280 -REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND +979 +EFSH_ON_EFBL ? 1 tmpl4_0 -REFZI +EFSH NCEP ? -spec_hgt_lvl_above_grnd +level_free_convection +0 +? 0 ? -2 -4000. 1000. ? 0 ? @@ -7881,6 +8437,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7890,23 +8447,27 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +-1.0 0 0 0 ? ? ? -221 -HPBL_ON_SURFACE +980 +EFSH_ON_EFTL ? 1 tmpl4_0 -HPBL +EFSH NCEP ? -surface +equil_lvl 0 ? 0 @@ -7918,6 +8479,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7927,23 +8489,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-1.0 0 0 0 ? ? ? -194 -PRES_ON_GRID_SCALE_CLOUD_BOT_LVL +982 +ELMELT_ON_EFTL ? 1 tmpl4_0 -PRES -? +ELMELT +NCEP ? -grid_scale_cloud_bot_lvl +equil_lvl 0 ? 0 @@ -7955,6 +8521,7 @@ grid_scale_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -7964,23 +8531,27 @@ grid_scale_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-1.0 0 0 0 ? ? ? -195 -PRES_ON_GRID_SCALE_CLOUD_TOP_LVL +983 +UESH_ON_EFL ? 1 tmpl4_0 -PRES -? +UESH +NCEP ? -grid_scale_cloud_top_lvl +level_free_convection 0 ? 0 @@ -7992,6 +8563,7 @@ grid_scale_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -8001,23 +8573,27 @@ grid_scale_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-1.0 0 0 0 ? ? ? -200 -TCOLW_ON_ENTIRE_ATMOS +984 +VESH_ON_EFL ? 1 tmpl4_0 -TCOLW +VESH NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8029,6 +8605,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8038,23 +8615,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -201 -TCOLI_ON_ENTIRE_ATMOS +985 +ESHR_ON_EFL ? 1 tmpl4_0 -TCOLI +ESHR NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8066,6 +8647,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8075,23 +8657,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -202 -TCOLR_ON_ENTIRE_ATMOS +986 +UEID_ON_EFL ? 1 tmpl4_0 -TCOLR +UEID NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8103,6 +8689,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8112,23 +8699,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -203 -TCOLS_ON_ENTIRE_ATMOS +987 +VEID_ON_EFL ? 1 tmpl4_0 -TCOLS +VEID NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8140,6 +8731,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8149,23 +8741,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -204 -TCOLC_ON_ENTIRE_ATMOS +988 +E3KH_ON_EFL ? 1 tmpl4_0 -TCOLC +E3KH NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8177,6 +8773,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8186,23 +8783,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -428 -TCOLG_ON_ENTIRE_ATMOS +989 +STPC_ON_EFL ? 1 tmpl4_0 -TCOLG -? +STPC +NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8214,6 +8815,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8223,23 +8825,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -285 -TCLSW_ON_ENTIRE_ATMOS +990 +SIGT_ON_EFL ? 1 tmpl4_0 -TCLSW +SIGT NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8251,6 +8857,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8260,23 +8867,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -286 -TCOLM_ON_ENTIRE_ATMOS +991 +SCCP_ON_EFL ? 1 tmpl4_0 -TCOLM +SCCP NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -8288,6 +8899,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8297,23 +8909,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -287 -HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +993 +SIGH_ON_EFL ? 1 tmpl4_0 -HGT -? +SIGH +NCEP ? -lwst_bot_lvl_of_supercooled_liq_water_lyr +level_free_convection 0 ? 0 @@ -8325,6 +8941,7 @@ lwst_bot_lvl_of_supercooled_liq_water_lyr ? ? ? +? 0 0.0 0 @@ -8334,23 +8951,27 @@ lwst_bot_lvl_of_supercooled_liq_water_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-1.0 0 0 0 ? ? ? -288 -HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +992 +MLFC_ON_EFL ? 1 tmpl4_0 -HGT -? +MLFC +NCEP ? -hghst_top_lvl_of_supercooled_liq_water_lyr +level_free_convection 0 ? 0 @@ -8362,6 +8983,7 @@ hghst_top_lvl_of_supercooled_liq_water_lyr ? ? ? +? 0 0.0 0 @@ -8371,23 +8993,27 @@ hghst_top_lvl_of_supercooled_liq_water_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -260 -HGT_ON_CLOUD_CEILING +287 +HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR ? 1 tmpl4_0 HGT ? ? -cloud_ceilng +lwst_bot_lvl_of_supercooled_liq_water_lyr 0 ? 0 @@ -8399,6 +9025,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -8408,6 +9035,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8416,15 +9047,15 @@ cloud_ceilng ? ? ? -256 -ACM_LSPA_ON_SURFACE +288 +HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR ? 1 -tmpl4_8 -LSPA -NCEP -ACM -surface +tmpl4_0 +HGT +? +? +hghst_top_lvl_of_supercooled_liq_water_lyr 0 ? 0 @@ -8436,6 +9067,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8445,23 +9077,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +5.0 0 0 0 ? ? ? -282 -PRES_ON_TOP_OF_ATMOS -? +408 +GSD_HGT_ON_CLOUD_CEILING +GSD_geopotential height on cloud ceiling 1 tmpl4_0 -PRES +HGT ? ? -top_of_atmos +cloud_ceilng 0 ? 0 @@ -8473,6 +9109,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -8482,23 +9119,27 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-3.0 0 0 0 ? ? ? -290 -SWHR_ON_ENTIRE_ATMOS +487 +GSD_EXP_CEILING ? 1 tmpl4_0 -SWHR -NCEP +CEIL ? -entire_atmos_single_lyr +? +cloud_ceilng 0 ? 0 @@ -8510,6 +9151,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8519,23 +9161,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-3.0 0 0 0 ? ? ? -291 -LWHR_ON_ENTIRE_ATMOS +711 +GSD_EXP_CEILING_2 ? 1 tmpl4_0 -LWHR -NCEP +CEIL ? -entire_atmos_single_lyr +? +cloud_base 0 ? 0 @@ -8547,6 +9193,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8556,23 +9203,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-3.0 0 0 0 ? ? ? -292 -AVE_LRGHR_ON_ENTIRE_ATMOS +282 +PRES_ON_TOP_OF_ATMOS ? 1 -tmpl4_8 -LRGHR -NCEP -AVE -entire_atmos_single_lyr +tmpl4_0 +PRES +? +? +top_of_atmos 0 ? 0 @@ -8584,6 +9235,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8593,23 +9245,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +3.0 0 0 0 ? ? ? -295 -MCONV_ON_ENTIRE_ATMOS +389 +UGRD_ON_PLANETARY_BOUND_LYR ? 1 tmpl4_0 -MCONV +UGRD ? ? -entire_atmos_single_lyr +planetary_bound_lyr 0 ? 0 @@ -8621,6 +9277,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8630,23 +9287,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-4.0 0 0 0 ? ? ? -344 -PBLREG_ON_SURFACE +390 +VGRD_ON_PLANETARY_BOUND_LYR ? 1 tmpl4_0 -PBLREG +VGRD ? ? -surface +planetary_bound_lyr 0 ? 0 @@ -8658,6 +9319,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8667,20 +9329,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 +-4.0 0 0 0 ? ? ? -389 -UGRD_ON_PLANETARY_BOUND_LYR +289 +HGT_ON_PLANETARY_BOUND_LYR ? 1 tmpl4_0 -UGRD +HGT ? ? planetary_bound_lyr @@ -8695,6 +9361,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -8704,41 +9371,8 @@ planetary_bound_lyr 0.0 0 0.0 -1 --4.0 0 -0 -0 -? -? -? -390 -VGRD_ON_PLANETARY_BOUND_LYR -? -1 -tmpl4_0 -VGRD -? -? -planetary_bound_lyr -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 +0.0 0 0.0 1 @@ -8749,15 +9383,15 @@ planetary_bound_lyr ? ? ? -289 -HGT_ON_PLANETARY_BOUND_LYR +381 +MIXHT_ON_SURFACE ? 1 tmpl4_0 -HGT +MIXHT ? ? -planetary_bound_lyr +surface 0 ? 0 @@ -8769,48 +9403,16 @@ planetary_bound_lyr ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 --4.0 -0 -0 -0 -? -? -? -381 -MIXHT_ON_SURFACE -? -1 -tmpl4_0 -MIXHT -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -8829,7 +9431,7 @@ RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR 1 tmpl4_0 RETOP -NCEP +? ? entire_atmos_single_lyr 0 @@ -8843,6 +9445,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8852,6 +9455,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8880,6 +9487,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -8889,6 +9497,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8917,6 +9529,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8926,6 +9539,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8954,6 +9571,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8963,6 +9581,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8991,6 +9613,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9000,6 +9623,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9028,6 +9655,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9037,6 +9665,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 0 @@ -9065,6 +9697,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9074,6 +9707,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 0 @@ -9102,6 +9739,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9111,6 +9749,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -9139,6 +9781,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9148,6 +9791,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -9176,6 +9823,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9185,6 +9833,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -9213,6 +9865,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9222,6 +9875,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9250,6 +9907,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -9259,6 +9917,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9287,6 +9949,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -9296,6 +9959,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9324,6 +9991,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9333,6 +10001,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9361,6 +10033,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9370,8 +10043,54 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +7.0 +0 +0 +0 +? +? +? +769 +GSD_VIL_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +VIL +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 0 0 0 @@ -9384,7 +10103,7 @@ Updraft Helicity on Specified Height Level Above Ground 1 tmpl4_0 UPHL -NCEP +? ? spec_hgt_lvl_above_grnd 0 @@ -9398,6 +10117,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -9407,6 +10127,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9435,6 +10159,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -9444,6 +10169,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9472,6 +10201,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -9481,6 +10211,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9509,6 +10243,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -9518,6 +10253,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9546,6 +10285,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -9555,6 +10295,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9583,6 +10327,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -9592,6 +10337,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9620,6 +10369,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -9629,6 +10379,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9657,6 +10411,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -9666,6 +10421,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9674,19 +10433,19 @@ spec_hgt_lvl_above_grnd ? ? ? -785 -MAX_REF_ON_ISOTHERMAL_-10C -maximum reflectivity on -10C suface +728 +GSD_HAILCAST_HAIL_DIAMETER +? 1 tmpl4_8 -MAXREF -NCEP +HAIL +? MAX -isothermal +surface +0 +? 0 ? -1 -263. ? 0 ? @@ -9694,6 +10453,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -9703,22 +10463,26 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +3.0 0 0 0 ? ? ? -912 -REFD_ON_ISOTHERMAL -? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface 1 -tmpl4_0 -REFD +tmpl4_8 +MAXREF NCEP -? +MAX isothermal 0 ? @@ -9731,6 +10495,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -9740,43 +10505,31 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +-3.0 0 0 0 ? ? ? -NATLEV -32769 -ncep_nco -v2003 -local_tab_yes1 -fcst -oper -fcst -fcst -hour -nws_ncep -rrfs -complex_packing_spatial_diff -2nd_ord_sptdiff -fltng_pnt -lossless -12 -HGT_ON_ISOBARIC_SFC +912 +REFD_ON_ISOTHERMAL ? 1 tmpl4_0 -HGT +REFD ? ? -isobaric_sfc +isothermal 0 ? -4 -25000. 50000. 70000. 85000. +1 +263. ? 0 ? @@ -9784,6 +10537,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -9793,33 +10547,38 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-4.0 0 0 0 ? ? ? -13 -TMP_ON_ISOBARIC_SFC +913 +1H_FFG_EXCEEDANCE ? 1 -tmpl4_0 -TMP -? +tmpl4_9 +QPFFFG +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -5 -25000. 50000. 70000. 85000. 95000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9830,33 +10589,38 @@ isobaric_sfc 0.0 0 0.0 +0 +1.0 +0 +0.0 1 -3.0 +5.0 0 0 0 ? ? ? -17 -RH_ON_ISOBARIC_SFC +914 +ACM_FFG_EXCEEDANCE ? 1 -tmpl4_0 -RH -? +tmpl4_9 +QPFFFG +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -4 -25000. 50000. 70000. 85000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9867,33 +10631,38 @@ isobaric_sfc 0.0 0 0.0 +0 +1.0 +0 +0.0 1 -2.0 +5.0 0 0 0 ? ? ? -18 -UGRD_ON_ISOBARIC_SFC +915 +1H_2YARI_EXCEEDANCE ? 1 -tmpl4_0 -UGRD -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -4 -25000. 50000. 70000. 85000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9904,33 +10673,38 @@ isobaric_sfc 0.0 0 0.0 +0 +2.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -19 -VGRD_ON_ISOBARIC_SFC +916 +ACM_2YARI_EXCEEDANCE ? 1 -tmpl4_0 -VGRD -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -4 -25000. 50000. 70000. 85000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9941,33 +10715,38 @@ isobaric_sfc 0.0 0 0.0 +0 +2.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -20 -VVEL_ON_ISOBARIC_SFC +917 +1H_5YARI_EXCEEDANCE ? 1 -tmpl4_0 -VVEL -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -4 -25000. 50000. 70000. 85000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9978,6 +10757,10 @@ isobaric_sfc 0.0 0 0.0 +0 +5.0 +0 +0.0 1 5.0 0 @@ -9986,25 +10769,26 @@ isobaric_sfc ? ? ? -16 -SPFH_ON_ISOBARIC_SFC +918 +ACM_5YARI_EXCEEDANCE ? 1 -tmpl4_0 -SPFH -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -4 -25000. 50000. 70000. 85000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -10015,33 +10799,38 @@ isobaric_sfc 0.0 0 0.0 +0 +5.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -21 -ABSV_ON_ISOBARIC_SFC +919 +1H_10YARI_EXCEEDANCE ? 1 -tmpl4_0 -ABSV -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -isobaric_sfc 0 ? -4 -25000. 50000. 70000. 85000. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -10052,33 +10841,38 @@ isobaric_sfc 0.0 0 0.0 +0 +10.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -1 -PRES_ON_HYBRID_LVL +920 +ACM_10YARI_EXCEEDANCE ? 1 -tmpl4_0 -PRES -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -10089,33 +10883,38 @@ hybrid_lvl 0.0 0 0.0 +0 +10.0 +0 +0.0 1 -6.0 +5.0 0 0 0 ? ? ? -77 -HGT_ON_HYBRID_LVL +921 +1H_100YARI_EXCEEDANCE ? 1 -tmpl4_0 -HGT -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -10126,33 +10925,38 @@ hybrid_lvl 0.0 0 0.0 +0 +100.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -2 -TMP_ON_HYBRID_LVL +922 +ACM_100YARI_EXCEEDANCE ? 1 -tmpl4_0 -TMP -? +tmpl4_9 +QPFARI +NCEP +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -10163,282 +10967,321 @@ hybrid_lvl 0.0 0 0.0 +0 +100.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -5 -SPFH_ON_HYBRID_LVL +745 +BIOMASS_BURNING_EMISSIONS ? 1 -tmpl4_0 -SPFH +tmpl4_48 +AEMFLX ? ? -hybrid_lvl +entire_atmos_single_lyr +0 +? 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? +particulate_org_matter_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -7.0 +5.0 0 0 0 ? ? ? -7 -UGRD_ON_HYBRID_LVL +739 +SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m ? 1 -tmpl4_0 -UGRD +tmpl4_48 +MASSDEN ? ? -hybrid_lvl +spec_hgt_lvl_above_grnd 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +1 +8. ? 0 ? 0 ? +particulate_org_matter_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +6.0 0 0 0 ? ? ? -8 -VGRD_ON_HYBRID_LVL +736 +SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR ? 1 -tmpl4_0 -VGRD +tmpl4_48 +COLMD ? ? -hybrid_lvl +entire_atmos_single_lyr +0 +? 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? +particulate_org_matter_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +5.0 0 0 0 ? ? ? -9 -VVEL_ON_HYBRID_LVL +744 +DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m ? 1 -tmpl4_0 -VVEL +tmpl4_48 +MASSDEN ? ? -hybrid_lvl +spec_hgt_lvl_above_grnd 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +1 +8. ? 0 ? 0 ? +dust_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -5.0 +6.0 0 0 0 ? ? ? -264 -DZDT_ON_HYBRID_LVL +741 +DUST_ON_ENTIRE_ATMOS_SINGLE_LYR ? 1 -tmpl4_0 -DZDT +tmpl4_48 +COLMD ? ? -hybrid_lvl +entire_atmos_single_lyr +0 +? 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? +dust_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 --5.0 +5.0 0 0 0 ? ? ? -11 -TKE_ON_HYBRID_LVL +1014 +COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m ? 1 -tmpl4_0 -TKE +tmpl4_48 +MASSDEN ? ? -hybrid_lvl +spec_hgt_lvl_above_grnd 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +1 +8. ? 0 ? 0 ? +dust_dry ? +between_first_second_limit_noincl2ndlmt +7 +25 +7 +100 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +6.0 0 0 0 ? ? ? -78 -AVE_LRGHR_ON_HYBRID_LVL +1011 +COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR ? 1 -tmpl4_8 -LRGHR -NCEP -AVE -hybrid_lvl +tmpl4_48 +COLMD +? +? +entire_atmos_single_lyr +0 +? 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? 0 ? +dust_dry ? +between_first_second_limit_noincl2ndlmt +7 +25 +7 +100 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +5.0 0 0 0 ? ? ? -23 -MSLET_ON_MEAN_SEA_LVL +735 +AOD_ON_ENTIRE_ATMOS_SINGLE_LYR ? 1 tmpl4_0 -MSLET -NCEP +AOTK ? -mean_sea_lvl +? +entire_atmos_single_lyr 0 ? 0 @@ -10450,6 +11293,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -10459,23 +11303,27 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +5.0 0 0 0 ? ? ? -105 -PRES_ON_MEAN_SEA_LVL -? +755 +HWP_ON_SURFACE +Hourly Wildfire Potential on surface 1 -tmpl4_0 -PRMSL -? +tmpl4_8 +WFIREPOT ? -mean_sea_lvl +AVE +surface 0 ? 0 @@ -10487,6 +11335,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -10496,105 +11345,120 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +5.0 0 0 0 ? ? ? -106 -TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +759 +AVE_SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m ? 1 -tmpl4_0 -TMP -? +tmpl4_46 +MASSDEN ? +AVE spec_hgt_lvl_above_grnd 0 ? 1 -2. +8. ? 0 ? 0 ? +particulate_org_matter_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +6.0 0 0 0 ? ? ? -112 -SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +771 +AVE_DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m ? 1 -tmpl4_0 -SPFH -? +tmpl4_46 +MASSDEN ? +AVE spec_hgt_lvl_above_grnd 0 ? 1 -2. +8. ? 0 ? 0 ? +dust_dry ? +smaller_than_first_limit +7 +100 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +6.0 0 0 0 ? ? ? -113 -DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +955 +DENDRITIC_LAYER_DEPTH ? 1 tmpl4_0 -DPT -? +LAYTH +NCEP ? -spec_hgt_lvl_above_grnd +isothermal 0 ? 1 -2. -? +261. +isothermal 0 ? -0 +1 +256. ? ? ? @@ -10607,6 +11471,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10615,12 +11483,12 @@ spec_hgt_lvl_above_grnd ? ? ? -114 -RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +547 +GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 tmpl4_0 -RH +DEPR ? ? spec_hgt_lvl_above_grnd @@ -10635,6 +11503,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10644,27 +11513,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-4.0 0 0 0 ? ? ? -64 -UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +546 +GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 tmpl4_0 -UGRD +POT ? ? spec_hgt_lvl_above_grnd 0 ? 1 -10. +2. ? 0 ? @@ -10672,6 +11545,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10681,27 +11555,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +-4.0 0 0 0 ? ? ? -65 -VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m -? +753 +GSD_PRES_ON_0C_ISOTHERM +GSD_pressure on Level of 0 deg (C) isotherm 1 tmpl4_0 -VGRD +PRES ? ? -spec_hgt_lvl_above_grnd +0C_isotherm +0 +? 0 ? -1 -10. ? 0 ? @@ -10709,6 +11587,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10718,27 +11597,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -158 -POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m -? +756 +GSD_PRES_ON_HGHST_TROP_FRZ_LVL +GSD_pressure on Highest tropospheric freezing level 1 tmpl4_0 -POT +PRES ? ? -spec_hgt_lvl_above_grnd +hghst_trop_frz_lvl +0 +? 0 ? -1 -10. ? 0 ? @@ -10746,6 +11629,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10755,27 +11639,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +3.0 0 0 0 ? ? ? -159 -SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +704 +GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS ? 1 -tmpl4_0 -SPFH -? +tmpl4_8 +LTNG +NCEP +MAX +entire_atmos +0 ? -spec_hgt_lvl_above_grnd 0 ? -1 -10. ? 0 ? @@ -10783,6 +11671,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10792,27 +11681,47 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -24 -PRES_ON_SURFACE +NATLEV +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +rrfs +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC ? 1 tmpl4_0 -PRES -? +HGT ? -surface -0 ? +isobaric_sfc 0 ? +4 +25000. 50000. 70000. 85000. ? 0 ? @@ -10820,6 +11729,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10829,6 +11739,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10837,19 +11751,733 @@ surface ? ? ? -25 -HGT_ON_SURFACE +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +5 +25000. 50000. 70000. 85000. 95000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1 +PRES_ON_HYBRID_LVL +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +77 +HGT_ON_HYBRID_LVL +? +1 +tmpl4_0 +HGT +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +2 +TMP_ON_HYBRID_LVL +? +1 +tmpl4_0 +TMP +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +5 +SPFH_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPFH +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +7 +UGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +UGRD +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +8 +VGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +VGRD +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +264 +DZDT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DZDT +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +11 +TKE_ON_HYBRID_LVL +? +1 +tmpl4_0 +TKE +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +749 +GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS +RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER +1 +tmpl4_0 +RHPW +NCEP +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-0.1 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 ? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 1 -tmpl4_0 -HGT +4.0 +0 +0 +0 ? ? -surface -0 ? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -10857,6 +12485,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10866,27 +12495,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -27 -POT_ON_SURFACE +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 tmpl4_0 -POT -? +DPT ? -surface -0 ? +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -10894,6 +12527,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10903,27 +12537,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -28 -SPFH_ON_SURFACE +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 tmpl4_0 -SPFH -? +RH ? -surface -0 ? +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -10931,6 +12569,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10940,6 +12579,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -10948,19 +12591,19 @@ surface ? ? ? -26 -TMP_ON_SURFACE +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m ? 1 tmpl4_0 -TMP -? +UGRD ? -surface -0 ? +spec_hgt_lvl_above_grnd 0 ? +1 +10. ? 0 ? @@ -10968,6 +12611,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10977,6 +12621,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10985,24 +12633,25 @@ surface ? ? ? -423 -MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa -hourly maximum Upward Vertical Velocity between 100-1000hpa +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? 1 -tmpl4_8 -MAXUVV -NCEP -MAX -isobaric_sfc +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd 0 ? 1 -10000. -isobaric_sfc +10. +? +0 +? 0 ? -1 -100000. +? ? ? 0 @@ -11014,32 +12663,37 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +4.0 0 0 0 ? ? ? -424 -MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa -hourly maximum Downward Vertical Velocity between 100-1000hpa +24 +PRES_ON_SURFACE +? 1 -tmpl4_8 -MAXDVV -NCEP -MAX -isobaric_sfc +tmpl4_0 +PRES +? +? +surface 0 ? -1 -10000. -isobaric_sfc 0 ? -1 -100000. +? +0 +? +0 +? +? ? ? 0 @@ -11051,32 +12705,37 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +6.0 0 0 0 ? ? ? -790 -GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +25 +HGT_ON_SURFACE ? 1 -tmpl4_8 -MXUPHL -NCEP -MAX -spec_hgt_lvl_above_grnd +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? 0 ? -1 -3000. -spec_hgt_lvl_above_grnd 0 ? -1 -0000. +? ? ? 0 @@ -11088,32 +12747,37 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +6.0 0 0 0 ? ? ? -420 -MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km -maximum Updraft Helicity on Specified Height Level Above Ground +27 +POT_ON_SURFACE +? 1 -tmpl4_8 -MXUPHL -NCEP -MAX -spec_hgt_lvl_above_grnd +tmpl4_0 +POT +? +? +surface 0 ? -1 -5000. -spec_hgt_lvl_above_grnd 0 ? -1 -2000. +? +0 +? +0 +? +? ? ? 0 @@ -11125,32 +12789,37 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +5.0 0 0 0 ? ? ? -786 -GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +28 +SPFH_ON_SURFACE ? 1 -tmpl4_8 -MNUPHL -NCEP -MIN -spec_hgt_lvl_above_grnd +tmpl4_0 +SPFH +? +? +surface +0 +? +0 +? +? 0 ? -1 -5000. -spec_hgt_lvl_above_grnd 0 ? -1 -2000. +? ? ? 0 @@ -11162,32 +12831,37 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +3.0 0 0 0 ? ? ? -791 -GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? ? -1 -tmpl4_8 -MNUPHL -NCEP -MIN -spec_hgt_lvl_above_grnd 0 ? -1 -3000. -spec_hgt_lvl_above_grnd 0 ? -1 -0000. +? ? ? 0 @@ -11199,32 +12873,37 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +4.0 0 0 0 ? ? ? -793 -GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km -? +581 +VIL_ON_ENTIRE_ATMOS +entire atmosphere Vertically Integrated Liquid (kg/m-2) 1 -tmpl4_8 -RELV +tmpl4_0 +VIL +? +? +entire_atmos_single_lyr +0 +? +0 +? ? -MAX -spec_hgt_lvl_above_grnd 0 ? -1 -1000. -spec_hgt_lvl_above_grnd 0 ? -1 -0000. +? ? ? 0 @@ -11236,27 +12915,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +7.0 0 0 0 ? ? ? -890 -GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 -Hourly max relative vorticity on hybrid level 1 +769 +GSD_VIL_ON_ENTIRE_ATMOS +? 1 -tmpl4_8 -RELV +tmpl4_0 +VIL +? +? +entire_atmos +0 ? -MAX -hybrid_lvl 0 ? -1 -1. ? 0 ? @@ -11264,6 +12947,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11273,32 +12957,37 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +7.0 0 0 0 ? ? ? -792 -GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +400 +RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR ? 1 -tmpl4_8 -RELV +tmpl4_0 +RETOP +? +? +entire_atmos_single_lyr +0 +? +0 +? ? -MAX -spec_hgt_lvl_above_grnd 0 ? -1 -2000. -spec_hgt_lvl_above_grnd 0 ? -1 -0000. +? ? ? 0 @@ -11310,31 +12999,36 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -506 -MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m -U Component of Hourly Maximum 10m Wind Speed (m/s) +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Upward Vertical Velocity between 100-1000hpa 1 tmpl4_8 -MAXUW +MAXUVV NCEP MAX -spec_hgt_lvl_above_grnd +isobaric_sfc 0 ? 1 -10. -? +10000. +isobaric_sfc 0 ? -0 +1 +100000. ? ? ? @@ -11347,31 +13041,36 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +-3.0 0 0 0 ? ? ? -507 -MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m -V Component of Hourly Maximum 10m Wind Speed (m/s) +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Downward Vertical Velocity between 100-1000hpa 1 tmpl4_8 -MAXVW +MAXDVV NCEP MAX -spec_hgt_lvl_above_grnd +isobaric_sfc 0 ? 1 -10. -? +10000. +isobaric_sfc 0 ? -0 +1 +100000. ? ? ? @@ -11384,31 +13083,36 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +-3.0 0 0 0 ? ? ? -421 -MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km -maximum Updraft Helicity on Specified Height Level Above Ground +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? 1 tmpl4_8 -MAXREF +MXUPHL NCEP MAX spec_hgt_lvl_above_grnd 0 ? 1 -1000. -? +3000. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +0000. ? ? ? @@ -11421,6 +13125,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -11429,23 +13137,24 @@ spec_hgt_lvl_above_grnd ? ? ? -785 -MAX_REF_ON_ISOTHERMAL_-10C -maximum reflectivity on -10C suface +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground 1 tmpl4_8 -MAXREF +MXUPHL NCEP MAX -isothermal +spec_hgt_lvl_above_grnd 0 ? 1 -263. -? +5000. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +2000. ? ? ? @@ -11458,6 +13167,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -11466,23 +13179,24 @@ isothermal ? ? ? -912 -REFD_ON_ISOTHERMAL +786 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km ? 1 -tmpl4_0 -REFD +tmpl4_8 +MNUPHL NCEP -? -isothermal +MIN +spec_hgt_lvl_above_grnd 0 ? 1 -263. -? +5000. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +2000. ? ? ? @@ -11495,31 +13209,36 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +-3.0 0 0 0 ? ? ? -345 -MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +791 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km ? 1 tmpl4_8 -TMAX -? -MAX +MNUPHL +NCEP +MIN spec_hgt_lvl_above_grnd 0 ? 1 -2. -? +3000. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +0000. ? ? ? @@ -11532,31 +13251,36 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +-3.0 0 0 0 ? ? ? -346 -MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +793 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km ? 1 tmpl4_8 -TMIN +RELV ? -MIN +MAX spec_hgt_lvl_above_grnd 0 ? 1 -2. -? +1000. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +0000. ? ? ? @@ -11569,27 +13293,31 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +5.0 0 0 0 ? ? ? -347 -MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m -? +890 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 +Hourly max relative vorticity on hybrid level 1 1 tmpl4_8 -MAXRH +RELV ? MAX -spec_hgt_lvl_above_grnd +hybrid_lvl 0 ? 1 -2. +1. ? 0 ? @@ -11597,6 +13325,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11606,31 +13335,36 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --2.0 +5.0 0 0 0 ? ? ? -348 -MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +792 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km ? 1 tmpl4_8 -MINRH -NCEP -MIN +RELV +? +MAX spec_hgt_lvl_above_grnd 0 ? 1 -2. -? +2000. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +0000. ? ? ? @@ -11643,69 +13377,37 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --2.0 +5.0 0 0 0 ? ? ? -116 -TSOIL_ON_DEPTH_BEL_LAND_SFC +728 +GSD_HAILCAST_HAIL_DIAMETER ? 1 -tmpl4_0 -TSOIL -? -? -depth_bel_land_sfc -4 -2 2 2 2 -4 -0. 10. 40. 100. -depth_bel_land_sfc -4 -2 2 2 2 -4 -10. 40. 100. 200. -? +tmpl4_8 +HAIL ? +MAX +surface 0 -0.0 -0 -0.0 ? 0 -0.0 -0 -0.0 -1 -4.0 -0 -0 -0 ? ? +0 ? -117 -SOILW_ON_DEPTH_BEL_LAND_SFC +0 ? -1 -tmpl4_0 -SOILW -NCEP ? -depth_bel_land_sfc -4 -2 2 2 2 -4 -0. 10. 40. 100. -depth_bel_land_sfc -4 -2 2 2 2 -4 -10. 40. 100. 200. ? ? 0 @@ -11717,6 +13419,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11725,24 +13431,25 @@ depth_bel_land_sfc ? ? ? -36 -SOILM_ON_DEPTH_BEL_LAND_SFC +506 +MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +U Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXUW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 ? 1 -tmpl4_0 -SOILM +10. +? +0 +? +0 ? ? -depth_bel_land_sfc -1 -2 -1 -0. -depth_bel_land_sfc -1 -2 -1 -200. ? ? 0 @@ -11754,27 +13461,31 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-4.0 0 0 0 ? ? ? -169 -SFEXC_ON_SURFACE -? +507 +MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +V Component of Hourly Maximum 10m Wind Speed (m/s) 1 -tmpl4_0 -SFEXC +tmpl4_8 +MAXVW NCEP -? -surface -0 -? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +10. ? 0 ? @@ -11782,6 +13493,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11791,27 +13503,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-4.0 0 0 0 ? ? ? -170 -VEG_ON_SURFACE -? +421 +MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +maximum Updraft Helicity on Specified Height Level Above Ground 1 -tmpl4_0 -VEG -? -? -surface -0 -? +tmpl4_8 +MAXREF +NCEP +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +1000. ? 0 ? @@ -11819,6 +13535,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11828,32 +13545,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-3.0 0 0 0 ? ? ? -171 -MSTAV_ON_DEPTH_BEL_LAND_SFC -? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface 1 -tmpl4_0 -MSTAV +tmpl4_8 +MAXREF NCEP +MAX +isothermal +0 ? -depth_bel_land_sfc -1 -2 -1 -0. -depth_bel_land_sfc -1 -2 1 -100. +263. +? +0 +? +0 +? +? ? ? 0 @@ -11865,27 +13587,31 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-3.0 0 0 0 ? ? ? -115 -TSOIL_ON_DEPTH_BEL_LAND_SFC_3m +912 +REFD_ON_ISOTHERMAL ? 1 tmpl4_0 -TSOIL +REFD ? ? -depth_bel_land_sfc +isothermal 0 ? 1 -3. +263. ? 0 ? @@ -11893,6 +13619,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -11902,27 +13629,31 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-4.0 0 0 0 ? ? ? -152 -INST_GFLUX_ON_SURFACE +345 +MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 -tmpl4_0 -GFLUX -NCEP -? -surface -0 +tmpl4_8 +TMAX ? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -11930,6 +13661,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11939,27 +13671,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -118 -CNWAT_ON_SURFACE +346 +MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 -tmpl4_0 -CNWAT -NCEP -? -surface -0 +tmpl4_8 +TMIN ? +MIN +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -11967,6 +13703,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11976,27 +13713,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 +4.0 0 0 0 ? ? ? -119 -WEASD_ON_SURFACE +347 +MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 -tmpl4_0 -WEASD -? -? -surface -0 +tmpl4_8 +MAXRH ? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -12004,6 +13745,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12013,32 +13755,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +-2.0 0 0 0 ? ? ? -31 -4LFTX_ON_SPEC_PRES_ABOVE_GRND +348 +MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m ? 1 -tmpl4_0 -4LFTX +tmpl4_8 +MINRH NCEP -? -spec_pres_above_grnd +MIN +spec_hgt_lvl_above_grnd 0 ? 1 -18000. -spec_pres_above_grnd +2. +? +0 +? 0 ? -1 -0. +? ? ? 0 @@ -12050,23 +13797,27 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +-2.0 0 0 0 ? ? ? -80 -PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +713 +CISOILM_ON_DEPTH_BEL_LAND_SFC ? 1 tmpl4_0 -PWAT +CISOILM ? ? -entire_atmos_single_lyr +depth_bel_land_sfc 0 ? 0 @@ -12078,6 +13829,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -12087,6 +13839,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12095,125 +13851,140 @@ entire_atmos_single_lyr ? ? ? -87 -ACM_APCP_ON_SURFACE +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC ? 1 -tmpl4_8 -APCP +tmpl4_0 +TSOIL ? -ACM -surface -0 ? -0 +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? -0 ? 0 -? -? +0.0 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 --4.0 +4.0 0 0 0 ? ? ? -34 -ACM_NCPCP_ON_SURFACE +117 +SOILW_ON_DEPTH_BEL_LAND_SFC ? 1 -tmpl4_8 -NCPCP +tmpl4_0 +SOILW +NCEP ? -ACM -surface -0 +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. ? -0 ? ? 0 -? +0.0 0 -? -? +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 --4.0 +3.0 0 0 0 ? ? ? -417 -CACM_APCP_ON_SURFACE +225 +SOILL_ON_DEPTH_BEL_LAND_SFC ? 1 -tmpl4_8 -APCP +tmpl4_0 +SOILL ? -ACM -surface -0 ? -0 +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? -0 ? 0 -? -? +0.0 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 --4.0 +3.0 0 0 0 ? ? ? -419 -CACM_NCPCP_ON_SURFACE +169 +SFEXC_ON_SURFACE ? 1 -tmpl4_8 -NCPCP +tmpl4_0 +SFEXC +? ? -ACM surface 0 ? @@ -12226,6 +13997,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12235,22 +14007,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +3.0 0 0 0 ? ? ? -121 -ACM_SNOM_ON_SURFACE +170 +VEG_ON_SURFACE ? 1 -tmpl4_8 -SNOM +tmpl4_0 +VEG +? ? -ACM surface 0 ? @@ -12263,6 +14039,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12272,23 +14049,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -122 -ACM_SSRUN_ON_SURFACE +171 +RUC_MSTAV_ON_DEPTH_BEL_LAND_SFC ? 1 -tmpl4_8 -SSRUN -NCEP -ACM -surface +tmpl4_0 +MSTAV +? +? +depth_bel_land_sfc 0 ? 0 @@ -12300,6 +14081,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12309,22 +14091,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -123 -ACM_BGRUN_ON_SURFACE +152 +INST_GFLUX_ON_SURFACE ? 1 -tmpl4_8 -BGRUN +tmpl4_0 +GFLUX NCEP -ACM +? surface 0 ? @@ -12337,6 +14123,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12346,21 +14133,25 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -160 -INST_CRAIN_ON_SURFACE +118 +CNWAT_ON_SURFACE ? 1 tmpl4_0 -CRAIN -NCEP +CNWAT +? ? surface 0 @@ -12374,6 +14165,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12383,6 +14175,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -12391,13 +14187,13 @@ surface ? ? ? -551 -CSNOW_ON_SURFACE -Categorical snow on surface +119 +WEASD_ON_SURFACE +? 1 tmpl4_0 -CSNOW -NCEP +WEASD +? ? surface 0 @@ -12411,6 +14207,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12420,32 +14217,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 +4.0 0 0 0 ? ? ? -552 -CICEP_ON_SURFACE -Categorical ice pellets on surface -1 -tmpl4_0 -CICEP -NCEP -? -surface -0 +31 +4LFTX_ON_SPEC_PRES_ABOVE_GRND ? -0 +1 +tmpl4_0 +4LFTX ? ? +spec_pres_above_grnd 0 ? +1 +18000. +spec_pres_above_grnd 0 ? +1 +0. +? ? ? 0 @@ -12457,23 +14259,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 +3.0 0 0 0 ? ? ? -553 -CFRZR_ON_SURFACE -Categorical freezing rain on surface +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? 1 tmpl4_0 -CFRZR -NCEP +PWAT ? -surface +? +entire_atmos_single_lyr 0 ? 0 @@ -12485,6 +14291,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12494,22 +14301,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 +3.0 0 0 0 ? ? ? -167 -INST_PRATE_ON_SURFACE +87 +ACM_APCP_ON_SURFACE ? 1 -tmpl4_0 -PRATE -? +tmpl4_8 +APCP ? +ACM surface 0 ? @@ -12522,6 +14333,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12531,22 +14343,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-4.0 0 0 0 ? ? ? -172 -CPOFP_ON_SURFACE +417 +CACM_APCP_ON_SURFACE ? 1 -tmpl4_0 -CPOFP -NCEP +tmpl4_8 +APCP ? +ACM surface 0 ? @@ -12559,6 +14375,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12568,27 +14385,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +-4.0 0 0 0 ? ? ? -124 -CLMR_ON_HYBRID_LVL +1004 +ACM_SNOWFALL_ON_SURFACE ? 1 -tmpl4_0 -CLMR +tmpl4_8 +TSNOWP ? +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12596,6 +14417,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12605,27 +14427,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -125 -ICMR_ON_HYBRID_LVL +121 +ACM_SNOM_ON_SURFACE ? 1 -tmpl4_0 -ICMR +tmpl4_8 +SNOM ? +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12633,6 +14459,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12642,27 +14469,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -415 -GRLE_ON_HYBRID_LVL -Graupel mixing ration on hybrid level +122 +ACM_SSRUN_ON_SURFACE +? 1 -tmpl4_0 -GRLE +tmpl4_8 +SSRUN ? +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12670,6 +14501,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12679,27 +14511,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -145 -TCDC_ON_HYBRID_LVL +121 +ACM_SNOM_ON_SURFACE ? 1 -tmpl4_0 -TCDC +tmpl4_8 +SNOM ? +ACM +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12707,6 +14543,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12716,27 +14553,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -181 -RWMR_ON_HYBRID_LVL -? +407 +GSD_INST_CRAIN_ON_SURFACE +GSD_instant precipitation type on surface 1 tmpl4_0 -RWMR +CRAIN ? ? -hybrid_lvl +surface +0 +? 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12744,6 +14585,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12753,27 +14595,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +1.0 0 0 0 ? ? ? -182 -SNMR_ON_HYBRID_LVL -? +559 +GSD_CSNOW_ON_SURFACE +GSD_Categorical snow on surface 1 tmpl4_0 -SNMR +CSNOW ? ? -hybrid_lvl +surface +0 +? 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12781,6 +14627,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12790,27 +14637,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +1.0 0 0 0 ? ? ? -187 -RIME_ON_HYBRID_LVL -? +560 +GSD_CICEP_ON_SURFACE +GSD_Categorical ice pellets on surface 1 tmpl4_0 -RIME -NCEP +CICEP +? +? +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12818,6 +14669,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12827,27 +14679,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +1.0 0 0 0 ? ? ? -199 -TCOND_ON_HYBRID_LVL -? +561 +GSD_CFRZR_ON_SURFACE +GSD_Categorical freezing rain on surface 1 tmpl4_0 -TCOND -NCEP +CFRZR +? +? +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12855,6 +14711,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12864,27 +14721,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +1.0 0 0 0 ? ? ? -185 -FRAIN_ON_HYBRID_LVL +167 +INST_PRATE_ON_SURFACE ? 1 tmpl4_0 -FRAIN -NCEP +PRATE +? +? +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12892,6 +14753,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12901,6 +14763,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -12909,19 +14775,19 @@ hybrid_lvl ? ? ? -186 -FICE_ON_HYBRID_LVL +172 +CPOFP_ON_SURFACE ? 1 tmpl4_0 -FICE -NCEP +CPOFP +? +? +surface +0 ? -hybrid_lvl 0 ? -64 -1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. ? 0 ? @@ -12929,6 +14795,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12938,27 +14805,31 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -37 -LCDC_ON_LOW_CLOUD_LYR +124 +CLMR_ON_HYBRID_LVL ? 1 tmpl4_0 -LCDC -? +CLMR ? -low_cloud_lyr -0 ? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -12966,6 +14837,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -12975,6 +14847,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12983,19 +14859,19 @@ low_cloud_lyr ? ? ? -38 -MCDC_ON_MID_CLOUD_LYR -? +747 +GSD_NCCD_ON_HYBRID_LVL +Number concentration for cloud water drops on hybrid level 1 tmpl4_0 -MCDC +NCONCD ? ? -mid_cloud_lyr -0 -? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13003,6 +14879,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -13012,6 +14889,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13020,19 +14901,19 @@ mid_cloud_lyr ? ? ? -39 -HCDC_ON_HIGH_CLOUD_LYR +125 +ICMR_ON_HYBRID_LVL ? 1 tmpl4_0 -HCDC -? +ICMR ? -high_cloud_lyr -0 ? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13040,6 +14921,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -13049,6 +14931,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13057,19 +14943,19 @@ high_cloud_lyr ? ? ? -161 -INST_TCDC_ON_ENTIRE_ATMOS -? +752 +GSD_NCIP_ON_HYBRID_LVL +Number concentration for ice particles on hybrid level 1 tmpl4_0 -TCDC +NCCICE ? ? -entire_atmos_single_lyr -0 -? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13077,6 +14963,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -13086,6 +14973,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13094,19 +14985,19 @@ entire_atmos_single_lyr ? ? ? -144 -AVE_TCDC_ON_ENTIRE_ATMOS -? +415 +GRLE_ON_HYBRID_LVL +Graupel mixing ration on hybrid level 1 -tmpl4_8 -TCDC +tmpl4_0 +GRLE ? -AVE -entire_atmos_single_lyr -0 ? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13114,6 +15005,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -13123,6 +15015,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13131,19 +15027,19 @@ entire_atmos_single_lyr ? ? ? -139 -AVE_CDLYR_ON_ENTIRE_ATMOS +145 +TCDC_ON_HYBRID_LVL ? 1 -tmpl4_8 -CDLYR -NCEP -AVE -entire_atmos_single_lyr -0 +tmpl4_0 +TCDC +? ? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13151,6 +15047,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -13160,6 +15057,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13168,19 +15069,19 @@ entire_atmos_single_lyr ? ? ? -141 -INST_USWRF_ON_SURFACE +181 +RWMR_ON_HYBRID_LVL ? 1 tmpl4_0 -USWRF -NCEP +RWMR ? -surface -0 ? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13188,6 +15089,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13197,27 +15099,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -142 -INST_ULWRF_ON_SURFACE +182 +SNMR_ON_HYBRID_LVL ? 1 tmpl4_0 -ULWRF -NCEP +SNMR ? -surface -0 ? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13225,6 +15131,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13234,27 +15141,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -126 -AVE_DSWRF_ON_SURFACE +754 +GSD_NCRAIN_ON_HYBRID_LVL ? 1 -tmpl4_8 -DSWRF -NCEP -AVE -surface -0 +tmpl4_0 +SPNCR ? +? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? @@ -13262,6 +15173,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13271,6 +15183,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13279,126 +15195,141 @@ surface ? ? ? -127 -AVE_DLWRF_ON_SURFACE +737 +SMOKE_ON_HYBRID_LVL ? 1 -tmpl4_8 -DLWRF -NCEP -AVE -surface -0 +tmpl4_48 +MASSDEN ? +? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? 0 ? +particulate_org_matter_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +6.0 0 0 0 ? ? ? -128 -AVE_USWRF_ON_SURFACE +742 +DUST_ON_HYBRID_LVL ? 1 -tmpl4_8 -USWRF -NCEP -AVE -surface -0 +tmpl4_48 +MASSDEN ? +? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? 0 ? +dust_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +6.0 0 0 0 ? ? ? -129 -AVE_ULWRF_ON_SURFACE +1012 +COARSEPM_ON_HYBRID_LVL ? 1 -tmpl4_8 -ULWRF -NCEP -AVE -surface -0 +tmpl4_48 +MASSDEN ? +? +hybrid_lvl 0 ? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. ? 0 ? 0 ? +dust_dry ? +between_first_second_limit_noincl2ndlmt +7 +25 +7 +100 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +6.0 0 0 0 ? ? ? -130 -AVE_USWRF_ON_TOP_OF_ATMOS +37 +LCDC_ON_LOW_CLOUD_LYR ? 1 -tmpl4_8 -USWRF -NCEP -AVE -top_of_atmos +tmpl4_0 +LCDC +? +? +low_cloud_lyr 0 ? 0 @@ -13410,6 +15341,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -13419,6 +15351,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13427,15 +15363,15 @@ top_of_atmos ? ? ? -131 -AVE_ULWRF_ON_TOP_OF_ATMOS +38 +MCDC_ON_MID_CLOUD_LYR ? 1 -tmpl4_8 -ULWRF -NCEP -AVE -top_of_atmos +tmpl4_0 +MCDC +? +? +mid_cloud_lyr 0 ? 0 @@ -13447,6 +15383,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -13456,6 +15393,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13464,15 +15405,15 @@ top_of_atmos ? ? ? -156 -INST_DSWRF_ON_SURFACE +39 +HCDC_ON_HIGH_CLOUD_LYR ? 1 tmpl4_0 -DSWRF -NCEP +HCDC ? -surface +? +high_cloud_lyr 0 ? 0 @@ -13484,6 +15425,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13493,23 +15435,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -157 -INST_DLWRF_ON_SURFACE +799 +TCDC_ON_BOUND_LYR ? 1 tmpl4_0 -DLWRF -NCEP +TCDC ? -surface +? +bound_lyr_cloud_lyr 0 ? 0 @@ -13521,6 +15467,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13530,23 +15477,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -262 -INST_CSDSF_ON_SURFACE +161 +INST_TCDC_ON_ENTIRE_ATMOS ? 1 tmpl4_0 -CSDSF -NCEP +TCDC ? -surface +? +entire_atmos_single_lyr 0 ? 0 @@ -13558,6 +15509,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13567,23 +15519,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -44 -SFCR_ON_SURFACE +144 +AVE_TCDC_ON_ENTIRE_ATMOS ? 1 -tmpl4_0 -SFCR -? +tmpl4_8 +TCDC ? -surface +AVE +entire_atmos_single_lyr 0 ? 0 @@ -13595,6 +15551,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13604,21 +15561,25 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.7 +3.0 0 0 0 ? ? ? -45 -FRICV_ON_SURFACE +141 +INST_USWRF_ON_SURFACE ? 1 tmpl4_0 -FRICV -NCEP +USWRF +? ? surface 0 @@ -13632,6 +15593,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13641,6 +15603,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13649,13 +15615,13 @@ surface ? ? ? -132 -CD_ON_SURFACE +142 +INST_ULWRF_ON_SURFACE ? 1 tmpl4_0 -CD -NCEP +ULWRF +? ? surface 0 @@ -13669,6 +15635,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13678,22 +15645,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -133 -UFLX_ON_SURFACE +126 +AVE_DSWRF_ON_SURFACE ? 1 -tmpl4_0 -UFLX -? +tmpl4_8 +DSWRF ? +AVE surface 0 ? @@ -13706,6 +15677,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13715,6 +15687,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13723,14 +15699,14 @@ surface ? ? ? -134 -VFLX_ON_SURFACE +127 +AVE_DLWRF_ON_SURFACE ? 1 -tmpl4_0 -VFLX -? +tmpl4_8 +DLWRF ? +AVE surface 0 ? @@ -13743,6 +15719,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13752,6 +15729,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13760,12 +15741,12 @@ surface ? ? ? -43 -AVE_SHTFL_ON_SURFACE +128 +AVE_USWRF_ON_SURFACE ? 1 tmpl4_8 -SHTFL +USWRF ? AVE surface @@ -13780,6 +15761,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13789,21 +15771,25 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -135 -AVE_GFLUX_ON_SURFACE +129 +AVE_ULWRF_ON_SURFACE ? 1 tmpl4_8 -GFLUX -NCEP +ULWRF +? AVE surface 0 @@ -13817,6 +15803,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13826,23 +15813,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -136 -AVE_SNOHF_ON_SURFACE +130 +AVE_USWRF_ON_TOP_OF_ATMOS ? 1 tmpl4_8 -SNOHF -NCEP +USWRF +? AVE -surface +top_of_atmos 0 ? 0 @@ -13854,6 +15845,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13863,23 +15855,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -42 -AVE_LHTFL_ON_SURFACE +131 +AVE_ULWRF_ON_TOP_OF_ATMOS ? 1 tmpl4_8 -LHTFL +ULWRF ? AVE -surface +top_of_atmos 0 ? 0 @@ -13891,6 +15887,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13900,22 +15897,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -47 -ACM_EVP_ON_SURFACE +156 +INST_DSWRF_ON_SURFACE ? 1 -tmpl4_8 -EVP +tmpl4_0 +DSWRF +? ? -ACM surface 0 ? @@ -13928,6 +15929,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13937,6 +15939,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13945,14 +15951,14 @@ surface ? ? ? -137 -ACM_PEVAP_ON_SURFACE +157 +INST_DLWRF_ON_SURFACE ? 1 -tmpl4_8 -PEVAP -NCEP -ACM +tmpl4_0 +DLWRF +? +? surface 0 ? @@ -13965,6 +15971,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13974,6 +15981,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13982,13 +15993,13 @@ surface ? ? ? -154 -INST_SHTFL_ON_SURFACE +772 +INST_SWDDNI_ON_SURFACE ? 1 tmpl4_0 -SHTFL -? +VBDSF +NCEP ? surface 0 @@ -14002,6 +16013,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14011,6 +16023,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14019,13 +16035,13 @@ surface ? ? ? -155 -INST_LHTFL_ON_SURFACE +773 +INST_SWDDIF_ON_SURFACE ? 1 tmpl4_0 -LHTFL -? +VDDSF +NCEP ? surface 0 @@ -14039,6 +16055,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14048,6 +16065,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14056,12 +16077,12 @@ surface ? ? ? -48 -NLAT_ON_SURFACE +262 +INST_CSDSF_ON_SURFACE ? 1 tmpl4_0 -NLAT +CSDSF NCEP ? surface @@ -14076,6 +16097,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14085,6 +16107,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14093,13 +16119,13 @@ surface ? ? ? -49 -ELON_ON_SURFACE +44 +SFCR_ON_SURFACE ? 1 tmpl4_0 -ELON -NCEP +SFCR +? ? surface 0 @@ -14113,6 +16139,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14122,20 +16149,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +2.7 0 0 0 ? ? ? -50 -LAND_ON_SURFACE +45 +FRICV_ON_SURFACE ? 1 tmpl4_0 -LAND +FRICV ? ? surface @@ -14150,6 +16181,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14159,20 +16191,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 +4.0 0 0 0 ? ? ? -51 -ICEC_ON_SURFACE +132 +CD_ON_SURFACE ? 1 tmpl4_0 -ICEC +CD ? ? surface @@ -14187,11 +16223,16 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -14204,14 +16245,14 @@ surface ? ? ? -52 -LMH_ON_SURFACE +43 +AVE_SHTFL_ON_SURFACE ? 1 -tmpl4_0 -LMH -NCEP +tmpl4_8 +SHTFL ? +AVE surface 0 ? @@ -14224,6 +16265,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14233,22 +16275,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 +4.0 0 0 0 ? ? ? -53 -LMV_ON_SURFACE +135 +AVE_GFLUX_ON_SURFACE ? 1 -tmpl4_0 -LMV +tmpl4_8 +GFLUX NCEP -? +AVE surface 0 ? @@ -14261,6 +16307,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14270,22 +16317,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 +4.0 0 0 0 ? ? ? -150 -ALBDO_ON_SURFACE +136 +AVE_SNOHF_ON_SURFACE ? 1 -tmpl4_0 -ALBDO -? +tmpl4_8 +SNOHF ? +AVE surface 0 ? @@ -14298,6 +16349,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14307,22 +16359,26 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -151 -WTMP_ON_SURFACE +42 +AVE_LHTFL_ON_SURFACE ? 1 -tmpl4_0 -WTMP -? +tmpl4_8 +LHTFL ? +AVE surface 0 ? @@ -14335,6 +16391,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14344,32 +16401,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -67 -PRES_ON_SPEC_PRES_ABOVE_GRND +137 +ACM_PEVAP_ON_SURFACE ? 1 -tmpl4_0 -PRES +tmpl4_8 +PEVAP +? +ACM +surface +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -14381,32 +16443,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -68 -TMP_ON_SPEC_PRES_ABOVE_GRND +154 +INST_SHTFL_ON_SURFACE ? 1 tmpl4_0 -TMP +SHTFL +? +? +surface +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -14418,32 +16485,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -69 -POT_ON_SPEC_PRES_ABOVE_GRND +155 +INST_LHTFL_ON_SURFACE ? 1 tmpl4_0 -POT +LHTFL ? ? -spec_pres_above_grnd +surface 0 ? -1 -3000. -spec_pres_above_grnd 0 ? -1 -0. +? +0 +? +0 +? +? ? ? 0 @@ -14455,6 +16527,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14463,24 +16539,25 @@ spec_pres_above_grnd ? ? ? -70 -DPT_ON_SPEC_PRES_ABOVE_GRND +48 +NLAT_ON_SURFACE ? 1 tmpl4_0 -DPT +NLAT +NCEP +? +surface +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -1 -3000. -spec_pres_above_grnd 0 ? -1 -0. +? ? ? 0 @@ -14492,32 +16569,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -71 -SPFH_ON_SPEC_PRES_ABOVE_GRND +49 +ELON_ON_SURFACE ? 1 tmpl4_0 -SPFH +ELON +NCEP ? +surface +0 ? -spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd +? 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +0 +? +? ? ? 0 @@ -14529,32 +16611,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -72 -RH_ON_SPEC_PRES_ABOVE_GRND +50 +LAND_ON_SURFACE ? 1 tmpl4_0 -RH +LAND +? +? +surface +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -14566,32 +16653,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 +1.0 0 0 0 ? ? ? -88 -MCONV_ON_SPEC_PRES_ABOVE_GRND +51 +ICEC_ON_SURFACE ? 1 tmpl4_0 -MCONV +ICEC ? ? -spec_pres_above_grnd +surface 0 ? -1 -3000. -spec_pres_above_grnd 0 ? -1 -0. +? +0 +? +0 +? +? ? ? 0 @@ -14603,6 +16695,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14611,24 +16707,25 @@ spec_pres_above_grnd ? ? ? -89 -PWAT_ON_SPEC_PRES_ABOVE_GRND +52 +LMH_ON_SURFACE ? 1 tmpl4_0 -PWAT +LMH +NCEP +? +surface +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -1 -3000. -spec_pres_above_grnd 0 ? -1 -0. +? ? ? 0 @@ -14640,32 +16737,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +2.0 0 0 0 ? ? ? -73 -UGRD_ON_SPEC_PRES_ABOVE_GRND +53 +LMV_ON_SURFACE ? 1 tmpl4_0 -UGRD +LMV +NCEP ? +surface +0 ? -spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd +? 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +0 +? +? ? ? 0 @@ -14677,32 +16779,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +2.0 0 0 0 ? ? ? -74 -VGRD_ON_SPEC_PRES_ABOVE_GRND +150 +ALBDO_ON_SURFACE ? 1 tmpl4_0 -VGRD +ALBDO +? +? +surface +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd 0 ? -6 -0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -14714,22 +16821,26 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -256 -ACM_LSPA_ON_SURFACE +151 +WTMP_ON_SURFACE ? 1 -tmpl4_8 -LSPA -NCEP -ACM +tmpl4_0 +WTMP +? +? surface 0 ? @@ -14742,6 +16853,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14751,31 +16863,36 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +5.0 0 0 0 ? ? ? -282 -PRES_ON_TOP_OF_ATMOS +67 +PRES_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 PRES ? ? -top_of_atmos -0 -? +spec_pres_above_grnd 0 ? -? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd 0 ? -0 +6 +0. 3000. 6000. 9000. 12000. 15000. ? ? ? @@ -14788,32 +16905,37 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -283 -PRES_ON_HYBRID_LVL_1L +68 +TMP_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -PRES +TMP ? ? -hybrid_lvl +spec_pres_above_grnd 0 ? -1 -1. -hybrid_lvl +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd 0 ? -1 -21. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -14825,6 +16947,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14833,24 +16959,25 @@ hybrid_lvl ? ? ? -273 -PRES_ON_HYBRID_LVL_LLM +69 +POT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -PRES +POT ? ? -hybrid_lvl +spec_pres_above_grnd 0 ? 1 -1. -hybrid_lvl +3000. +spec_pres_above_grnd 0 ? 1 -61. +0. +? ? ? 0 @@ -14862,31 +16989,36 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -118 -CNWAT_ON_SURFACE +70 +DPT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CNWAT -NCEP +DPT ? -surface -0 ? +spec_pres_above_grnd 0 ? -? +1 +3000. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -14899,31 +17031,36 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 +3.0 0 0 0 ? ? ? -152 -INST_GFLUX_ON_SURFACE +71 +SPFH_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -GFLUX -NCEP +SPFH ? -surface -0 ? +spec_pres_above_grnd 0 ? -? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd 0 ? -0 +6 +0. 3000. 6000. 9000. 12000. 15000. ? ? ? @@ -14936,32 +17073,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +5.0 0 0 0 ? ? ? -30 -LFTX_ON_ISOBARIC_SFC_500-1000hpa +72 +RH_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -LFTX -NCEP +RH ? -isobaric_sfc +? +spec_pres_above_grnd 0 ? -1 -50000. -isobaric_sfc +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd 0 ? -1 -100000. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -14973,31 +17115,36 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +2.0 0 0 0 ? ? ? -32 -CAPE_ON_SURFACE +89 +PWAT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CAPE -? +PWAT ? -surface -0 ? +spec_pres_above_grnd 0 ? -? +1 +3000. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -15010,32 +17157,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -566 -BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +73 +UGRD_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CAPE +UGRD ? ? spec_pres_above_grnd 0 ? -1 -18000. +6 +3000. 6000. 9000. 12000. 15000. 18000. spec_pres_above_grnd 0 ? -1 -0. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -15047,6 +17199,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15055,24 +17211,25 @@ spec_pres_above_grnd ? ? ? -582 -MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +74 +VGRD_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CAPE +VGRD ? ? spec_pres_above_grnd 0 ? -1 -9000. +6 +3000. 6000. 9000. 12000. 15000. 18000. spec_pres_above_grnd 0 ? -1 -0. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -15084,6 +17241,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15092,24 +17253,25 @@ spec_pres_above_grnd ? ? ? -584 -UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +282 +PRES_ON_TOP_OF_ATMOS ? 1 tmpl4_0 -CAPE +PRES +? +? +top_of_atmos +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -1 -25500. -spec_pres_above_grnd 0 ? -1 -0. +? ? ? 0 @@ -15121,21 +17283,25 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -107 -CIN_ON_SURFACE +152 +INST_GFLUX_ON_SURFACE ? 1 tmpl4_0 -CIN -? +GFLUX +NCEP ? surface 0 @@ -15149,6 +17315,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15158,32 +17325,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -567 -BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa ? 1 tmpl4_0 -CIN +LFTX ? ? -spec_pres_above_grnd +isobaric_sfc 0 ? 1 -18000. -spec_pres_above_grnd +50000. +isobaric_sfc 0 ? 1 -0. +100000. +? ? ? 0 @@ -15195,32 +17367,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -583 -MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +32 +CAPE_ON_SURFACE ? 1 tmpl4_0 -CIN +CAPE ? ? -spec_pres_above_grnd +surface 0 ? -1 -9000. -spec_pres_above_grnd 0 ? -1 -0. +? +0 +? +0 +? +? ? ? 0 @@ -15232,6 +17409,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15240,19 +17421,19 @@ spec_pres_above_grnd ? ? ? -585 -UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CIN +CAPE ? ? spec_pres_above_grnd 0 ? 1 -25500. +18000. spec_pres_above_grnd 0 ? @@ -15260,6 +17441,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -15269,6 +17451,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15277,19 +17463,19 @@ spec_pres_above_grnd ? ? ? -246 -PLPL_ON_SPEC_PRES_ABOVE_GRND +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -PLPL -NCEP +CAPE +? ? spec_pres_above_grnd 0 ? 1 -25500. +9000. spec_pres_above_grnd 0 ? @@ -15297,6 +17483,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -15306,31 +17493,36 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -162 -HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -HLCY +CAPE ? ? -spec_hgt_lvl_above_grnd +spec_pres_above_grnd 0 ? -2 -3000. 1000. -spec_hgt_lvl_above_grnd +1 +25500. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -15343,6 +17535,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15351,23 +17547,24 @@ spec_hgt_lvl_above_grnd ? ? ? -163 -USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +950 +CAPE_ON_0_3KM_ABOVE_GRND ? 1 tmpl4_0 -USTM -NCEP +CAPE +? ? spec_hgt_lvl_above_grnd 0 ? 1 -6000. +0. spec_hgt_lvl_above_grnd 0 ? -0 +1 +3000. ? ? ? @@ -15380,6 +17577,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15388,26 +17589,27 @@ spec_hgt_lvl_above_grnd ? ? ? -164 -VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +107 +CIN_ON_SURFACE ? 1 tmpl4_0 -VSTM -NCEP +CIN ? -spec_hgt_lvl_above_grnd +? +surface 0 ? -1 -6000. -spec_hgt_lvl_above_grnd +0 +? +? 0 ? 0 ? ? ? +? 0 0.0 0 @@ -15417,6 +17619,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15425,23 +17631,24 @@ spec_hgt_lvl_above_grnd ? ? ? -37 -LCDC_ON_LOW_CLOUD_LYR +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -LCDC -? +CIN ? -low_cloud_lyr -0 ? +spec_pres_above_grnd 0 ? -? +1 +18000. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -15454,31 +17661,36 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -38 -MCDC_ON_MID_CLOUD_LYR +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -MCDC -? +CIN ? -mid_cloud_lyr -0 ? +spec_pres_above_grnd 0 ? -? +1 +9000. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -15491,31 +17703,36 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -39 -HCDC_ON_HIGH_CLOUD_LYR +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -HCDC -? +CIN ? -high_cloud_lyr -0 ? +spec_pres_above_grnd 0 ? -? +1 +25500. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -15528,31 +17745,36 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -144 -AVE_TCDC_ON_ENTIRE_ATMOS +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND ? 1 -tmpl4_8 -TCDC -? -AVE -entire_atmos_single_lyr -0 +tmpl4_0 +PLPL +NCEP ? +spec_pres_above_grnd 0 ? -? +1 +25500. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -15565,34 +17787,39 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -139 -AVE_CDLYR_ON_ENTIRE_ATMOS +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 -tmpl4_8 -CDLYR -NCEP -AVE -entire_atmos_single_lyr -0 +tmpl4_0 +HLCY ? -0 ? +spec_hgt_lvl_above_grnd +0 ? +2 +3000. 1000. +spec_hgt_lvl_above_grnd 0 ? 0 ? ? ? +? 0 0.0 0 @@ -15602,23 +17829,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -148 -PRES_ON_CLOUD_BASE +953 +EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_0 -PRES -? +EFHL +NCEP ? -cloud_base +surface 0 ? 0 @@ -15630,6 +17861,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -15639,31 +17871,36 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -149 -PRES_ON_CLOUD_TOP +957 +CRITICAL_ANGLE ? 1 tmpl4_0 -PRES -? -? -cloud_top -0 +CANGLE +NCEP ? +spec_hgt_lvl_above_grnd 0 ? -? +1 +0. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +500. ? ? ? @@ -15676,31 +17913,36 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -168 -TMP_ON_CLOUD_TOP +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_0 -TMP +USTM ? ? -cloud_top +spec_hgt_lvl_above_grnd 0 ? +1 +6000. +spec_hgt_lvl_above_grnd 0 ? -? 0 ? -0 ? ? ? @@ -15713,34 +17955,39 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -135 -AVE_GFLUX_ON_SURFACE +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 -tmpl4_8 -GFLUX -NCEP -AVE -surface -0 +tmpl4_0 +VSTM ? -0 ? +spec_hgt_lvl_above_grnd +0 ? +1 +6000. +spec_hgt_lvl_above_grnd 0 ? 0 ? ? ? +? 0 0.0 0 @@ -15750,6 +17997,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15758,15 +18009,15 @@ surface ? ? ? -136 -AVE_SNOHF_ON_SURFACE +37 +LCDC_ON_LOW_CLOUD_LYR ? 1 -tmpl4_8 -SNOHF -NCEP -AVE -surface +tmpl4_0 +LCDC +? +? +low_cloud_lyr 0 ? 0 @@ -15778,6 +18029,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15787,23 +18039,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -47 -ACM_EVP_ON_SURFACE +38 +MCDC_ON_MID_CLOUD_LYR ? 1 -tmpl4_8 -EVP +tmpl4_0 +MCDC ? -ACM -surface +? +mid_cloud_lyr 0 ? 0 @@ -15815,6 +18071,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15824,23 +18081,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -154 -INST_SHTFL_ON_SURFACE +39 +HCDC_ON_HIGH_CLOUD_LYR ? 1 tmpl4_0 -SHTFL +HCDC ? ? -surface +high_cloud_lyr 0 ? 0 @@ -15852,6 +18113,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15861,23 +18123,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -155 -INST_LHTFL_ON_SURFACE +144 +AVE_TCDC_ON_ENTIRE_ATMOS ? 1 -tmpl4_0 -LHTFL -? +tmpl4_8 +TCDC ? -surface +AVE +entire_atmos_single_lyr 0 ? 0 @@ -15889,6 +18155,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15898,23 +18165,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -54 -PRES_ON_TROPOPAUSE +148 +PRES_ON_CLOUD_BASE ? 1 tmpl4_0 PRES ? ? -tropopause +cloud_base 0 ? 0 @@ -15926,6 +18197,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -15935,6 +18207,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -15943,15 +18219,15 @@ tropopause ? ? ? -177 -HGT_ON_TROPOPAUSE +149 +PRES_ON_CLOUD_TOP ? 1 tmpl4_0 -HGT +PRES ? ? -tropopause +cloud_top 0 ? 0 @@ -15963,6 +18239,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -15972,6 +18249,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -15980,15 +18261,15 @@ tropopause ? ? ? -55 -TMP_ON_TROPOPAUSE +168 +TMP_ON_CLOUD_TOP ? 1 tmpl4_0 TMP ? ? -tropopause +cloud_top 0 ? 0 @@ -16000,6 +18281,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16009,23 +18291,27 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +5.0 0 0 0 ? ? ? -56 -UGRD_ON_TROPOPAUSE +135 +AVE_GFLUX_ON_SURFACE ? 1 -tmpl4_0 -UGRD -? -? -tropopause +tmpl4_8 +GFLUX +NCEP +AVE +surface 0 ? 0 @@ -16037,6 +18323,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16046,6 +18333,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16054,15 +18345,15 @@ tropopause ? ? ? -57 -VGRD_ON_TROPOPAUSE -? -1 -tmpl4_0 -VGRD +136 +AVE_SNOHF_ON_SURFACE ? +1 +tmpl4_8 +SNOHF ? -tropopause +AVE +surface 0 ? 0 @@ -16074,6 +18365,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16083,6 +18375,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16091,15 +18387,15 @@ tropopause ? ? ? -58 -VWSH_ON_TROPOPAUSE +154 +INST_SHTFL_ON_SURFACE ? 1 tmpl4_0 -VWSH -NCEP +SHTFL ? -tropopause +? +surface 0 ? 0 @@ -16111,6 +18407,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16120,27 +18417,31 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -59 -TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +155 +INST_LHTFL_ON_SURFACE ? 1 tmpl4_0 -TMP +LHTFL ? ? -spec_alt_above_mean_sea_lvl +surface +0 +? 0 ? -10 -305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16148,6 +18449,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -16157,27 +18459,31 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -60 -UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +54 +PRES_ON_TROPOPAUSE ? 1 tmpl4_0 -UGRD +PRES ? ? -spec_alt_above_mean_sea_lvl +tropopause +0 +? 0 ? -10 -305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16185,6 +18491,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -16194,27 +18501,31 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +6.0 0 0 0 ? ? ? -61 -VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +177 +HGT_ON_TROPOPAUSE ? 1 tmpl4_0 -VGRD +HGT ? ? -spec_alt_above_mean_sea_lvl +tropopause +0 +? 0 ? -10 -305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16222,6 +18533,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -16231,23 +18543,27 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +6.0 0 0 0 ? ? ? -62 -HGT_ON_0C_ISOTHERM +55 +TMP_ON_TROPOPAUSE ? 1 tmpl4_0 -HGT +TMP ? ? -0C_isotherm +tropopause 0 ? 0 @@ -16259,6 +18575,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -16268,23 +18585,27 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -63 -RH_ON_0C_ISOTHERM +56 +UGRD_ON_TROPOPAUSE ? 1 tmpl4_0 -RH +UGRD ? ? -0C_isotherm +tropopause 0 ? 0 @@ -16296,6 +18617,7 @@ RH ? ? ? +? 0 0.0 0 @@ -16305,23 +18627,27 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 +4.0 0 0 0 ? ? ? -165 -HGT_ON_HGHST_TROP_FRZ_LVL +57 +VGRD_ON_TROPOPAUSE ? 1 tmpl4_0 -HGT +VGRD ? ? -hghst_trop_frz_lvl +tropopause 0 ? 0 @@ -16333,6 +18659,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -16342,23 +18669,27 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -173 -PRES_ON_MAX_WIND +58 +VWSH_ON_TROPOPAUSE ? 1 tmpl4_0 -PRES +VWSH ? ? -max_wind +tropopause 0 ? 0 @@ -16370,6 +18701,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -16379,27 +18711,31 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -174 -HGT_ON_MAX_WIND +59 +TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL ? 1 tmpl4_0 -HGT -? +TMP ? -max_wind -0 ? +spec_alt_above_mean_sea_lvl 0 ? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16407,6 +18743,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -16416,27 +18753,31 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -175 -UGRD_ON_MAX_WIND +60 +UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL ? 1 tmpl4_0 UGRD ? ? -max_wind -0 -? +spec_alt_above_mean_sea_lvl 0 ? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16444,6 +18785,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -16453,6 +18795,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16461,19 +18807,19 @@ max_wind ? ? ? -176 -VGRD_ON_MAX_WIND +61 +VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL ? 1 tmpl4_0 VGRD ? ? -max_wind -0 -? +spec_alt_above_mean_sea_lvl 0 ? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16481,6 +18827,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -16490,6 +18837,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16498,19 +18849,19 @@ max_wind ? ? ? -422 -MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m -maximum wind speed on 10 meter Above Ground +62 +HGT_ON_0C_ISOTHERM +? 1 -tmpl4_8 -WIND +tmpl4_0 +HGT +? +? +0C_isotherm +0 ? -MAX -spec_hgt_lvl_above_grnd 0 ? -1 -10. ? 0 ? @@ -16518,6 +18869,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -16527,23 +18879,27 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +6.0 0 0 0 ? ? ? -178 -HGT_ON_CLOUD_BASE +63 +RH_ON_0C_ISOTHERM ? 1 tmpl4_0 -HGT +RH ? ? -cloud_base +0C_isotherm 0 ? 0 @@ -16555,6 +18911,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -16564,23 +18921,27 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +2.0 0 0 0 ? ? ? -179 -HGT_ON_CLOUD_TOP +165 +HGT_ON_HGHST_TROP_FRZ_LVL ? 1 tmpl4_0 HGT ? ? -cloud_top +hghst_trop_frz_lvl 0 ? 0 @@ -16592,6 +18953,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -16601,6 +18963,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16609,15 +18975,15 @@ cloud_top ? ? ? -410 -GSD_VIS_ON_SURFACE -GSD_visibility on surface +350 +RH_ON_HGHST_TROP_FRZ_LVL +? 1 tmpl4_0 -VIS +RH ? ? -surface +hghst_trop_frz_lvl 0 ? 0 @@ -16629,6 +18995,7 @@ surface ? ? ? +? 0 0.0 0 @@ -16638,27 +19005,31 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-0.1 0 0 0 ? ? ? -252 -REFC_ON_ENTIRE_ATMOS -? +779 +HGT_ON_HGHST_TROP_-20C_LVL +height on highest tropospheric -20C level 1 tmpl4_0 -REFC -NCEP +HGT ? -entire_atmos_single_lyr -0 ? +isothermal 0 ? +1 +253. ? 0 ? @@ -16666,6 +19037,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16675,23 +19047,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -194 -PRES_ON_GRID_SCALE_CLOUD_BOT_LVL -? +443 +HGT_ON_EQUIL_LVL +geopotential height on Equilibrium level 1 tmpl4_0 -PRES +HGT ? ? -grid_scale_cloud_bot_lvl +equil_lvl 0 ? 0 @@ -16703,6 +19079,7 @@ grid_scale_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -16712,23 +19089,27 @@ grid_scale_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -195 -PRES_ON_GRID_SCALE_CLOUD_TOP_LVL +173 +PRES_ON_MAX_WIND ? 1 tmpl4_0 PRES ? ? -grid_scale_cloud_top_lvl +max_wind 0 ? 0 @@ -16740,6 +19121,7 @@ grid_scale_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -16749,6 +19131,10 @@ grid_scale_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16757,15 +19143,15 @@ grid_scale_cloud_top_lvl ? ? ? -200 -TCOLW_ON_ENTIRE_ATMOS +174 +HGT_ON_MAX_WIND ? 1 tmpl4_0 -TCOLW -NCEP +HGT ? -entire_atmos_single_lyr +? +max_wind 0 ? 0 @@ -16777,6 +19163,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16786,23 +19173,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -201 -TCOLI_ON_ENTIRE_ATMOS +175 +UGRD_ON_MAX_WIND ? 1 tmpl4_0 -TCOLI -NCEP +UGRD ? -entire_atmos_single_lyr +? +max_wind 0 ? 0 @@ -16814,6 +19205,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16823,23 +19215,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -202 -TCOLR_ON_ENTIRE_ATMOS +176 +VGRD_ON_MAX_WIND ? 1 tmpl4_0 -TCOLR -NCEP +VGRD ? -entire_atmos_single_lyr +? +max_wind 0 ? 0 @@ -16851,6 +19247,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16860,27 +19257,31 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -203 -TCOLS_ON_ENTIRE_ATMOS -? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground 1 -tmpl4_0 -TCOLS -NCEP -? -entire_atmos_single_lyr -0 +tmpl4_8 +WIND ? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +10. ? 0 ? @@ -16888,6 +19289,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16897,23 +19299,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-4.0 0 0 0 ? ? ? -204 -TCOLC_ON_ENTIRE_ATMOS +178 +HGT_ON_CLOUD_BASE ? 1 tmpl4_0 -TCOLC -NCEP +HGT ? -entire_atmos_single_lyr +? +cloud_base 0 ? 0 @@ -16925,6 +19331,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16934,23 +19341,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -428 -TCOLG_ON_ENTIRE_ATMOS +179 +HGT_ON_CLOUD_TOP ? 1 tmpl4_0 -TCOLG +HGT ? ? -entire_atmos_single_lyr +cloud_top 0 ? 0 @@ -16962,6 +19373,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16971,21 +19383,25 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -218 -VGTYP_ON_SURFACE -? +410 +GSD_VIS_ON_SURFACE +GSD_visibility on surface 1 tmpl4_0 -VGTYP -NCEP +VIS +? ? surface 0 @@ -16999,6 +19415,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17008,23 +19425,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -219 -SOTYP_ON_SURFACE +252 +REFC_ON_ENTIRE_ATMOS ? 1 tmpl4_0 -SOTYP +REFC ? ? -surface +entire_atmos_single_lyr 0 ? 0 @@ -17036,6 +19457,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17045,23 +19467,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -220 -CCOND_ON_SURFACE +194 +PRES_ON_GRID_SCALE_CLOUD_BOT_LVL ? 1 tmpl4_0 -CCOND -NCEP +PRES ? -surface +? +grid_scale_cloud_bot_lvl 0 ? 0 @@ -17073,6 +19499,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17082,23 +19509,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -221 -HPBL_ON_SURFACE +195 +PRES_ON_GRID_SCALE_CLOUD_TOP_LVL ? 1 tmpl4_0 -HPBL -NCEP +PRES ? -surface +? +grid_scale_cloud_top_lvl 0 ? 0 @@ -17110,6 +19541,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17119,6 +19551,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -17127,13 +19563,13 @@ surface ? ? ? -224 -SNOD_ON_SURFACE +218 +VGTYP_ON_SURFACE ? 1 tmpl4_0 -SNOD -? +VGTYP +NCEP ? surface 0 @@ -17147,6 +19583,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17156,21 +19593,25 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -231 -SBSNO_ON_SURFACE +219 +SOTYP_ON_SURFACE ? 1 tmpl4_0 -SBSNO -NCEP +SOTYP +? ? surface 0 @@ -17184,6 +19625,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17193,6 +19635,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17201,12 +19647,12 @@ surface ? ? ? -232 -SMDRY_ON_SURFACE +220 +CCOND_ON_SURFACE ? 1 tmpl4_0 -SMDRY +CCOND NCEP ? surface @@ -17221,6 +19667,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17230,6 +19677,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17238,13 +19689,13 @@ surface ? ? ? -233 -POROS_ON_SURFACE +221 +HPBL_ON_SURFACE ? 1 tmpl4_0 -POROS -NCEP +HPBL +? ? surface 0 @@ -17258,6 +19709,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17267,21 +19719,25 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -234 -RSMIN_ON_SURFACE +224 +SNOD_ON_SURFACE ? 1 tmpl4_0 -RSMIN -NCEP +SNOD +? ? surface 0 @@ -17295,6 +19751,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17304,20 +19761,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -235 -RLYRS_ON_SURFACE +231 +SBSNO_ON_SURFACE ? 1 tmpl4_0 -RLYRS +SBSNO NCEP ? surface @@ -17332,6 +19793,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17341,6 +19803,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17349,12 +19815,12 @@ surface ? ? ? -236 -WILT_ON_SURFACE +232 +SMDRY_ON_SURFACE ? 1 tmpl4_0 -WILT +SMDRY NCEP ? surface @@ -17369,6 +19835,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17378,6 +19845,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17386,12 +19857,12 @@ surface ? ? ? -237 -SMREF_ON_SURFACE +233 +POROS_ON_SURFACE ? 1 tmpl4_0 -SMREF +POROS NCEP ? surface @@ -17406,6 +19877,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17415,6 +19887,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17423,12 +19899,12 @@ surface ? ? ? -238 -RCS_ON_SURFACE +234 +RSMIN_ON_SURFACE ? 1 tmpl4_0 -RCS +RSMIN NCEP ? surface @@ -17443,6 +19919,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17452,6 +19929,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17460,12 +19941,12 @@ surface ? ? ? -239 -RCT_ON_SURFACE +235 +RLYRS_ON_SURFACE ? 1 tmpl4_0 -RCT +RLYRS NCEP ? surface @@ -17480,6 +19961,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17489,20 +19971,24 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +3.0 0 0 0 ? ? ? -240 -RCQ_ON_SURFACE +236 +WILT_ON_SURFACE ? 1 tmpl4_0 -RCQ +WILT NCEP ? surface @@ -17517,6 +20003,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17526,6 +20013,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17534,12 +20025,12 @@ surface ? ? ? -241 -RCSOL_ON_SURFACE +237 +SMREF_ON_SURFACE ? 1 tmpl4_0 -RCSOL +SMREF NCEP ? surface @@ -17554,6 +20045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17563,6 +20055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17591,6 +20087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17600,6 +20097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -17628,6 +20129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17637,6 +20139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17665,6 +20171,7 @@ lwst_lvl_of_wet_bulb_zero ? ? ? +? 0 0.0 0 @@ -17674,6 +20181,10 @@ lwst_lvl_of_wet_bulb_zero 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -17702,6 +20213,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17711,6 +20223,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -17739,6 +20255,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17748,6 +20265,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -17776,6 +20297,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -17785,6 +20307,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -17813,6 +20339,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17822,6 +20349,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -17830,19 +20361,19 @@ surface ? ? ? -500 -AVE_SNOWC_ON_SURFACE +702 +GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_8 -SNOWC -NCEP -AVE -surface -0 +LTNGSD ? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +1. ? 0 ? @@ -17850,48 +20381,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -704 -GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS -? -1 -tmpl4_8 -LTNG -NCEP -MAX -entire_atmos -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -17904,19 +20403,19 @@ entire_atmos ? ? ? -1006 -SDEN_ON_SURFACE +703 +GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 -tmpl4_0 -SDEN -? -? -surface -0 +tmpl4_8 +LTNGSD ? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +2. ? 0 ? @@ -17924,48 +20423,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -6.0 -0 -0 -0 -? -? -? -1007 -ICE_PROB_IFI_FLIGHT_LEVEL -? -1 -tmpl4_0 -ICPRB -NCEP -? -spec_alt_above_mean_sea_lvl -1 -1 -60 -5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -17978,19 +20445,19 @@ spec_alt_above_mean_sea_lvl ? ? ? -1008 -SLD_IFI_FLIGHT_LEVEL +704 +GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS ? 1 -tmpl4_0 -SIPD +tmpl4_8 +LTNG NCEP +MAX +entire_atmos +0 +? +0 ? -spec_alt_above_mean_sea_lvl -1 -1 -60 -5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. ? 0 ? @@ -17998,6 +20465,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -18007,6 +20475,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18015,74 +20487,42 @@ spec_alt_above_mean_sea_lvl ? ? ? -1009 -ICE_SEV_CAT_IFI_FLIGHT_LEVEL +1006 +SDEN_ON_SURFACE ? 1 tmpl4_0 -ICSEV -NCEP +SDEN ? -spec_alt_above_mean_sea_lvl -1 -1 -60 -5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. ? +surface 0 ? 0 ? ? -? 0 -0.0 -0 -0.0 ? 0 -0.0 -0 -0.0 -1 -4.0 -0 -0 -0 -? ? ? -1010 -WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL ? -1 -tmpl4_0 -ICESEV -? -? -spec_alt_above_mean_sea_lvl -1 -1 -60 -5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. ? 0 -? +0.0 0 -? -? +0.0 ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +6.0 0 0 0 diff --git a/tests/parm/postxconfig-NT-gfs.txt b/tests/parm/postxconfig-NT-gfs.txt index ba22c218fc..fb2556c370 100644 --- a/tests/parm/postxconfig-NT-gfs.txt +++ b/tests/parm/postxconfig-NT-gfs.txt @@ -1,6 +1,6 @@ 2 112 -210 +204 GFSPRS 0 ncep_nco @@ -37,6 +37,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -74,6 +79,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -111,6 +121,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -148,6 +163,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -185,6 +205,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -222,6 +247,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -259,6 +289,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -296,6 +331,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -333,6 +373,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -370,6 +415,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -407,6 +457,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -444,6 +499,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -481,6 +541,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -490,6 +551,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -518,6 +583,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -527,6 +593,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -555,6 +625,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -564,6 +635,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -592,6 +667,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -601,6 +677,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -629,6 +709,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -638,6 +719,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -666,6 +751,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -675,6 +761,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -703,6 +793,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -712,6 +803,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -740,6 +835,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -749,6 +845,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -777,6 +877,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -786,6 +887,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -814,6 +919,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -823,6 +929,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -851,6 +961,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -860,6 +971,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -888,6 +1003,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -897,6 +1013,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -925,6 +1045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -934,6 +1055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -962,6 +1087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -971,6 +1097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -999,6 +1129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1008,6 +1139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1036,6 +1171,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1045,6 +1181,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1073,6 +1213,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1082,6 +1223,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1110,6 +1255,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1119,6 +1265,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1147,6 +1297,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1156,6 +1307,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1184,6 +1339,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1193,6 +1349,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1221,6 +1381,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1230,6 +1391,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1258,6 +1423,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1267,6 +1433,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1295,6 +1465,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1304,6 +1475,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1332,6 +1507,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1341,6 +1517,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1369,6 +1549,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1378,6 +1559,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1406,6 +1591,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1415,6 +1601,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1443,6 +1633,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1452,6 +1643,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1480,6 +1675,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1489,6 +1685,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1517,6 +1717,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1526,6 +1727,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1554,6 +1759,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1563,6 +1769,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1591,6 +1801,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1600,6 +1811,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1628,6 +1843,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1637,6 +1853,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1665,6 +1885,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1674,6 +1895,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1702,6 +1927,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1711,6 +1937,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1739,6 +1969,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1748,6 +1979,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1776,6 +2011,7 @@ spec_hgt_lvl_above_grnd 0. 0. ? ? +? 0 0.0 0 @@ -1785,6 +2021,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1813,6 +2053,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1822,6 +2063,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1850,6 +2095,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1859,6 +2105,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1887,6 +2137,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1896,6 +2147,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1924,6 +2179,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1933,6 +2189,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1961,6 +2221,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1970,6 +2231,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1998,6 +2263,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2007,6 +2273,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2035,6 +2305,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2044,6 +2315,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2072,6 +2347,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2081,6 +2357,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2109,6 +2389,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2118,6 +2399,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2146,6 +2431,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2155,6 +2441,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2183,6 +2473,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2192,6 +2483,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2220,48 +2515,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -1.0 -0 -0 -0 -? -? -? -317 -AVE_CRAIN_ON_SURFACE -? -1 -tmpl4_8 -CRAIN -NCEP -AVE -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -2274,87 +2537,13 @@ surface ? ? ? -555 -AVE_CSNOW_ON_SURFACE -average Categorical snow on surface -1 -tmpl4_8 -CSNOW -NCEP -AVE -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -1.0 -0 -0 -0 -? -? +271 +AVE_PRATE_ON_SURFACE ? -556 -AVE_CICEP_ON_SURFACE -average Categorical ice pellets on surface 1 tmpl4_8 -CICEP -NCEP -AVE -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -1.0 -0 -0 -0 -? -? +PRATE ? -557 -AVE_CFRZR_ON_SURFACE -average Categorical freezing rain on surface -1 -tmpl4_8 -CFRZR -NCEP AVE surface 0 @@ -2368,48 +2557,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -1.0 -0 -0 -0 -? -? -? -271 -AVE_PRATE_ON_SURFACE -? -1 -tmpl4_8 -PRATE -? -AVE -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -2442,6 +2599,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2451,6 +2609,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2479,6 +2641,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2488,6 +2651,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2516,6 +2683,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2525,6 +2693,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2553,6 +2725,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2562,6 +2735,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2590,6 +2767,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2599,6 +2777,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2627,6 +2809,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2636,6 +2819,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2664,6 +2851,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2673,6 +2861,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2701,6 +2893,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2710,6 +2903,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2738,6 +2935,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2747,6 +2945,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2775,6 +2977,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2784,6 +2987,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2812,6 +3019,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2821,6 +3029,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2849,6 +3061,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2858,6 +3071,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2886,6 +3103,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2895,6 +3113,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2923,6 +3145,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2932,6 +3155,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2960,6 +3187,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2969,6 +3197,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2997,6 +3229,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3006,6 +3239,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3034,6 +3271,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3043,6 +3281,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3071,6 +3313,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3080,6 +3323,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3108,6 +3355,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3117,6 +3365,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3145,6 +3397,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3154,6 +3407,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3182,6 +3439,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3191,6 +3449,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3219,6 +3481,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3228,6 +3491,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3256,6 +3523,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3265,6 +3533,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -3293,6 +3565,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3302,6 +3575,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3330,6 +3607,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3339,6 +3617,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3367,6 +3649,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3376,6 +3659,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3404,6 +3691,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3413,6 +3701,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3441,6 +3733,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3450,6 +3743,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3478,6 +3775,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3487,6 +3785,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3515,6 +3817,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3524,6 +3827,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3552,6 +3859,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3561,6 +3869,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3589,6 +3901,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3598,6 +3911,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3626,6 +3943,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3635,6 +3953,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3663,6 +3985,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3672,6 +3995,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3700,6 +4027,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3709,6 +4037,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3737,6 +4069,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3746,6 +4079,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3774,6 +4111,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3783,6 +4121,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3811,6 +4153,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3820,6 +4163,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3848,6 +4195,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3857,6 +4205,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -3885,6 +4237,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -3894,6 +4247,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3922,6 +4279,7 @@ RH ? ? ? +? 0 0.0 0 @@ -3931,6 +4289,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3959,6 +4321,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -3968,6 +4331,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3996,6 +4363,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -4005,6 +4373,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4033,6 +4405,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4042,6 +4415,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4070,6 +4447,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -4079,6 +4457,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4107,6 +4489,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4116,6 +4499,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -4144,6 +4531,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4153,6 +4541,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4181,6 +4573,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -4190,6 +4583,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4218,6 +4615,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4227,6 +4625,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4255,6 +4657,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4264,6 +4667,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4292,6 +4699,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -4301,6 +4709,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4329,6 +4741,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -4338,6 +4751,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4366,6 +4783,7 @@ sigma_lvl 94. ? ? +? 0 0.0 0 @@ -4375,6 +4793,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4403,6 +4825,7 @@ sigma_lvl 72. ? ? +? 0 0.0 0 @@ -4412,6 +4835,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4440,6 +4867,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4449,6 +4877,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4477,6 +4909,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4486,6 +4919,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4514,6 +4951,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4523,6 +4961,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4551,6 +4993,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4560,6 +5003,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4588,6 +5035,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4597,6 +5045,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4625,6 +5077,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4634,6 +5087,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4662,6 +5119,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4671,6 +5129,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4699,6 +5161,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4708,6 +5171,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4736,6 +5203,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4745,6 +5213,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4773,6 +5245,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4782,6 +5255,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4810,6 +5287,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4819,6 +5297,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4847,6 +5329,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4856,6 +5339,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4884,6 +5371,7 @@ convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4893,6 +5381,10 @@ convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4921,6 +5413,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4930,6 +5423,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4958,6 +5455,7 @@ low_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4967,6 +5465,10 @@ low_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4995,6 +5497,7 @@ mid_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -5004,6 +5507,10 @@ mid_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5032,6 +5539,7 @@ high_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -5041,6 +5549,10 @@ high_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5069,6 +5581,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5078,6 +5591,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5106,6 +5623,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5115,6 +5633,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5143,6 +5665,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5152,6 +5675,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5180,6 +5707,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5189,6 +5717,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5217,6 +5749,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5226,6 +5759,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5254,6 +5791,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5263,6 +5801,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5291,6 +5833,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5300,6 +5843,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5328,6 +5875,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5337,6 +5885,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5365,6 +5917,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5374,6 +5927,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5402,6 +5959,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5411,6 +5969,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5439,6 +6001,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5448,6 +6011,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5476,6 +6043,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5485,6 +6053,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5513,6 +6085,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5522,6 +6095,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5550,6 +6127,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5559,6 +6137,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5587,6 +6169,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5596,6 +6179,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5624,6 +6211,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5633,6 +6221,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5661,6 +6253,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5670,6 +6263,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5698,6 +6295,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5707,6 +6305,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5735,6 +6337,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5744,6 +6347,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5772,6 +6379,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5781,6 +6389,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5809,6 +6421,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5818,6 +6431,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5846,6 +6463,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5855,6 +6473,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5883,6 +6505,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5892,6 +6515,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5920,6 +6547,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5929,6 +6557,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5957,6 +6589,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5966,6 +6599,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5994,6 +6631,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -6003,6 +6641,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6031,6 +6673,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6040,6 +6683,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6068,6 +6715,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6077,6 +6725,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6105,6 +6757,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6114,6 +6767,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6142,6 +6799,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6151,6 +6809,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6179,6 +6841,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6188,6 +6851,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6216,6 +6883,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -6225,6 +6893,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6253,6 +6925,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6262,6 +6935,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6290,6 +6967,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6299,6 +6977,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6327,6 +7009,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -6336,6 +7019,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6364,6 +7051,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -6373,6 +7061,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6401,6 +7093,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -6410,6 +7103,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6438,6 +7135,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6447,6 +7145,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -6475,6 +7177,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6484,6 +7187,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6512,6 +7219,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6521,6 +7229,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6549,6 +7261,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6558,6 +7271,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6586,6 +7303,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6595,6 +7313,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6623,6 +7345,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6632,6 +7355,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6660,6 +7387,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6669,6 +7397,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6697,6 +7429,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6706,6 +7439,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6734,6 +7471,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6743,6 +7481,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6771,54 +7513,22 @@ hybrid_lvl ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -6.0 -0 -0 -0 -? -? -? -588 -ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL -? -1 -tmpl4_0 -ICEG -? -? -spec_alt_above_mean_sea_lvl -0 -? -1 -10. -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +6.0 0 0 0 @@ -6845,6 +7555,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6854,6 +7565,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6882,54 +7597,22 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -968 -ICETMP_ON_SURFACE -? -1 -tmpl4_0 -ICETMP -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -5.0 +3.0 0 0 0 @@ -6956,6 +7639,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -6965,6 +7649,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6993,6 +7681,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -7002,6 +7691,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7030,6 +7723,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -7039,6 +7733,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7067,6 +7765,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -7076,6 +7775,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7104,6 +7807,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -7113,6 +7817,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7141,6 +7849,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7150,6 +7859,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7178,6 +7891,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7187,6 +7901,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7215,6 +7933,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -7224,6 +7943,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7252,6 +7975,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -7261,6 +7985,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7289,6 +8017,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7298,6 +8027,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7326,6 +8059,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7335,6 +8069,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7363,6 +8101,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7372,6 +8111,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7400,6 +8143,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7409,6 +8153,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7437,6 +8185,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7446,6 +8195,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7474,6 +8227,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7483,6 +8237,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7511,6 +8269,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7520,6 +8279,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7547,6 +8310,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -7557,6 +8321,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7584,6 +8352,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -7594,6 +8363,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7621,6 +8394,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 6 20 @@ -7631,6 +8405,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7658,6 +8436,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 6 20 @@ -7668,6 +8447,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7695,6 +8478,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 6 20 @@ -7705,6 +8489,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7732,6 +8520,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 6 20 @@ -7742,6 +8531,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7770,6 +8563,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7779,6 +8573,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7823,6 +8621,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7832,6 +8631,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7860,6 +8663,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7869,6 +8673,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -7897,6 +8705,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7906,6 +8715,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7934,6 +8747,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7943,6 +8757,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7971,6 +8789,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7980,6 +8799,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8008,6 +8831,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8017,6 +8841,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8045,6 +8873,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8054,6 +8883,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8082,6 +8915,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8091,6 +8925,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8119,6 +8957,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -8128,6 +8967,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8156,6 +8999,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -8165,6 +9009,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8193,6 +9041,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -8202,6 +9051,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8230,6 +9083,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8239,6 +9093,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8267,6 +9125,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8276,6 +9135,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8304,6 +9167,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8313,6 +9177,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8341,6 +9209,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8350,6 +9219,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8378,6 +9251,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8387,6 +9261,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8415,6 +9293,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8424,6 +9303,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8452,6 +9335,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8461,6 +9345,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8489,6 +9377,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8498,6 +9387,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8526,6 +9419,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8535,6 +9429,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8563,6 +9461,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8572,6 +9471,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8600,6 +9503,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8609,6 +9513,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8637,6 +9545,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -8646,6 +9555,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8674,6 +9587,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -8683,6 +9597,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8711,6 +9629,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -8720,6 +9639,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8748,6 +9671,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8757,6 +9681,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8785,6 +9713,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8794,6 +9723,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8822,6 +9755,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8831,6 +9765,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8859,6 +9797,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -8868,6 +9807,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8896,6 +9839,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8905,6 +9849,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8933,6 +9881,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8942,6 +9891,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8970,6 +9923,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8979,6 +9933,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9007,6 +9965,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9016,6 +9975,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9044,6 +10007,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9053,6 +10017,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9081,6 +10049,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9090,6 +10059,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9118,6 +10091,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9127,6 +10101,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9155,6 +10133,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9164,6 +10143,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9192,6 +10175,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9201,6 +10185,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9229,6 +10217,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9238,6 +10227,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9266,6 +10259,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9275,6 +10269,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9303,6 +10301,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9312,6 +10311,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9340,6 +10343,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9349,6 +10353,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9377,6 +10385,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9386,6 +10395,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9414,6 +10427,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9423,6 +10437,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9451,6 +10469,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9460,6 +10479,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9488,6 +10511,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9497,6 +10521,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9525,6 +10553,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9534,6 +10563,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9562,6 +10595,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9571,6 +10605,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9599,6 +10637,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9608,6 +10647,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9636,6 +10679,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9645,6 +10689,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9673,6 +10721,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9682,6 +10731,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9710,6 +10763,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9719,6 +10773,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9747,6 +10805,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9756,6 +10815,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9784,6 +10847,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9793,6 +10857,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9821,6 +10889,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9830,6 +10899,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9858,6 +10931,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9867,6 +10941,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9895,6 +10973,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9904,6 +10983,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9932,6 +11015,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9941,6 +11025,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9969,6 +11057,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9978,6 +11067,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10006,6 +11099,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10015,6 +11109,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10043,11 +11141,16 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -10080,6 +11183,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10089,6 +11193,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10117,6 +11225,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10126,6 +11235,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10154,6 +11267,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10163,6 +11277,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10191,6 +11309,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10200,6 +11319,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10228,6 +11351,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10237,6 +11361,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10265,6 +11393,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10274,6 +11403,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -10302,6 +11435,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10311,6 +11445,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10339,6 +11477,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10348,6 +11487,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10376,6 +11519,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10385,6 +11529,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10413,6 +11561,7 @@ convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -10422,6 +11571,10 @@ convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10450,6 +11603,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10459,6 +11613,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10487,6 +11645,7 @@ low_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -10496,6 +11655,10 @@ low_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10524,6 +11687,7 @@ mid_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -10533,6 +11697,10 @@ mid_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10561,6 +11729,7 @@ high_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -10570,6 +11739,10 @@ high_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10598,6 +11771,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10607,6 +11781,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10635,6 +11813,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10644,6 +11823,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10672,6 +11855,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10681,6 +11865,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10709,6 +11897,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10718,6 +11907,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10746,6 +11939,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10755,6 +11949,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10783,6 +11981,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10792,6 +11991,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10820,6 +12023,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -10829,6 +12033,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10857,6 +12065,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -10866,6 +12075,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10894,6 +12107,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -10903,6 +12117,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10931,6 +12149,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10940,6 +12159,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -10968,6 +12191,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10977,6 +12201,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -11005,6 +12233,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11014,6 +12243,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11042,6 +12275,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11051,6 +12285,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11079,6 +12317,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11088,6 +12327,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11116,6 +12359,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11125,6 +12369,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11153,6 +12401,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11162,6 +12411,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11190,6 +12443,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11199,6 +12453,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -11227,6 +12485,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11236,6 +12495,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11264,6 +12527,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11273,6 +12537,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11301,6 +12569,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11310,6 +12579,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -11338,6 +12611,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11347,6 +12621,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11375,6 +12653,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11384,6 +12663,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11412,6 +12695,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11421,6 +12705,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11449,6 +12737,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11458,6 +12747,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11486,6 +12779,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11495,6 +12789,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11523,6 +12821,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11532,6 +12831,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11560,6 +12863,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11569,6 +12873,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11597,6 +12905,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11606,6 +12915,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11615,11 +12928,11 @@ surface ? ? 36 -SOILM_ON_DEPTH_BEL_LAND_SFC +GFS_CISOILM_ON_DEPTH_BEL_LAND_SFC ? 1 tmpl4_0 -SOILM +CISOILM ? ? depth_bel_land_sfc @@ -11634,6 +12947,7 @@ depth_bel_land_sfc 200. ? ? +? 0 0.0 0 @@ -11643,6 +12957,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11671,6 +12989,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11680,6 +12999,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11708,6 +13031,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11717,6 +13041,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11745,6 +13073,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11754,6 +13083,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11782,6 +13115,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11791,6 +13125,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11819,6 +13157,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11828,6 +13167,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11856,6 +13199,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11865,6 +13209,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11893,6 +13241,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11902,6 +13251,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11930,6 +13283,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11939,6 +13293,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 diff --git a/tests/parm/postxconfig-NT-gfs_FH00.txt b/tests/parm/postxconfig-NT-gfs_FH00.txt index 229c1f52e9..95c932343a 100644 --- a/tests/parm/postxconfig-NT-gfs_FH00.txt +++ b/tests/parm/postxconfig-NT-gfs_FH00.txt @@ -1,6 +1,6 @@ 2 47 -156 +154 GFSPRS 0 ncep_nco @@ -37,6 +37,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -74,6 +79,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -111,6 +121,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -148,6 +163,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -185,6 +205,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -222,6 +247,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -259,6 +289,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -296,6 +331,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -333,6 +373,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -370,6 +415,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -407,6 +457,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -444,6 +499,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -481,6 +541,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -490,6 +551,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -518,6 +583,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -527,6 +593,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -555,6 +625,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -564,6 +635,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -592,6 +667,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -601,6 +677,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -629,6 +709,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -638,6 +719,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -666,6 +751,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -675,6 +761,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -703,6 +793,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -712,6 +803,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -740,6 +835,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -749,6 +845,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -777,6 +877,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -786,6 +887,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -814,6 +919,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -823,6 +929,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -851,6 +961,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -860,6 +971,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -888,6 +1003,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -897,6 +1013,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -925,6 +1045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -934,6 +1055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -962,6 +1087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -971,6 +1097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -999,6 +1129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1008,6 +1139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1036,6 +1171,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1045,6 +1181,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1073,6 +1213,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1082,6 +1223,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1110,6 +1255,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1119,6 +1265,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1147,6 +1297,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1156,6 +1307,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1184,6 +1339,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1193,6 +1349,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1221,6 +1381,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1230,6 +1391,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1258,6 +1423,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1267,6 +1433,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1295,6 +1465,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1304,6 +1475,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1332,6 +1507,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1341,6 +1517,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1369,6 +1549,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1378,6 +1559,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1406,6 +1591,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1415,6 +1601,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1443,6 +1633,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1452,6 +1643,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1480,6 +1675,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1489,6 +1685,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1517,6 +1717,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1526,6 +1727,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1554,6 +1759,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1563,6 +1769,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1591,6 +1801,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1600,6 +1811,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1628,6 +1843,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1637,6 +1853,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1665,6 +1885,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1674,6 +1895,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1702,6 +1927,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1711,6 +1937,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1739,6 +1969,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1748,6 +1979,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1776,6 +2011,7 @@ spec_hgt_lvl_above_grnd 0. 0. ? ? +? 0 0.0 0 @@ -1785,6 +2021,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1813,6 +2053,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1822,6 +2063,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1850,6 +2095,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1859,6 +2105,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1887,6 +2137,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1896,8 +2147,12 @@ surface 0.0 0 0.0 -1 -1.0 +0 +0.0 +0 +0.0 +1 +1.0 0 0 0 @@ -1924,6 +2179,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1933,6 +2189,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1961,6 +2221,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1970,6 +2231,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1998,6 +2263,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2007,6 +2273,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2035,6 +2305,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2044,6 +2315,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2072,6 +2347,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2081,6 +2357,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2109,6 +2389,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2118,6 +2399,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2146,6 +2431,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2155,6 +2441,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2183,6 +2473,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2192,6 +2483,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2220,6 +2515,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2229,6 +2525,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2257,6 +2557,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2266,6 +2567,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2294,6 +2599,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2303,6 +2609,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2331,6 +2641,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2340,6 +2651,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2368,6 +2683,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2377,6 +2693,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2405,6 +2725,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2414,6 +2735,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2442,6 +2767,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2451,6 +2777,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2479,6 +2809,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2488,6 +2819,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2516,6 +2851,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2525,6 +2861,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2553,6 +2893,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2562,6 +2903,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2590,6 +2935,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2599,6 +2945,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2627,6 +2977,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2636,6 +2987,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2664,6 +3019,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2673,6 +3029,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2701,6 +3061,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2710,6 +3071,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2738,6 +3103,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2747,6 +3113,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -2775,6 +3145,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -2784,6 +3155,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2812,6 +3187,7 @@ RH ? ? ? +? 0 0.0 0 @@ -2821,6 +3197,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2849,6 +3229,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2858,6 +3239,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2886,6 +3271,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2895,6 +3281,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2923,6 +3313,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2932,6 +3323,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2960,6 +3355,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2969,6 +3365,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2997,6 +3397,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3006,6 +3407,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -3034,6 +3439,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3043,6 +3449,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3071,6 +3481,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3080,6 +3491,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3108,6 +3523,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3117,6 +3533,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3145,6 +3565,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3154,6 +3575,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3182,6 +3607,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -3191,6 +3617,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3219,6 +3649,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -3228,6 +3659,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3256,6 +3691,7 @@ sigma_lvl 94. ? ? +? 0 0.0 0 @@ -3265,6 +3701,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3293,6 +3733,7 @@ sigma_lvl 72. ? ? +? 0 0.0 0 @@ -3302,6 +3743,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3330,6 +3775,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3339,6 +3785,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3367,6 +3817,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3376,6 +3827,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3404,6 +3859,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3413,6 +3869,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3441,6 +3901,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3450,6 +3911,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3478,6 +3943,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3487,6 +3953,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3515,6 +3985,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3524,6 +3995,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3552,6 +4027,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3561,6 +4037,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3589,6 +4069,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3598,6 +4079,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3626,6 +4111,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3635,6 +4121,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3663,6 +4153,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3672,6 +4163,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3700,6 +4195,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3709,6 +4205,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3737,6 +4237,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3746,6 +4247,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3774,6 +4279,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3783,6 +4289,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3811,6 +4321,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3820,6 +4331,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3848,6 +4363,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3857,6 +4373,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3885,6 +4405,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3894,6 +4415,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3922,6 +4447,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3931,6 +4457,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3959,6 +4489,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -3968,6 +4499,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3996,6 +4531,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4005,6 +4541,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4033,6 +4573,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4042,6 +4583,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4070,6 +4615,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4079,6 +4625,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4107,6 +4657,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4116,6 +4667,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4144,6 +4699,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4153,6 +4709,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4181,6 +4741,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4190,6 +4751,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4218,6 +4783,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4227,6 +4793,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4255,6 +4825,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4264,6 +4835,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4292,6 +4867,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4301,6 +4877,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4329,6 +4909,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4338,6 +4919,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4366,6 +4951,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4375,6 +4961,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4403,6 +4993,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4412,6 +5003,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4440,6 +5035,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4449,6 +5045,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4477,6 +5077,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4486,6 +5087,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4514,6 +5119,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -4523,6 +5129,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4551,6 +5161,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4560,6 +5171,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4588,6 +5203,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4597,6 +5213,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4625,6 +5245,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4634,6 +5255,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4662,6 +5287,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4671,6 +5297,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4699,6 +5329,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4708,6 +5339,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -4736,6 +5371,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4745,6 +5381,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4773,6 +5413,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4782,6 +5423,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4810,6 +5455,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4819,6 +5465,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4847,6 +5497,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4856,6 +5507,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4884,6 +5539,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4893,6 +5549,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4921,6 +5581,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4930,6 +5591,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4958,6 +5623,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4967,6 +5633,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4995,6 +5665,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -5004,6 +5675,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5032,54 +5707,22 @@ hybrid_lvl ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -6.0 -0 -0 -0 -? -? -? -588 -ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL -? -1 -tmpl4_0 -ICEG -? -? -spec_alt_above_mean_sea_lvl -0 -? -1 -10. -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +6.0 0 0 0 @@ -5106,6 +5749,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5115,6 +5759,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5143,54 +5791,22 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -968 -ICETMP_ON_SURFACE -? -1 -tmpl4_0 -ICETMP -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -5.0 +3.0 0 0 0 @@ -5217,6 +5833,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -5226,6 +5843,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5254,6 +5875,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5263,6 +5885,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5291,6 +5917,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5300,6 +5927,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5328,6 +5959,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5337,6 +5969,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5365,6 +6001,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5374,6 +6011,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5402,6 +6043,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5411,6 +6053,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5439,6 +6085,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -5448,6 +6095,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5476,6 +6127,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5485,6 +6137,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5513,6 +6169,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5522,6 +6179,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5550,6 +6211,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5559,6 +6221,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5586,6 +6252,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -5596,6 +6263,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5623,6 +6294,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -5633,6 +6305,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5660,6 +6336,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 6 20 @@ -5670,6 +6347,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5697,6 +6378,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 6 20 @@ -5707,6 +6389,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5734,6 +6420,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 6 20 @@ -5744,6 +6431,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5771,6 +6462,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 6 20 @@ -5781,6 +6473,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5825,6 +6521,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5834,6 +6531,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5862,6 +6563,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5871,6 +6573,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -5899,6 +6605,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5908,6 +6615,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5936,6 +6647,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5945,6 +6657,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5973,6 +6689,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5982,6 +6699,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6010,6 +6731,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6019,6 +6741,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6047,6 +6773,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6056,6 +6783,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6084,6 +6815,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6093,6 +6825,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6121,6 +6857,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -6130,6 +6867,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6158,6 +6899,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -6167,6 +6909,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6195,6 +6941,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -6204,6 +6951,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6232,6 +6983,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6241,6 +6993,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6269,6 +7025,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6278,6 +7035,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6306,6 +7067,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6315,6 +7077,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6343,6 +7109,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6352,6 +7119,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6380,6 +7151,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6389,6 +7161,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6417,6 +7193,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6426,6 +7203,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6454,6 +7235,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6463,6 +7245,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6491,6 +7277,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -6500,6 +7287,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6528,6 +7319,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6537,6 +7329,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6565,6 +7361,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6574,6 +7371,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6602,6 +7403,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6611,6 +7413,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6639,6 +7445,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6648,6 +7455,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6676,6 +7487,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6685,6 +7497,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6713,6 +7529,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6722,6 +7539,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6750,6 +7571,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6759,6 +7581,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6787,6 +7613,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6796,6 +7623,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6824,6 +7655,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6833,6 +7665,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6861,6 +7697,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6870,6 +7707,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6898,6 +7739,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6907,6 +7749,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6935,6 +7781,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6944,6 +7791,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6972,6 +7823,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6981,6 +7833,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7009,6 +7865,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7018,6 +7875,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7046,6 +7907,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7055,6 +7917,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7083,6 +7949,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7092,6 +7959,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -7120,6 +7991,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7129,6 +8001,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7157,6 +8033,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7166,6 +8043,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7194,6 +8075,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -7203,6 +8085,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7231,6 +8117,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7240,6 +8127,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -7268,6 +8159,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7277,6 +8169,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7305,6 +8201,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7314,6 +8211,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7342,6 +8243,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7351,6 +8253,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -7379,6 +8285,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7388,6 +8295,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7416,6 +8327,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7425,6 +8337,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7453,6 +8369,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7462,6 +8379,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7471,11 +8392,11 @@ hybrid_lvl ? ? 36 -SOILM_ON_DEPTH_BEL_LAND_SFC +GFS_CISOILM_ON_DEPTH_BEL_LAND_SFC ? 1 tmpl4_0 -SOILM +CISOILM ? ? depth_bel_land_sfc @@ -7490,6 +8411,7 @@ depth_bel_land_sfc 200. ? ? +? 0 0.0 0 @@ -7499,6 +8421,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7527,6 +8453,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7536,6 +8463,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 diff --git a/tests/parm/postxconfig-NT-hafs.txt b/tests/parm/postxconfig-NT-hafs.txt index fc6ea22296..a129771cf3 100644 --- a/tests/parm/postxconfig-NT-hafs.txt +++ b/tests/parm/postxconfig-NT-hafs.txt @@ -1,5 +1,5 @@ 1 -78 +84 HURPRS 32769 ncep_nco @@ -36,6 +36,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -73,6 +78,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -90,6 +100,48 @@ isobaric_sfc ? ? ? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +6 +10000. 20000. 30000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? 16 SPFH_ON_ISOBARIC_SFC ? @@ -110,6 +162,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -119,6 +172,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -147,6 +204,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -156,6 +214,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -184,6 +246,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -193,6 +256,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -221,6 +288,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -230,6 +298,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -258,6 +330,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -267,6 +340,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -295,6 +372,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -304,6 +382,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -332,6 +414,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -341,6 +424,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -349,6 +436,48 @@ isobaric_sfc ? ? ? +153 +CLMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? 166 ICMR_ON_ISOBARIC_SFC ? @@ -369,6 +498,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -378,6 +508,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -406,6 +540,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -415,6 +550,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -443,6 +582,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -452,6 +592,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -480,6 +624,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -489,6 +634,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -517,6 +666,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -526,6 +676,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -554,6 +708,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -563,6 +718,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -591,6 +750,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -600,6 +760,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -628,6 +792,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -637,6 +802,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -665,6 +834,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -674,6 +844,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -702,6 +876,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -711,6 +886,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -739,6 +918,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -748,6 +928,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -776,6 +960,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -785,6 +970,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -813,6 +1002,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -822,6 +1012,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -850,6 +1044,7 @@ surface ? ? ? +? 0 0.0 0 @@ -859,6 +1054,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -887,6 +1086,7 @@ surface ? ? ? +? 0 0.0 0 @@ -896,6 +1096,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -924,6 +1128,7 @@ surface ? ? ? +? 0 0.0 0 @@ -933,6 +1138,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -961,6 +1170,7 @@ surface ? ? ? +? 0 0.0 0 @@ -970,6 +1180,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -998,6 +1212,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1007,6 +1222,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1035,6 +1254,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1044,6 +1264,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1072,6 +1296,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1081,6 +1306,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1109,6 +1338,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1118,6 +1348,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1146,6 +1380,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1155,6 +1390,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1183,6 +1422,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1192,6 +1432,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1220,6 +1464,133 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +418 +CACM_ACPCP_ON_SURFACE +? +1 +tmpl4_8 +ACPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? 0 0.0 0 @@ -1229,6 +1600,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1257,6 +1632,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1266,6 +1642,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1294,11 +1674,16 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -1331,6 +1716,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1340,6 +1726,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1368,6 +1758,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1377,6 +1768,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1405,6 +1800,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1414,6 +1810,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1442,6 +1842,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1451,6 +1852,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1479,6 +1884,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1488,6 +1894,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1516,6 +1926,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1525,6 +1936,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1553,6 +1968,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1562,6 +1978,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1590,6 +2010,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1599,6 +2020,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1627,6 +2052,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1636,6 +2062,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1664,6 +2094,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1673,6 +2104,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1701,6 +2136,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1710,6 +2146,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1738,6 +2178,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1747,6 +2188,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1775,6 +2220,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1784,6 +2230,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1812,6 +2262,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1821,6 +2272,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1849,6 +2304,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1858,6 +2314,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1886,6 +2346,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1895,6 +2356,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1923,6 +2388,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1932,6 +2398,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1960,6 +2430,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1969,6 +2440,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1997,6 +2472,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2006,6 +2482,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2034,6 +2514,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2043,6 +2524,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2071,6 +2556,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2080,6 +2566,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2108,6 +2598,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2117,6 +2608,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2145,6 +2640,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2154,6 +2650,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2182,6 +2682,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2191,6 +2692,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2219,6 +2724,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2228,6 +2734,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2256,6 +2766,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2265,6 +2776,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2273,6 +2788,48 @@ tropopause ? ? ? +108 +POT_ON_TROPOPAUSE +? +1 +tmpl4_0 +POT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? 56 UGRD_ON_TROPOPAUSE ? @@ -2293,6 +2850,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2302,6 +2860,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2330,6 +2892,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2339,6 +2902,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2367,6 +2934,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2376,6 +2944,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2404,6 +2976,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -2413,6 +2986,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2441,6 +3018,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2450,6 +3028,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2478,6 +3060,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2487,6 +3070,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2515,6 +3102,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2524,6 +3112,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2552,6 +3144,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2561,6 +3154,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2589,6 +3186,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2598,6 +3196,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2626,6 +3228,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2635,6 +3238,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2663,6 +3270,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2672,6 +3280,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2700,6 +3312,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2709,6 +3322,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2737,6 +3354,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2746,6 +3364,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2774,6 +3396,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -2783,6 +3406,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2811,6 +3438,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -2820,6 +3448,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2848,6 +3480,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -2857,6 +3490,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -2885,6 +3522,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -2894,6 +3532,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 diff --git a/tests/parm/postxconfig-NT-hafs_ar_nosat.txt b/tests/parm/postxconfig-NT-hafs_ar_nosat.txt new file mode 100644 index 0000000000..55e6fd6ea7 --- /dev/null +++ b/tests/parm/postxconfig-NT-hafs_ar_nosat.txt @@ -0,0 +1,4554 @@ +1 +108 +HURPRS +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +hafs +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +284 +DZDT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DZDT +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +153 +CLMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +166 +ICMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ICMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +183 +RWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RWMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +184 +SNMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SNMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +416 +GRLE_ON_ISOBARIC_SFC +Graupel mixing ration on isobaric surface +1 +tmpl4_0 +GRLE +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +251 +REFD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +REFD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +105 +PRES_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +PRMSL +? +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +746 +ACM_GRAUPEL_ON_SURFACE +? +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +775 +BUCKET_GRAUPEL_ON_SURFACE +bucket graupel precipitation on surface +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +782 +ACM_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1003 +BUCKET_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1005 +BUCKET_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +33 +ACM_ACPCP_ON_SURFACE +? +1 +tmpl4_8 +ACPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +418 +CACM_ACPCP_ON_SURFACE +? +1 +tmpl4_8 +ACPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +271 +AVE_PRATE_ON_SURFACE +? +1 +tmpl4_8 +PRATE +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +272 +AVE_CPRAT_ON_SURFACE +? +1 +tmpl4_8 +CPRAT +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +NCEP +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +108 +POT_ON_TROPOPAUSE +? +1 +tmpl4_0 +POT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Upward Vertical Velocity between 100-1000hpa +1 +tmpl4_8 +MAXUVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Downward Vertical Velocity between 100-1000hpa +1 +tmpl4_8 +MAXDVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +120 +SNOWC_ON_SURFACE +? +1 +tmpl4_0 +SNOWC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1004 +ACM_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +121 +ACM_SNOM_ON_SURFACE +? +1 +tmpl4_8 +SNOM +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +343 +ACM_WATR_ON_SURFACE +? +1 +tmpl4_8 +WATR +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +317 +AVE_CRAIN_ON_SURFACE +? +1 +tmpl4_8 +CRAIN +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +555 +AVE_CSNOW_ON_SURFACE +average Categorical snow on surface +1 +tmpl4_8 +CSNOW +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +556 +AVE_CICEP_ON_SURFACE +average Categorical ice pellets on surface +1 +tmpl4_8 +CICEP +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +557 +AVE_CFRZR_ON_SURFACE +average Categorical freezing rain on surface +1 +tmpl4_8 +CFRZR +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +747 +NCCD_ON_HYBRID_LVL +Number concentration for cloud water drops on hybrid level +1 +tmpl4_0 +NCONCD +? +? +hybrid_lvl +0 +? +127 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. 80. 81. 82. 83. 84. 85. 86. 87. 88. 89. 90. 91. 92. 93. 94. 95. 96. 97. 98. 99. 100. 101. 102. 103. 104. 105. 106. 107. 108. 109. 110. 111. 112. 113. 114. 115. 116. 117. 118. 119. 120. 121. 122. 123. 124. 125. 126. 127. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +752 +NCIP_ON_HYBRID_LVL +Number concentration for ice particles on hybrid level +1 +tmpl4_0 +NCCICE +? +? +hybrid_lvl +0 +? +127 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. 80. 81. 82. 83. 84. 85. 86. 87. 88. 89. 90. 91. 92. 93. 94. 95. 96. 97. 98. 99. 100. 101. 102. 103. 104. 105. 106. 107. 108. 109. 110. 111. 112. 113. 114. 115. 116. 117. 118. 119. 120. 121. 122. 123. 124. 125. 126. 127. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +754 +NCRAIN_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPNCR +? +? +hybrid_lvl +0 +? +127 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. 80. 81. 82. 83. 84. 85. 86. 87. 88. 89. 90. 91. 92. 93. 94. 95. 96. 97. 98. 99. 100. 101. 102. 103. 104. 105. 106. 107. 108. 109. 110. 111. 112. 113. 114. 115. 116. 117. 118. 119. 120. 121. 122. 123. 124. 125. 126. 127. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1018 +NCCD_ON_ISOBARIC_SFC +Number concentration for cloud water drops on isobaric surfaces +1 +tmpl4_0 +NCONCD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1019 +NCIP_ON_ISOBARIC_SFC +Number concentration for ice particles on isobaric surfaces +1 +tmpl4_0 +NCCICE +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1020 +NCRAIN_ON_ISOBARIC_SFC +Number concentration for rain on isobaric surfaces +1 +tmpl4_0 +SPNCR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? diff --git a/tests/rt.sh b/tests/rt.sh index ff3808ac0e..dc29328c5a 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -835,16 +835,15 @@ case ${MACHINE_ID} in if [[ "${ECFLOW:-false}" == true ]] ; then module load ecflow/5.11.4 fi - - module use /mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-rocky8/install/modulefiles/Core + module use /contrib/spack-stack/spack-stack-1.6.0/envs/unified-env-rocky8/install/modulefiles/Core module load stack-intel/2021.5.0 - module load stack-python/3.10.8 + module load stack-python/3.10.13 QUEUE="batch" COMPILE_QUEUE="batch" PARTITION="xjet" - DISKNM="/mnt/lfs4/HFIP/hfv3gfs/role.epic/RT" - dprefix="${dprefix:-/lfs4/HFIP/${ACCNR}/${USER}}" + DISKNM="/lfs5/HFIP/hfv3gfs/role.epic/RT" + dprefix="${dprefix:-/lfs5/HFIP/${ACCNR}/${USER}}" STMP="${STMP:-${dprefix}/RT_BASELINE}" PTMP="${PTMP:-${dprefix}/RT_RUNDIRS}" @@ -1308,8 +1307,8 @@ export WLCLK=${WLCLK} EOF if [[ ${MACHINE_ID} = jet ]]; then cat << EOF >> "${RUNDIR_ROOT}/run_test_${TEST_ID}.env" -export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:${PATH} -export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages +export PATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/bin:/contrib/spack-stack/miniconda3/23.11.0/bin:${PATH} +export PYTHONPATH=/contrib/spack-stack/miniconda3/23.11.0/envs/ufs-weather-model/lib/python3.8/site-packages:/contrib/spack-stack/miniconda3/23.11.0/lib/python3.8/site-packages EOF fi diff --git a/tests/test_changes.list b/tests/test_changes.list index 462c09af4f..a9c99bdc56 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1 +1,144 @@ -cpld_control_sfs intel \ No newline at end of file +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +control_flake intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c192 intel +control_c384 intel +control_c384gdas intel +control_stochy intel +control_stochy_restart intel +control_lndp intel +control_iovr4 intel +control_iovr5 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +control_p8_rrtmgp intel +control_p8_mynn intel +merra2_thompson intel +regional_control intel +regional_restart intel +regional_decomp intel +regional_2threads intel +regional_2dwrtdecomp intel +regional_wofs intel +rap_control intel +regional_spp_sppt_shum_skeb intel +rap_decomp intel +rap_2threads intel +rap_restart intel +rap_sfcdiff intel +rap_sfcdiff_decomp intel +rap_sfcdiff_restart intel +hrrr_control intel +hrrr_control_decomp intel +hrrr_control_2threads intel +hrrr_control_restart intel +rrfs_v1beta intel +rrfs_v1nssl intel +rrfs_v1nssl_nohailnoccn intel +control_csawmg intel +control_ras intel +control_csawmg gnu +control_p8_faster intel +regional_control_faster intel +regional_spp_sppt_shum_skeb_dyn32_phy32 intel +rap_control_dyn32_phy32 intel +hrrr_control_dyn32_phy32 intel +rap_2threads_dyn32_phy32 intel +hrrr_control_2threads_dyn32_phy32 intel +hrrr_control_decomp_dyn32_phy32 intel +rap_restart_dyn32_phy32 intel +hrrr_control_restart_dyn32_phy32 intel +rap_control_dyn64_phy32 intel +hafs_regional_atm intel +hafs_global_multiple_4nests_atm intel +hafs_regional_specified_moving_1nest_atm intel +datm_cdeps_control_cfsr intel +datm_cdeps_restart_cfsr intel +datm_cdeps_control_gefs intel +datm_cdeps_iau_gefs intel +datm_cdeps_stochy_gefs intel +datm_cdeps_ciceC_cfsr intel +datm_cdeps_bulk_cfsr intel +datm_cdeps_bulk_gefs intel +datm_cdeps_mx025_cfsr intel +datm_cdeps_mx025_gefs intel +datm_cdeps_3072x1536_cfsr intel +datm_cdeps_gfs intel +datm_cdeps_debug_cfsr intel +datm_cdeps_control_cfsr_faster intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +control_stochy gnu +control_ras gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_flake gnu +rap_control gnu +rap_decomp gnu +rap_2threads gnu +rap_restart gnu +rap_sfcdiff gnu +rap_sfcdiff_decomp gnu +rap_sfcdiff_restart gnu +hrrr_control gnu +hrrr_control_noqr gnu +hrrr_control_2threads gnu +hrrr_control_decomp gnu +hrrr_control_restart gnu +hrrr_control_restart_noqr gnu +rrfs_v1beta gnu +rap_control_dyn32_phy32 gnu +hrrr_control_dyn32_phy32 gnu +rap_2threads_dyn32_phy32 gnu +hrrr_control_2threads_dyn32_phy32 gnu +hrrr_control_decomp_dyn32_phy32 gnu +rap_restart_dyn32_phy32 gnu +hrrr_control_restart_dyn32_phy32 gnu +rap_control_dyn64_phy32 gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu +datm_cdeps_control_cfsr gnu diff --git a/tests/tests/gnv1_nested b/tests/tests/gnv1_nested index 28047bdac4..f01ec88bdb 100644 --- a/tests/tests/gnv1_nested +++ b/tests/tests/gnv1_nested @@ -312,6 +312,11 @@ export LANDICE=.false. # ---------------------------------------- # Select input files and resources for the regression test system. +# UPP output field lists. +export POST_ITAG=post_itag_hafs_ar +export POSTXCONFIG=postxconfig-NT-hafs_ar_nosat.txt +export POSTXCONFIG_FH00=$POSTXCONFIG + # Select model_configure template: export MODEL_CONFIGURE=model_configure_gnv1.IN From 94a3cd7f6afa1091bad6b8f57cdc5b7712849dfb Mon Sep 17 00:00:00 2001 From: Nicholas Szapiro <149816583+NickSzapiro-NOAA@users.noreply.github.com> Date: Tue, 27 Aug 2024 11:29:45 -0400 Subject: [PATCH 21/33] Unify CDEPS gfs, cfsr, and gefs datm datamodes + Improve error checking in rt.sh (2388) + Add ability to read increment files on native cubed sphere grid (2304) (#2389) * UFSWM - Unify CDEPS gfs, cfsr, and gefs datm datamodes. Add ability to read increment files on native cubed sphere grid. Update rt scripts to fix checking the job exit status from Slurm and PBS schedulers. * FV3 - Add namelist parameter for cubed sphere increment read and update atmos_cubed_sphere hash for GFDL Atmospheric Cubed Sphere PR #[342](https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere/pull/342) * atmos_cubed_sphere - Add ability to read increments from files on native cubed sphere grid * CDEPS - Unify CDEPS gfs, cfsr, and gefs datm datamodes. Rename CDEPS-related FILENAME_BASE to FILEBASE_DATM in tests. Sunset gfs_hafs datamode. --- CDEPS-interface/CDEPS | 2 +- CDEPS-interface/cdeps_files.cmake | 3 - FV3 | 2 +- build.sh | 17 +- tests/ci/Jenkinsfile.combined | 8 - tests/compile.sh | 10 +- tests/default_vars.sh | 9 +- tests/error-test.conf | 3 + tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 598 ++++++------- tests/logs/RegressionTests_derecho.log | 546 ++++++------ tests/logs/RegressionTests_gaea.log | 548 ++++++------ tests/logs/RegressionTests_hera.log | 787 ++++++++---------- tests/logs/RegressionTests_hercules.log | 730 ++++++++-------- tests/logs/RegressionTests_jet.log | 486 +++++------ tests/logs/RegressionTests_orion.log | 548 ++++++------ tests/logs/RegressionTests_wcoss2.log | 529 ++++++------ tests/parm/control.nml.IN | 1 + tests/parm/control_ca.nml.IN | 1 + tests/parm/control_csawmg.nml.IN | 1 + tests/parm/control_flake.nml.IN | 1 + tests/parm/control_gdas.nml.IN | 2 +- tests/parm/control_gfsv17.nml.IN | 1 + tests/parm/control_noahmp.nml.IN | 1 + tests/parm/csawmg3shoc127.nml.IN | 1 + tests/parm/csawmgshoc.nml.IN | 1 + tests/parm/datm.streams.IN | 2 +- tests/parm/global_control.nml.IN | 1 + tests/parm/input_global_hafs.nml.IN | 1 + tests/parm/input_global_nest.nml.IN | 1 + tests/parm/input_global_parent.nml.IN | 1 + tests/parm/input_nest02.nml.IN | 1 + tests/parm/input_nest_hafs.nml.IN | 1 + tests/parm/input_regional_hafs.nml.IN | 1 + tests/parm/rap.nml.IN | 1 + tests/parm/regional.nml.IN | 1 + tests/parm/regional_atmaq.nml.IN | 1 + tests/parm/regional_rrfs_a.nml.IN | 1 + tests/parm/regional_wofs.nml.IN | 1 + tests/parm/rrfs_conus13km_hrrr.nml.IN | 1 + tests/parm/wam_v17.nml.IN | 1 + tests/rt.sh | 1 + tests/rt_utils.sh | 201 +---- tests/run_compile.sh | 11 +- tests/run_test.sh | 144 +++- tests/test_changes.list | 144 ---- tests/tests/control_c48.v2.sfc_timeout | 4 + tests/tests/datm_cdeps_3072x1536_cfsr | 4 +- tests/tests/datm_cdeps_bulk_cfsr | 2 +- tests/tests/datm_cdeps_bulk_gefs | 6 +- tests/tests/datm_cdeps_ciceC_cfsr | 2 +- tests/tests/datm_cdeps_control_cfsr | 2 +- tests/tests/datm_cdeps_control_cfsr_faster | 2 +- tests/tests/datm_cdeps_control_gefs | 6 +- tests/tests/datm_cdeps_debug_cfsr | 2 +- tests/tests/datm_cdeps_gfs | 6 +- tests/tests/datm_cdeps_iau_gefs | 6 +- tests/tests/datm_cdeps_multiple_files_cfsr | 2 +- tests/tests/datm_cdeps_mx025_cfsr | 2 +- tests/tests/datm_cdeps_mx025_gefs | 6 +- tests/tests/datm_cdeps_restart_cfsr | 2 +- tests/tests/datm_cdeps_stochy_gefs | 6 +- 64 files changed, 2593 insertions(+), 2922 deletions(-) create mode 100644 tests/tests/control_c48.v2.sfc_timeout diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index fbdf6843d6..1f9eaaa142 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit fbdf6843d6bde852d97f1547591d90136103f669 +Subproject commit 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index bec4d6c235..321b9d84c5 100644 --- a/CDEPS-interface/cdeps_files.cmake +++ b/CDEPS-interface/cdeps_files.cmake @@ -41,14 +41,11 @@ list(APPEND cdeps_dshr_files list(APPEND cdeps_datm_files CDEPS/datm/atm_comp_nuopc.F90 - CDEPS/datm/datm_datamode_cfsr_mod.F90 CDEPS/datm/datm_datamode_clmncep_mod.F90 CDEPS/datm/datm_datamode_core2_mod.F90 CDEPS/datm/datm_datamode_cplhist_mod.F90 CDEPS/datm/datm_datamode_era5_mod.F90 CDEPS/datm/datm_datamode_gefs_mod.F90 - CDEPS/datm/datm_datamode_gfs_mod.F90 - CDEPS/datm/datm_datamode_gfs_hafs_mod.F90 CDEPS/datm/datm_datamode_jra_mod.F90 CDEPS/datm/datm_datamode_simple_mod.F90 ) diff --git a/FV3 b/FV3 index ee3378b9d5..70b306581b 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ee3378b9d56d5d4fa1b9e1cd16b06760ad810601 +Subproject commit 70b306581b24ab5e6b21e0a2b16b95f3a980660c diff --git a/build.sh b/build.sh index c1cfe43d8d..3f82a882da 100755 --- a/build.sh +++ b/build.sh @@ -1,17 +1,10 @@ #!/bin/bash set -eu -uname_s=$(uname -s) -if [[ ${uname_s} == Darwin ]]; then - UFS_MODEL_DIR=$(greadlink -f -n "${BASH_SOURCE[0]}") - UFS_MODEL_DIR=$(dirname "${UFS_MODEL_DIR}") - UFS_MODEL_DIR=$(cd "${UFS_MODEL_DIR}" && pwd -P) -else - UFS_MODEL_DIR=$(readlink -f -n "${BASH_SOURCE[0]}") - UFS_MODEL_DIR=$(dirname "${UFS_MODEL_DIR}") - UFS_MODEL_DIR=$(cd "${UFS_MODEL_DIR}" && pwd -P) -fi -echo "UFS MODEL DIR: ${UFS_MODEL_DIR}" + +SCRIPT_REALPATH=$(realpath "${BASH_SOURCE[0]}") +UFS_MODEL_DIR=$(dirname "${SCRIPT_REALPATH}") readonly UFS_MODEL_DIR +echo "UFS MODEL DIR: ${UFS_MODEL_DIR}" export CC=${CC:-mpicc} export CXX=${CXX:-mpicxx} @@ -26,4 +19,4 @@ for i in ${CMAKE_FLAGS}; do ARR_CMAKE_FLAGS+=("${i}") ; done cmake "${UFS_MODEL_DIR}" "${ARR_CMAKE_FLAGS[@]}" # Turn off OpenMP threading for parallel builds # to avoid exhausting the number of user processes -OMP_NUM_THREADS=1 make -j "${BUILD_JOBS:-4}" "VERBOSE=${BUILD_VERBOSE:-}" \ No newline at end of file +OMP_NUM_THREADS=1 make -j "${BUILD_JOBS:-4}" "VERBOSE=${BUILD_VERBOSE:-}" diff --git a/tests/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined index e0b86d6bea..18e67f1104 100644 --- a/tests/ci/Jenkinsfile.combined +++ b/tests/ci/Jenkinsfile.combined @@ -312,14 +312,6 @@ def generateStage(nodeLabel) { echo "Testing concluded...removing labels for $machine from $GIT_URL" git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1 git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1 - - if [[ -f $WORKSPACE/tests/logs/RT-run-$machine.log ]] ; then - git add $WORKSPACE/tests/logs/RT-run-$machine.log - fi - git commit --allow-empty -m "[AutoRT] $machine Job Failed!\n\n\n on-behalf-of @ufs-community " - - git pull sshorigin $FORK_BRANCH - git push sshorigin HEAD:$FORK_BRANCH tar --create --gzip --verbose --dereference --file "${machine_name_logs}.tgz" ${WORKSPACE}/tests/logs/*.log diff --git a/tests/compile.sh b/tests/compile.sh index 458d985a88..8ab0f60b82 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -12,14 +12,8 @@ function trim { SECONDS=0 -uname_s=$(uname -s) -if [[ ${uname_s} == Darwin ]]; then - greadlnk=$(greadlink -f -n "${BASH_SOURCE[0]}" ) - MYDIR=$(cd "$(dirname "${greadlnk}" )" && pwd -P) -else - readlnk=$(readlink -f -n "${BASH_SOURCE[0]}" ) - MYDIR=$(cd "$(dirname "${readlnk}" )" && pwd -P) -fi +SCRIPT_REALPATH=$(realpath "${BASH_SOURCE[0]}") +MYDIR=$(dirname "${SCRIPT_REALPATH}") readonly MYDIR # ---------------------------------------------------------------------- diff --git a/tests/default_vars.sh b/tests/default_vars.sh index bfa6815354..18bd2e1e11 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -559,6 +559,7 @@ export MODEL_INITIALIZATION=false export WARM_START=.false. export READ_INCREMENT=.false. export RES_LATLON_DYNAMICS="''" +export INCREMENT_FILE_ON_NATIVE_GRID=.false. export NGGPS_IC=.true. export EXTERNAL_IC=.true. export MAKE_NH=.true. @@ -1332,10 +1333,10 @@ export_datm_cdeps () export INPUT_NML=input.mom6.nml.IN export DIAG_TABLE=diag_table_template export DATM_SRC=CFSR - export FILENAME_BASE=cfsr. - export MESH_ATM=${FILENAME_BASE//.}_mesh.nc - export atm_datamode=${DATM_SRC} - export stream_files=INPUT/${FILENAME_BASE}201110.nc + export FILEBASE_DATM=cfsr + export MESH_ATM=${FILEBASE_DATM}_mesh.nc + export atm_datamode=GEFS + export stream_files=INPUT/${FILEBASE_DATM}.201110.nc export EXPORT_ALL=.false. export STREAM_OFFSET=0 diff --git a/tests/error-test.conf b/tests/error-test.conf index 2382c59a9e..3e931e67dc 100644 --- a/tests/error-test.conf +++ b/tests/error-test.conf @@ -11,6 +11,9 @@ COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_fl # This should succeed RUN | control_c48.v2.sfc | | baseline | +# This should fail due to wall clock timeout +RUN | control_c48.v2.sfc_timeout | | baseline | + # These tests should always fail, and prevent the workflow from completing. RUN | fail_to_copy | | baseline | RUN | fail_to_run | | baseline | diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index ee8e4842f2..e383c64f58 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Aug 21 22:05:02 UTC 2024 +Mon Aug 26 19:59:54 UTC 2024 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_3986824/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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 = 280.831970 - 0: The maximum resident set size (KB) = 1448916 + 0: The total amount of wall time = 282.094574 + 0: The maximum resident set size (KB) = 1459728 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_3986824/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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 = 992.336985 - 0: The maximum resident set size (KB) = 1437772 + 0: The total amount of wall time = 985.479617 + 0: The maximum resident set size (KB) = 1417884 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_3986824/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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 = 255.618968 - 0: The maximum resident set size (KB) = 1425456 + 0: The total amount of wall time = 248.873990 + 0: The maximum resident set size (KB) = 1437132 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_3986824/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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 = 250.392410 - 0: The maximum resident set size (KB) = 1437096 + 0: The total amount of wall time = 252.449329 + 0: The maximum resident set size (KB) = 1422488 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_3986824/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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 = 257.380091 - 0: The maximum resident set size (KB) = 1423788 + 0: The total amount of wall time = 252.763505 + 0: The maximum resident set size (KB) = 1423640 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_3986824/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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 = 267.250624 - 0: The maximum resident set size (KB) = 1421992 + 0: The total amount of wall time = 253.485325 + 0: The maximum resident set size (KB) = 1438440 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_3986824/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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 = 257.163548 - 0: The maximum resident set size (KB) = 1434436 + 0: The total amount of wall time = 247.766378 + 0: The maximum resident set size (KB) = 1411920 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 21 23:13:54 UTC 2024 -Elapsed time: 01h:08m:53s. Have a nice day! +Mon Aug 26 21:14:01 UTC 2024 +Elapsed time: 01h:14m:07s. 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 6bf6a5ff37..dbc9db8a9d 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Wed Aug 21 20:56:23 UTC 2024 +Mon Aug 26 18:51:21 UTC 2024 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_3387682/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2593550/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 = 1337.925051 - 0: The maximum resident set size (KB) = 1527960 + 0: The total amount of wall time = 1361.846982 + 0: The maximum resident set size (KB) = 1537900 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_3387682/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2593550/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 = 429.025844 - 0: The maximum resident set size (KB) = 1528532 + 0: The total amount of wall time = 715.515398 + 0: The maximum resident set size (KB) = 1525500 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_3387682/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2593550/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 = 441.109791 - 0: The maximum resident set size (KB) = 1516924 + 0: The total amount of wall time = 435.784809 + 0: The maximum resident set size (KB) = 1528568 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 21 22:05:01 UTC 2024 -Elapsed time: 01h:08m:39s. Have a nice day! +Mon Aug 26 19:59:54 UTC 2024 +Elapsed time: 01h:08m:34s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index d06a471ae6..e232f0ce00 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Aug 21 18:19:56 UTC 2024 +Mon Aug 26 16:17:09 UTC 2024 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_65311/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3681501/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 = 1391.521656 - 0: The maximum resident set size (KB) = 777236 + 0: The total amount of wall time = 1404.274425 + 0: The maximum resident set size (KB) = 769724 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_65311/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3681501/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 = 2169.925001 - 0: The maximum resident set size (KB) = 743380 + 0: The total amount of wall time = 2178.286214 + 0: The maximum resident set size (KB) = 751032 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_65311/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3681501/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 = 2169.154728 - 0: The maximum resident set size (KB) = 733176 + 0: The total amount of wall time = 2198.737097 + 0: The maximum resident set size (KB) = 734276 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_65311/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3681501/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 = 2203.506465 - 0: The maximum resident set size (KB) = 733136 + 0: The total amount of wall time = 2321.006507 + 0: The maximum resident set size (KB) = 742260 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 21 20:56:22 UTC 2024 -Elapsed time: 02h:36m:27s. Have a nice day! +Mon Aug 26 18:51:20 UTC 2024 +Elapsed time: 02h:34m:14s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 1538677c9c..e7c85ee865 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,18 +1,18 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -6ccfb11529c2bd172bc7d4956eadfab0b55bf12d +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,345 +36,273 @@ 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-20240821 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2126453 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1945026 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:23, 10:42] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:32, 02:36](3318 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:18] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [34:26, 03:00](2096 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:22, 02:53](2130 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:14, 03:10](1249 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:27, 01:53](2174 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:30, 16:07] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [35:26, 01:22](2101 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:19, 05:46] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [45:38, 03:00](2168 MB) - -PASS -- COMPILE 's2swa_intel' [11:26, 10:14] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [40:30, 01:59](3324 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:30, 02:26](3338 MB) -PASS -- TEST 'cpld_restart_p8_intel' [26:43, 02:09](3260 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [40:30, 01:50](3343 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [26:44, 02:06](3279 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [40:30, 01:45](3624 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [40:30, 01:20](3333 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [40:31, 01:37](3452 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:30, 01:48](3341 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [40:30, 02:04](3253 MB) - -PASS -- COMPILE 's2sw_intel' [10:25, 09:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [41:31, 01:46](2023 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [41:31, 02:09](2041 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:32, 02:05](2040 MB) - -PASS -- COMPILE 's2s_intel' [10:23, 09:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [41:32, 01:06](2889 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [41:32, 01:32](2899 MB) -PASS -- TEST 'cpld_restart_c48_intel' [37:03, 01:42](2310 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:16] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [36:26, 02:27](3324 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 16:09] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:24, 01:04](2088 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:43, 01:23](1269 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:40, 01:19](2176 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:31] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:19, 01:38](2206 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:23, 09:04] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [32:10, 00:51](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [32:10, 01:12](1547 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [32:10, 01:03](1554 MB) -PASS -- TEST 'control_latlon_intel' [32:10, 01:00](1549 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [32:10, 01:06](1555 MB) -PASS -- TEST 'control_c48_intel' [32:09, 00:35](1573 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [32:09, 01:13](712 MB) -PASS -- TEST 'control_c192_intel' [32:10, 00:54](1777 MB) -PASS -- TEST 'control_c384_intel' [32:14, 02:41](3086 MB) -PASS -- TEST 'control_c384gdas_intel' [32:14, 03:17](2305 MB) -PASS -- TEST 'control_stochy_intel' [32:10, 01:00](605 MB) -PASS -- TEST 'control_stochy_restart_intel' [23:34, 00:35](413 MB) -PASS -- TEST 'control_lndp_intel' [31:53, 01:14](610 MB) -PASS -- TEST 'control_iovr4_intel' [31:30, 01:20](602 MB) -PASS -- TEST 'control_iovr5_intel' [31:21, 01:06](601 MB) -PASS -- TEST 'control_p8_intel' [31:15, 02:29](1826 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [29:33, 02:02](1819 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [28:15, 02:12](1849 MB) -PASS -- TEST 'control_restart_p8_intel' [11:41, 02:19](993 MB) -PASS -- TEST 'control_noqr_p8_intel' [27:21, 01:44](1839 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [11:39, 02:24](1001 MB) -PASS -- TEST 'control_decomp_p8_intel' [26:15, 01:49](1833 MB) -PASS -- TEST 'control_2threads_p8_intel' [26:13, 01:50](1920 MB) -PASS -- TEST 'control_p8_lndp_intel' [25:11, 00:49](1840 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [24:26, 02:37](1877 MB) -PASS -- TEST 'control_p8_mynn_intel' [21:14, 02:32](1835 MB) -PASS -- TEST 'merra2_thompson_intel' [20:30, 03:12](1811 MB) -PASS -- TEST 'regional_control_intel' [18:01, 00:53](869 MB) -PASS -- TEST 'regional_restart_intel' [07:04, 01:04](862 MB) -PASS -- TEST 'regional_decomp_intel' [17:19, 00:24](863 MB) -PASS -- TEST 'regional_2threads_intel' [17:03, 01:04](1177 MB) -PASS -- TEST 'regional_noquilt_intel' [16:14, 00:56](1188 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [15:48, 00:57](863 MB) -PASS -- TEST 'regional_wofs_intel' [15:44, 00:38](1596 MB) - -PASS -- COMPILE 'ifi_intel' [08:22, 07:49] ( 1 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_ifi_control_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_ifi_decomp_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_ifi_2threads_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_intel' [09:23, 08:24] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [14:34, 02:57](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:04, 00:51](1656 MB) -PASS -- TEST 'rap_decomp_intel' [13:34, 02:30](990 MB) -PASS -- TEST 'rap_2threads_intel' [12:56, 02:08](1084 MB) -PASS -- TEST 'rap_restart_intel' [03:02, 02:53](836 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:02, 02:42](989 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:47, 02:13](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [00:38, 02:28](839 MB) -PASS -- TEST 'hrrr_control_intel' [11:41, 02:25](985 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [11:20, 02:13](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:27, 02:11](1214 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:16, 00:45](785 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:26, 03:04](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:09, 00:56](1949 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:16, 00:40](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:16] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:01, 00:28](941 MB) -PASS -- TEST 'control_ras_intel' [09:00, 00:24](639 MB) - -PASS -- COMPILE 'wam_intel' [09:24, 08:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [08:19, 01:09](1636 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:24] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:39, 02:48](1836 MB) -PASS -- TEST 'regional_control_faster_intel' [07:34, 00:43](860 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:25, 07:15] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:30, 01:12](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:52, 00:52](1585 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:48, 00:27](793 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:22, 01:01](792 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:50, 01:18](1077 MB) -PASS -- TEST 'control_ras_debug_intel' [03:54, 01:12](797 MB) -PASS -- TEST 'control_diag_debug_intel' [03:22, 00:52](1653 MB) -PASS -- TEST 'control_debug_p8_intel' [03:22, 00:45](1861 MB) -PASS -- TEST 'regional_debug_intel' [03:01, 01:05](938 MB) -PASS -- TEST 'rap_control_debug_intel' [02:24, 00:59](1173 MB) -PASS -- TEST 'hrrr_control_debug_intel' [01:40, 01:12](1168 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [01:29, 01:01](1170 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [00:43, 00:19](1169 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [00:35, 00:36](1176 MB) -PASS -- TEST 'rap_diag_debug_intel' [00:16, 00:41](1262 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [00:15, 00:37](1175 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [59:47, 00:52](1174 MB) -PASS -- TEST 'rap_lndp_debug_intel' [59:13, 00:36](1177 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [59:04, 00:49](1173 MB) -PASS -- TEST 'rap_noah_debug_intel' [58:49, 01:04](1167 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [58:41, 00:53](1170 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [58:07, 00:38](1168 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [57:30, 01:10](1168 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [57:29, 00:58](1173 MB) -PASS -- TEST 'rap_flake_debug_intel' [57:22, 00:50](1173 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [57:21, 02:56](1176 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:21, 04:50] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [57:13, 01:03](1677 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:28, 08:08] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [57:05, 01:03](1528 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [56:37, 02:30](866 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [55:58, 03:29](862 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:54, 02:36](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [53:52, 02:40](1065 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [53:36, 03:04](864 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:45, 02:01](764 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:09, 00:15](746 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [52:06, 08:17] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [42:20, 00:46](1068 MB) -PASS -- TEST 'conus13km_2threads_intel' [38:20, 00:39](1399 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [38:19, 01:16](913 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [53:11, 08:17] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:59, 01:29](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [48:06, 04:48] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [44:03, 00:46](1055 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:03, 01:00](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [44:03, 00:42](1157 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [44:03, 00:32](828 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [44:04, 01:07](1476 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:03, 00:26](1232 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [49:08, 04:42] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:00, 00:36](1074 MB) - -PASS -- COMPILE 'hafsw_intel' [53:08, 09:28] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [38:05, 02:16](1665 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [38:05, 00:37](2015 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [38:03, 01:38](1199 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [38:03, 01:25](1224 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [38:04, 01:55](1377 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [38:03, 01:38](920 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [38:04, 01:36](1211 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [38:04, 01:41](1101 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:07, 03:02](1947 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [38:03, 01:00](954 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [38:03, 00:47](960 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [38:05, 01:38](1549 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [38:04, 00:57](1129 MB) -PASS -- TEST 'gnv1_nested_intel' [38:02, 03:05](1898 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [49:07, 05:30] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [42:01, 01:21](1640 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [51:06, 09:16] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [37:33, 01:41](1586 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:31, 01:21](1762 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [49:05, 09:23] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [37:03, 01:40](1760 MB) - -PASS -- COMPILE 'hafs_all_intel' [47:08, 09:00] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [36:26, 01:46](1183 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [36:31, 01:53](1174 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [36:11, 00:33](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [43:00, 09:25] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [36:05, 00:22](756 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [29:39, 00:40](757 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [32:47, 00:33](649 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [32:07, 00:15](648 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [31:42, 00:46](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:25, 01:04](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [26:44, 00:36](756 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [26:41, 00:28](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [26:38, 01:26](814 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [26:38, 01:20](799 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [25:15, 00:23](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [25:14, 00:24](2038 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [24:16, 01:10](2038 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 09:21] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [24:12, 00:28](770 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 01:04] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [40:46, 00:37](609 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [40:46, 00:31](747 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [24:04, 00:57](751 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:23, 09:29] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:31, 00:51](1963 MB) - -PASS -- COMPILE 'atml_intel' [09:22, 09:04] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [22:05, 02:06](2169 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [21:15, 02:54](2151 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 00:59](1296 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:21, 05:41] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [21:21, 02:29](2201 MB) - -PASS -- COMPILE 'atmw_intel' [10:23, 08:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:58, 02:15](1940 MB) - -PASS -- COMPILE 'atmaero_intel' [10:23, 08:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [20:17, 01:33](3217 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [20:09, 01:46](2994 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:50, 01:35](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [28:42, 04:50] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [09:16, 01:38](4817 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:28, 10:46] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:33, 03:27](3318 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:34, 16:21] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:27, 04:20](2081 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [50:19, 03:59](2117 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [49:40, 04:19](1229 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [12:28, 03:27](2190 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:34, 16:24] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:27, 01:34](2080 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:51] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:42, 03:33](2155 MB) + +PASS -- COMPILE 's2swa_intel' [12:28, 10:24] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:33, 02:32](3341 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:33, 03:26](3339 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:37, 03:07](3265 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:33, 02:35](3360 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:37, 02:50](3280 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:33, 03:01](3622 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:33, 02:39](3315 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [18:34, 03:23](3451 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:33, 03:27](3309 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [18:33, 03:02](3267 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 10:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:33, 02:48](2007 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:33, 03:13](2042 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:25, 09:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:36, 03:09](2015 MB) + +PASS -- COMPILE 's2s_intel' [11:27, 09:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [19:33, 02:04](2888 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [19:33, 02:22](2893 MB) +PASS -- TEST 'cpld_restart_c48_intel' [14:06, 02:39](2310 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:29, 03:05](3324 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 15:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [13:29, 02:09](2108 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [52:48, 02:13](1263 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [51:53, 02:19](2199 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:30] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [16:22, 02:08](2215 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:03] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:13, 01:43](647 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:13, 01:45](1547 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:13, 01:48](1554 MB) +PASS -- TEST 'control_latlon_intel' [09:13, 01:33](1548 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:13, 02:02](1548 MB) +PASS -- TEST 'control_c48_intel' [09:12, 01:41](1574 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:12, 02:29](712 MB) +PASS -- TEST 'control_c192_intel' [09:13, 02:12](1777 MB) +PASS -- TEST 'control_c384_intel' [09:17, 03:09](3085 MB) +PASS -- TEST 'control_c384gdas_intel' [09:17, 04:04](2306 MB) +PASS -- TEST 'control_stochy_intel' [08:37, 01:32](606 MB) +PASS -- TEST 'control_stochy_restart_intel' [50:51, 01:35](413 MB) +PASS -- TEST 'control_lndp_intel' [08:37, 01:55](609 MB) +PASS -- TEST 'control_iovr4_intel' [08:29, 01:49](604 MB) +PASS -- TEST 'control_iovr5_intel' [08:15, 02:03](604 MB) +PASS -- TEST 'control_p8_intel' [06:38, 02:55](1839 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:24, 03:05](1840 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:21, 03:16](1829 MB) +PASS -- TEST 'control_restart_p8_intel' [47:08, 03:34](957 MB) +PASS -- TEST 'control_noqr_p8_intel' [02:38, 02:56](1840 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [45:57, 02:32](1000 MB) +PASS -- TEST 'control_decomp_p8_intel' [02:21, 02:15](1832 MB) +PASS -- TEST 'control_2threads_p8_intel' [02:15, 02:31](1922 MB) +PASS -- TEST 'control_p8_lndp_intel' [02:12, 02:15](1826 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [01:27, 02:55](1858 MB) +PASS -- TEST 'control_p8_mynn_intel' [59:16, 02:48](1854 MB) +PASS -- TEST 'merra2_thompson_intel' [58:57, 04:13](1849 MB) +PASS -- TEST 'regional_control_intel' [56:02, 02:11](868 MB) +PASS -- TEST 'regional_restart_intel' [44:06, 01:41](866 MB) +PASS -- TEST 'regional_decomp_intel' [55:12, 01:12](864 MB) +PASS -- TEST 'regional_2threads_intel' [54:23, 01:39](1175 MB) +PASS -- TEST 'regional_noquilt_intel' [53:17, 01:23](1193 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [53:15, 01:56](861 MB) +PASS -- TEST 'regional_wofs_intel' [53:01, 01:36](1596 MB) + +PASS -- COMPILE 'ifi_intel' [09:22, 07:51] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [10:09, 01:31](873 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [10:09, 02:04](861 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [10:10, 01:43](1174 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:29] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [50:52, 03:48](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [50:42, 01:48](1664 MB) +PASS -- TEST 'rap_decomp_intel' [49:25, 03:07](991 MB) +PASS -- TEST 'rap_2threads_intel' [49:03, 02:21](1090 MB) +PASS -- TEST 'rap_restart_intel' [37:11, 03:32](834 MB) +PASS -- TEST 'rap_sfcdiff_intel' [46:55, 03:20](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [46:35, 02:22](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [35:29, 03:54](837 MB) +PASS -- TEST 'hrrr_control_intel' [46:30, 04:00](985 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [46:13, 03:46](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [46:14, 03:45](1207 MB) +PASS -- TEST 'hrrr_control_restart_intel' [37:05, 02:12](782 MB) +PASS -- TEST 'rrfs_v1beta_intel' [45:58, 03:54](982 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [45:28, 01:38](1949 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:16, 02:03](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [10:23, 08:16] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [44:34, 01:26](941 MB) +PASS -- TEST 'control_ras_intel' [43:34, 01:26](640 MB) + +PASS -- COMPILE 'wam_intel' [10:24, 08:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [43:26, 01:24](1635 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:23, 08:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [42:58, 02:54](1836 MB) +PASS -- TEST 'regional_control_faster_intel' [42:36, 01:20](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:24, 07:09] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [42:03, 01:59](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [41:54, 01:56](1591 MB) +PASS -- TEST 'control_stochy_debug_intel' [40:59, 01:32](797 MB) +PASS -- TEST 'control_lndp_debug_intel' [39:53, 01:55](797 MB) +PASS -- TEST 'control_csawmg_debug_intel' [39:53, 01:32](1099 MB) +PASS -- TEST 'control_ras_debug_intel' [38:16, 02:13](804 MB) +PASS -- TEST 'control_diag_debug_intel' [38:00, 01:52](1656 MB) +PASS -- TEST 'control_debug_p8_intel' [37:28, 01:37](1884 MB) +PASS -- TEST 'regional_debug_intel' [37:27, 01:52](941 MB) +PASS -- TEST 'rap_control_debug_intel' [37:05, 01:41](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [36:00, 01:55](1169 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [35:09, 01:34](1173 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [35:05, 01:31](1173 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [34:51, 01:42](1177 MB) +PASS -- TEST 'rap_diag_debug_intel' [34:24, 02:15](1261 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [34:31, 01:29](1177 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [34:27, 01:24](1178 MB) +PASS -- TEST 'rap_lndp_debug_intel' [33:49, 01:31](1180 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [33:41, 01:21](1177 MB) +PASS -- TEST 'rap_noah_debug_intel' [33:36, 01:36](1171 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [33:13, 01:35](1173 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [32:38, 02:06](1172 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [32:12, 01:54](1171 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [32:11, 01:34](1175 MB) +PASS -- TEST 'rap_flake_debug_intel' [32:03, 02:17](1176 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [32:03, 04:02](1176 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:22, 04:52] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [31:44, 01:48](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:24, 08:09] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [31:34, 01:45](1526 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [30:46, 03:14](868 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [30:30, 04:45](863 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [30:10, 02:49](938 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:43, 04:25](1067 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:53, 03:47](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:24, 03:43](766 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [19:02, 01:21](744 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:25, 08:16] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [28:29, 01:36](1068 MB) +PASS -- TEST 'conus13km_2threads_intel' [22:18, 02:11](1398 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [21:35, 01:44](912 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:16] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [27:44, 02:19](894 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:24, 04:48] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [27:24, 01:57](1056 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [27:19, 01:45](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [26:54, 01:32](1148 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:35, 01:27](815 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:32, 02:05](1476 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:18, 02:18](1232 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:26, 04:47] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [25:46, 02:13](1077 MB) + +PASS -- COMPILE 'hafsw_intel' [17:33, 09:29] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [25:57, 03:04](1670 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [25:16, 02:10](2013 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:08, 03:06](1199 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:03, 02:34](1224 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:01, 03:09](1376 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:40, 02:34](919 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [24:20, 02:42](1205 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [24:03, 02:02](1102 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [23:42, 03:43](1944 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [20:19, 02:23](957 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:26, 02:00](958 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:54, 02:24](1546 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:04, 01:32](1126 MB) +PASS -- TEST 'gnv1_nested_intel' [18:58, 04:24](1904 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:28, 05:25] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:53, 02:03](1643 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:30, 09:14] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:27, 01:51](1588 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:42, 02:36](1765 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [51:07, 09:06] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:02, 02:37](1760 MB) + +PASS -- COMPILE 'hafs_all_intel' [50:04, 09:03] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:32, 02:26](1182 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:28, 02:46](1169 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [09:56, 01:14](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [51:08, 09:26] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:36, 01:38](769 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [00:08, 01:12](757 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:06, 01:47](651 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:01](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:00, 02:08](649 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:22, 01:29](770 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:15, 01:20](771 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [01:13, 01:31](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [01:00, 02:00](815 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [00:29, 01:55](795 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [59:31, 01:42](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [58:58, 01:35](2039 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [57:50, 01:27](2035 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [50:06, 09:23] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [57:40, 01:24](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [46:03, 01:04] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [13:43, 02:09](609 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [13:43, 01:54](747 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [56:51, 01:36](751 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [55:11, 09:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [56:56, 02:50](1973 MB) + +PASS -- COMPILE 'atml_intel' [55:10, 09:08] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [56:37, 04:00](2171 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [56:13, 03:57](2150 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [43:34, 02:05](1318 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:26, 05:32] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [45:15, 03:02](2221 MB) + +PASS -- COMPILE 'atmw_intel' [08:24, 08:47] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [42:13, 03:20](1940 MB) + +PASS -- COMPILE 'atmaero_intel' [06:22, 08:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [42:03, 02:49](3200 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [42:03, 03:17](3001 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [42:03, 03:09](3008 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [28:41, 04:50] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [45:00, 02:32](4802 MB) SYNOPSIS: -Starting Date/Time: 20240823 14:07:45 -Ending Date/Time: 20240823 16:17:33 -Total Time: 02h:10m:16s +Starting Date/Time: 20240826 16:28:40 +Ending Date/Time: 20240826 18:42:51 +Total Time: 02h:14m:37s Compiles Completed: 38/38 -Tests Completed: 176/179 -Failed Tests: -* TEST regional_ifi_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_acorn/run_regional_ifi_control_intel.log -* TEST regional_ifi_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_acorn/run_regional_ifi_decomp_intel.log -* TEST regional_ifi_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_acorn/run_regional_ifi_2threads_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ACORN REGRESSION TESTING LOG==== -====START OF ACORN REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -6ccfb11529c2bd172bc7d4956eadfab0b55bf12d - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2781112 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-l) - USE CONFIG FILE: rt.test -* (-e) - USE ECFLOW - -PASS -- COMPILE 'ifi_intel' [08:21, 07:53] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [15:14, 00:20](864 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [15:14, 00:49](859 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [15:15, 00:52](1173 MB) - -SYNOPSIS: -Starting Date/Time: 20240823 16:36:26 -Ending Date/Time: 20240823 16:52:46 -Total Time: 00h:16m:23s -Compiles Completed: 1/1 -Tests Completed: 3/3 +Tests Completed: 179/179 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 954908d2f9..a7ef72b6eb 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,18 +1,18 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -97b1ccdffe7d4378da4e279e2f2fb73d1539d227 +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,283 +36,283 @@ 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-20240821 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_107803 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_127037 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: scsg0002 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:19, 21:06] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:18, 05:28](3198 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:19, 23:09] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:42, 14:35](1917 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:00, 15:42](1936 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:50, 07:35](1061 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:41, 16:18](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:19, 23:08] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:12, 14:09](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:16, 11:34] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:41, 22:48](1934 MB) - -PASS -- COMPILE 's2swa_intel' [22:19, 20:59] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:30, 06:18](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:37, 06:13](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:07, 04:00](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:30, 06:15](3253 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:07, 03:54](3180 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:19, 05:52](3738 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:19, 06:06](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:17, 05:07](3538 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:39, 06:21](3235 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:22, 09:24](3822 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:42, 06:11](3619 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:30, 10:09](4524 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:27, 06:50](4666 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:14, 05:53](3208 MB) - -PASS -- COMPILE 's2sw_intel' [20:17, 19:34] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:20, 04:26](1913 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:32, 04:32](1982 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:16, 11:35] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:14, 08:11](3304 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:16, 10:51] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 05:56](1954 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:15, 15:54] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:54, 04:24](1989 MB) - -PASS -- COMPILE 's2s_intel' [17:17, 15:59] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:03, 06:31](2886 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:02, 02:07](2886 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:57, 01:16](2306 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:17, 23:29] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:04, 06:14](3234 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:18, 22:11] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:38, 14:40](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:50, 07:51](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:32, 16:43](1891 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:15, 10:55] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:27, 24:02](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:18, 13:59] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:39, 03:23](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:57, 02:23](1559 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:09, 02:25](1566 MB) -PASS -- TEST 'control_latlon_intel' [03:53, 02:22](1562 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:01, 02:24](1565 MB) -PASS -- TEST 'control_c48_intel' [07:59, 06:06](1569 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:37, 05:16](707 MB) -PASS -- TEST 'control_c192_intel' [10:46, 08:42](1666 MB) -PASS -- TEST 'control_c384_intel' [14:20, 08:44](1948 MB) -PASS -- TEST 'control_c384gdas_intel' [15:31, 07:03](1189 MB) -PASS -- TEST 'control_stochy_intel' [02:36, 01:25](618 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:35, 00:51](435 MB) -PASS -- TEST 'control_lndp_intel' [02:33, 01:18](621 MB) -PASS -- TEST 'control_iovr4_intel' [03:37, 02:04](615 MB) -PASS -- TEST 'control_iovr5_intel' [03:37, 02:04](620 MB) -PASS -- TEST 'control_p8_intel' [05:25, 02:54](1851 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 02:59](1850 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 03:02](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [04:16, 01:50](1004 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:33, 03:09](1845 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:21, 01:57](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:22, 03:05](1850 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:22, 02:57](1931 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:11, 04:39](1856 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:29, 03:58](1903 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:31, 03:12](1863 MB) -PASS -- TEST 'merra2_thompson_intel' [05:22, 03:09](1863 MB) -PASS -- TEST 'regional_control_intel' [05:52, 04:42](861 MB) -PASS -- TEST 'regional_restart_intel' [03:44, 02:42](859 MB) -PASS -- TEST 'regional_decomp_intel' [05:48, 04:49](870 MB) -PASS -- TEST 'regional_noquilt_intel' [05:56, 04:34](1182 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:58, 04:38](860 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:52, 04:35](857 MB) -PASS -- TEST 'regional_wofs_intel' [06:44, 05:39](1590 MB) - -PASS -- COMPILE 'rrfs_intel' [13:16, 12:34] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:19, 06:07](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 03:37](1160 MB) -PASS -- TEST 'rap_decomp_intel' [08:19, 06:22](1007 MB) -PASS -- TEST 'rap_2threads_intel' [07:27, 05:38](1084 MB) -PASS -- TEST 'rap_restart_intel' [05:04, 03:12](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:21, 06:05](1006 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:21, 06:20](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:07, 04:34](880 MB) -PASS -- TEST 'hrrr_control_intel' [05:02, 03:12](1003 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:02, 03:16](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:02, 02:50](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:39, 01:44](829 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:23, 06:00](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:59, 07:20](1953 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:11](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [12:14, 11:29] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:59, 06:33](959 MB) -PASS -- TEST 'control_ras_intel' [04:42, 02:50](657 MB) - -PASS -- COMPILE 'wam_intel' [12:14, 11:20] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:24, 10:12](1652 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:14, 11:37] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:31, 03:04](1854 MB) -PASS -- TEST 'regional_control_faster_intel' [05:57, 04:32](859 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:15, 13:57] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:04, 02:36](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:05, 02:32](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:38, 02:53](812 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:28, 02:40](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:51, 04:41](1113 MB) -PASS -- TEST 'control_ras_debug_intel' [03:26, 02:41](812 MB) -PASS -- TEST 'control_diag_debug_intel' [04:47, 02:38](1663 MB) -PASS -- TEST 'control_debug_p8_intel' [04:45, 03:16](1893 MB) -PASS -- TEST 'regional_debug_intel' [17:49, 16:32](930 MB) -PASS -- TEST 'rap_control_debug_intel' [06:30, 04:45](1189 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:38, 04:33](1187 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:35, 04:41](1188 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:36, 04:46](1189 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:34, 04:44](1187 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:35, 04:53](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:38, 04:56](1189 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:38, 04:47](1188 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:35, 04:49](1191 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:37, 04:48](1192 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:35, 04:36](1187 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:33, 04:44](1192 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 07:50](1185 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:35, 04:43](1181 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:46](1192 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:36, 04:49](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:04, 08:12](1193 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:12, 07:07] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:10, 12:24](1689 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:19, 11:09] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:14, 03:27](1016 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:58, 05:04](879 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:54, 02:43](879 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:58, 04:42](935 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:00, 02:22](929 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:58, 02:50](876 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:50, 03:51](790 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 01:31](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:14, 11:12] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:46, 01:50](1072 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:16, 00:53](1072 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:13, 01:06](962 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:21, 11:24] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:53, 03:37](900 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:19, 07:27] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 04:29](1065 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:26, 04:24](1068 MB) -PASS -- TEST 'conus13km_debug_intel' [15:15, 13:38](1144 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:21, 13:38](830 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:20, 08:08](1141 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:20, 13:44](1212 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:17, 07:11] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:34, 04:35](1088 MB) - -PASS -- COMPILE 'hafsw_intel' [18:20, 17:16] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:10, 04:28](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:38, 04:56](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:47, 06:21](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:30, 10:49](769 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:29, 11:57](796 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:05, 04:35](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:30, 05:38](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:56, 02:14](387 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:55, 05:59](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:57, 03:13](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:00, 03:00](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:09, 03:47](571 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:27, 01:09](421 MB) -PASS -- TEST 'gnv1_nested_intel' [07:06, 03:53](1700 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:18, 08:42] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:13, 11:56](629 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:19, 16:44] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:19, 07:07](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:31, 07:14](676 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:15, 18:10] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 05:17](671 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:20, 15:26] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:26, 05:36](740 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:27, 05:45](726 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:09, 16:15](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:18, 08:19] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:34, 02:29](766 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:31](757 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:28, 02:21](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:26, 02:25](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:37, 02:23](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:28](768 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:39, 02:28](769 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:31, 02:20](650 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:11, 05:39](697 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:19, 05:37](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:27](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:32, 03:50](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 03:50](2035 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:51] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:16](751 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:18, 08:22] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:26](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:34] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:54, 01:04](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:00](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:42](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:19, 13:13] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:35, 03:34](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:19, 12:33] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:28, 03:43](1899 MB) - -PASS -- COMPILE 'atml_intel' [15:21, 14:32] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:23, 06:38](1877 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:24, 06:21](1890 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:49, 03:29](1032 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:22, 10:43] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:32, 06:10](1923 MB) - -PASS -- COMPILE 'atmw_intel' [14:18, 13:39] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:13, 02:09](1872 MB) - -PASS -- COMPILE 'atmaero_intel' [13:20, 12:36] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:28, 04:09](3126 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:33, 04:16](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:08, 04:19](3015 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:17, 08:03] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:36, 21:45](4537 MB) +PASS -- COMPILE 's2swa_32bit_intel' [27:22, 25:36] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:18, 06:11](3202 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [29:23, 26:47] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:53, 15:13](1912 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:15, 16:31](1940 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:57, 08:39](1066 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:50, 16:54](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:28, 27:21] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:06, 15:05](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:21, 15:36] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:47, 23:22](1940 MB) + +PASS -- COMPILE 's2swa_intel' [27:23, 24:56] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:15, 06:59](3222 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:33, 06:56](3221 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:43, 04:57](3151 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:32, 06:54](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:31, 04:49](3177 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:43, 06:35](3733 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:49, 06:59](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:02, 06:09](3537 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:29, 06:41](3235 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:51, 10:16](3821 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [20:05, 07:20](3618 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [52:37, 11:45](4516 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [45:31, 08:16](4664 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [16:31, 06:38](3207 MB) + +PASS -- COMPILE 's2sw_intel' [25:24, 23:03] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:01, 05:33](1917 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:16, 05:40](1983 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:18, 14:58] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:12, 08:41](3303 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:20, 14:16] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 06:29](1955 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [22:20, 19:22] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:33, 05:19](1982 MB) + +PASS -- COMPILE 's2s_intel' [22:20, 19:12] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:42, 07:19](2880 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [08:40, 02:59](2895 MB) +PASS -- TEST 'cpld_restart_c48_intel' [09:30, 02:12](2307 MB) + +PASS -- COMPILE 's2swa_faster_intel' [31:19, 28:20] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:08, 06:47](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [30:27, 26:41] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:19, 15:27](1918 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:56, 08:43](1090 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:23, 17:09](1893 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [20:17, 14:53] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:06, 24:43](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:18, 16:07] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [13:50, 03:38](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [15:15, 02:59](1561 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:45, 02:41](1571 MB) +PASS -- TEST 'control_latlon_intel' [14:25, 02:58](1563 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:19, 02:54](1563 MB) +PASS -- TEST 'control_c48_intel' [09:18, 06:12](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:56, 05:25](710 MB) +PASS -- TEST 'control_c192_intel' [18:38, 09:07](1675 MB) +PASS -- TEST 'control_c384_intel' [22:39, 09:28](1942 MB) +PASS -- TEST 'control_c384gdas_intel' [28:03, 07:33](1166 MB) +PASS -- TEST 'control_stochy_intel' [05:53, 01:40](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:52, 01:00](437 MB) +PASS -- TEST 'control_lndp_intel' [04:50, 01:38](619 MB) +PASS -- TEST 'control_iovr4_intel' [05:06, 02:15](617 MB) +PASS -- TEST 'control_iovr5_intel' [06:01, 02:14](615 MB) +PASS -- TEST 'control_p8_intel' [07:01, 03:30](1850 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:13, 03:24](1854 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:07, 03:29](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [06:49, 02:21](1003 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:09, 03:27](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:57, 02:27](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:48, 03:33](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:44, 03:26](1936 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:57, 05:33](1856 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:59, 04:11](1911 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:08, 03:24](1856 MB) +PASS -- TEST 'merra2_thompson_intel' [11:05, 03:48](1860 MB) +PASS -- TEST 'regional_control_intel' [08:21, 05:26](859 MB) +PASS -- TEST 'regional_restart_intel' [06:16, 03:26](859 MB) +PASS -- TEST 'regional_decomp_intel' [10:16, 05:44](864 MB) +PASS -- TEST 'regional_noquilt_intel' [15:11, 05:10](1189 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [12:01, 05:31](863 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [13:13, 05:27](862 MB) +PASS -- TEST 'regional_wofs_intel' [14:09, 05:44](1593 MB) + +PASS -- COMPILE 'rrfs_intel' [17:17, 14:45] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [15:03, 06:23](1003 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:21, 04:02](1160 MB) +PASS -- TEST 'rap_decomp_intel' [16:22, 06:56](1003 MB) +PASS -- TEST 'rap_2threads_intel' [13:43, 05:52](1083 MB) +PASS -- TEST 'rap_restart_intel' [07:46, 03:21](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:19, 06:12](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:32, 06:34](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:30, 04:47](878 MB) +PASS -- TEST 'hrrr_control_intel' [14:25, 03:25](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [14:25, 03:28](1002 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [18:13, 03:20](1076 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:01, 01:56](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:49, 06:15](1006 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:50, 07:36](1955 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:53, 07:20](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [16:24, 13:32] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [11:14, 06:59](960 MB) +PASS -- TEST 'control_ras_intel' [06:49, 02:57](658 MB) + +PASS -- COMPILE 'wam_intel' [16:17, 13:23] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:02, 10:22](1650 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:17, 13:54] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:11, 03:21](1852 MB) +PASS -- TEST 'regional_control_faster_intel' [09:23, 05:10](861 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [19:18, 16:44] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:24, 02:43](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:17, 02:44](1606 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:41, 02:58](805 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:49, 02:43](804 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:35, 04:58](1111 MB) +PASS -- TEST 'control_ras_debug_intel' [05:40, 02:45](810 MB) +PASS -- TEST 'control_diag_debug_intel' [09:12, 02:44](1660 MB) +PASS -- TEST 'control_debug_p8_intel' [08:32, 03:47](1891 MB) +PASS -- TEST 'regional_debug_intel' [20:27, 17:07](914 MB) +PASS -- TEST 'rap_control_debug_intel' [08:51, 04:47](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:49, 04:47](1181 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:55, 05:03](1191 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:53, 04:49](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:55, 04:56](1190 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:27, 05:06](1270 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:49, 04:56](1186 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:48, 05:01](1186 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:47, 04:58](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:56, 04:57](1190 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:55, 04:48](1187 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:52, 04:54](1188 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:51, 07:38](1184 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:53, 04:52](1180 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:57, 05:35](1191 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:49, 04:54](1186 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:33, 08:22](1192 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:20, 09:27] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:36, 12:18](1688 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:20, 14:15] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:35, 03:47](1013 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:16, 05:19](877 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:28, 02:55](879 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:33, 04:54](934 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:12, 02:37](928 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:14, 03:06](876 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:23, 04:01](786 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:46, 01:36](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:22, 13:21] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:00, 02:07](1076 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:29, 01:18](1073 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:15, 01:20](962 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:18, 13:28] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:16, 03:47](897 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:19, 09:52] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:49, 04:44](1069 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:49, 04:38](1063 MB) +PASS -- TEST 'conus13km_debug_intel' [19:20, 14:00](1146 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:21, 14:13](826 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:42, 08:03](1139 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:22, 14:22](1228 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:19, 10:01] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:57, 04:44](1091 MB) + +PASS -- COMPILE 'hafsw_intel' [25:20, 20:46] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:00, 04:58](698 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:00, 05:53](1054 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:13, 06:51](752 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:50, 11:32](769 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:36, 12:32](795 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:13, 04:57](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:06, 06:06](477 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:30, 02:31](386 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:52, 06:41](743 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:18, 03:38](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:16, 03:16](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:09, 04:08](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:45, 01:27](419 MB) +PASS -- TEST 'gnv1_nested_intel' [10:45, 04:40](1714 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [16:18, 11:28] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:44, 12:24](628 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:27, 20:02] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:19, 07:47](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:29, 07:53](679 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [25:24, 22:05] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:10, 05:39](670 MB) + +PASS -- COMPILE 'hafs_all_intel' [22:17, 19:01] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:11, 06:07](739 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:49, 06:09](723 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:03, 16:38](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:20, 10:52] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:54, 02:38](757 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:06, 01:45](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:37, 02:30](655 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:59, 02:31](648 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:49, 02:34](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:49, 02:53](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:54, 02:56](769 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:50, 02:29](649 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:44, 05:58](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:56, 06:01](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:33, 02:39](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:03, 04:09](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:04, 04:04](2037 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:19, 08:03] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:39, 05:26](751 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [23:23, 11:03] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:53, 02:33](770 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [15:17, 03:56] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:06, 01:53](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:02, 01:39](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:00, 01:08](452 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:23, 16:08] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:34, 04:21](1912 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [22:22, 14:54] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:34, 04:12](1899 MB) + +PASS -- COMPILE 'atml_intel' [24:22, 16:43] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:31, 09:17](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [14:32, 09:13](1880 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:29, 05:04](1027 MB) + +PASS -- COMPILE 'atml_debug_intel' [17:18, 12:50] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:12, 06:36](1927 MB) + +PASS -- COMPILE 'atmw_intel' [19:17, 16:16] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:03, 02:32](1876 MB) + +PASS -- COMPILE 'atmaero_intel' [18:18, 15:16] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:40, 04:51](3122 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:21, 04:27](3001 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:04, 04:38](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:21, 10:50] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [32:06, 22:46](4550 MB) SYNOPSIS: -Starting Date/Time: 20240822 07:13:47 -Ending Date/Time: 20240822 08:47:42 -Total Time: 01h:34m:55s +Starting Date/Time: 20240826 10:16:30 +Ending Date/Time: 20240826 12:28:53 +Total Time: 02h:13m:54s Compiles Completed: 41/41 Tests Completed: 184/184 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index ac864bfc2d..66aa06f2a1 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,18 +1,18 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -3df9dd2e0931e3fda968f8f9949f530a1b7983e0 +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,284 +36,284 @@ 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-20240821 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_17706 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_218269 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:12, 20:02] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:57, 07:42](3205 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 23:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:58, 14:26](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:39, 14:42](1937 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:00, 06:55](1073 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:42, 15:32](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:12, 24:01] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:05, 13:54](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:13, 15:45] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:38, 25:37](1942 MB) - -PASS -- COMPILE 's2swa_intel' [21:14, 20:12] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [21:12, 08:39](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:19, 08:37](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:46, 05:50](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:24, 08:21](3246 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:44, 05:31](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:10, 07:16](3461 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [21:03, 08:38](3223 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:02, 07:29](3167 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:29, 08:41](3224 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:38, 10:38](3450 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:45, 06:40](3604 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:57, 10:57](4211 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:14, 06:44](4360 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:18, 08:18](3212 MB) - -PASS -- COMPILE 's2sw_intel' [20:12, 19:59] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:54, 05:10](1926 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:01, 05:42](1986 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:13, 15:27] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:54, 10:35](3283 MB) - -PASS -- COMPILE 's2sw_debug_intel' [15:14, 14:41] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:31, 06:09](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:15, 17:01] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:53, 05:30](1994 MB) - -PASS -- COMPILE 's2s_intel' [18:15, 17:40] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:17, 06:31](2873 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:31, 02:01](2877 MB) -PASS -- TEST 'cpld_restart_c48_intel' [13:24, 01:17](2288 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:11, 21:43] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:55, 08:10](3223 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:12, 22:57] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:04, 15:46](1927 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:58, 07:46](1087 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:06, 17:45](1906 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 15:22] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:52, 26:44](1945 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:11, 15:05] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:46, 04:03](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:17, 03:36](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:48, 03:32](1566 MB) -PASS -- TEST 'control_latlon_intel' [08:42, 03:31](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:59, 03:40](1564 MB) -PASS -- TEST 'control_c48_intel' [13:05, 06:40](1569 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:53, 05:49](699 MB) -PASS -- TEST 'control_c192_intel' [13:53, 10:06](1671 MB) -PASS -- TEST 'control_c384_intel' [23:27, 18:50](1929 MB) -PASS -- TEST 'control_c384gdas_intel' [20:39, 14:30](1152 MB) -PASS -- TEST 'control_stochy_intel' [03:29, 02:02](620 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:33, 01:00](426 MB) -PASS -- TEST 'control_lndp_intel' [04:34, 02:11](620 MB) -PASS -- TEST 'control_iovr4_intel' [04:35, 02:43](616 MB) -PASS -- TEST 'control_iovr5_intel' [04:31, 03:02](616 MB) -PASS -- TEST 'control_p8_intel' [05:08, 03:49](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:26, 03:30](1850 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:15, 03:30](1852 MB) -PASS -- TEST 'control_restart_p8_intel' [03:10, 01:46](1006 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:06, 03:25](1846 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:10, 01:57](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:09, 03:22](1851 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:04, 02:52](1927 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:47, 05:23](1849 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:21, 04:15](1905 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:29, 03:18](1864 MB) -PASS -- TEST 'merra2_thompson_intel' [05:21, 03:38](1857 MB) -PASS -- TEST 'regional_control_intel' [05:41, 04:40](858 MB) -PASS -- TEST 'regional_restart_intel' [04:40, 03:01](837 MB) -PASS -- TEST 'regional_decomp_intel' [05:41, 04:50](859 MB) -PASS -- TEST 'regional_2threads_intel' [03:41, 02:55](1000 MB) -PASS -- TEST 'regional_noquilt_intel' [05:41, 04:27](1176 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:49, 04:51](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 04:47](850 MB) -PASS -- TEST 'regional_wofs_intel' [07:40, 06:19](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [15:12, 14:35] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:20, 07:26](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:20, 03:46](1148 MB) -PASS -- TEST 'rap_decomp_intel' [13:24, 07:35](1005 MB) -PASS -- TEST 'rap_2threads_intel' [11:28, 06:12](1086 MB) -PASS -- TEST 'rap_restart_intel' [05:08, 03:22](876 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:23, 07:25](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:20, 07:38](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:10, 05:17](875 MB) -PASS -- TEST 'hrrr_control_intel' [06:20, 04:06](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:20, 04:19](995 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:20, 03:21](1075 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:41, 02:05](830 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:27, 06:48](998 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:54, 08:41](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:54, 08:29](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [15:16, 14:04] -PASS -- TEST 'control_csawmg_intel' [07:43, 06:47](957 MB) -PASS -- TEST 'control_ras_intel' [04:31, 03:24](653 MB) - -PASS -- COMPILE 'wam_intel' [14:20, 13:37] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:14, 11:56](1646 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:15, 14:49] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:21, 03:21](1847 MB) -PASS -- TEST 'regional_control_faster_intel' [05:48, 04:33](827 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 15:16] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:56, 03:03](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 03:03](1593 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:10](794 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:27, 03:06](795 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:44, 04:25](1098 MB) -PASS -- TEST 'control_ras_debug_intel' [04:37, 03:06](802 MB) -PASS -- TEST 'control_diag_debug_intel' [04:49, 03:12](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [04:42, 03:19](1887 MB) -PASS -- TEST 'regional_debug_intel' [17:38, 16:30](897 MB) -PASS -- TEST 'rap_control_debug_intel' [06:31, 05:12](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:31, 05:07](1173 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 05:23](1177 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 05:22](1177 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 05:07](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:37, 05:37](1261 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:30, 05:21](1176 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:28, 05:16](1182 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:33, 05:11](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:46, 05:13](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:39, 05:04](1176 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:38, 05:09](1180 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:39, 07:56](1175 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:38, 04:58](1170 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:35, 06:11](1180 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:37, 05:11](1176 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:18, 08:51](1178 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:11, 10:57] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:20, 13:22](1672 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:14, 14:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:27, 03:40](1014 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:16, 05:57](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 03:52](879 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:13, 05:26](940 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:12, 02:49](925 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 03:34](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:16, 04:15](775 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:43, 02:10](763 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:03] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:38, 02:11](1088 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:11, 01:18](1064 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:05, 01:53](965 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:11, 14:13] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:19, 04:48](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:10, 10:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:41, 05:02](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 05:00](1049 MB) -PASS -- TEST 'conus13km_debug_intel' [16:33, 14:46](1133 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:32, 15:05](805 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:23, 08:30](1110 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:26, 14:26](1198 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:10, 10:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 05:16](1079 MB) - -PASS -- COMPILE 'hafsw_intel' [18:13, 16:53] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:36, 04:51](685 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:54, 04:06](1035 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:42, 07:19](731 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:17, 11:37](760 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:49, 12:29](785 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:25, 05:16](468 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:38, 06:16](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:36, 02:27](370 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:11, 06:59](434 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:01, 03:42](502 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:18, 03:24](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:14, 04:13](558 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:50, 01:29](400 MB) -PASS -- TEST 'gnv1_nested_intel' [08:29, 05:15](1710 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:11, 12:37] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:20, 12:23](588 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:11, 16:30] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:23, 07:16](603 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:35, 07:22](782 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 17:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:49, 05:25](776 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:11, 16:25] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:25, 06:09](720 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:31, 06:22](712 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:24, 20:01](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:11, 13:35] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:36, 02:42](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:36](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:29, 02:27](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:29, 02:27](641 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:30, 02:32](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:25, 02:34](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:30, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:30, 02:26](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:23, 06:11](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:12, 06:06](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 04:40](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 04:41](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 08:44] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:32, 05:33](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:14, 13:24] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:34, 02:38](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:31] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:14, 02:38](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:55, 01:35](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:56, 01:06](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 15:57] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:13, 04:14](1914 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 14:42] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:34, 04:06](1903 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 15:43] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:59, 08:13](1883 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:02, 07:54](1883 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:52, 03:48](1032 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:10, 12:30] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:50, 06:37](1920 MB) - -PASS -- COMPILE 'atmw_intel' [17:12, 16:34] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:31, 02:26](1884 MB) - -PASS -- COMPILE 'atmaero_intel' [15:13, 14:43] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:31, 06:24](3118 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 07:11](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:20, 07:16](3019 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:12, 12:12] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:55, 18:21](4480 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:15, 20:27] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [26:50, 07:27](3205 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:13, 23:23] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [33:05, 13:45](1913 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:19, 14:12](1935 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:29, 06:58](1070 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [33:50, 15:00](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:14, 23:42] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [33:13, 13:52](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:11, 15:53] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:34, 25:21](1940 MB) + +PASS -- COMPILE 's2swa_intel' [21:11, 20:06] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:32, 08:20](3223 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:29, 08:48](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [36:20, 05:39](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:34, 08:58](3246 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [34:17, 05:41](3172 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:36, 06:50](3466 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:23, 08:26](3223 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:23, 07:30](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:39, 08:30](3224 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:50, 10:41](3444 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [30:26, 06:46](3602 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [35:48, 10:29](4211 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:37, 06:29](4360 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:29, 08:12](3212 MB) + +PASS -- COMPILE 's2sw_intel' [20:14, 19:08] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:53, 05:04](1929 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:03, 05:38](1988 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:11, 14:48] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:03, 10:11](3281 MB) + +PASS -- COMPILE 's2sw_debug_intel' [18:15, 16:51] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:41, 06:16](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:15, 17:24] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:07, 05:24](1994 MB) + +PASS -- COMPILE 's2s_intel' [19:15, 17:10] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:32, 06:28](2871 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:18, 02:03](2877 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:26, 01:13](2289 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:16, 21:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [28:33, 08:08](3224 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:12, 22:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:30, 15:20](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:22, 07:57](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:09, 18:00](1906 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:15, 14:18] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [58:59, 28:17](1944 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:11, 15:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [30:56, 03:56](665 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [32:02, 03:40](1561 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [31:53, 03:37](1566 MB) +PASS -- TEST 'control_latlon_intel' [31:28, 03:38](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [31:44, 03:37](1564 MB) +PASS -- TEST 'control_c48_intel' [34:57, 06:37](1569 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [17:53, 05:46](698 MB) +PASS -- TEST 'control_c192_intel' [37:53, 10:12](1671 MB) +PASS -- TEST 'control_c384_intel' [46:11, 18:43](1929 MB) +PASS -- TEST 'control_c384gdas_intel' [44:03, 14:44](1155 MB) +PASS -- TEST 'control_stochy_intel' [29:56, 02:10](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:50, 01:00](426 MB) +PASS -- TEST 'control_lndp_intel' [30:01, 02:11](619 MB) +PASS -- TEST 'control_iovr4_intel' [30:02, 03:01](617 MB) +PASS -- TEST 'control_iovr5_intel' [31:00, 03:07](617 MB) +PASS -- TEST 'control_p8_intel' [32:42, 03:43](1850 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [33:19, 03:50](1849 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [32:52, 03:52](1853 MB) +PASS -- TEST 'control_restart_p8_intel' [05:26, 01:47](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [32:42, 03:40](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:26, 01:42](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [29:49, 03:35](1849 MB) +PASS -- TEST 'control_2threads_p8_intel' [14:05, 02:54](1928 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:21, 05:14](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:18, 04:07](1906 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:41, 03:21](1864 MB) +PASS -- TEST 'merra2_thompson_intel' [07:10, 03:36](1857 MB) +PASS -- TEST 'regional_control_intel' [07:18, 04:38](833 MB) +PASS -- TEST 'regional_restart_intel' [04:51, 02:34](850 MB) +PASS -- TEST 'regional_decomp_intel' [07:06, 04:48](852 MB) +PASS -- TEST 'regional_2threads_intel' [05:19, 02:53](991 MB) +PASS -- TEST 'regional_noquilt_intel' [07:27, 04:28](1174 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:29, 04:33](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:09, 04:34](851 MB) +PASS -- TEST 'regional_wofs_intel' [09:08, 06:06](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [17:11, 15:27] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:40, 06:49](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:37, 03:43](1149 MB) +PASS -- TEST 'rap_decomp_intel' [09:50, 06:49](1005 MB) +PASS -- TEST 'rap_2threads_intel' [08:42, 05:58](1082 MB) +PASS -- TEST 'rap_restart_intel' [06:25, 03:24](875 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:27, 07:17](1002 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:27, 07:11](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:55, 05:29](875 MB) +PASS -- TEST 'hrrr_control_intel' [06:21, 03:54](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:35, 03:57](995 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:28, 03:21](1076 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:53, 01:53](830 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:41, 07:04](998 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:48, 08:20](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:52, 07:57](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [16:11, 14:14] +PASS -- TEST 'control_csawmg_intel' [09:08, 06:58](957 MB) +PASS -- TEST 'control_ras_intel' [05:54, 03:32](653 MB) + +PASS -- COMPILE 'wam_intel' [15:11, 13:37] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [39:59, 12:10](1644 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:14, 14:06] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:45, 03:23](1849 MB) +PASS -- TEST 'regional_control_faster_intel' [07:19, 04:30](848 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:11, 15:27] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:48, 03:03](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:24, 03:09](1594 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:45, 03:13](794 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:54, 02:54](795 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:06, 04:22](1100 MB) +PASS -- TEST 'control_ras_debug_intel' [06:10, 03:07](801 MB) +PASS -- TEST 'control_diag_debug_intel' [06:11, 03:07](1655 MB) +PASS -- TEST 'control_debug_p8_intel' [06:02, 03:26](1890 MB) +PASS -- TEST 'regional_debug_intel' [18:51, 16:08](891 MB) +PASS -- TEST 'rap_control_debug_intel' [07:44, 05:24](1184 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:37, 05:16](1173 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:46, 05:12](1178 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:37, 05:24](1178 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:05, 05:12](1184 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:25, 05:22](1263 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:06, 05:11](1178 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:05, 05:19](1180 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:07, 05:10](1183 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:57, 05:28](1183 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:57, 05:11](1180 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:02, 05:23](1182 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:48, 08:00](1177 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:51, 05:31](1172 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:49, 06:35](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:38, 05:18](1177 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:33, 08:41](1180 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:13, 11:28] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:21, 14:00](1672 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:13, 12:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:17, 03:34](1012 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:20, 06:14](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:24, 03:48](880 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:21, 05:33](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:18, 02:41](925 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:13, 03:41](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:20, 04:26](775 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:48, 01:41](761 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 13:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:40, 02:34](1086 MB) +PASS -- TEST 'conus13km_2threads_intel' [16:15, 01:15](1062 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [21:14, 01:30](964 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:12, 14:17] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:28, 04:33](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:15, 11:10] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:36, 05:15](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:37, 05:13](1049 MB) +PASS -- TEST 'conus13km_debug_intel' [18:25, 14:40](1135 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:04, 15:04](808 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:18, 08:43](1111 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:13, 14:12](1199 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:10, 11:08] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:46, 05:07](1080 MB) + +PASS -- COMPILE 'hafsw_intel' [18:12, 16:52] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:27, 04:43](685 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:47, 03:54](1033 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:02, 07:37](729 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:29, 11:25](760 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:57, 12:52](782 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:31, 05:04](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:47, 06:16](480 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [15:31, 02:39](368 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:05, 07:05](441 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [23:18, 03:34](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [22:24, 03:15](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:25, 04:02](551 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [22:53, 01:16](398 MB) +PASS -- TEST 'gnv1_nested_intel' [27:32, 05:18](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:14, 12:42] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [33:21, 12:24](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:16, 17:07] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:26, 07:14](600 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [27:22, 07:09](777 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:12, 17:18] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [25:42, 05:25](776 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:16, 17:03] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [26:23, 06:02](722 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [25:21, 06:07](706 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [38:21, 20:06](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:36] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [18:30, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 01:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [19:30, 02:28](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [18:32, 02:28](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [17:25, 02:30](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [16:36, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [15:30, 02:33](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [16:31, 02:26](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:22, 06:01](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:14, 05:57](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [16:28, 02:38](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:30, 04:38](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [16:33, 04:41](2033 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [13:11, 11:50] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [17:32, 05:45](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:12, 12:57] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [12:31, 02:36](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:15, 03:26] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [09:03, 02:33](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:55, 01:22](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:01, 00:57](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:12, 16:20] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:48, 04:02](1915 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:16, 15:44] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:19, 04:26](1903 MB) + +PASS -- COMPILE 'atml_intel' [17:15, 15:25] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:19, 07:20](1879 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [13:12, 07:16](1879 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:07, 03:47](1034 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:15, 11:23] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:50, 06:27](1916 MB) + +PASS -- COMPILE 'atmw_intel' [17:12, 15:17] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:07, 02:49](1884 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 13:31] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:32, 06:22](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:43, 06:55](3008 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:29, 07:10](3018 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [16:11, 14:32] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [33:38, 18:23](4485 MB) SYNOPSIS: -Starting Date/Time: 20240821 16:22:45 -Ending Date/Time: 20240821 18:02:09 -Total Time: 01h:40m:40s +Starting Date/Time: 20240826 12:28:28 +Ending Date/Time: 20240826 15:05:06 +Total Time: 02h:38m:09s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 1e3c9edb0e..e09b636b6f 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,15 +1,15 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -3df9dd2e0931e3fda968f8f9949f530a1b7983e0 +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) @@ -25,431 +25,376 @@ 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-20240821 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1568042 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_3692277 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [25:14, 13:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:11, 06:19](3301 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:16, 17:12] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:17, 17:29](1983 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:28, 18:18](2174 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:23, 08:22](1229 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:59, 19:31](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [28:16, 16:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:47, 17:11](1963 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:13, 06:15] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [41:16, 23:37](1933 MB) - -PASS -- COMPILE 's2swa_intel' [24:14, 13:00] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:16, 05:56](3326 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:29, 05:57](3350 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:28, 03:36](3252 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:16, 05:58](3359 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:28, 03:41](3278 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:18, 05:32](3635 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:13, 06:03](3313 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:18, 04:53](3217 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:27, 06:00](3330 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [23:19, 10:38](3525 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:51, 06:36](3628 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:50, 10:16](4305 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:19, 06:48](4395 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:19, 05:27](3301 MB) - -PASS -- COMPILE 's2sw_intel' [24:14, 12:33] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:14, 05:01](1993 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:26, 04:30](2036 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:14, 06:12] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:24, 08:47](3361 MB) - -PASS -- COMPILE 's2sw_debug_intel' [18:14, 06:29] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [23:02, 05:57](1978 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [22:14, 11:32] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [17:16, 04:24](2038 MB) - -PASS -- COMPILE 's2s_intel' [22:14, 11:07] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [21:45, 09:03](3058 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [15:46, 02:40](3049 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:49, 01:35](2499 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:50] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:12, 05:49](3327 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:24] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:05, 17:38](2011 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:31, 08:26](1273 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:14, 20:05](1900 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [22:14, 06:09] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:16, 25:40](1960 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [23:17, 10:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:25, 03:23](710 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:45, 02:54](1598 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:46, 03:02](1608 MB) -PASS -- TEST 'control_latlon_intel' [08:42, 03:01](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:56, 03:00](1597 MB) -PASS -- TEST 'control_c48_intel' [12:55, 07:36](1714 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:31, 06:32](854 MB) -PASS -- TEST 'control_c192_intel' [15:10, 12:01](1757 MB) -PASS -- TEST 'control_c384_intel' [15:09, 10:46](1969 MB) -PASS -- TEST 'control_c384gdas_intel' [12:25, 08:03](1376 MB) -PASS -- TEST 'control_stochy_intel' [04:27, 01:38](661 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:28, 01:00](505 MB) -PASS -- TEST 'control_lndp_intel' [04:27, 01:33](659 MB) -PASS -- TEST 'control_iovr4_intel' [05:31, 02:29](659 MB) -PASS -- TEST 'control_iovr5_intel' [05:26, 02:29](654 MB) -PASS -- TEST 'control_p8_intel' [06:04, 03:06](1894 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:12, 03:03](1904 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:58, 02:57](1898 MB) -PASS -- TEST 'control_restart_p8_intel' [06:44, 01:44](1130 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:58, 03:02](1895 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:44](1169 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:50, 03:12](1887 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:45, 02:55](1967 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:43, 05:21](1888 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:53, 04:03](1955 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:53, 03:06](1892 MB) -PASS -- TEST 'merra2_thompson_intel' [09:49, 03:24](1907 MB) -PASS -- TEST 'regional_control_intel' [11:36, 05:15](1087 MB) -PASS -- TEST 'regional_restart_intel' [03:45, 02:55](1091 MB) -PASS -- TEST 'regional_decomp_intel' [11:34, 05:38](1095 MB) -PASS -- TEST 'regional_2threads_intel' [09:37, 03:22](1084 MB) -PASS -- TEST 'regional_noquilt_intel' [10:41, 05:18](1395 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:41, 05:16](1100 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:35, 05:20](1097 MB) -PASS -- TEST 'regional_wofs_intel' [08:42, 06:48](1909 MB) - -PASS -- COMPILE 'rrfs_intel' [23:16, 10:21] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:40, 07:51](1101 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:19, 04:04](1257 MB) -PASS -- TEST 'rap_decomp_intel' [09:37, 08:13](1041 MB) -PASS -- TEST 'rap_2threads_intel' [08:37, 07:24](1169 MB) -PASS -- TEST 'rap_restart_intel' [04:46, 04:04](1101 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:44, 07:46](1104 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:39, 08:13](1043 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:46, 05:55](1135 MB) -PASS -- TEST 'hrrr_control_intel' [05:42, 03:58](1034 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 04:06](1036 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:37, 03:41](1101 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:10](1004 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:49, 07:40](1098 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:17](1996 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:29, 09:08](2068 MB) - -PASS -- COMPILE 'csawmg_intel' [20:16, 09:53] -PASS -- TEST 'control_csawmg_intel' [12:50, 06:09](1016 MB) -PASS -- TEST 'control_ras_intel' [06:30, 03:16](746 MB) - -PASS -- COMPILE 'csawmg_gnu' [15:14, 04:09] -PASS -- TEST 'control_csawmg_gnu' [09:44, 08:25](739 MB) - -PASS -- COMPILE 'wam_intel' [21:17, 09:53] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:54, 11:12](1664 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:16, 09:59] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:01, 02:47](1886 MB) -PASS -- TEST 'regional_control_faster_intel' [05:47, 04:52](1086 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:15, 07:30] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:54, 02:45](1622 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:58, 02:35](1621 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:30, 03:05](836 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:30, 02:46](833 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:51, 04:15](1142 MB) -PASS -- TEST 'control_ras_debug_intel' [08:32, 02:52](841 MB) -PASS -- TEST 'control_diag_debug_intel' [11:11, 02:46](1685 MB) -PASS -- TEST 'control_debug_p8_intel' [11:01, 03:07](1888 MB) -PASS -- TEST 'regional_debug_intel' [25:50, 17:37](1102 MB) -PASS -- TEST 'rap_control_debug_intel' [09:30, 05:00](1220 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:34, 04:56](1212 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:33, 05:01](1225 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:32, 05:02](1218 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:29, 05:09](1225 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:52, 05:17](1305 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:26, 05:02](1219 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:25, 05:12](1208 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:25, 05:06](1223 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:04](1218 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:26, 04:56](1217 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 05:03](1220 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:27, 08:04](1214 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:59](1213 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 06:00](1221 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:25, 04:56](1220 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:45, 08:41](1221 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:11, 04:05] -PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:28](723 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:09] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:55, 13:27](1664 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 03:51](1128 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:35, 06:26](1054 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:42, 03:23](989 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 06:09](1091 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:09](958 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:35](930 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:42, 04:56](1042 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 01:52](930 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:13, 09:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:05, 02:08](1189 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:58, 00:52](1117 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:50, 01:13](1098 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:12, 10:03] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 04:12](983 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 05:05] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1096 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:55](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [19:50, 15:37](1244 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:50, 15:09](941 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:44, 08:25](1162 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 14:47](1315 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:13, 04:40] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 04:59](1139 MB) - -PASS -- COMPILE 'hafsw_intel' [15:13, 11:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:17, 04:55](728 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:31, 05:40](1101 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:23, 06:54](820 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:23, 13:37](843 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:27, 15:13](871 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:01, 05:27](488 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 06:38](510 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:46, 02:38](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:11, 07:04](483 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:48, 03:39](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:56, 03:30](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:02](582 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:29, 01:10](407 MB) -PASS -- TEST 'gnv1_nested_intel' [05:37, 04:02](1734 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:13, 05:11] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:07](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:13, 11:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:01, 08:34](646 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:11, 08:41](702 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:13, 11:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:40, 06:24](723 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:14, 10:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:22, 06:58](816 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 06:26](804 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:58, 16:07](1219 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:12, 06:25] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:43](1152 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:36](1114 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:35](1036 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:39](1035 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:42](1013 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:42](1157 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:21, 02:38](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:37](1034 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:38, 06:24](1074 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:26, 06:01](1050 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:42](1169 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:54](2508 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:54](2510 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [11:12, 03:26] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:23](1093 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:12, 06:39] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:43](1169 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 01:08] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:34, 00:45](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:25, 00:48](321 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:27, 00:33](329 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:13, 10:34] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:16, 03:40](1983 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:13, 10:17] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:06, 03:36](1962 MB) - -PASS -- COMPILE 'atml_intel' [18:12, 10:44] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:06, 04:23](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:03, 04:19](1862 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:57, 02:24](1097 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:13, 05:51] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:57, 05:46](1891 MB) - -PASS -- COMPILE 'atmw_intel' [16:12, 10:53] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:50, 01:53](1895 MB) - -PASS -- COMPILE 'atmaero_intel' [15:13, 10:28] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:01, 04:22](3182 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:57, 04:55](3104 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:54, 05:05](3081 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:12, 04:52] ( 884 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [07:12, 04:45] -PASS -- TEST 'control_c48_gnu' [12:40, 11:16](1510 MB) -PASS -- TEST 'control_stochy_gnu' [08:26, 03:29](490 MB) -PASS -- TEST 'control_ras_gnu' [09:23, 04:54](508 MB) -PASS -- TEST 'control_p8_gnu' [09:58, 04:53](1454 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [09:55, 04:37](1455 MB) -PASS -- TEST 'control_flake_gnu' [16:27, 10:24](533 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:12, 04:33] -PASS -- TEST 'rap_control_gnu' [16:42, 11:03](846 MB) -PASS -- TEST 'rap_decomp_gnu' [16:39, 11:00](844 MB) -PASS -- TEST 'rap_2threads_gnu' [14:43, 09:52](917 MB) -PASS -- TEST 'rap_restart_gnu' [07:48, 05:29](575 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [15:44, 10:48](810 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [16:43, 11:01](808 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:45, 08:08](576 MB) -PASS -- TEST 'hrrr_control_gnu' [11:48, 05:38](812 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [11:50, 05:35](797 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [10:42, 05:10](909 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [10:41, 05:39](811 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:33, 02:57](563 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:30, 02:51](657 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [15:55, 10:32](844 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:12, 06:38] -PASS -- TEST 'control_diag_debug_gnu' [06:55, 01:40](1269 MB) -PASS -- TEST 'regional_debug_gnu' [16:40, 11:28](740 MB) -PASS -- TEST 'rap_control_debug_gnu' [07:24, 02:39](819 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [07:23, 02:34](819 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [06:24, 02:36](827 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [05:26, 02:40](825 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:46, 02:55](905 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:35, 04:09](823 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:26, 02:40](820 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:22, 02:37](820 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:35](456 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:21, 01:50](455 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:45, 01:50](1428 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:37, 03:22](822 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 03:07](826 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:42, 04:24](826 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:12, 02:37] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:18] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:33, 09:35](705 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:37, 05:04](703 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:39, 08:40](750 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:34, 04:33](747 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:36, 05:09](706 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:42, 07:03](555 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:27, 02:36](540 MB) -PASS -- TEST 'conus13km_control_gnu' [07:10, 03:13](873 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:53, 06:15](876 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 02:19](567 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:12, 09:49] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:49, 05:45](724 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:39] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:24, 02:35](715 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:25, 02:31](710 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:58, 07:09](892 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [10:52, 07:06](580 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:45, 08:00](891 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:47, 07:00](960 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 06:39] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:27, 02:36](734 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:32] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:05] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:45, 07:20](1518 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:13] - -PASS -- COMPILE 's2sw_pdlib_gnu' [20:12, 16:17] -FAILED: TEST TIMED OUT -- TEST 'cpld_control_pdlib_p8_gnu' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 03:15] - -PASS -- COMPILE 'datm_cdeps_gnu' [18:11, 15:56] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:24, 03:04](689 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [12:20, 12:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:29, 05:41](3309 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:17, 16:16] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:02, 17:19](1940 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:06, 18:07](2138 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:16, 08:21](1244 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:07, 19:26](1841 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:19, 16:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:34, 17:04](1950 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:42, 05:42] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:13, 23:31](1888 MB) + +PASS -- COMPILE 's2swa_intel' [12:26, 12:26] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [06:58, 06:07](3338 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:48, 05:57](3325 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:34, 03:47](3221 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:02, 06:13](3370 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:40, 03:38](3270 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [06:18, 05:34](3629 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:53, 06:10](3309 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:41, 04:49](3207 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:27, 06:33](3326 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [12:16, 10:41](3513 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:46, 06:32](3617 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:24, 09:51](4273 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:04, 05:57](4357 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:30, 05:42](3296 MB) + +PASS -- COMPILE 's2sw_intel' [11:38, 11:38] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:51, 05:05](1992 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:17, 04:32](2040 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:41, 05:41] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:45, 08:56](3396 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:22, 05:22] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:44, 05:58](1964 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:00, 11:00] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:10, 04:23](2017 MB) + +PASS -- COMPILE 's2s_intel' [11:03, 11:03] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:22, 08:56](3060 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:05, 02:36](3037 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:00, 01:29](2457 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:34, 17:33] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [06:28, 05:30](3332 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:06, 15:05] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 17:41](1973 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:36, 08:35](1244 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:58, 20:09](1891 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:25, 05:25] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:50, 26:01](1937 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:38, 10:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:34, 03:20](695 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:55](1601 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:30, 02:59](1583 MB) +PASS -- TEST 'control_latlon_intel' [03:25, 02:58](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 02:59](1585 MB) +PASS -- TEST 'control_c48_intel' [08:22, 07:49](1706 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:42, 06:28](858 MB) +PASS -- TEST 'control_c192_intel' [11:24, 10:44](1727 MB) +PASS -- TEST 'control_c384_intel' [12:07, 10:45](1964 MB) +PASS -- TEST 'control_c384gdas_intel' [10:17, 08:04](1379 MB) +PASS -- TEST 'control_stochy_intel' [01:50, 01:38](658 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:20, 01:02](505 MB) +PASS -- TEST 'control_lndp_intel' [01:48, 01:33](661 MB) +PASS -- TEST 'control_iovr4_intel' [02:45, 02:28](655 MB) +PASS -- TEST 'control_iovr5_intel' [02:46, 02:28](652 MB) +PASS -- TEST 'control_p8_intel' [04:01, 03:15](1870 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:54, 03:09](1853 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:39, 02:57](1897 MB) +PASS -- TEST 'control_restart_p8_intel' [02:18, 01:45](1132 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:38, 03:04](1850 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:20, 01:43](1158 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:46, 03:12](1856 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:31, 02:55](1962 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:49, 05:26](1892 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:46, 04:06](1948 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:29, 03:11](1897 MB) +PASS -- TEST 'merra2_thompson_intel' [05:00, 03:26](1866 MB) +PASS -- TEST 'regional_control_intel' [06:02, 05:32](1086 MB) +PASS -- TEST 'regional_restart_intel' [03:18, 02:52](1084 MB) +PASS -- TEST 'regional_decomp_intel' [06:02, 05:35](1085 MB) +PASS -- TEST 'regional_2threads_intel' [03:51, 03:26](1081 MB) +PASS -- TEST 'regional_noquilt_intel' [05:42, 05:19](1393 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:46, 05:16](1089 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:26, 05:20](1078 MB) +PASS -- TEST 'regional_wofs_intel' [07:23, 06:56](1891 MB) + +PASS -- COMPILE 'rrfs_intel' [10:07, 10:06] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:17, 07:49](1109 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:50, 04:03](1257 MB) +PASS -- TEST 'rap_decomp_intel' [08:39, 08:11](1032 MB) +PASS -- TEST 'rap_2threads_intel' [07:51, 07:24](1174 MB) +PASS -- TEST 'rap_restart_intel' [04:42, 04:06](1098 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:12, 07:44](1105 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:42, 08:18](1039 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:27, 05:53](1126 MB) +PASS -- TEST 'hrrr_control_intel' [04:29, 03:59](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:33, 04:06](1036 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:06, 03:43](1103 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:32, 02:10](996 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:24, 07:52](1101 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:36, 09:21](1983 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:21, 09:07](2068 MB) + +PASS -- COMPILE 'csawmg_intel' [09:43, 09:42] +PASS -- TEST 'control_csawmg_intel' [06:33, 06:07](1021 MB) +PASS -- TEST 'control_ras_intel' [03:34, 03:18](739 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:17, 04:16] +PASS -- TEST 'control_csawmg_gnu' [09:11, 08:43](745 MB) + +PASS -- COMPILE 'wam_intel' [10:09, 10:08] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:39, 11:10](1656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:56, 09:55] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:25, 02:46](1887 MB) +PASS -- TEST 'regional_control_faster_intel' [05:21, 04:52](1086 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:25, 07:24] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:13, 02:47](1624 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:12, 02:39](1628 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:07](829 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:01, 02:49](826 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:43, 04:18](1139 MB) +PASS -- TEST 'control_ras_debug_intel' [03:11, 02:55](839 MB) +PASS -- TEST 'control_diag_debug_intel' [03:27, 02:52](1686 MB) +PASS -- TEST 'control_debug_p8_intel' [03:45, 03:12](1876 MB) +PASS -- TEST 'regional_debug_intel' [19:14, 18:44](1094 MB) +PASS -- TEST 'rap_control_debug_intel' [05:34, 05:19](1230 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:32, 05:16](1212 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:37, 05:20](1221 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 05:11](1219 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:19, 05:06](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:44, 05:17](1299 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:09](1219 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 05:08](1217 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:20, 05:05](1220 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 05:01](1221 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:11, 04:57](1221 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 05:00](1219 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 09:13](1219 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 06:03](1192 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:06, 06:50](1219 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:12, 05:55](1217 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 10:04](1224 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:16, 04:15] +PASS -- TEST 'control_csawmg_debug_gnu' [02:52, 02:23](735 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:40, 04:39] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:17, 13:40](1658 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:45, 09:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:32, 04:31](1129 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:22, 06:30](1052 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:06, 03:29](985 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:50, 06:23](1079 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:32, 03:10](966 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:04, 03:38](932 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:21, 04:51](1036 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:12, 01:52](930 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:55, 09:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:58, 02:12](1193 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:30, 00:57](1112 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:56, 01:21](1082 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:48, 09:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:43, 04:14](981 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:44, 04:44] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 05:03](1094 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:04, 04:50](1094 MB) +PASS -- TEST 'conus13km_debug_intel' [15:49, 15:10](1238 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 15:16](909 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:03, 08:29](1155 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:31, 15:01](1305 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:27, 04:27] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:22, 05:10](1146 MB) + +PASS -- COMPILE 'hafsw_intel' [11:22, 11:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:12, 05:10](722 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 06:13](1094 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:12, 07:01](813 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:36, 13:35](855 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:29, 15:20](871 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:22, 05:39](487 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:01, 06:54](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:20, 02:48](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:24, 07:38](469 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:18, 03:46](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:12, 03:36](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:49, 04:11](580 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:30, 01:12](409 MB) +PASS -- TEST 'gnv1_nested_intel' [05:19, 04:03](1719 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:16, 05:15] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:53, 13:02](593 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:16, 11:16] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:36, 08:51](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:42, 08:48](743 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:21, 11:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:09, 06:50](722 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:49, 10:48] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:33, 06:36](814 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:34, 06:36](802 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:39, 16:00](1219 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:46, 06:46] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:54, 02:43](1163 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:48, 01:39](1101 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:42, 02:34](1032 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:58, 02:51](1027 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:49, 02:42](1024 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:49, 02:39](1169 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:51, 02:44](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:39, 02:32](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:17, 06:14](1073 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:14, 06:12](1048 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 03:14](1141 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:43, 04:36](2443 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:04, 03:53](2509 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:10, 03:10] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:22, 06:14](1095 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:27, 06:27] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:08, 03:00](1132 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:19, 01:19] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:09, 00:51](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:00, 00:48](328 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:47, 00:33](325 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:21, 10:21] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:34, 03:42](1951 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:06, 10:06] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:36, 03:41](1935 MB) + +PASS -- COMPILE 'atml_intel' [10:52, 10:51] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:10, 04:23](1862 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:10, 04:20](1831 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:02, 02:25](1108 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:34, 05:33] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:47, 05:50](1846 MB) + +PASS -- COMPILE 'atmw_intel' [10:30, 10:29] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:35, 01:55](1895 MB) + +PASS -- COMPILE 'atmaero_intel' [10:17, 10:17] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:01, 04:16](3182 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:42, 05:00](3075 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 04:53](3113 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:37, 04:37] ( 884 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [04:35, 04:34] +PASS -- TEST 'control_c48_gnu' [11:42, 11:14](1510 MB) +PASS -- TEST 'control_stochy_gnu' [03:40, 03:24](494 MB) +PASS -- TEST 'control_ras_gnu' [05:02, 04:46](504 MB) +PASS -- TEST 'control_p8_gnu' [05:43, 04:57](1450 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:23, 04:42](1452 MB) +PASS -- TEST 'control_flake_gnu' [10:42, 10:28](535 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:29, 04:29] +PASS -- TEST 'rap_control_gnu' [11:26, 10:59](813 MB) +PASS -- TEST 'rap_decomp_gnu' [11:27, 11:03](816 MB) +PASS -- TEST 'rap_2threads_gnu' [10:11, 09:49](921 MB) +PASS -- TEST 'rap_restart_gnu' [06:03, 05:33](574 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:16, 10:51](813 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:40, 11:14](814 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:35, 08:04](580 MB) +PASS -- TEST 'hrrr_control_gnu' [06:02, 05:33](846 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:00, 05:37](833 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:24, 05:01](916 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:03, 05:41](808 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:11, 02:54](564 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:08, 02:49](655 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:07, 10:36](840 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:38, 06:38] +PASS -- TEST 'control_diag_debug_gnu' [02:14, 01:41](1270 MB) +PASS -- TEST 'regional_debug_gnu' [11:11, 10:45](743 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:53, 02:41](819 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:48, 02:35](816 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:46, 02:33](826 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:48, 02:36](826 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:17, 02:51](905 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 04:07](819 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:49, 02:37](825 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:47, 02:35](815 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:45, 01:34](455 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:03, 01:53](448 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:15, 01:47](1426 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:55, 02:42](820 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:10, 02:57](818 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:50, 04:22](824 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:40, 02:40] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:24, 04:23] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:46, 09:21](702 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:31, 05:02](708 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:05, 08:36](756 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:01, 04:36](741 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:28, 05:06](705 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:30, 07:02](551 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:53, 02:34](538 MB) +PASS -- TEST 'conus13km_control_gnu' [03:53, 03:14](873 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:53, 06:18](888 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:23, 01:51](558 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:41, 09:40] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:08, 05:42](727 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:25, 06:24] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:51, 02:34](716 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:45, 02:32](714 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:28, 06:55](890 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:40, 07:08](577 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:26, 07:57](889 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:29, 06:59](956 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:25, 06:24] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:56, 02:43](736 MB) + +PASS -- COMPILE 's2swa_gnu' [16:32, 16:32] + +PASS -- COMPILE 's2s_gnu' [15:52, 15:52] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:18, 07:23](1514 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:08, 03:07] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:16, 16:16] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:54, 19:07](1467 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:21, 03:20] + +PASS -- COMPILE 'datm_cdeps_gnu' [15:36, 15:36] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:06, 02:59](697 MB) SYNOPSIS: -Starting Date/Time: 20240821 19:42:31 -Ending Date/Time: 20240821 22:11:33 -Total Time: 02h:29m:20s +Starting Date/Time: 20240826 16:21:26 +Ending Date/Time: 20240826 20:29:01 +Total Time: 04h:07m:50s Compiles Completed: 57/57 -Tests Completed: 242/243 -Failed Tests: -* TEST cpld_control_pdlib_p8_gnu: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1568042/cpld_control_pdlib_p8_gnu/err - -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 HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -3df9dd2e0931e3fda968f8f9949f530a1b7983e0 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2832122 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-n) - RUN SINGLE TEST: cpld_control_pdlib_p8 -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:24] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:03, 24:00](1446 MB) - -SYNOPSIS: -Starting Date/Time: 20240821 22:32:51 -Ending Date/Time: 20240821 23:16:19 -Total Time: 00h:43m:40s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 243/243 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index c5a0f691c7..9093919749 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,18 +1,18 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -3df9dd2e0931e3fda968f8f9949f530a1b7983e0 +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,375 +36,375 @@ 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-20240821 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3147877 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2935643 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:13] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:41, 08:33](2120 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:11, 14:21](1994 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:30, 14:52](2318 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:30, 07:26](1297 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:11, 15:45](1906 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:11, 15:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:53, 13:58](1980 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:44] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:32, 21:59](1964 MB) - -PASS -- COMPILE 's2swa_intel' [12:11, 11:24] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:20, 08:54](2179 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:37, 08:35](2187 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:32, 04:52](1965 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:20, 09:04](2206 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:32, 05:14](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:23, 10:11](2543 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:16, 08:38](2172 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:30, 07:10](2075 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:39, 08:41](2183 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:05, 15:43](2980 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:28, 07:03](2918 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:19, 11:31](3832 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:55, 07:59](3636 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:29, 06:29](2146 MB) - -PASS -- COMPILE 's2sw_intel' [11:11, 10:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:13, 08:13](2019 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:19, 05:21](2089 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:06] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:29, 08:28](2201 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:32] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:16, 05:51](2050 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:11, 10:10] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:18, 04:50](2075 MB) - -PASS -- COMPILE 's2s_intel' [11:11, 10:24] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:59, 08:16](3061 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:59, 03:08](3034 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:54, 02:18](2489 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:34] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:06, 07:26](2173 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:32] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:00, 14:51](2031 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:15, 07:32](1384 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:54, 15:53](1959 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:49] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:04, 23:51](2022 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [10:25, 02:54](712 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:35, 02:31](1607 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:39, 02:36](1624 MB) -PASS -- TEST 'control_latlon_intel' [09:30, 02:30](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:38, 02:32](1609 MB) -PASS -- TEST 'control_c48_intel' [13:36, 06:56](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:30, 05:49](831 MB) -PASS -- TEST 'control_c192_intel' [16:47, 09:08](1758 MB) -PASS -- TEST 'control_c384_intel' [15:37, 09:36](1993 MB) -PASS -- TEST 'control_c384gdas_intel' [12:11, 07:43](1506 MB) -PASS -- TEST 'control_stochy_intel' [04:22, 01:28](670 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:35, 00:53](535 MB) -PASS -- TEST 'control_lndp_intel' [04:22, 01:22](666 MB) -PASS -- TEST 'control_iovr4_intel' [04:28, 02:11](661 MB) -PASS -- TEST 'control_iovr5_intel' [04:28, 02:07](657 MB) -PASS -- TEST 'control_p8_intel' [06:03, 03:16](1903 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:04, 03:25](1907 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 03:14](1896 MB) -PASS -- TEST 'control_restart_p8_intel' [03:48, 01:33](1153 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:50, 03:34](1881 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:07, 02:27](1215 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:50, 03:35](1891 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:44, 03:35](1975 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:39, 05:13](1907 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:17, 04:30](1970 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:10, 03:42](1906 MB) -PASS -- TEST 'merra2_thompson_intel' [09:15, 03:51](1900 MB) -PASS -- TEST 'regional_control_intel' [09:37, 05:28](1197 MB) -PASS -- TEST 'regional_restart_intel' [06:34, 03:33](1173 MB) -PASS -- TEST 'regional_decomp_intel' [09:35, 05:34](1179 MB) -PASS -- TEST 'regional_2threads_intel' [04:39, 03:04](1157 MB) -PASS -- TEST 'regional_noquilt_intel' [08:41, 05:30](1515 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:44, 05:18](1198 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:30, 05:30](1200 MB) -PASS -- TEST 'regional_wofs_intel' [08:31, 05:49](2066 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 09:28] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:58, 07:02](1222 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:54, 03:54](1350 MB) -PASS -- TEST 'rap_decomp_intel' [12:42, 07:00](1154 MB) -PASS -- TEST 'rap_2threads_intel' [11:38, 06:29](1359 MB) -PASS -- TEST 'rap_restart_intel' [07:56, 03:39](1134 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:41, 06:49](1215 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:51, 06:54](1152 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:01, 05:13](1207 MB) -PASS -- TEST 'hrrr_control_intel' [08:37, 03:45](1094 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:35, 03:36](1039 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:47, 03:18](1126 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:21, 02:16](1037 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:00, 07:01](1211 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 08:02](2005 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 08:00](2177 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 08:59] -PASS -- TEST 'control_csawmg_intel' [15:42, 06:22](1050 MB) -PASS -- TEST 'control_ras_intel' [12:22, 02:54](821 MB) - -PASS -- COMPILE 'csawmg_gnu' [07:10, 04:52] -PASS -- TEST 'control_csawmg_gnu' [11:46, 07:59](1068 MB) - -PASS -- COMPILE 'wam_intel' [10:11, 08:59] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [18:45, 09:54](1673 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:11, 08:37] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:59, 03:14](1907 MB) -PASS -- TEST 'regional_control_faster_intel' [08:36, 05:28](1192 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 06:01] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:41, 02:15](1641 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:38, 02:29](1633 MB) -PASS -- TEST 'control_stochy_debug_intel' [10:20, 02:53](853 MB) -PASS -- TEST 'control_lndp_debug_intel' [10:20, 02:31](839 MB) -PASS -- TEST 'control_csawmg_debug_intel' [12:32, 04:55](1155 MB) -PASS -- TEST 'control_ras_debug_intel' [09:23, 02:30](849 MB) -PASS -- TEST 'control_diag_debug_intel' [09:39, 02:31](1703 MB) -PASS -- TEST 'control_debug_p8_intel' [10:37, 03:25](1936 MB) -PASS -- TEST 'regional_debug_intel' [21:37, 16:00](1149 MB) -PASS -- TEST 'rap_control_debug_intel' [07:20, 04:24](1240 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:22, 04:24](1231 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:18, 04:22](1244 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:20](1228 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:36](1236 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:30, 04:32](1325 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 04:31](1236 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:18](1238 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:19, 04:20](1233 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:20, 04:11](1243 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:28](1225 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 04:18](1241 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:19, 07:40](1235 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 04:12](1232 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:21, 05:14](1231 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:29](1232 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:56, 07:23](1231 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:01] -PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:18](1052 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 03:26] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 07:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:16](1234 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:50, 05:22](1142 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:59, 02:52](1034 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:35, 05:08](1280 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:40, 02:42](1038 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:39, 02:59](981 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:51, 04:05](1116 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:32, 01:42](967 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:11, 08:04] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:45, 01:43](1305 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:35, 00:54](1199 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [09:32, 01:08](1152 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 08:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 04:01](1090 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:38] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:19, 04:21](1104 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:19, 03:55](1107 MB) -PASS -- TEST 'conus13km_debug_intel' [19:35, 12:19](1355 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:35, 12:37](990 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:31, 07:25](1252 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:31, 12:24](1418 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:27] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:19, 04:24](1173 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 10:27] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:05, 05:36](847 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 05:53](1240 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:21, 07:20](921 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:04, 14:07](956 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:16, 15:08](979 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 06:17](598 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:25, 08:07](603 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [11:43, 03:24](434 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:03, 08:41](547 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:45, 04:19](601 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:45, 04:05](600 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 05:03](654 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:26, 01:24](455 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 04:27] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:46, 11:30](645 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 10:01] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:48, 16:24](758 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:01, 15:46](838 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 10:02] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:35, 09:44](817 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 10:34] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:08, 05:51](933 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:02, 06:04](916 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:47, 16:32](1340 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 05:03] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:16, 02:13](1140 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [09:18, 01:26](1099 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:09](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:16, 02:10](1012 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:16, 02:13](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:15, 02:15](1135 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:15, 02:16](1139 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:08](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:02, 04:56](1159 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:59, 04:58](1156 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:12](1158 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:03](2444 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:04](2461 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 03:34] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:13](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 05:30] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:15](1157 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:06] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:26, 00:58](337 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:20, 00:50](572 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:22, 00:34](563 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 09:36] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:52, 03:38](2020 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:18] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:57, 04:08](2001 MB) - -PASS -- COMPILE 'atml_intel' [11:10, 08:41] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:09, 05:43](1894 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:07, 05:39](1900 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:46, 03:34](1136 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 04:38] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:59, 05:28](1918 MB) - -PASS -- COMPILE 'atmw_intel' [11:10, 09:18] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:55, 01:47](1950 MB) - -PASS -- COMPILE 'atmaero_intel' [09:11, 08:48] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:50, 05:07](2032 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:48, 04:37](1801 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:42, 04:37](1807 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:33] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:38, 16:49](4601 MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 04:08] -PASS -- TEST 'control_c48_gnu' [16:43, 09:27](1530 MB) -PASS -- TEST 'control_stochy_gnu' [09:23, 02:24](726 MB) -PASS -- TEST 'control_ras_gnu' [10:22, 03:58](732 MB) -PASS -- TEST 'control_p8_gnu' [11:52, 05:04](1729 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [11:47, 04:45](1725 MB) -PASS -- TEST 'control_flake_gnu' [11:25, 04:35](814 MB) - -PASS -- COMPILE 'rrfs_gnu' [09:11, 04:01] -PASS -- TEST 'rap_control_gnu' [14:36, 07:54](1083 MB) -PASS -- TEST 'rap_decomp_gnu' [14:34, 08:23](1082 MB) -PASS -- TEST 'rap_2threads_gnu' [13:51, 07:15](1121 MB) -PASS -- TEST 'rap_restart_gnu' [05:56, 04:29](884 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:53, 08:18](1082 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:35, 08:28](1080 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:57, 06:20](883 MB) -PASS -- TEST 'hrrr_control_gnu' [10:37, 04:19](1069 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [10:38, 04:04](1132 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [09:48, 03:42](1016 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [10:42, 04:14](1068 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:25, 02:12](883 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:30, 02:07](934 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:58, 07:54](1079 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:10, 06:05] -PASS -- TEST 'control_diag_debug_gnu' [07:37, 01:16](1625 MB) -PASS -- TEST 'regional_debug_gnu' [11:36, 07:22](1136 MB) -PASS -- TEST 'rap_control_debug_gnu' [05:21, 02:06](1097 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [05:19, 02:13](1087 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:04](1096 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:19, 02:04](1097 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:36, 02:14](1270 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 03:15](1093 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 02:17](1099 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:18, 02:05](1092 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:10](728 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:18, 01:16](721 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:36, 01:35](1700 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:22, 01:57](1096 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:19, 02:20](1097 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:53, 03:24](1101 MB) - -PASS -- COMPILE 'wam_debug_gnu' [06:11, 03:00] -PASS -- TEST 'control_wam_debug_gnu' [06:53, 05:07](1565 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 04:03] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:38, 07:40](978 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:56, 04:03](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:46, 06:47](969 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:41, 03:36](889 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:40, 04:22](949 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:48, 05:59](865 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:25, 02:07](863 MB) -PASS -- TEST 'conus13km_control_gnu' [03:43, 02:50](1268 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:35, 01:28](1179 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:34, 01:41](940 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 08:53] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:34, 04:40](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:08] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:20, 02:08](977 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:25, 01:51](971 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:36, 05:35](1286 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:35, 05:52](963 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:30, 03:19](1198 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:37, 05:32](1353 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 06:42] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:32, 02:06](1005 MB) - -PASS -- COMPILE 's2swa_gnu' [22:11, 16:59] - -PASS -- COMPILE 's2s_gnu' [19:11, 15:24] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:20, 05:10](2730 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [06:11, 03:44] - -PASS -- COMPILE 's2sw_pdlib_gnu' [20:11, 17:48] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:03, 26:07](3048 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:10, 04:11] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:07, 12:04](2929 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 16:10] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:34](767 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:10, 11:37] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:21, 08:30](2112 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:11, 18:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:36, 13:25](1999 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:32, 14:50](2320 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:20, 07:40](1327 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:24, 15:14](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 17:01] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:57, 13:56](1991 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:10, 05:34] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:29, 22:38](1974 MB) + +PASS -- COMPILE 's2swa_intel' [17:11, 10:28] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:10, 08:46](2178 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:19, 08:53](2177 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:23, 04:52](1978 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:12, 08:42](2201 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:21, 05:27](1737 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:12, 10:20](2535 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:09, 08:52](2171 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:15, 07:00](2078 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:23, 08:52](2172 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:53, 16:00](2985 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:28, 07:03](2923 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:36, 11:06](3837 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:53, 07:19](3647 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:19, 05:36](2145 MB) + +PASS -- COMPILE 's2sw_intel' [19:11, 13:03] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:03, 08:18](2026 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:07, 05:31](2076 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:10, 07:01] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:32, 08:47](2205 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:10, 06:31] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:09, 06:47](2049 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 11:11] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:32, 04:35](2079 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 11:11] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [13:57, 08:09](3064 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [09:53, 04:01](3040 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:40, 01:19](2485 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:11, 12:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:19, 07:27](2176 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:49] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:51, 13:58](2034 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:04, 06:48](1397 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:51, 15:26](1959 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:10] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:09, 23:52](2013 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:10, 09:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:18, 03:43](712 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 02:31](1617 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:45, 02:32](1612 MB) +PASS -- TEST 'control_latlon_intel' [04:28, 02:29](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:33, 02:31](1617 MB) +PASS -- TEST 'control_c48_intel' [09:41, 07:03](1712 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:25, 06:02](833 MB) +PASS -- TEST 'control_c192_intel' [12:43, 09:18](1742 MB) +PASS -- TEST 'control_c384_intel' [12:29, 09:13](1990 MB) +PASS -- TEST 'control_c384gdas_intel' [14:13, 09:55](1506 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:47](674 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:06](548 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:36](670 MB) +PASS -- TEST 'control_iovr4_intel' [04:21, 02:31](662 MB) +PASS -- TEST 'control_iovr5_intel' [04:21, 02:34](668 MB) +PASS -- TEST 'control_p8_intel' [05:12, 02:39](1901 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:12, 02:45](1903 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:09, 02:38](1895 MB) +PASS -- TEST 'control_restart_p8_intel' [06:55, 02:29](1153 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:50, 02:36](1891 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:53, 02:21](1199 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:47, 02:44](1883 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:39, 02:26](1982 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:38, 04:35](1908 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 04:04](1968 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:50, 02:46](1917 MB) +PASS -- TEST 'merra2_thompson_intel' [05:20, 02:57](1903 MB) +PASS -- TEST 'regional_control_intel' [06:31, 04:39](1188 MB) +PASS -- TEST 'regional_restart_intel' [04:24, 02:42](1169 MB) +PASS -- TEST 'regional_decomp_intel' [06:28, 04:55](1184 MB) +PASS -- TEST 'regional_2threads_intel' [08:36, 03:45](1151 MB) +PASS -- TEST 'regional_noquilt_intel' [09:39, 05:08](1521 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:30, 05:32](1196 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:22, 05:25](1206 MB) +PASS -- TEST 'regional_wofs_intel' [10:23, 05:47](2077 MB) + +PASS -- COMPILE 'rrfs_intel' [10:11, 08:32] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:49, 06:50](1198 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:49, 03:48](1357 MB) +PASS -- TEST 'rap_decomp_intel' [13:04, 07:02](1155 MB) +PASS -- TEST 'rap_2threads_intel' [11:53, 06:34](1366 MB) +PASS -- TEST 'rap_restart_intel' [07:59, 03:33](1156 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:52, 06:48](1203 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:07, 07:06](1148 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:04, 05:03](1195 MB) +PASS -- TEST 'hrrr_control_intel' [09:55, 03:30](1081 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:55, 03:38](1048 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:59, 03:13](1110 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:25, 01:52](1026 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:01, 06:41](1184 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 07:45](2009 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 07:33](2167 MB) + +PASS -- COMPILE 'csawmg_intel' [09:11, 08:04] +PASS -- TEST 'control_csawmg_intel' [07:36, 05:34](1047 MB) +PASS -- TEST 'control_ras_intel' [04:21, 02:53](817 MB) + +PASS -- COMPILE 'csawmg_gnu' [07:10, 04:23] +PASS -- TEST 'control_csawmg_gnu' [09:42, 07:20](1067 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 09:21] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:35, 09:57](1666 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 08:11] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:53, 03:11](1903 MB) +PASS -- TEST 'regional_control_faster_intel' [08:34, 05:27](1197 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 06:06] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:33, 02:41](1644 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 02:39](1640 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:02](841 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:18, 02:50](848 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:24, 05:11](1155 MB) +PASS -- TEST 'control_ras_debug_intel' [06:19, 02:49](858 MB) +PASS -- TEST 'control_diag_debug_intel' [05:42, 02:40](1698 MB) +PASS -- TEST 'control_debug_p8_intel' [06:35, 03:38](1928 MB) +PASS -- TEST 'regional_debug_intel' [20:29, 17:18](1153 MB) +PASS -- TEST 'rap_control_debug_intel' [07:20, 04:50](1234 MB) +PASS -- TEST 'hrrr_control_debug_intel' [12:22, 04:39](1230 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [11:17, 04:34](1231 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [12:18, 04:49](1224 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:17, 04:36](1230 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:24, 05:02](1319 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:17, 04:36](1235 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:17, 04:51](1235 MB) +PASS -- TEST 'rap_lndp_debug_intel' [15:17, 04:50](1239 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:17, 04:51](1242 MB) +PASS -- TEST 'rap_noah_debug_intel' [15:18, 04:52](1239 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [15:19, 04:44](1232 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:18, 07:28](1234 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [16:18, 04:37](1226 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [16:24, 05:35](1243 MB) +PASS -- TEST 'rap_flake_debug_intel' [14:18, 04:28](1238 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:52, 08:14](1238 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 03:49] +PASS -- TEST 'control_csawmg_debug_gnu' [12:32, 03:00](1053 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 03:48] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:48, 03:41](1240 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:45, 05:32](1130 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:35, 02:58](1039 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:33, 05:12](1290 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:39, 02:41](1018 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:39, 03:06](991 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:55, 04:06](1100 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:20, 01:37](963 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:10, 07:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:46, 01:53](1286 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:27, 00:44](1200 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:25, 01:02](1144 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:31, 03:51](1075 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 03:41] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:17, 04:49](1112 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:17, 05:04](1099 MB) +PASS -- TEST 'conus13km_debug_intel' [17:31, 15:12](1332 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:33, 14:56](1000 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:30, 11:41](1246 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:25, 15:17](1417 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 03:43] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 04:31](1161 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 10:09] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:07, 05:34](858 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:20, 05:00](1260 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:13, 06:21](926 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:02, 14:07](974 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:08, 15:31](1002 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:03, 05:34](591 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:16, 07:10](605 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:42, 02:35](433 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:54, 07:33](550 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:48, 03:52](603 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:50, 03:42](608 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:50, 04:56](647 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:25, 01:17](451 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 04:02] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:41, 11:58](673 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:12, 09:45] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:12, 16:34](846 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:55, 16:05](837 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 09:45] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:22, 09:24](820 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 09:35] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [15:04, 07:05](921 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:04, 07:06](895 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:45, 16:42](1345 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:17, 02:11](1142 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:22](1100 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:17, 02:06](1022 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:16, 02:08](1014 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:17, 02:11](1013 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:14, 02:10](1160 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:15, 02:11](1147 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:08](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:54, 04:56](1161 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:47, 04:54](1160 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:15](1172 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 03:02](2453 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:11](2456 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:49] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:15](1076 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 05:52] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:13](1165 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:01] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 01:04](334 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:55](573 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:35](561 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:30] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:01, 04:35](2012 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:19] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:03, 04:50](1986 MB) + +PASS -- COMPILE 'atml_intel' [10:11, 08:48] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:11, 06:51](1902 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:07, 06:03](1908 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:38, 04:19](1154 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 04:52] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:58, 06:10](1916 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 08:46] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:51, 02:42](1938 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 08:13] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:52, 04:57](2011 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:50, 04:31](1807 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:39, 04:26](1819 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:11, 03:47] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:47, 16:41](4634 MB) + +PASS -- COMPILE 'atm_gnu' [08:11, 04:22] +PASS -- TEST 'control_c48_gnu' [12:40, 09:26](1548 MB) +PASS -- TEST 'control_stochy_gnu' [05:24, 02:27](726 MB) +PASS -- TEST 'control_ras_gnu' [06:17, 04:07](731 MB) +PASS -- TEST 'control_p8_gnu' [06:47, 04:11](1704 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:39, 03:53](1726 MB) +PASS -- TEST 'control_flake_gnu' [07:21, 04:46](806 MB) + +PASS -- COMPILE 'rrfs_gnu' [07:10, 04:08] +PASS -- TEST 'rap_control_gnu' [10:41, 08:38](1082 MB) +PASS -- TEST 'rap_decomp_gnu' [10:41, 08:40](1081 MB) +PASS -- TEST 'rap_2threads_gnu' [10:34, 07:58](1110 MB) +PASS -- TEST 'rap_restart_gnu' [06:59, 04:12](884 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:46, 08:10](1083 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:33, 08:31](1080 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:52, 06:08](884 MB) +PASS -- TEST 'hrrr_control_gnu' [06:54, 04:22](1070 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:51, 04:15](1138 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:49, 03:54](1022 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:31, 04:29](1066 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:45, 02:12](885 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:46, 02:09](934 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:53, 08:01](1081 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 06:11] +PASS -- TEST 'control_diag_debug_gnu' [03:30, 01:21](1624 MB) +PASS -- TEST 'regional_debug_gnu' [08:25, 06:44](1106 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:28, 02:16](1097 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:16, 02:05](1089 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:11](1093 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:16, 02:00](1100 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:26, 02:54](1266 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 03:25](1093 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:23](1094 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:18, 02:14](1092 MB) +PASS -- TEST 'control_ras_debug_gnu' [04:17, 01:38](726 MB) +PASS -- TEST 'control_stochy_debug_gnu' [04:16, 01:46](722 MB) +PASS -- TEST 'control_debug_p8_gnu' [05:29, 03:01](1699 MB) +PASS -- TEST 'rap_flake_debug_gnu' [06:18, 02:11](1097 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [05:18, 02:15](1097 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:48, 03:32](1101 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:25] +PASS -- TEST 'control_wam_debug_gnu' [07:51, 05:24](1559 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:11, 04:48] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:44, 08:14](965 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:36, 04:05](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:44, 06:57](976 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:54, 03:45](886 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:35, 04:11](953 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:44, 06:13](863 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:21, 02:15](861 MB) +PASS -- TEST 'conus13km_control_gnu' [05:36, 02:47](1270 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:30, 01:09](1182 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:29, 01:28](937 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:10, 11:06] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:46, 04:39](991 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 05:53] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:18, 02:09](978 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:18, 01:58](970 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:34, 05:42](1291 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:30, 05:59](978 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:28, 03:28](1193 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:28, 05:38](1352 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:10, 06:29] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:19, 02:09](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [23:10, 17:09] + +PASS -- COMPILE 's2s_gnu' [22:10, 16:43] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:03, 05:08](3072 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [10:10, 04:46] + +PASS -- COMPILE 's2sw_pdlib_gnu' [21:10, 17:23] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:58, 25:52](2912 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:10, 03:20] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:46, 11:58](2946 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [22:10, 15:38] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:27](772 MB) SYNOPSIS: -Starting Date/Time: 20240822 08:11:58 -Ending Date/Time: 20240822 10:07:25 -Total Time: 01h:56m:17s +Starting Date/Time: 20240826 11:16:18 +Ending Date/Time: 20240826 13:18:16 +Total Time: 02h:02m:53s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 441b624429..2559d4ea50 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,18 +1,18 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -6ccfb11529c2bd172bc7d4956eadfab0b55bf12d +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,253 +36,253 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_271319 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2302393 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [43:14, 42:23] ( 1 warnings 1378 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:10, 06:56](2012 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:31] ( 1 warnings 1425 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:05, 20:32](1886 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:26, 21:50](2016 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:07, 10:01](1124 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:05, 23:49](1861 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:14, 48:57] ( 1 warnings 1422 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:49, 20:09](1885 MB) - -PASS -- COMPILE 's2swa_intel' [43:14, 42:22] ( 1379 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:07, 07:30](2055 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:21, 07:25](2045 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:22, 04:18](1719 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:07, 07:32](2079 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:21, 04:25](1737 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:03, 07:09](2327 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:03, 07:27](2054 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:14, 06:20](2005 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:20, 07:34](2068 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:14, 07:05](2035 MB) - -PASS -- COMPILE 's2sw_intel' [41:14, 40:26] ( 1277 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:26, 05:48](1912 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:43, 05:44](1972 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:30] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:17, 10:29](2092 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:49] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:59, 07:18](1936 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [36:13, 35:43] ( 1008 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:20, 05:28](1979 MB) - -PASS -- COMPILE 's2s_intel' [37:13, 36:13] ( 1013 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:51, 11:57](3021 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 03:26](3015 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:04, 02:00](2452 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:25, 33:28] ( 1607 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:45, 06:53](2050 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:15, 48:44] ( 1337 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:19, 18:50](1927 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:20, 10:00](1136 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:19, 24:04](1889 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:54] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:11, 33:02](1935 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:14, 37:18] ( 1 warnings 1124 remarks ) -PASS -- TEST 'control_flake_intel' [05:31, 04:25](653 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:05, 03:46](1557 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:07, 03:52](1556 MB) -PASS -- TEST 'control_latlon_intel' [13:03, 03:48](1545 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:10, 03:55](1544 MB) -PASS -- TEST 'control_c48_intel' [19:13, 11:41](1707 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:38, 10:13](831 MB) -PASS -- TEST 'control_c192_intel' [16:19, 14:20](1680 MB) -PASS -- TEST 'control_c384_intel' [20:13, 17:57](1794 MB) -PASS -- TEST 'control_c384gdas_intel' [17:08, 13:21](1008 MB) -PASS -- TEST 'control_stochy_intel' [03:31, 02:11](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:28, 01:17](435 MB) -PASS -- TEST 'control_lndp_intel' [03:31, 02:06](604 MB) -PASS -- TEST 'control_iovr4_intel' [04:33, 03:20](605 MB) -PASS -- TEST 'control_iovr5_intel' [04:32, 03:16](598 MB) -PASS -- TEST 'control_p8_intel' [06:28, 04:06](1842 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [13:27, 04:01](1842 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:16, 03:50](1845 MB) -PASS -- TEST 'control_restart_p8_intel' [05:54, 02:14](1052 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:21, 03:54](1828 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:11](1071 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:18, 04:01](1834 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:17, 03:41](1925 MB) -PASS -- TEST 'control_p8_lndp_intel' [15:09, 06:59](1839 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:19, 05:11](1896 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:23, 03:58](1845 MB) -PASS -- TEST 'merra2_thompson_intel' [10:19, 04:19](1842 MB) -PASS -- TEST 'regional_control_intel' [08:01, 07:07](1007 MB) -PASS -- TEST 'regional_restart_intel' [05:34, 03:55](1005 MB) -PASS -- TEST 'regional_decomp_intel' [09:01, 07:31](998 MB) -PASS -- TEST 'regional_2threads_intel' [06:01, 04:26](999 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:44, 07:04](1018 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [14:35, 07:06](990 MB) - -PASS -- COMPILE 'rrfs_intel' [47:16, 36:44] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [11:39, 10:14](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:10, 05:32](1171 MB) -PASS -- TEST 'rap_decomp_intel' [11:36, 10:42](991 MB) -PASS -- TEST 'rap_2threads_intel' [10:48, 09:44](1079 MB) -PASS -- TEST 'rap_restart_intel' [06:46, 05:11](994 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:41, 10:11](992 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:41, 10:47](982 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:49, 07:32](997 MB) -PASS -- TEST 'hrrr_control_intel' [06:44, 05:16](988 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:44, 05:26](980 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:47, 04:49](1059 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:51](920 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:51, 10:09](988 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:29, 12:30](1950 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:28, 12:12](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [39:19, 34:31] ( 1089 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:45, 08:06](956 MB) -PASS -- TEST 'control_ras_intel' [05:29, 04:22](666 MB) - -PASS -- COMPILE 'wam_intel' [35:17, 34:21] ( 992 remarks ) -PASS -- TEST 'control_wam_intel' [15:55, 14:18](1626 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [50:17, 36:02] ( 1292 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:56, 03:38](1841 MB) -PASS -- TEST 'regional_control_faster_intel' [08:40, 06:35](999 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:22] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 03:24](1578 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 03:20](1581 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:51](781 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 03:27](781 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 05:33](1092 MB) -PASS -- TEST 'control_ras_debug_intel' [04:26, 03:31](787 MB) -PASS -- TEST 'control_diag_debug_intel' [04:51, 03:28](1642 MB) -PASS -- TEST 'control_debug_p8_intel' [05:48, 03:50](1872 MB) -PASS -- TEST 'regional_debug_intel' [23:51, 22:05](1045 MB) -PASS -- TEST 'rap_control_debug_intel' [07:27, 06:12](1165 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:26, 06:06](1156 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:26, 06:11](1163 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:26, 06:14](1161 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:12](1162 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:39, 06:31](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 06:19](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:17](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:27, 06:11](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:06](1162 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:58](1165 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 06:06](1163 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:01](1168 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 06:01](1165 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:27, 07:18](1169 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:06](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:48, 10:39](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:12] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:51, 16:42](1654 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [36:16, 30:38] ( 3 warnings 1024 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [26:09, 05:05](1067 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [32:47, 08:15](905 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [29:48, 04:25](879 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [30:50, 07:54](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:48, 04:04](906 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [30:44, 04:48](865 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:45, 06:23](900 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [12:34, 02:25](854 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [04:19, 31:43] ( 3 warnings 1197 remarks ) -PASS -- TEST 'conus13km_control_intel' [11:58, 02:51](1104 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:15](1038 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:33](1022 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [03:18, 31:07] ( 3 warnings 1044 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:51, 05:32](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [26:15, 05:12] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [40:30, 06:05](1050 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [40:29, 05:57](1043 MB) -PASS -- TEST 'conus13km_debug_intel' [55:02, 18:49](1157 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [55:02, 18:57](868 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [35:52, 10:50](1100 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [54:57, 18:46](1227 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:14, 05:06] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [40:29, 06:13](1080 MB) - -PASS -- COMPILE 'hafsw_intel' [02:17, 39:01] ( 1 warnings 1416 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:24, 06:50](702 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:16](1082 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:40, 09:03](762 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:28, 16:06](784 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:43, 18:06](801 MB) -PASS -- TEST 'gnv1_nested_intel' [08:43, 06:30](1680 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:19, 35:26] ( 1263 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:24, 08:29](756 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:21, 08:30](739 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [44:16, 08:22] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 03:36](1084 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:12](1028 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:30](935 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 03:34](929 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:35](929 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 03:36](1064 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:39](1076 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 03:30](934 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:19, 07:43](894 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:43](849 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1072 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:03](2363 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 05:09](2420 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [12:13, 03:30] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:24, 08:02](1004 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [17:12, 08:24] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 03:36](1073 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 01:48] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:21](241 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:08](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:42](259 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [36:13, 35:40] ( 1013 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:06, 04:53](1904 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [35:13, 35:06] ( 1013 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:35, 04:36](1902 MB) - -PASS -- COMPILE 'atml_intel' [38:14, 37:32] ( 8 warnings 1165 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:00, 06:22](1862 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 06:12](1864 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:53, 03:15](1069 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 06:24] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:11, 07:24](1896 MB) - -PASS -- COMPILE 'atmw_intel' [36:14, 35:47] ( 1258 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:57, 02:20](1859 MB) - -PASS -- COMPILE 'atmaero_intel' [36:14, 35:17] ( 1096 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:01, 05:17](1942 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:00, 06:17](1720 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:50, 06:22](1729 MB) +PASS -- COMPILE 's2swa_32bit_intel' [54:18, 41:37] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:21, 06:47](2020 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [03:20, 50:38] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [55:14, 20:37](1903 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:44, 22:03](2014 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:20, 10:03](1130 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [56:18, 23:44](1849 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [00:20, 48:10] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [55:59, 20:23](1888 MB) + +PASS -- COMPILE 's2swa_intel' [54:18, 42:43] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:10, 07:13](2060 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:42, 07:25](2062 MB) +PASS -- TEST 'cpld_restart_p8_intel' [38:23, 04:16](1721 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:13, 07:25](2072 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [39:24, 04:21](1741 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:05, 07:00](2315 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:06, 07:21](2048 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:21, 06:13](2009 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:32, 07:17](2059 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [48:30, 07:06](2035 MB) + +PASS -- COMPILE 's2sw_intel' [52:18, 39:49] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:20, 05:48](1910 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:37, 05:44](1976 MB) + +PASS -- COMPILE 's2swa_debug_intel' [49:17, 06:28] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:25, 10:31](2092 MB) + +PASS -- COMPILE 's2sw_debug_intel' [47:18, 06:09] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:08, 07:18](1940 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:22, 36:15] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:30, 05:35](1979 MB) + +PASS -- COMPILE 's2s_intel' [12:20, 36:52] ( 1015 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [13:54, 11:58](3026 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:55, 03:30](3017 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:49, 01:55](2462 MB) + +PASS -- COMPILE 's2swa_faster_intel' [05:29, 33:05] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:35, 06:59](2058 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [50:17, 47:53] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:21, 20:48](1915 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:25, 10:12](1125 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:18, 23:52](1892 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:13, 06:05] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:18, 33:03](1938 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:36] ( 1 warnings 1126 remarks ) +PASS -- TEST 'control_flake_intel' [06:32, 04:31](647 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:07, 03:53](1547 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:13, 04:10](1557 MB) +PASS -- TEST 'control_latlon_intel' [06:03, 03:53](1544 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:13, 03:53](1554 MB) +PASS -- TEST 'control_c48_intel' [17:13, 11:52](1703 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:39, 09:08](832 MB) +PASS -- TEST 'control_c192_intel' [17:25, 14:09](1669 MB) +PASS -- TEST 'control_c384_intel' [24:29, 17:57](1800 MB) +PASS -- TEST 'control_c384gdas_intel' [20:13, 13:16](1009 MB) +PASS -- TEST 'control_stochy_intel' [04:31, 02:11](606 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:26, 01:16](436 MB) +PASS -- TEST 'control_lndp_intel' [04:31, 02:06](606 MB) +PASS -- TEST 'control_iovr4_intel' [05:34, 03:16](602 MB) +PASS -- TEST 'control_iovr5_intel' [05:32, 03:19](602 MB) +PASS -- TEST 'control_p8_intel' [07:29, 04:09](1844 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:41, 04:02](1844 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:22, 04:00](1835 MB) +PASS -- TEST 'control_restart_p8_intel' [04:54, 02:21](1053 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:21, 03:49](1831 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:54, 02:15](1069 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:19, 04:06](1826 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:23, 03:54](1919 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:11, 07:10](1843 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:25, 05:16](1902 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:26, 03:58](1855 MB) +PASS -- TEST 'merra2_thompson_intel' [07:20, 04:31](1844 MB) +PASS -- TEST 'regional_control_intel' [15:01, 07:09](1010 MB) +PASS -- TEST 'regional_restart_intel' [05:37, 03:47](1004 MB) +PASS -- TEST 'regional_decomp_intel' [16:01, 07:36](1004 MB) +PASS -- TEST 'regional_2threads_intel' [07:02, 04:30](999 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [15:08, 07:02](1010 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [15:00, 07:09](1005 MB) + +PASS -- COMPILE 'rrfs_intel' [39:17, 37:24] ( 3 warnings 1102 remarks ) +PASS -- TEST 'rap_control_intel' [12:50, 10:13](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:10, 05:45](1173 MB) +PASS -- TEST 'rap_decomp_intel' [13:42, 10:51](988 MB) +PASS -- TEST 'rap_2threads_intel' [12:49, 09:50](1081 MB) +PASS -- TEST 'rap_restart_intel' [07:46, 05:16](990 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:50, 10:13](991 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:42, 10:45](985 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:46, 07:36](999 MB) +PASS -- TEST 'hrrr_control_intel' [07:48, 05:22](988 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:48, 05:27](977 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:48, 04:53](1056 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:41](921 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:04, 10:09](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:31, 12:35](1949 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:32, 12:12](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [36:13, 34:13] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:40, 08:13](964 MB) +PASS -- TEST 'control_ras_intel' [06:26, 04:28](672 MB) + +PASS -- COMPILE 'wam_intel' [36:14, 34:32] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [16:49, 14:22](1621 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [40:14, 36:26] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:54, 03:38](1829 MB) +PASS -- TEST 'regional_control_faster_intel' [08:35, 06:33](1002 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:36] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:53, 03:22](1579 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:54, 03:14](1576 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:55](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:29, 03:33](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:46, 05:31](1095 MB) +PASS -- TEST 'control_ras_debug_intel' [05:29, 03:34](788 MB) +PASS -- TEST 'control_diag_debug_intel' [07:53, 03:24](1631 MB) +PASS -- TEST 'control_debug_p8_intel' [07:52, 03:46](1869 MB) +PASS -- TEST 'regional_debug_intel' [25:50, 21:56](1039 MB) +PASS -- TEST 'rap_control_debug_intel' [08:33, 06:19](1170 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:32, 06:11](1160 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 06:12](1173 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:32, 06:18](1172 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:33, 06:18](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:50, 06:35](1258 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:33, 06:25](1167 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:30, 06:27](1170 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:27, 06:10](1176 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:27, 06:14](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:03](1165 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:27, 06:14](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:24, 10:01](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:24, 06:04](1166 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:25, 07:21](1168 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:25, 06:08](1165 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 10:44](1176 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:12] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:53, 16:38](1648 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:31] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:08, 05:24](1045 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:38, 08:20](907 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:36, 04:21](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:48, 07:52](949 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 04:00](908 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:36, 04:32](864 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:41, 06:14](903 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:22](848 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:13, 31:54] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:49, 02:48](1105 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:40, 01:23](1046 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:51](1018 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:12, 31:03] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:57, 05:36](917 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:12] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:43, 05:59](1045 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 05:53](1047 MB) +PASS -- TEST 'conus13km_debug_intel' [21:57, 19:11](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:58, 18:51](860 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:48](1105 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:53, 18:48](1226 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:56] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 06:10](1083 MB) + +PASS -- COMPILE 'hafsw_intel' [40:14, 39:09] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:17, 06:59](704 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:30, 06:37](1060 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [20:36, 09:06](760 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [21:35, 16:12](788 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:40, 18:38](804 MB) +PASS -- TEST 'gnv1_nested_intel' [34:57, 06:21](1678 MB) + +PASS -- COMPILE 'hafs_all_intel' [37:14, 35:33] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:34, 08:37](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:34, 08:43](737 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:05] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:33](1072 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 02:11](1037 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 03:30](935 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:31](934 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:34](934 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:33](1055 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:23, 03:35](1075 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:27](931 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:18, 07:42](900 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:44, 07:38](851 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:35](1070 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:01](2362 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:24, 05:06](2425 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:22] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:22, 08:07](1023 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:18] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:34](1076 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:52] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:35, 01:23](241 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:30, 01:05](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:42](261 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:14, 35:39] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:58, 04:49](1906 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:13, 35:17] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:14, 04:38](1908 MB) + +PASS -- COMPILE 'atml_intel' [39:13, 37:31] ( 8 warnings 1167 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:24, 06:00](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:25, 06:01](1834 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:44, 03:15](1070 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:24] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [30:18, 07:26](1894 MB) + +PASS -- COMPILE 'atmw_intel' [37:13, 36:04] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:55, 02:21](1865 MB) + +PASS -- COMPILE 'atmaero_intel' [38:14, 34:56] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:00, 05:19](1930 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:00, 06:18](1719 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:49, 06:24](1739 MB) SYNOPSIS: -Starting Date/Time: 20240822 14:44:21 -Ending Date/Time: 20240822 19:32:08 -Total Time: 04h:48m:27s +Starting Date/Time: 20240826 15:55:56 +Ending Date/Time: 20240826 20:48:51 +Total Time: 04h:53m:24s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index ff4afde445..cb3bd91174 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,18 +1,18 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -3df9dd2e0931e3fda968f8f9949f530a1b7983e0 +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,284 +36,284 @@ 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-20240821 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_828849 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2331418 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:52] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:43, 14:25](2074 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 18:07](1960 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:10, 19:07](2126 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 09:03](1219 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:44, 20:14](1870 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:23] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:43, 17:43](1948 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 09:36] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:36, 27:26](1925 MB) - -PASS -- COMPILE 's2swa_intel' [17:11, 16:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:31, 14:23](2135 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:43, 14:24](2137 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:50, 07:52](1821 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:31, 14:30](2167 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:50, 07:59](1700 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:30, 13:28](2428 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:32, 14:44](2135 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 12:21](2039 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:42, 14:24](2134 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:29, 16:17](2715 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:09, 08:29](2712 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:21, 11:39](3690 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:11, 07:20](3494 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:22, 05:56](2113 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 16:08] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:06, 13:40](1978 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:14, 04:49](2051 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:23] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:22, 08:36](2158 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 09:06] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:07, 06:16](2005 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:35] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:12, 04:46](2038 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 14:24] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:55, 09:59](3059 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:54, 03:28](3036 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:59, 02:05](2483 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:24, 15:00](2132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:24] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:23, 18:12](1989 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:34, 09:26](1237 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:20, 20:27](1913 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 07:53] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:11, 29:30](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 13:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:25, 03:41](685 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:50, 03:10](1585 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:54, 03:16](1584 MB) -PASS -- TEST 'control_latlon_intel' [04:45, 03:13](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:55, 03:14](1582 MB) -PASS -- TEST 'control_c48_intel' [10:53, 09:28](1711 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:33, 08:04](844 MB) -PASS -- TEST 'control_c192_intel' [12:57, 11:40](1717 MB) -PASS -- TEST 'control_c384_intel' [14:56, 12:49](1956 MB) -PASS -- TEST 'control_c384gdas_intel' [12:48, 09:44](1326 MB) -PASS -- TEST 'control_stochy_intel' [02:23, 01:49](640 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:03](476 MB) -PASS -- TEST 'control_lndp_intel' [02:23, 01:43](642 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:43](637 MB) -PASS -- TEST 'control_iovr5_intel' [03:28, 02:42](643 MB) -PASS -- TEST 'control_p8_intel' [05:11, 03:34](1874 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:17, 03:31](1884 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:24, 03:20](1875 MB) -PASS -- TEST 'control_restart_p8_intel' [03:16, 02:05](1088 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:15, 03:24](1878 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 02:01](1137 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:10, 03:29](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:07, 03:41](1960 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 06:03](1869 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:35, 04:50](1937 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:21, 03:27](1888 MB) -PASS -- TEST 'merra2_thompson_intel' [05:35, 03:46](1879 MB) -PASS -- TEST 'regional_control_intel' [07:38, 06:29](1084 MB) -PASS -- TEST 'regional_restart_intel' [04:36, 03:42](1077 MB) -PASS -- TEST 'regional_decomp_intel' [07:35, 06:47](1071 MB) -PASS -- TEST 'regional_2threads_intel' [05:40, 04:38](1067 MB) -PASS -- TEST 'regional_noquilt_intel' [07:42, 06:26](1383 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:45, 06:35](1078 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 06:29](1081 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 07:51](1901 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 13:00] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:26, 08:25](1058 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:58, 05:10](1257 MB) -PASS -- TEST 'rap_decomp_intel' [10:10, 08:39](1024 MB) -PASS -- TEST 'rap_2threads_intel' [09:56, 08:30](1150 MB) -PASS -- TEST 'rap_restart_intel' [06:39, 04:23](1032 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:09, 08:19](1054 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:02, 08:41](1013 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 06:14](1076 MB) -PASS -- TEST 'hrrr_control_intel' [06:00, 04:19](1024 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:56, 04:25](1016 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 04:09](1084 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:46, 02:20](947 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:21, 08:15](1051 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:58](1983 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:29, 09:45](2024 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 12:13] -PASS -- TEST 'control_csawmg_intel' [07:31, 06:41](1018 MB) -PASS -- TEST 'control_ras_intel' [04:25, 03:28](720 MB) - -PASS -- COMPILE 'wam_intel' [13:10, 12:26] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:45, 12:39](1659 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 12:59] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:25, 03:19](1881 MB) -PASS -- TEST 'regional_control_faster_intel' [07:37, 06:11](1071 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 09:41] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 02:43](1618 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:41, 02:44](1620 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:11](824 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:19, 02:45](820 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:45, 04:20](1127 MB) -PASS -- TEST 'control_ras_debug_intel' [03:22, 02:45](826 MB) -PASS -- TEST 'control_diag_debug_intel' [03:50, 02:49](1677 MB) -PASS -- TEST 'control_debug_p8_intel' [04:50, 03:12](1922 MB) -PASS -- TEST 'regional_debug_intel' [18:42, 17:48](1091 MB) -PASS -- TEST 'rap_control_debug_intel' [05:23, 04:56](1202 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:28, 04:47](1207 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:22, 04:58](1207 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:24, 05:04](1210 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 04:58](1205 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:31, 05:16](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:21, 05:00](1204 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 05:05](1213 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:57](1210 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 05:02](1206 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:48](1203 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 05:01](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 08:03](1201 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 04:51](1198 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 06:10](1206 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:21, 04:55](1208 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:21](1205 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:10, 06:42] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:53, 13:25](1690 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 12:18] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 04:56](1127 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:19, 07:08](1002 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:41, 03:46](928 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:53, 07:18](1064 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 03:42](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:07, 04:01](896 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:24, 05:23](980 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:49, 02:02](880 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:50, 02:44](1164 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:16](1109 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:50, 01:31](1060 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:29] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:47, 04:35](973 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 07:04] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 04:52](1081 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:51](1086 MB) -PASS -- TEST 'conus13km_debug_intel' [15:53, 14:29](1226 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:52](940 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:44, 08:35](1169 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:52, 14:44](1294 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 04:57](1139 MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 14:13] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:21, 06:12](734 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:25, 06:42](1114 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:31, 07:44](816 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:15, 24:41](850 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:22, 29:02](873 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:07, 07:06](501 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:40, 08:37](504 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:01, 03:27](371 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:34, 09:35](480 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:05, 04:44](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:53, 04:31](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:09, 05:43](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:34](402 MB) -PASS -- TEST 'gnv1_nested_intel' [07:17, 04:20](1724 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:10, 06:47] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:10, 13:52](589 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:11, 14:13] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:58, 13:01](670 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:26, 12:57](725 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 14:09] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:26, 08:41](716 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 13:56] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:17, 07:35](814 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 07:35](800 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:56, 16:26](1198 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:00] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:59](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:56](1110 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:20, 02:53](1022 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:58](1023 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:55](1016 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 03:03](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:21, 03:02](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:52](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:36](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:06, 06:28](1010 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:59](1149 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:21](2452 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:24](2452 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:37] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:30](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:30] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 03:01](1160 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:25] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:01](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:57](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:40](324 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:10, 13:44] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:12, 04:11](1979 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:10, 12:53] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:11, 03:59](1951 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 13:46] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:38, 04:51](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:27, 05:01](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:12, 02:54](1069 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 07:38] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:35, 06:04](1886 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 13:15] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:23, 02:10](1904 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 13:21] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:20, 04:34](1986 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 05:22](1766 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:05, 05:21](1785 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:10, 06:21] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:59, 20:37](4559 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:12, 18:54] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:07, 14:26](2077 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 22:53] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [28:39, 18:20](1961 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:19, 19:11](2128 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 09:15](1185 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:39, 20:26](1868 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:12, 22:53] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:01, 17:45](1939 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:11, 09:56] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [35:47, 27:39](1930 MB) + +PASS -- COMPILE 's2swa_intel' [20:12, 18:54] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [22:48, 14:49](2128 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:03, 14:37](2114 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:01, 08:03](1819 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [22:47, 14:41](2139 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:59, 08:08](1705 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [21:37, 13:44](2436 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [22:48, 14:42](2123 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [20:44, 12:34](2037 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:48, 15:08](2128 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [26:47, 17:23](2717 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:23, 09:02](2726 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:32, 12:54](3726 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:06, 07:23](3496 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:32, 06:02](2111 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 16:27] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [22:28, 13:48](1977 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:43, 05:19](2048 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:11, 09:30] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:20, 08:59](2160 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:41] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:12, 06:22](1991 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:40] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:35, 05:01](2028 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 15:05] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [17:13, 10:19](3058 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [10:12, 03:27](3033 MB) +PASS -- TEST 'cpld_restart_c48_intel' [10:09, 02:33](2495 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:11, 20:29] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:30, 15:00](2134 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [27:12, 20:54] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:21, 18:40](1986 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:30, 09:20](1236 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:12, 20:55](1914 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 09:56] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:12, 29:57](1970 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [21:11, 14:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:34, 03:46](691 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:06, 03:17](1590 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:11, 03:15](1597 MB) +PASS -- TEST 'control_latlon_intel' [05:47, 03:11](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:18](1588 MB) +PASS -- TEST 'control_c48_intel' [11:51, 09:31](1709 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:38, 08:12](844 MB) +PASS -- TEST 'control_c192_intel' [13:58, 11:50](1729 MB) +PASS -- TEST 'control_c384_intel' [16:35, 13:10](1980 MB) +PASS -- TEST 'control_c384gdas_intel' [15:12, 10:00](1330 MB) +PASS -- TEST 'control_stochy_intel' [03:27, 01:52](646 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:40, 01:06](484 MB) +PASS -- TEST 'control_lndp_intel' [04:28, 01:45](650 MB) +PASS -- TEST 'control_iovr4_intel' [05:32, 02:47](643 MB) +PASS -- TEST 'control_iovr5_intel' [04:31, 02:42](645 MB) +PASS -- TEST 'control_p8_intel' [06:25, 03:31](1876 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:20, 03:39](1886 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:35, 03:34](1886 MB) +PASS -- TEST 'control_restart_p8_intel' [04:13, 02:07](1096 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:11, 03:24](1880 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:35, 02:12](1122 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:08, 03:29](1870 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:06, 03:40](1954 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:03, 06:14](1884 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:36, 04:56](1934 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:31, 03:40](1882 MB) +PASS -- TEST 'merra2_thompson_intel' [06:36, 03:48](1891 MB) +PASS -- TEST 'regional_control_intel' [08:37, 06:35](1084 MB) +PASS -- TEST 'regional_restart_intel' [05:48, 03:35](1077 MB) +PASS -- TEST 'regional_decomp_intel' [08:37, 06:52](1081 MB) +PASS -- TEST 'regional_2threads_intel' [06:35, 04:44](1066 MB) +PASS -- TEST 'regional_noquilt_intel' [08:37, 06:28](1381 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:40, 06:57](1079 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:32, 06:30](1088 MB) +PASS -- TEST 'regional_wofs_intel' [09:36, 07:53](1900 MB) + +PASS -- COMPILE 'rrfs_intel' [21:11, 14:45] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:31, 08:28](1052 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:02, 05:13](1251 MB) +PASS -- TEST 'rap_decomp_intel' [12:08, 08:43](1021 MB) +PASS -- TEST 'rap_2threads_intel' [12:08, 08:34](1153 MB) +PASS -- TEST 'rap_restart_intel' [07:40, 04:22](1035 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:30, 08:25](1053 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:31, 08:40](1018 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 06:17](1072 MB) +PASS -- TEST 'hrrr_control_intel' [08:35, 04:24](1028 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:27, 04:24](1020 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:08, 04:11](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:37, 02:20](939 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:24, 08:27](1049 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 10:00](1982 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:24, 10:15](2025 MB) + +PASS -- COMPILE 'csawmg_intel' [18:11, 14:01] +PASS -- TEST 'control_csawmg_intel' [08:41, 06:40](1015 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:33](712 MB) + +PASS -- COMPILE 'wam_intel' [15:11, 13:04] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:51, 12:52](1656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 13:55] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:41, 03:35](1873 MB) +PASS -- TEST 'regional_control_faster_intel' [08:38, 06:26](1082 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 12:36] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:49, 02:58](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:56, 02:47](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:22](819 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:54](818 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:34](1131 MB) +PASS -- TEST 'control_ras_debug_intel' [04:26, 03:02](832 MB) +PASS -- TEST 'control_diag_debug_intel' [04:52, 02:54](1681 MB) +PASS -- TEST 'control_debug_p8_intel' [06:03, 03:16](1905 MB) +PASS -- TEST 'regional_debug_intel' [19:47, 17:22](1084 MB) +PASS -- TEST 'rap_control_debug_intel' [06:36, 05:02](1214 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:29, 05:06](1199 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 04:56](1207 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 05:03](1205 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:28, 05:21](1209 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:40, 05:07](1292 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:04](1200 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 05:07](1209 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:25, 05:05](1213 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 05:04](1212 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:58](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:02](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:31, 08:02](1200 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 05:13](1192 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 06:12](1209 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:28, 04:57](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:24](1209 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:11, 06:57] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:49, 13:22](1688 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:11, 14:43] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:57, 04:49](1124 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:09, 07:07](994 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:38, 03:43](918 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:02, 07:32](1048 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:38, 03:36](944 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:10, 03:55](895 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:39, 05:21](974 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [22:28, 02:04](882 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:11, 13:06] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:55, 02:42](1161 MB) +PASS -- TEST 'conus13km_2threads_intel' [20:42, 01:16](1117 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [19:43, 01:32](1060 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:11, 13:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:41, 04:32](979 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 08:00] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:26, 05:02](1081 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:28, 04:47](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [26:57, 15:35](1235 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:53, 14:53](932 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [24:46, 08:41](1165 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [30:47, 14:48](1299 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 07:19] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:24, 05:22](1132 MB) + +PASS -- COMPILE 'hafsw_intel' [18:11, 16:33] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [16:14, 05:59](735 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:33, 06:26](1108 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [24:28, 07:30](822 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [42:22, 25:55](847 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:33, 26:50](881 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:03, 07:07](494 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:36, 08:28](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [25:59, 03:29](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [32:34, 09:57](478 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [25:53, 04:43](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [25:47, 04:29](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [27:00, 05:47](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [22:31, 01:34](403 MB) +PASS -- TEST 'gnv1_nested_intel' [26:24, 04:20](1728 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:11, 08:29] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [34:12, 13:18](589 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 15:58] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [31:18, 13:05](660 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [32:08, 13:23](727 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:24] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [27:54, 08:41](714 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:11, 14:24] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [24:19, 07:33](811 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:16, 07:29](797 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:54, 16:25](1209 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:11, 12:30] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [14:19, 02:58](1160 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:23, 01:57](1104 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [14:18, 02:52](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [13:20, 02:54](1016 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:18, 02:53](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:21, 02:58](1160 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:18, 02:59](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:50](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:31](1013 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:02, 06:31](1009 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:59](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:19, 04:24](2402 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [10:22, 04:30](2448 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:10, 06:46] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [12:18, 06:34](1084 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 11:15] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:24, 02:37](1149 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:31, 01:05](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:24, 00:58](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:33, 00:58](325 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:10, 13:53] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:28, 04:17](1972 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:10, 13:19] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:30, 04:00](1948 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 14:03] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:46, 05:03](1870 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:43, 05:04](1862 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:00, 02:49](1068 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:10, 08:07] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:29, 06:05](1886 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:30] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:49, 02:15](1902 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 12:58] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:27, 04:34](1994 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:15, 05:23](1768 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:04, 05:27](1789 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:55] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:19, 20:33](4556 MB) SYNOPSIS: -Starting Date/Time: 20240822 08:12:59 -Ending Date/Time: 20240822 09:46:15 -Total Time: 01h:34m:11s +Starting Date/Time: 20240826 11:14:55 +Ending Date/Time: 20240826 13:22:24 +Total Time: 02h:08m:05s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 7b6eb88269..0a60125fab 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,20 +1,20 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -6ccfb11529c2bd172bc7d4956eadfab0b55bf12d +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e4) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5297-g1d9b0765) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,305 +36,240 @@ 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-20240821 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75332 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_185170 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 11:09] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [02:14, 01:18](3107 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:26, 12:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [01:13, 01:33](1817 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:59, 02:22](1829 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [42:38, 02:02](974 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [01:14, 01:57](1788 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:25, 11:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [01:13, 01:00](1810 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:18, 05:21] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [07:21, 01:28](1843 MB) - -PASS -- COMPILE 's2swa_intel' [12:25, 11:27] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [01:13, 01:20](3132 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [01:13, 01:37](3131 MB) -PASS -- TEST 'cpld_restart_p8_intel' [52:44, 01:07](3058 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [01:13, 01:22](3160 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [52:45, 01:03](3078 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [01:13, 01:43](3371 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [01:13, 01:23](3125 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [01:14, 01:32](3074 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [01:13, 01:41](3131 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [01:22, 04:32](4123 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [41:23, 04:24](4271 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [01:13, 01:42](3107 MB) - -PASS -- COMPILE 's2sw_intel' [12:25, 11:24] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [01:13, 01:41](1831 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [01:13, 01:52](1886 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:12] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [02:14, 01:49](1891 MB) - -PASS -- COMPILE 's2s_intel' [11:24, 10:43] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [02:13, 00:49](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:13, 01:17](2876 MB) -PASS -- TEST 'cpld_restart_c48_intel' [58:07, 01:02](2289 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:30, 16:17] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [56:08, 01:51](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:30, 11:53] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [01:09, 01:48](1825 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [42:33, 01:15](999 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:26, 01:37](1795 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:19] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [01:02, 01:21](1850 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:22, 08:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [52:51, 00:20](568 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [52:51, 01:27](1469 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [52:51, 01:20](1480 MB) -PASS -- TEST 'control_latlon_intel' [52:51, 00:19](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [52:51, 01:29](1469 MB) -PASS -- TEST 'control_c48_intel' [52:50, 00:50](1553 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [52:50, 00:44](690 MB) -PASS -- TEST 'control_c192_intel' [52:51, 01:08](1581 MB) -PASS -- TEST 'control_c384_intel' [52:55, 02:02](1859 MB) -PASS -- TEST 'control_c384gdas_intel' [52:55, 02:43](1065 MB) -PASS -- TEST 'control_stochy_intel' [52:51, 00:24](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [50:25, 01:00](380 MB) -PASS -- TEST 'control_lndp_intel' [52:51, 00:30](527 MB) -PASS -- TEST 'control_iovr4_intel' [52:46, 00:39](519 MB) -PASS -- TEST 'control_iovr5_intel' [52:46, 00:42](517 MB) -PASS -- TEST 'control_p8_intel' [52:33, 01:52](1762 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [52:26, 02:01](1765 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [52:19, 01:52](1759 MB) -PASS -- TEST 'control_restart_p8_intel' [47:03, 00:51](909 MB) -PASS -- TEST 'control_noqr_p8_intel' [50:26, 01:51](1759 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [45:01, 01:45](915 MB) -PASS -- TEST 'control_decomp_p8_intel' [49:17, 01:23](1751 MB) -PASS -- TEST 'control_2threads_p8_intel' [49:15, 01:50](1832 MB) -PASS -- TEST 'control_p8_lndp_intel' [49:14, 01:09](1761 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [49:08, 02:01](1821 MB) -PASS -- TEST 'control_p8_mynn_intel' [48:21, 01:46](1768 MB) -PASS -- TEST 'merra2_thompson_intel' [48:02, 01:57](1761 MB) -PASS -- TEST 'regional_control_intel' [47:59, 01:10](844 MB) -PASS -- TEST 'regional_restart_intel' [41:11, 00:20](841 MB) -PASS -- TEST 'regional_decomp_intel' [47:56, 00:55](842 MB) -PASS -- TEST 'regional_2threads_intel' [47:54, 00:47](905 MB) -PASS -- TEST 'regional_noquilt_intel' [47:38, 00:14](1172 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [46:55, 00:22](848 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [46:55, 00:13](854 MB) -PASS -- TEST 'regional_wofs_intel' [46:47, 00:30](1569 MB) - -PASS -- COMPILE 'rrfs_intel' [09:23, 08:31] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [46:48, 02:00](909 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [46:06, 01:03](1057 MB) -PASS -- TEST 'rap_decomp_intel' [46:01, 01:19](912 MB) -PASS -- TEST 'rap_2threads_intel' [44:51, 01:04](988 MB) -PASS -- TEST 'rap_restart_intel' [37:13, 01:15](780 MB) -PASS -- TEST 'rap_sfcdiff_intel' [44:20, 01:56](908 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [44:08, 01:33](908 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [34:52, 01:34](780 MB) -PASS -- TEST 'hrrr_control_intel' [43:46, 01:08](904 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [43:46, 01:03](903 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [43:17, 01:13](988 MB) -PASS -- TEST 'hrrr_control_restart_intel' [38:29, 01:02](732 MB) -PASS -- TEST 'rrfs_v1beta_intel' [43:01, 02:01](902 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [42:10, 00:44](1862 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [41:59, 00:55](1850 MB) - -PASS -- COMPILE 'csawmg_intel' [08:23, 07:55] -PASS -- TEST 'control_csawmg_intel' [53:50, 00:22](864 MB) -PASS -- TEST 'control_ras_intel' [53:50, 00:51](557 MB) - -PASS -- COMPILE 'wam_intel' [08:23, 07:55] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [41:12, 00:23](1560 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:23, 08:09] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [41:12, 02:07](1749 MB) -PASS -- TEST 'regional_control_faster_intel' [41:04, 00:20](832 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:23, 07:29] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [40:43, 01:19](1494 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [40:40, 01:21](1500 MB) -PASS -- TEST 'control_stochy_debug_intel' [40:19, 00:45](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [40:17, 01:04](700 MB) -PASS -- TEST 'control_csawmg_debug_intel' [40:09, 00:26](1006 MB) -PASS -- TEST 'control_ras_debug_intel' [39:57, 01:00](707 MB) -PASS -- TEST 'control_diag_debug_intel' [39:56, 01:22](1561 MB) -PASS -- TEST 'control_debug_p8_intel' [38:59, 00:56](1793 MB) -PASS -- TEST 'regional_debug_intel' [38:46, 00:20](885 MB) -PASS -- TEST 'rap_control_debug_intel' [38:29, 00:41](1086 MB) -PASS -- TEST 'hrrr_control_debug_intel' [38:18, 00:47](1081 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [37:30, 00:41](1085 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [36:56, 00:43](1083 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [36:51, 00:38](1086 MB) -PASS -- TEST 'rap_diag_debug_intel' [35:49, 00:34](1172 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:48, 00:32](1086 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:45, 00:32](1091 MB) -PASS -- TEST 'rap_lndp_debug_intel' [35:43, 00:37](1088 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [35:32, 00:41](1088 MB) -PASS -- TEST 'rap_noah_debug_intel' [35:27, 00:44](1080 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [35:27, 00:41](1084 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [34:55, 00:34](1081 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [34:55, 00:43](1081 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [34:52, 00:49](1083 MB) -PASS -- TEST 'rap_flake_debug_intel' [34:24, 00:44](1089 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [34:04, 02:07](1091 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:19, 04:31] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [55:53, 01:07](1592 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:22, 07:53] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [33:33, 01:21](912 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [32:53, 01:43](783 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [32:25, 01:56](785 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [32:23, 01:37](843 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [32:04, 01:50](830 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [31:56, 01:19](782 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [24:58, 01:32](679 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [26:59, 00:16](664 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:27, 08:02] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [31:45, 01:12](996 MB) -PASS -- TEST 'conus13km_2threads_intel' [27:37, 00:54](995 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [27:24, 00:42](869 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:27, 07:55] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [31:43, 01:21](813 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:21, 04:32] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [31:27, 00:47](957 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [30:58, 00:56](955 MB) -PASS -- TEST 'conus13km_debug_intel' [30:25, 00:43](1045 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [30:22, 00:29](717 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [29:14, 01:05](1045 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [29:13, 00:24](1112 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:19, 04:26] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [29:13, 00:45](986 MB) - -PASS -- COMPILE 'hafsw_intel' [09:29, 09:12] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [29:08, 02:03](601 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [29:08, 01:10](946 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:59, 01:30](647 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [28:58, 01:28](677 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [28:23, 02:13](692 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [28:18, 01:01](378 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [27:54, 02:15](389 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [27:24, 01:46](299 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:15, 02:22](369 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [27:00, 01:38](407 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:59, 00:58](410 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [25:55, 00:46](475 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [25:14, 00:25](330 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:18, 04:53] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:08, 01:29](517 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:28, 09:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:54, 01:43](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:38, 01:33](701 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:31, 09:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [24:35, 01:09](701 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:29, 08:38] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [24:27, 01:57](648 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [24:24, 01:51](628 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:55, 00:34](879 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:28, 09:58] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:44, 00:41](1813 MB) - -PASS -- COMPILE 'atml_intel' [09:23, 08:57] ( 8 warnings 2 remarks ) - -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 'atml_debug_intel' [, ] - -PASS -- COMPILE 'atmaero_intel' [09:24, 08:11] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [22:40, 01:18](3026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [22:31, 01:47](2910 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [22:14, 01:45](2916 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:22, 04:26] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:05, 01:15](4444 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:26, 11:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:53, 02:29](3099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:52, 02:56](1809 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:46, 02:45](1840 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [59:27, 02:18](975 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:53, 02:22](1785 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:27, 12:04] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:52, 02:11](1807 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:13] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:00, 02:28](1841 MB) + +PASS -- COMPILE 's2swa_intel' [12:25, 11:05] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:54, 02:30](3133 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:54, 02:47](3130 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:41, 02:03](3061 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:54, 02:29](3153 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:41, 01:58](3078 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:54, 02:04](3373 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:54, 02:31](3128 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:55, 02:37](3076 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:54, 02:45](3134 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:03, 05:16](4123 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [00:18, 05:40](4266 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [19:54, 02:49](3112 MB) + +PASS -- COMPILE 's2sw_intel' [12:25, 10:55] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [19:54, 01:53](1822 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:54, 02:04](1897 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:34] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:52, 02:06](1889 MB) + +PASS -- COMPILE 's2s_intel' [12:26, 10:17] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [19:52, 01:58](2871 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [19:52, 02:30](2879 MB) +PASS -- TEST 'cpld_restart_c48_intel' [14:50, 02:04](2287 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:30, 16:12] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:49, 02:45](3131 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:27, 11:46] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:52, 01:55](1824 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [00:30, 02:41](988 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [00:28, 02:39](1809 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:07] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [17:38, 02:21](1856 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:30, 01:19](568 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:30, 01:30](1468 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:30, 01:28](1480 MB) +PASS -- TEST 'control_latlon_intel' [09:30, 01:27](1475 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:30, 01:36](1470 MB) +PASS -- TEST 'control_c48_intel' [09:29, 01:58](1555 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:29, 01:47](693 MB) +PASS -- TEST 'control_c192_intel' [09:30, 02:13](1576 MB) +PASS -- TEST 'control_c384_intel' [09:34, 03:03](1849 MB) +PASS -- TEST 'control_c384gdas_intel' [09:34, 02:47](1065 MB) +PASS -- TEST 'control_stochy_intel' [09:30, 01:26](525 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:04, 02:09](329 MB) +PASS -- TEST 'control_lndp_intel' [09:30, 01:30](527 MB) +PASS -- TEST 'control_iovr4_intel' [09:30, 01:43](518 MB) +PASS -- TEST 'control_iovr5_intel' [09:30, 01:42](516 MB) +PASS -- TEST 'control_p8_intel' [06:04, 03:09](1753 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:27, 02:55](1753 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:01, 02:51](1758 MB) +PASS -- TEST 'control_restart_p8_intel' [59:27, 02:04](910 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:01, 02:58](1758 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [58:29, 01:47](916 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:01, 02:51](1752 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:43, 01:59](1841 MB) +PASS -- TEST 'control_p8_lndp_intel' [04:41, 02:07](1760 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:38, 02:59](1812 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:32, 02:49](1765 MB) +PASS -- TEST 'merra2_thompson_intel' [04:11, 02:35](1769 MB) +PASS -- TEST 'regional_control_intel' [04:10, 02:12](839 MB) +PASS -- TEST 'regional_restart_intel' [56:27, 01:22](840 MB) +PASS -- TEST 'regional_decomp_intel' [04:00, 01:59](840 MB) +PASS -- TEST 'regional_2threads_intel' [04:01, 01:56](896 MB) +PASS -- TEST 'regional_noquilt_intel' [03:43, 01:18](1180 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [02:30, 01:25](842 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [01:45, 01:17](843 MB) +PASS -- TEST 'regional_wofs_intel' [01:38, 01:27](1568 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:26] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [00:47, 02:54](906 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [59:06, 02:02](1061 MB) +PASS -- TEST 'rap_decomp_intel' [58:37, 02:16](910 MB) +PASS -- TEST 'rap_2threads_intel' [58:28, 02:12](991 MB) +PASS -- TEST 'rap_restart_intel' [50:21, 02:20](776 MB) +PASS -- TEST 'rap_sfcdiff_intel' [58:23, 03:02](907 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [58:09, 02:29](906 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [47:57, 02:47](779 MB) +PASS -- TEST 'hrrr_control_intel' [57:48, 02:19](904 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [57:45, 02:45](905 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [57:13, 02:07](983 MB) +PASS -- TEST 'hrrr_control_restart_intel' [51:22, 02:05](730 MB) +PASS -- TEST 'rrfs_v1beta_intel' [57:08, 03:02](901 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [56:59, 01:45](1863 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [56:58, 02:02](1857 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 07:53] +PASS -- TEST 'control_csawmg_intel' [10:29, 01:26](866 MB) +PASS -- TEST 'control_ras_intel' [10:29, 01:53](561 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 07:47] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:29, 01:27](1567 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:25, 08:00] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [10:26, 02:59](1755 MB) +PASS -- TEST 'regional_control_faster_intel' [10:25, 01:26](836 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:27, 07:28] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [56:53, 02:10](1491 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [56:35, 02:21](1494 MB) +PASS -- TEST 'control_stochy_debug_intel' [56:25, 01:43](703 MB) +PASS -- TEST 'control_lndp_debug_intel' [56:25, 02:03](700 MB) +PASS -- TEST 'control_csawmg_debug_intel' [56:22, 01:27](1005 MB) +PASS -- TEST 'control_ras_debug_intel' [55:39, 02:03](707 MB) +PASS -- TEST 'control_diag_debug_intel' [55:04, 02:04](1563 MB) +PASS -- TEST 'control_debug_p8_intel' [54:57, 01:40](1793 MB) +PASS -- TEST 'regional_debug_intel' [54:31, 02:13](884 MB) +PASS -- TEST 'rap_control_debug_intel' [54:24, 01:35](1085 MB) +PASS -- TEST 'hrrr_control_debug_intel' [52:58, 01:51](1075 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [51:56, 01:44](1080 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [51:51, 01:40](1080 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [51:19, 01:40](1088 MB) +PASS -- TEST 'rap_diag_debug_intel' [51:12, 01:32](1167 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [50:58, 01:38](1087 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [50:57, 01:37](1085 MB) +PASS -- TEST 'rap_lndp_debug_intel' [50:47, 01:36](1082 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [50:44, 01:37](1083 MB) +PASS -- TEST 'rap_noah_debug_intel' [50:10, 01:46](1079 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [49:43, 01:39](1083 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [49:28, 01:23](1083 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [49:14, 01:41](1079 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [49:10, 01:54](1080 MB) +PASS -- TEST 'rap_flake_debug_intel' [48:59, 01:41](1086 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [48:58, 02:57](1087 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:23, 04:30] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [12:28, 01:21](1583 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:26, 07:53] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [48:36, 02:22](917 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [48:30, 02:15](784 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [47:57, 03:37](784 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [46:56, 02:17](844 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [46:56, 02:54](834 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [46:44, 03:12](782 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [40:04, 02:32](688 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:52, 01:19](666 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:49] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [46:23, 02:00](992 MB) +PASS -- TEST 'conus13km_2threads_intel' [41:34, 01:57](993 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [41:31, 01:43](865 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 07:51] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [46:20, 02:24](816 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:27] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:23, 01:58](958 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:22, 02:01](956 MB) +PASS -- TEST 'conus13km_debug_intel' [44:20, 01:33](1038 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [43:53, 01:37](710 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [43:49, 01:48](1043 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [43:33, 02:02](1111 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:20] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:22, 01:27](990 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 09:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [43:25, 02:50](601 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [43:21, 01:37](945 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:15, 02:50](650 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [42:40, 02:47](676 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [42:20, 02:26](695 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [42:15, 02:01](379 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [41:45, 03:11](391 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [41:26, 02:16](285 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [40:57, 03:29](366 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [40:40, 02:35](400 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [39:57, 02:01](406 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [39:37, 01:50](480 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [39:32, 01:29](318 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:49] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [39:31, 02:19](514 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:24, 08:54] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [39:02, 02:25](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [38:57, 02:26](703 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 09:21] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [38:55, 02:59](706 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:24, 08:38] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [37:46, 02:17](648 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:30, 03:04](628 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:25, 01:30](881 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 10:04] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [37:23, 01:49](1825 MB) + +PASS -- COMPILE 'atml_intel' [10:24, 08:50] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:21, 05:17] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [09:24, 08:04] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [36:46, 02:20](3022 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [36:13, 01:53](2914 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:00, 02:53](2917 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:19, 04:27] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [35:47, 02:55](4442 MB) SYNOPSIS: -Starting Date/Time: 20240822 16:46:02 -Ending Date/Time: 20240822 18:04:22 -Total Time: 01h:18m:59s -Compiles Completed: 32/33 +Starting Date/Time: 20240826 16:27:24 +Ending Date/Time: 20240826 17:51:44 +Total Time: 01h:24m:52s +Compiles Completed: 33/33 Tests Completed: 156/156 -Failed Compiles: -* COMPILE atml_debug_intel: FAILED: UNABLE TO FINISH COMPILE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_wcoss2/compile_atml_debug_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF WCOSS2 REGRESSION TESTING LOG==== -====START OF WCOSS2 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -6ccfb11529c2bd172bc7d4956eadfab0b55bf12d - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e4) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5297-g1d9b0765) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_85439 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-l) - USE CONFIG FILE: rt.test -* (-o) - COMPILE ONLY, SKIP TESTS - -PASS -- COMPILE 'atml_debug_intel' [06:19, 05:39] ( 868 warnings 2 remarks ) - -SYNOPSIS: -Starting Date/Time: 20240822 18:58:56 -Ending Date/Time: 20240822 19:05:16 -Total Time: 00h:06m:43s -Compiles Completed: 1/1 -Tests Completed: 0/0 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/control.nml.IN b/tests/parm/control.nml.IN index d48d1fb422..c7b45874f1 100644 --- a/tests/parm/control.nml.IN +++ b/tests/parm/control.nml.IN @@ -89,6 +89,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/control_ca.nml.IN b/tests/parm/control_ca.nml.IN index 95abe17265..527eb7e296 100644 --- a/tests/parm/control_ca.nml.IN +++ b/tests/parm/control_ca.nml.IN @@ -89,6 +89,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/control_csawmg.nml.IN b/tests/parm/control_csawmg.nml.IN index 6729ed1031..88a46c3e58 100644 --- a/tests/parm/control_csawmg.nml.IN +++ b/tests/parm/control_csawmg.nml.IN @@ -87,6 +87,7 @@ z_tracer = .true. agrid_vel_rst = .true. read_increment = .false. + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] res_latlon_dynamics = "" / diff --git a/tests/parm/control_flake.nml.IN b/tests/parm/control_flake.nml.IN index cea5817471..27f96e5c61 100644 --- a/tests/parm/control_flake.nml.IN +++ b/tests/parm/control_flake.nml.IN @@ -88,6 +88,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/control_gdas.nml.IN b/tests/parm/control_gdas.nml.IN index 9ffeadd0e3..0d5991b24a 100644 --- a/tests/parm/control_gdas.nml.IN +++ b/tests/parm/control_gdas.nml.IN @@ -91,7 +91,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "" - + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &cires_ugwp_nml diff --git a/tests/parm/control_gfsv17.nml.IN b/tests/parm/control_gfsv17.nml.IN index 247cca85e8..ce77835c8f 100644 --- a/tests/parm/control_gfsv17.nml.IN +++ b/tests/parm/control_gfsv17.nml.IN @@ -89,6 +89,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/control_noahmp.nml.IN b/tests/parm/control_noahmp.nml.IN index 6082aa789b..bc61672a00 100644 --- a/tests/parm/control_noahmp.nml.IN +++ b/tests/parm/control_noahmp.nml.IN @@ -88,6 +88,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/csawmg3shoc127.nml.IN b/tests/parm/csawmg3shoc127.nml.IN index b01ba5f205..d510d0ca6f 100644 --- a/tests/parm/csawmg3shoc127.nml.IN +++ b/tests/parm/csawmg3shoc127.nml.IN @@ -90,6 +90,7 @@ z_tracer = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN index 3f77e6fd0f..2bd6144f3e 100644 --- a/tests/parm/csawmgshoc.nml.IN +++ b/tests/parm/csawmgshoc.nml.IN @@ -89,6 +89,7 @@ z_tracer = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/datm.streams.IN b/tests/parm/datm.streams.IN index f6ec3e1b16..bac426f620 100644 --- a/tests/parm/datm.streams.IN +++ b/tests/parm/datm.streams.IN @@ -1,4 +1,4 @@ -stream_info: @[FILENAME_BASE]01 +stream_info: @[FILEBASE_DATM].01 taxmode01: limit mapalgo01: bilinear tInterpAlgo01: linear diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index ecdc0c5d0b..8868906af9 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -94,6 +94,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/input_global_hafs.nml.IN b/tests/parm/input_global_hafs.nml.IN index fdc887c8f5..2c7173fce7 100644 --- a/tests/parm/input_global_hafs.nml.IN +++ b/tests/parm/input_global_hafs.nml.IN @@ -94,6 +94,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] write_3d_diags = .true. do_schmidt = .true. diff --git a/tests/parm/input_global_nest.nml.IN b/tests/parm/input_global_nest.nml.IN index affbb2af94..dab50280d1 100644 --- a/tests/parm/input_global_nest.nml.IN +++ b/tests/parm/input_global_nest.nml.IN @@ -101,6 +101,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] nested = @[NESTED] twowaynest = @[TWOWAYNEST02] nestupdate = 7 diff --git a/tests/parm/input_global_parent.nml.IN b/tests/parm/input_global_parent.nml.IN index 2027367087..33c1baa34f 100644 --- a/tests/parm/input_global_parent.nml.IN +++ b/tests/parm/input_global_parent.nml.IN @@ -100,6 +100,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] do_schmidt = .true. target_lat = @[TARGET_LAT] target_lon = @[TARGET_LON] diff --git a/tests/parm/input_nest02.nml.IN b/tests/parm/input_nest02.nml.IN index 561afaffa9..4056f629bb 100644 --- a/tests/parm/input_nest02.nml.IN +++ b/tests/parm/input_nest02.nml.IN @@ -89,6 +89,7 @@ warm_start = @[WARM_START] read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] no_dycore = .false. z_tracer = .true. diff --git a/tests/parm/input_nest_hafs.nml.IN b/tests/parm/input_nest_hafs.nml.IN index 3fdf8e7d5e..055e4ddeac 100644 --- a/tests/parm/input_nest_hafs.nml.IN +++ b/tests/parm/input_nest_hafs.nml.IN @@ -94,6 +94,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] write_3d_diags = .true. nested = .true. diff --git a/tests/parm/input_regional_hafs.nml.IN b/tests/parm/input_regional_hafs.nml.IN index d88db070ef..95cec669bd 100644 --- a/tests/parm/input_regional_hafs.nml.IN +++ b/tests/parm/input_regional_hafs.nml.IN @@ -93,6 +93,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] write_3d_diags = .true. do_schmidt = .true. diff --git a/tests/parm/rap.nml.IN b/tests/parm/rap.nml.IN index 8ed7dcfa75..849e9f78cc 100644 --- a/tests/parm/rap.nml.IN +++ b/tests/parm/rap.nml.IN @@ -90,6 +90,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/regional.nml.IN b/tests/parm/regional.nml.IN index 511cbe1e34..f0911503c7 100644 --- a/tests/parm/regional.nml.IN +++ b/tests/parm/regional.nml.IN @@ -96,6 +96,7 @@ agrid_vel_rst = .true. read_increment = .F. res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] do_schmidt = .true. target_lat = 55.0 target_lon = -112.5 diff --git a/tests/parm/regional_atmaq.nml.IN b/tests/parm/regional_atmaq.nml.IN index 0a5b3e3812..a5a596a55c 100644 --- a/tests/parm/regional_atmaq.nml.IN +++ b/tests/parm/regional_atmaq.nml.IN @@ -93,6 +93,7 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 750.0 stretch_fac = 0.999 diff --git a/tests/parm/regional_rrfs_a.nml.IN b/tests/parm/regional_rrfs_a.nml.IN index 1e1255e81b..d7c903a954 100644 --- a/tests/parm/regional_rrfs_a.nml.IN +++ b/tests/parm/regional_rrfs_a.nml.IN @@ -120,6 +120,7 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = 'fv3_increment.nc' + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 2000.0 sg_cutoff = 10000.0 diff --git a/tests/parm/regional_wofs.nml.IN b/tests/parm/regional_wofs.nml.IN index e79f196863..e5d49e3858 100644 --- a/tests/parm/regional_wofs.nml.IN +++ b/tests/parm/regional_wofs.nml.IN @@ -112,6 +112,7 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = 'fv3_increment.nc' + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 2000.0 stretch_fac = 0.999 diff --git a/tests/parm/rrfs_conus13km_hrrr.nml.IN b/tests/parm/rrfs_conus13km_hrrr.nml.IN index 883a508911..b582d1d357 100644 --- a/tests/parm/rrfs_conus13km_hrrr.nml.IN +++ b/tests/parm/rrfs_conus13km_hrrr.nml.IN @@ -115,6 +115,7 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 20000.0 sg_cutoff = 10000.0 diff --git a/tests/parm/wam_v17.nml.IN b/tests/parm/wam_v17.nml.IN index 8e5c6cb90d..f6ec526bc7 100644 --- a/tests/parm/wam_v17.nml.IN +++ b/tests/parm/wam_v17.nml.IN @@ -93,6 +93,7 @@ agrid_vel_rst = .false. read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/rt.sh b/tests/rt.sh index dc29328c5a..fd8976c10c 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -1040,6 +1040,7 @@ if [[ ${skip_check_results} == true ]]; then else REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_${MACHINE_ID}.log fi +rm -f "${REGRESSIONTEST_LOG}" TEST_START_TIME="$(date '+%Y%m%d %T')" export TEST_START_TIME diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 6f049cf161..3fb1070547 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -124,10 +124,6 @@ submit_and_wait() { local -r job_card=$1 - ROCOTO=${ROCOTO:-false} - ECFLOW=${ECFLOW:-false} - - local test_status='PASS' case ${SCHEDULER} in pbs) qsubout=$( qsub "${job_card}" ) @@ -187,26 +183,38 @@ submit_and_wait() { set +e job_info=$( qstat "${jobid}" ) set -e + if grep -q "${jobid}" <<< "${job_info}"; then + job_running=true + # Getting the status letter from scheduler info + status=$( grep "${jobid}" <<< "${job_info}" ) + status=$( awk '{print $5}' <<< "${status}" ) + else + job_running=false + status='COMPLETED' + set +e + exit_status=$( qstat "${jobid}" -x -f | grep Exit_status | awk '{print $3}') + set -e + if [[ ${exit_status} != 0 ]]; then + status='FAILED' + fi + fi ;; slurm) - job_info=$( squeue -u "${USER}" -j "${jobid}" ) + job_info=$( squeue -u "${USER}" -j "${jobid}" -o '%i %T' ) + if grep -q "${jobid}" <<< "${job_info}"; then + job_running=true + else + job_running=false + job_info=$( sacct -n -j "${jobid}" --format=JobID,state%20,Jobname%64 | grep "^${jobid}" | grep "${JBNME}" ) + fi + # Getting the status letter from scheduler info + status=$( grep "${jobid}" <<< "${job_info}" ) + status=$( awk '{print $2}' <<< "${status}" ) ;; *) ;; esac - - if grep -q "${jobid}" <<< "${job_info}"; then - job_running=true - else - job_running=false - continue - fi - - # Getting the status letter from scheduler info - status=$( grep "${jobid}" <<< "${job_info}" ) - status=$( awk '{print $5}' <<< "${status}" ) - case ${status} in #waiting cases #pbs: Q @@ -217,7 +225,7 @@ submit_and_wait() { #running cases #pbs: R #slurm: (old: R, new: RUNNING) - R|RUNNING) + R|RUNNING|COMPLETING) status_label='Job running' ;; #held cases @@ -229,14 +237,15 @@ submit_and_wait() { #fail/completed cases #slurm: F/FAILED TO/TIMEOUT CA/CANCELLED F|TO|CA|FAILED|TIMEOUT|CANCELLED) - echo "rt_utils.sh: !!!!!!!!!!JOB TERMINATED!!!!!!!!!!" + echo "rt_utils.sh: !!!!!!!!!!JOB TERMINATED!!!!!!!!!! status=${status}" job_running=false #Trip the loop to end with these status flags interrupt_job exit 1 ;; #completed - #pbs only: C-Complete E-Exiting - C|E) + #pbs: C-Complete E-Exiting + #slurm: CD/COMPLETED + C|E|CD|COMPLETED) status_label='Completed' ;; *) @@ -253,140 +262,6 @@ submit_and_wait() { done } -check_results() { - echo "rt_utils.sh: Checking results of the regression test: ${TEST_ID}" - - ROCOTO=${ROCOTO:-false} - ECFLOW=${ECFLOW:-false} - - local test_status='PASS' - - # Give one minute for data to show up on file system - #sleep 60 - - { - echo - echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" - echo "working dir = ${RUNDIR}" - echo "Checking test ${TEST_ID} results ...." - } > "${RT_LOG}" - echo - echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" - echo "working dir = ${RUNDIR}" - echo "Checking test ${TEST_ID} results ...." - - if [[ ${CREATE_BASELINE} = false ]]; then - # - # --- regression test comparison - # - for i in ${LIST_FILES} ; do - printf %s " Comparing ${i} ....." >> "${RT_LOG}" - printf %s " Comparing ${i} ....." - - if [[ ! -f ${RUNDIR}/${i} ]] ; then - - echo ".......MISSING file" >> "${RT_LOG}" - echo ".......MISSING file" - test_status='FAIL' - - elif [[ ! -f ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ]] ; then - - echo ".......MISSING baseline" >> "${RT_LOG}" - echo ".......MISSING baseline" - test_status='FAIL' - - else - if [[ ${i##*.} == nc* ]] ; then - if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then - printf "USING NCCMP.." >> "${RT_LOG}" - printf "USING NCCMP.." - if [[ ${CMP_DATAONLY} == false ]]; then - nccmp -d -S -q -f -g -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? - else - nccmp -d -S -q -f -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? - fi - if [[ ${d} -ne 0 && ${d} -ne 1 ]]; then - printf "....ERROR" >> "${RT_LOG}" - printf "....ERROR" - test_status='FAIL' - fi - fi - else - printf "USING CMP.." >> "${RT_LOG}" - printf "USING CMP.." - cmp "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" >/dev/null 2>&1 && d=$? || d=$? - if [[ ${d} -eq 2 ]]; then - printf "....ERROR" >> "${RT_LOG}" - printf "....ERROR" - test_status='FAIL' - fi - - fi - - if [[ ${d} -ne 0 ]]; then - echo "....NOT IDENTICAL" >> "${RT_LOG}" - echo "....NOT IDENTICAL" - test_status='FAIL' - else - echo "....OK" >> "${RT_LOG}" - echo "....OK" - fi - - fi - - done - - else - # - # --- create baselines - # - echo;echo "Moving baseline ${TEST_ID} files ...." - echo;echo "Moving baseline ${TEST_ID} files ...." >> "${RT_LOG}" - - for i in ${LIST_FILES} ; do - printf %s " Moving ${i} ....." - printf %s " Moving ${i} ....." >> "${RT_LOG}" - if [[ -f ${RUNDIR}/${i} ]] ; then - mkdir -p "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/$(dirname "${i}")" - cp "${RUNDIR}/${i}" "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/${i}" - echo "....OK" >> "${RT_LOG}" - echo "....OK" - else - echo "....NOT OK. Missing ${RUNDIR}/${i}" >> "${RT_LOG}" - echo "....NOT OK. Missing ${RUNDIR}/${i}" - test_status='FAIL' - fi - done - - fi - - { - echo - grep "The total amount of wall time" "${RUNDIR}/out" - grep "The maximum resident set size" "${RUNDIR}/out" - echo - } >> "${RT_LOG}" - - TRIES='' - if [[ ${ECFLOW} == true ]]; then - if [[ ${ECF_TRYNO} -gt 1 ]]; then - TRIES=" Tries: ${ECF_TRYNO}" - fi - fi - echo "Test ${TEST_ID} ${test_status}${TRIES}" >> "${RT_LOG}" - echo >> "${RT_LOG}" - echo "Test ${TEST_ID} ${test_status}${TRIES}" - echo - - if [[ ${test_status} = 'FAIL' ]]; then - echo "${TEST_ID} failed in check_result" >> "${PATHRT}/fail_test_${TEST_ID}" - return 1 - else - return 0 - fi -} - - kill_job() { echo "rt_utils.sh: Killing job: ${jobid} on ${SCHEDULER}..." [[ -z $1 ]] && exit 1 @@ -580,14 +455,16 @@ ecflow_create_compile_task() { cat << EOF > "${ECFLOW_RUN}/${ECFLOW_SUITE}/compile_${COMPILE_ID}.ecf" %include -${PATHRT}/run_compile.sh "${PATHRT}" "${RUNDIR_ROOT}" "${MAKE_OPT}" "${COMPILE_ID}" > "${LOG_DIR}/compile_${COMPILE_ID}.log" 2>&1 & +( +cd "${LOG_DIR}" +ln -sf "compile_${COMPILE_ID}.log.\${ECF_TRYNO}" "compile_${COMPILE_ID}.log" +) +${PATHRT}/run_compile.sh "${PATHRT}" "${RUNDIR_ROOT}" "${MAKE_OPT}" "${COMPILE_ID}" > "${LOG_DIR}/compile_${COMPILE_ID}.log.\${ECF_TRYNO}" 2>&1 & %include EOF { echo " task compile_${COMPILE_ID}" echo " label build_options '${MAKE_OPT}'" - echo " label job_id ''" - echo " label job_status ''" echo " inlimit max_builds" } >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" } @@ -596,13 +473,15 @@ ecflow_create_run_task() { echo "rt_utils.sh: ${TEST_ID}: Creating ECFLOW run task" cat << EOF > "${ECFLOW_RUN}/${ECFLOW_SUITE}/${TEST_ID}${RT_SUFFIX}.ecf" %include -${PATHRT}/run_test.sh "${PATHRT}" "${RUNDIR_ROOT}" "${TEST_NAME}" "${TEST_ID}" "${COMPILE_ID}" > "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log" 2>&1 & +( +cd "${LOG_DIR}" +ln -sf "run_${TEST_ID}${RT_SUFFIX}.log.\${ECF_TRYNO}" "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log" +) +${PATHRT}/run_test.sh "${PATHRT}" "${RUNDIR_ROOT}" "${TEST_NAME}" "${TEST_ID}" "${COMPILE_ID}" > "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log.\${ECF_TRYNO}" 2>&1 & %include EOF { echo " task ${TEST_ID}${RT_SUFFIX}" - echo " label job_id ''" - echo " label job_status ''" echo " inlimit max_jobs" } >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" if [[ ${DEP_RUN} != '' ]]; then diff --git a/tests/run_compile.sh b/tests/run_compile.sh index 1685f89653..6eeb72b13e 100755 --- a/tests/run_compile.sh +++ b/tests/run_compile.sh @@ -17,7 +17,16 @@ cleanup() { write_fail_test() { echo "${JBNME} failed in run_compile" >> "${PATHRT}/fail_${JBNME}" - exit 1 + if [[ ${ROCOTO:-false} == true ]] || [[ ${ECFLOW:-false} == true ]]; then + # if this script has been submitted by a workflow return non-zero exit status + # so that workflow can resubmit it + exit 1 + else + # if this script has been executed interactively, return zero exit status + # so that rt.sh can continue running, and hope that rt.sh's generate_log + # will catch failed tests + exit 0 + fi } remove_fail_test() { diff --git a/tests/run_test.sh b/tests/run_test.sh index ace4fd0cf1..88e10210d6 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -17,12 +17,16 @@ cleanup() { write_fail_test() { echo "${TEST_ID} failed in run_test" >> "${PATHRT}/fail_test_${TEST_ID}" - exit 1 -} - -remove_fail_test() { - echo "Removing test failure flag file for ${TEST_ID}" - rm -f "${PATHRT}/fail_test_${TEST_ID}" + if [[ ${ROCOTO:-false} == true ]] || [[ ${ECFLOW:-false} == true ]]; then + # if this script has been submitted by a workflow return non-zero exit status + # so that workflow can resubmit it + exit 1 + else + # if this script has been executed interactively, return zero exit status + # so that rt.sh can continue running, and hope that rt.sh's generate_log + # will catch failed tests + exit 0 + fi } if [[ $# != 5 ]]; then @@ -53,7 +57,7 @@ source default_vars.sh [[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source "${RUNDIR_ROOT}/run_test_${TEST_ID}.env" source "tests/${TEST_NAME}" -remove_fail_test +rm -f "${PATHRT}/fail_test_${TEST_ID}" # Save original CNTL_DIR name as INPUT_DIR for regression # tests that try to copy input data from CNTL_DIR @@ -396,11 +400,123 @@ else fi skip_check_results=${skip_check_results:-false} -results_okay=YES -if [[ ${skip_check_results} = false ]]; then - if ( ! check_results ) ; then - results_okay=NO +if [[ ${skip_check_results} == false ]]; then + + test_status='PASS' + + { + echo + echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" + echo "working dir = ${RUNDIR}" + echo "Checking test ${TEST_ID} results ...." + } > "${RT_LOG}" + echo + echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" + echo "working dir = ${RUNDIR}" + echo "Checking test ${TEST_ID} results ...." + + if [[ ${CREATE_BASELINE} = false ]]; then + # + # --- regression test comparison + # + for i in ${LIST_FILES} ; do + printf %s " Comparing ${i} ....." >> "${RT_LOG}" + printf %s " Comparing ${i} ....." + + if [[ ! -f ${RUNDIR}/${i} ]] ; then + + echo ".......MISSING file" >> "${RT_LOG}" + echo ".......MISSING file" + test_status='FAIL' + + elif [[ ! -f ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ]] ; then + + echo ".......MISSING baseline" >> "${RT_LOG}" + echo ".......MISSING baseline" + test_status='FAIL' + + else + if [[ ${i##*.} == nc* ]] ; then + if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then + printf "USING NCCMP.." >> "${RT_LOG}" + printf "USING NCCMP.." + if [[ ${CMP_DATAONLY} == false ]]; then + nccmp -d -S -q -f -g -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? + else + nccmp -d -S -q -f -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? + fi + if [[ ${d} -ne 0 && ${d} -ne 1 ]]; then + printf "....ERROR" >> "${RT_LOG}" + printf "....ERROR" + test_status='FAIL' + fi + fi + else + printf "USING CMP.." >> "${RT_LOG}" + printf "USING CMP.." + cmp "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" >/dev/null 2>&1 && d=$? || d=$? + if [[ ${d} -eq 2 ]]; then + printf "....ERROR" >> "${RT_LOG}" + printf "....ERROR" + test_status='FAIL' + fi + + fi + + if [[ ${d} -ne 0 ]]; then + echo "....NOT IDENTICAL" >> "${RT_LOG}" + echo "....NOT IDENTICAL" + test_status='FAIL' + else + echo "....OK" >> "${RT_LOG}" + echo "....OK" + fi + + fi + + done + + else + # + # --- create baselines + # + echo;echo "Moving baseline ${TEST_ID} files ...." + echo;echo "Moving baseline ${TEST_ID} files ...." >> "${RT_LOG}" + + for i in ${LIST_FILES} ; do + printf %s " Moving ${i} ....." + printf %s " Moving ${i} ....." >> "${RT_LOG}" + if [[ -f ${RUNDIR}/${i} ]] ; then + mkdir -p "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/$(dirname "${i}")" + cp "${RUNDIR}/${i}" "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/${i}" + echo "....OK" >> "${RT_LOG}" + echo "....OK" + else + echo "....NOT OK. Missing ${RUNDIR}/${i}" >> "${RT_LOG}" + echo "....NOT OK. Missing ${RUNDIR}/${i}" + test_status='FAIL' + fi + done + fi + + { + echo + grep "The total amount of wall time" "${RUNDIR}/out" + grep "The maximum resident set size" "${RUNDIR}/out" + echo + echo "Test ${TEST_ID} ${test_status}" + echo + } >> "${RT_LOG}" + + echo "Test ${TEST_ID} ${test_status}" + echo + + if [[ ${test_status} = 'FAIL' ]]; then + echo "${TEST_ID} failed in check_result" >> "${PATHRT}/fail_test_${TEST_ID}" + write_fail_test + fi + else { echo @@ -408,7 +524,7 @@ else grep "The maximum resident set size" "${RUNDIR}/out" echo echo "Test ${TEST_ID} RUN_SUCCESS" - echo;echo;echo + echo;echo;echo } >> "${RT_LOG}" fi @@ -416,10 +532,6 @@ if [[ ${SCHEDULER} != 'none' ]]; then cat "${RUNDIR}/job_timestamp.txt" >> "${LOG_DIR}/${JBNME}_timestamp.txt" fi -if [[ ${results_okay} == YES ]]; then - remove_fail_test -fi - ################################################################################ # End test ################################################################################ diff --git a/tests/test_changes.list b/tests/test_changes.list index a9c99bdc56..e69de29bb2 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,144 +0,0 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 intel -cpld_control_sfs intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_control_c192_p8 intel -cpld_restart_c192_p8 intel -cpld_bmark_p8 intel -cpld_restart_bmark_p8 intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_noaero_p8_agrid intel -cpld_control_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -control_flake intel -control_CubedSphereGrid_parallel intel -control_latlon intel -control_wrtGauss_netcdf_parallel intel -control_c192 intel -control_c384 intel -control_c384gdas intel -control_stochy intel -control_stochy_restart intel -control_lndp intel -control_iovr4 intel -control_iovr5 intel -control_p8 intel -control_p8.v2.sfc intel -control_p8_ugwpv1 intel -control_restart_p8 intel -control_noqr_p8 intel -control_restart_noqr_p8 intel -control_decomp_p8 intel -control_2threads_p8 intel -control_p8_lndp intel -control_p8_rrtmgp intel -control_p8_mynn intel -merra2_thompson intel -regional_control intel -regional_restart intel -regional_decomp intel -regional_2threads intel -regional_2dwrtdecomp intel -regional_wofs intel -rap_control intel -regional_spp_sppt_shum_skeb intel -rap_decomp intel -rap_2threads intel -rap_restart intel -rap_sfcdiff intel -rap_sfcdiff_decomp intel -rap_sfcdiff_restart intel -hrrr_control intel -hrrr_control_decomp intel -hrrr_control_2threads intel -hrrr_control_restart intel -rrfs_v1beta intel -rrfs_v1nssl intel -rrfs_v1nssl_nohailnoccn intel -control_csawmg intel -control_ras intel -control_csawmg gnu -control_p8_faster intel -regional_control_faster intel -regional_spp_sppt_shum_skeb_dyn32_phy32 intel -rap_control_dyn32_phy32 intel -hrrr_control_dyn32_phy32 intel -rap_2threads_dyn32_phy32 intel -hrrr_control_2threads_dyn32_phy32 intel -hrrr_control_decomp_dyn32_phy32 intel -rap_restart_dyn32_phy32 intel -hrrr_control_restart_dyn32_phy32 intel -rap_control_dyn64_phy32 intel -hafs_regional_atm intel -hafs_global_multiple_4nests_atm intel -hafs_regional_specified_moving_1nest_atm intel -datm_cdeps_control_cfsr intel -datm_cdeps_restart_cfsr intel -datm_cdeps_control_gefs intel -datm_cdeps_iau_gefs intel -datm_cdeps_stochy_gefs intel -datm_cdeps_ciceC_cfsr intel -datm_cdeps_bulk_cfsr intel -datm_cdeps_bulk_gefs intel -datm_cdeps_mx025_cfsr intel -datm_cdeps_mx025_gefs intel -datm_cdeps_3072x1536_cfsr intel -datm_cdeps_gfs intel -datm_cdeps_debug_cfsr intel -datm_cdeps_control_cfsr_faster intel -atmaero_control_p8 intel -atmaero_control_p8_rad intel -atmaero_control_p8_rad_micro intel -control_stochy gnu -control_ras gnu -control_p8 gnu -control_p8_ugwpv1 gnu -control_flake gnu -rap_control gnu -rap_decomp gnu -rap_2threads gnu -rap_restart gnu -rap_sfcdiff gnu -rap_sfcdiff_decomp gnu -rap_sfcdiff_restart gnu -hrrr_control gnu -hrrr_control_noqr gnu -hrrr_control_2threads gnu -hrrr_control_decomp gnu -hrrr_control_restart gnu -hrrr_control_restart_noqr gnu -rrfs_v1beta gnu -rap_control_dyn32_phy32 gnu -hrrr_control_dyn32_phy32 gnu -rap_2threads_dyn32_phy32 gnu -hrrr_control_2threads_dyn32_phy32 gnu -hrrr_control_decomp_dyn32_phy32 gnu -rap_restart_dyn32_phy32 gnu -hrrr_control_restart_dyn32_phy32 gnu -rap_control_dyn64_phy32 gnu -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu -cpld_debug_pdlib_p8 gnu -datm_cdeps_control_cfsr gnu diff --git a/tests/tests/control_c48.v2.sfc_timeout b/tests/tests/control_c48.v2.sfc_timeout new file mode 100644 index 0000000000..ec78b47892 --- /dev/null +++ b/tests/tests/control_c48.v2.sfc_timeout @@ -0,0 +1,4 @@ +source tests/control_c48.v2.sfc + +# Intentionally make this test fail due to wall clock timeout. Used by error-test.conf +export WLCLK=2 diff --git a/tests/tests/datm_cdeps_3072x1536_cfsr b/tests/tests/datm_cdeps_3072x1536_cfsr index 9c61d01096..bb4454077c 100644 --- a/tests/tests/datm_cdeps_3072x1536_cfsr +++ b/tests/tests/datm_cdeps_3072x1536_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR3072x1536 -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export WLCLK=15 export IATM=3072 export JATM=1536 @@ -20,7 +20,7 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export MESH_ATM=gfs_mesh.nc -export atm_datamode=GFS +export atm_datamode=GEFS export RESTART_N=12 export stream_files="INPUT/cfsr.2011100100_3072x1536.nc INPUT/cfsr.2011100106_3072x1536.nc INPUT/cfsr.2011100112_3072x1536.nc INPUT/cfsr.2011100118_3072x1536.nc INPUT/cfsr.2011100200_3072x1536.nc INPUT/cfsr.2011100206_3072x1536.nc" export eps_imesh=2.5e-1 diff --git a/tests/tests/datm_cdeps_bulk_cfsr b/tests/tests/datm_cdeps_bulk_cfsr index 37f967809f..03548a6088 100644 --- a/tests/tests/datm_cdeps_bulk_cfsr +++ b/tests/tests/datm_cdeps_bulk_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_bulk_gefs b/tests/tests/datm_cdeps_bulk_gefs index 902df12859..798bbc5824 100644 --- a/tests/tests/datm_cdeps_bulk_gefs +++ b/tests/tests/datm_cdeps_bulk_gefs @@ -19,9 +19,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_ciceC_cfsr b/tests/tests/datm_cdeps_ciceC_cfsr index a7cc6b9cee..70ee13250a 100644 --- a/tests/tests/datm_cdeps_ciceC_cfsr +++ b/tests/tests/datm_cdeps_ciceC_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_control_cfsr b/tests/tests/datm_cdeps_control_cfsr index dc8ae8fd2d..e3768e5258 100644 --- a/tests/tests/datm_cdeps_control_cfsr +++ b/tests/tests/datm_cdeps_control_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_control_cfsr_faster b/tests/tests/datm_cdeps_control_cfsr_faster index 0852da48e4..4003f161dc 100644 --- a/tests/tests/datm_cdeps_control_cfsr_faster +++ b/tests/tests/datm_cdeps_control_cfsr_faster @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_control_gefs b/tests/tests/datm_cdeps_control_gefs index 324c6f2f4d..8669e9ff01 100644 --- a/tests/tests/datm_cdeps_control_gefs +++ b/tests/tests/datm_cdeps_control_gefs @@ -20,9 +20,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 export eps_imesh=2.5e-1 diff --git a/tests/tests/datm_cdeps_debug_cfsr b/tests/tests/datm_cdeps_debug_cfsr index 618552ed96..c0de0ddc7c 100644 --- a/tests/tests/datm_cdeps_debug_cfsr +++ b/tests/tests/datm_cdeps_debug_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111001.060000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export DAYS=0.25 diff --git a/tests/tests/datm_cdeps_gfs b/tests/tests/datm_cdeps_gfs index 2147c3d41c..9dcd4ed89b 100644 --- a/tests/tests/datm_cdeps_gfs +++ b/tests/tests/datm_cdeps_gfs @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20210323.060000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=GFS -export FILENAME_BASE=gfs. +export FILEBASE_DATM=gfs export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -23,8 +23,8 @@ export JATM=1536 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export atm_datamode=GFS +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export atm_datamode=GEFS export CICE_KTHERM=2 export CICE_TFREEZE_OPTION=mushy export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_iau_gefs b/tests/tests/datm_cdeps_iau_gefs index d28c4bd35c..9ca5c65d75 100644 --- a/tests/tests/datm_cdeps_iau_gefs +++ b/tests/tests/datm_cdeps_iau_gefs @@ -22,9 +22,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 export eps_imesh=2.5e-1 diff --git a/tests/tests/datm_cdeps_multiple_files_cfsr b/tests/tests/datm_cdeps_multiple_files_cfsr index 86b8eb6032..a92d5cea3d 100644 --- a/tests/tests/datm_cdeps_multiple_files_cfsr +++ b/tests/tests/datm_cdeps_multiple_files_cfsr @@ -10,7 +10,7 @@ export LIST_FILES="RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_mx025_cfsr b/tests/tests/datm_cdeps_mx025_cfsr index b41cef9d56..02a6866d34 100644 --- a/tests/tests/datm_cdeps_mx025_cfsr +++ b/tests/tests/datm_cdeps_mx025_cfsr @@ -15,7 +15,7 @@ export LIST_FILES="RESTART/20111001.120000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export DAYS=0.5 diff --git a/tests/tests/datm_cdeps_mx025_gefs b/tests/tests/datm_cdeps_mx025_gefs index 0d3e43875a..ee33c3cb23 100644 --- a/tests/tests/datm_cdeps_mx025_gefs +++ b/tests/tests/datm_cdeps_mx025_gefs @@ -27,9 +27,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 ATM_compute_tasks=${ATM_compute_tasks_cdeps_025} diff --git a/tests/tests/datm_cdeps_restart_cfsr b/tests/tests/datm_cdeps_restart_cfsr index eec83536de..963fb0828f 100644 --- a/tests/tests/datm_cdeps_restart_cfsr +++ b/tests/tests/datm_cdeps_restart_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export FHMAX=24 diff --git a/tests/tests/datm_cdeps_stochy_gefs b/tests/tests/datm_cdeps_stochy_gefs index 7f2d0db842..9fe6caf89d 100644 --- a/tests/tests/datm_cdeps_stochy_gefs +++ b/tests/tests/datm_cdeps_stochy_gefs @@ -20,9 +20,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 export eps_imesh=2.5e-1 From 1c4fcf1ca75fa24326bd2af857dafa2f51347506 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 29 Aug 2024 15:49:45 -0400 Subject: [PATCH 22/33] Combination for CCPP-physics #213 and #218 (H2O scheme refactor and C3/SAS/MYNN fix) (#2408) * UFSWM - Refactor NRL h2o photochemical scheme; add "tendency_of_vertically_diffused_tracer_concentration" as output from the MYNN PBL scheme * FV3 - Refactor NRL h2o photochemical scheme; add "tendency_of_vertically_diffused_tracer_concentration" as output from the MYNN PBL scheme * ccpp-physics - Refactor NRL h2o photochemical scheme; add "tendency_of_vertically_diffused_tracer_concentration" as output from the MYNN PBL scheme --- FV3 | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 30 +- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_acorn.log | 522 ++++++------- tests/logs/RegressionTests_derecho.log | 548 ++++++------- tests/logs/RegressionTests_gaea.log | 550 ++++++------- tests/logs/RegressionTests_hera.log | 732 +++++++++--------- tests/logs/RegressionTests_hercules.log | 732 +++++++++--------- tests/logs/RegressionTests_jet.log | 488 ++++++------ tests/logs/RegressionTests_orion.log | 550 ++++++------- tests/logs/RegressionTests_wcoss2.log | 460 +++++------ 12 files changed, 2357 insertions(+), 2357 deletions(-) diff --git a/FV3 b/FV3 index 70b306581b..40e014f3ec 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 70b306581b24ab5e6b21e0a2b16b95f3a980660c +Subproject commit 40e014f3ec805fc10399b53ad6810bc57a79ce9e diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index e383c64f58..70d614cb0e 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Aug 26 19:59:54 UTC 2024 +Wed Aug 28 16:38:17 UTC 2024 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_255239/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/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 = 282.094574 - 0: The maximum resident set size (KB) = 1459728 + 0: The total amount of wall time = 283.800402 + 0: The maximum resident set size (KB) = 1450532 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_255239/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/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 = 985.479617 - 0: The maximum resident set size (KB) = 1417884 + 0: The total amount of wall time = 1002.626814 + 0: The maximum resident set size (KB) = 1429052 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_255239/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/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 = 248.873990 - 0: The maximum resident set size (KB) = 1437132 + 0: The total amount of wall time = 248.583783 + 0: The maximum resident set size (KB) = 1432708 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_255239/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/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 = 252.449329 - 0: The maximum resident set size (KB) = 1422488 + 0: The total amount of wall time = 249.643527 + 0: The maximum resident set size (KB) = 1421840 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_255239/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/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 = 252.763505 - 0: The maximum resident set size (KB) = 1423640 + 0: The total amount of wall time = 247.585723 + 0: The maximum resident set size (KB) = 1424180 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_255239/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/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 = 253.485325 - 0: The maximum resident set size (KB) = 1438440 + 0: The total amount of wall time = 251.398349 + 0: The maximum resident set size (KB) = 1433732 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_255239/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/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 = 247.766378 - 0: The maximum resident set size (KB) = 1411920 + 0: The total amount of wall time = 253.650286 + 0: The maximum resident set size (KB) = 1425568 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Aug 26 21:14:01 UTC 2024 -Elapsed time: 01h:14m:07s. Have a nice day! +Wed Aug 28 18:05:07 UTC 2024 +Elapsed time: 01h:26m:50s. 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 dbc9db8a9d..d4cfbb8d6e 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Aug 26 18:51:21 UTC 2024 +Wed Aug 28 19:02:31 UTC 2024 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_2593550/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_859064/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 = 1361.846982 - 0: The maximum resident set size (KB) = 1537900 + 0: The total amount of wall time = 1352.171779 + 0: The maximum resident set size (KB) = 1527368 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_2593550/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_859064/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 = 715.515398 - 0: The maximum resident set size (KB) = 1525500 + 0: The total amount of wall time = 434.264661 + 0: The maximum resident set size (KB) = 1521224 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_2593550/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_859064/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 = 435.784809 - 0: The maximum resident set size (KB) = 1528568 + 0: The total amount of wall time = 429.232491 + 0: The maximum resident set size (KB) = 1518864 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Aug 26 19:59:54 UTC 2024 -Elapsed time: 01h:08m:34s. Have a nice day! +Wed Aug 28 20:12:34 UTC 2024 +Elapsed time: 01h:10m:03s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index e232f0ce00..c3a09590ac 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Aug 26 16:17:09 UTC 2024 +Wed Aug 28 14:06:09 UTC 2024 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_3681501/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3166513/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 = 1404.274425 - 0: The maximum resident set size (KB) = 769724 + 0: The total amount of wall time = 1365.461093 + 0: The maximum resident set size (KB) = 772116 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_3681501/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3166513/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 = 2178.286214 - 0: The maximum resident set size (KB) = 751032 + 0: The total amount of wall time = 2161.790209 + 0: The maximum resident set size (KB) = 740428 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_3681501/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3166513/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.737097 - 0: The maximum resident set size (KB) = 734276 + 0: The total amount of wall time = 2253.074370 + 0: The maximum resident set size (KB) = 729952 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_3681501/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3166513/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 = 2321.006507 - 0: The maximum resident set size (KB) = 742260 + 0: The total amount of wall time = 2194.893152 + 0: The maximum resident set size (KB) = 718656 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Aug 26 18:51:20 UTC 2024 -Elapsed time: 02h:34m:14s. Have a nice day! +Wed Aug 28 16:37:16 UTC 2024 +Elapsed time: 02h:31m:08s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index e7c85ee865..74b5702014 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,20 +1,20 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 +4d4f175dce1d688311d329ad322abb16e29715cd Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) - 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) + 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,271 +36,271 @@ 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-20240821 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1945026 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27065 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:28, 10:46] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:33, 03:27](3318 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:34, 16:21] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:27, 04:20](2081 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [50:19, 03:59](2117 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [49:40, 04:19](1229 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [12:28, 03:27](2190 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:34, 16:24] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [12:27, 01:34](2080 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:51] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:42, 03:33](2155 MB) - -PASS -- COMPILE 's2swa_intel' [12:28, 10:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:33, 02:32](3341 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:33, 03:26](3339 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:37, 03:07](3265 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:33, 02:35](3360 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:37, 02:50](3280 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:33, 03:01](3622 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:33, 02:39](3315 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [18:34, 03:23](3451 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:33, 03:27](3309 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [18:33, 03:02](3267 MB) - -PASS -- COMPILE 's2sw_intel' [12:28, 10:25] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [18:33, 02:48](2007 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:33, 03:13](2042 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:25, 09:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:36, 03:09](2015 MB) - -PASS -- COMPILE 's2s_intel' [11:27, 09:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [19:33, 02:04](2888 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [19:33, 02:22](2893 MB) -PASS -- TEST 'cpld_restart_c48_intel' [14:06, 02:39](2310 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:26] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:29, 03:05](3324 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 15:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [13:29, 02:09](2108 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [52:48, 02:13](1263 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [51:53, 02:19](2199 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:30] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [16:22, 02:08](2215 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:03] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:13, 01:43](647 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:13, 01:45](1547 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:13, 01:48](1554 MB) -PASS -- TEST 'control_latlon_intel' [09:13, 01:33](1548 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:13, 02:02](1548 MB) -PASS -- TEST 'control_c48_intel' [09:12, 01:41](1574 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:12, 02:29](712 MB) -PASS -- TEST 'control_c192_intel' [09:13, 02:12](1777 MB) -PASS -- TEST 'control_c384_intel' [09:17, 03:09](3085 MB) -PASS -- TEST 'control_c384gdas_intel' [09:17, 04:04](2306 MB) -PASS -- TEST 'control_stochy_intel' [08:37, 01:32](606 MB) -PASS -- TEST 'control_stochy_restart_intel' [50:51, 01:35](413 MB) -PASS -- TEST 'control_lndp_intel' [08:37, 01:55](609 MB) -PASS -- TEST 'control_iovr4_intel' [08:29, 01:49](604 MB) -PASS -- TEST 'control_iovr5_intel' [08:15, 02:03](604 MB) -PASS -- TEST 'control_p8_intel' [06:38, 02:55](1839 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:24, 03:05](1840 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:21, 03:16](1829 MB) -PASS -- TEST 'control_restart_p8_intel' [47:08, 03:34](957 MB) -PASS -- TEST 'control_noqr_p8_intel' [02:38, 02:56](1840 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [45:57, 02:32](1000 MB) -PASS -- TEST 'control_decomp_p8_intel' [02:21, 02:15](1832 MB) -PASS -- TEST 'control_2threads_p8_intel' [02:15, 02:31](1922 MB) -PASS -- TEST 'control_p8_lndp_intel' [02:12, 02:15](1826 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [01:27, 02:55](1858 MB) -PASS -- TEST 'control_p8_mynn_intel' [59:16, 02:48](1854 MB) -PASS -- TEST 'merra2_thompson_intel' [58:57, 04:13](1849 MB) -PASS -- TEST 'regional_control_intel' [56:02, 02:11](868 MB) -PASS -- TEST 'regional_restart_intel' [44:06, 01:41](866 MB) -PASS -- TEST 'regional_decomp_intel' [55:12, 01:12](864 MB) -PASS -- TEST 'regional_2threads_intel' [54:23, 01:39](1175 MB) -PASS -- TEST 'regional_noquilt_intel' [53:17, 01:23](1193 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [53:15, 01:56](861 MB) -PASS -- TEST 'regional_wofs_intel' [53:01, 01:36](1596 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:25, 10:19] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [47:01, 03:34](3298 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 16:30] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [40:55, 04:17](2104 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:50, 03:58](2125 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [18:46, 03:51](1225 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [40:56, 02:30](2169 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:30, 14:57] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [42:57, 02:14](2071 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:51] ( 1524 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [52:07, 03:50](2168 MB) + +PASS -- COMPILE 's2swa_intel' [12:26, 10:19] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [47:00, 02:44](3341 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [47:00, 03:28](3339 MB) +PASS -- TEST 'cpld_restart_p8_intel' [34:53, 03:13](3264 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [47:00, 02:07](3348 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [33:11, 02:25](3275 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [47:00, 03:10](3621 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [47:00, 02:42](3302 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [47:01, 02:51](3453 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [47:00, 02:49](3322 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [47:00, 03:10](3252 MB) + +PASS -- COMPILE 's2sw_intel' [11:25, 09:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [48:01, 02:49](2004 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [48:01, 03:04](2017 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:11] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [49:03, 03:16](2018 MB) + +PASS -- COMPILE 's2s_intel' [11:25, 09:23] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [48:00, 01:58](2889 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [48:00, 02:32](2898 MB) +PASS -- TEST 'cpld_restart_c48_intel' [42:31, 02:33](2310 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:31, 14:37] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [42:55, 03:20](3342 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:31, 15:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:56, 02:14](2094 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:17, 02:02](1284 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:29, 02:02](2198 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:37] ( 1559 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [44:46, 02:22](2216 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:24, 08:59] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [38:39, 01:31](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [38:39, 01:42](1547 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [38:39, 01:44](1554 MB) +PASS -- TEST 'control_latlon_intel' [38:39, 01:20](1552 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [38:39, 02:09](1546 MB) +PASS -- TEST 'control_c48_intel' [38:38, 02:25](1575 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [38:38, 01:49](711 MB) +PASS -- TEST 'control_c192_intel' [38:39, 02:25](1785 MB) +PASS -- TEST 'control_c384_intel' [38:43, 02:34](3082 MB) +PASS -- TEST 'control_c384gdas_intel' [38:43, 04:24](2306 MB) +PASS -- TEST 'control_stochy_intel' [38:39, 01:48](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [31:04, 02:09](412 MB) +PASS -- TEST 'control_lndp_intel' [38:39, 01:52](607 MB) +PASS -- TEST 'control_iovr4_intel' [38:27, 01:48](605 MB) +PASS -- TEST 'control_iovr5_intel' [37:06, 01:55](599 MB) +PASS -- TEST 'control_p8_intel' [37:06, 03:19](1846 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [36:58, 03:34](1845 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [36:50, 02:53](1841 MB) +PASS -- TEST 'control_restart_p8_intel' [14:38, 03:37](974 MB) +PASS -- TEST 'control_noqr_p8_intel' [36:42, 02:57](1815 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [14:38, 03:01](1006 MB) +PASS -- TEST 'control_decomp_p8_intel' [36:21, 02:48](1819 MB) +PASS -- TEST 'control_2threads_p8_intel' [36:01, 02:39](1916 MB) +PASS -- TEST 'control_p8_lndp_intel' [31:44, 01:47](1846 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [30:39, 03:08](1878 MB) +PASS -- TEST 'control_p8_mynn_intel' [30:45, 02:49](1833 MB) +PASS -- TEST 'merra2_thompson_intel' [29:52, 03:50](1809 MB) +PASS -- TEST 'regional_control_intel' [26:58, 01:48](860 MB) +PASS -- TEST 'regional_restart_intel' [12:59, 01:18](862 MB) +PASS -- TEST 'regional_decomp_intel' [25:12, 01:57](864 MB) +PASS -- TEST 'regional_2threads_intel' [23:43, 01:41](1177 MB) +PASS -- TEST 'regional_noquilt_intel' [22:46, 02:01](1191 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [21:44, 02:05](868 MB) +PASS -- TEST 'regional_wofs_intel' [19:06, 01:25](1595 MB) PASS -- COMPILE 'ifi_intel' [09:22, 07:51] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [10:09, 01:31](873 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [10:09, 02:04](861 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [10:10, 01:43](1174 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 08:29] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [50:52, 03:48](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [50:42, 01:48](1664 MB) -PASS -- TEST 'rap_decomp_intel' [49:25, 03:07](991 MB) -PASS -- TEST 'rap_2threads_intel' [49:03, 02:21](1090 MB) -PASS -- TEST 'rap_restart_intel' [37:11, 03:32](834 MB) -PASS -- TEST 'rap_sfcdiff_intel' [46:55, 03:20](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [46:35, 02:22](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [35:29, 03:54](837 MB) -PASS -- TEST 'hrrr_control_intel' [46:30, 04:00](985 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [46:13, 03:46](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [46:14, 03:45](1207 MB) -PASS -- TEST 'hrrr_control_restart_intel' [37:05, 02:12](782 MB) -PASS -- TEST 'rrfs_v1beta_intel' [45:58, 03:54](982 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [45:28, 01:38](1949 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:16, 02:03](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [10:23, 08:16] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [44:34, 01:26](941 MB) -PASS -- TEST 'control_ras_intel' [43:34, 01:26](640 MB) - -PASS -- COMPILE 'wam_intel' [10:24, 08:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [43:26, 01:24](1635 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:23, 08:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [42:58, 02:54](1836 MB) -PASS -- TEST 'regional_control_faster_intel' [42:36, 01:20](856 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:24, 07:09] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [42:03, 01:59](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [41:54, 01:56](1591 MB) -PASS -- TEST 'control_stochy_debug_intel' [40:59, 01:32](797 MB) -PASS -- TEST 'control_lndp_debug_intel' [39:53, 01:55](797 MB) -PASS -- TEST 'control_csawmg_debug_intel' [39:53, 01:32](1099 MB) -PASS -- TEST 'control_ras_debug_intel' [38:16, 02:13](804 MB) -PASS -- TEST 'control_diag_debug_intel' [38:00, 01:52](1656 MB) -PASS -- TEST 'control_debug_p8_intel' [37:28, 01:37](1884 MB) -PASS -- TEST 'regional_debug_intel' [37:27, 01:52](941 MB) -PASS -- TEST 'rap_control_debug_intel' [37:05, 01:41](1177 MB) -PASS -- TEST 'hrrr_control_debug_intel' [36:00, 01:55](1169 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [35:09, 01:34](1173 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [35:05, 01:31](1173 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [34:51, 01:42](1177 MB) -PASS -- TEST 'rap_diag_debug_intel' [34:24, 02:15](1261 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [34:31, 01:29](1177 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [34:27, 01:24](1178 MB) -PASS -- TEST 'rap_lndp_debug_intel' [33:49, 01:31](1180 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [33:41, 01:21](1177 MB) -PASS -- TEST 'rap_noah_debug_intel' [33:36, 01:36](1171 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [33:13, 01:35](1173 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [32:38, 02:06](1172 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [32:12, 01:54](1171 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [32:11, 01:34](1175 MB) -PASS -- TEST 'rap_flake_debug_intel' [32:03, 02:17](1176 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [32:03, 04:02](1176 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:22, 04:52] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [31:44, 01:48](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:24, 08:09] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [31:34, 01:45](1526 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [30:46, 03:14](868 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [30:30, 04:45](863 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [30:10, 02:49](938 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:43, 04:25](1067 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:53, 03:47](862 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:24, 03:43](766 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [19:02, 01:21](744 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:25, 08:16] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [28:29, 01:36](1068 MB) -PASS -- TEST 'conus13km_2threads_intel' [22:18, 02:11](1398 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [21:35, 01:44](912 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:16] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [27:44, 02:19](894 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:24, 04:48] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [27:24, 01:57](1056 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [27:19, 01:45](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [26:54, 01:32](1148 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:35, 01:27](815 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:32, 02:05](1476 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:18, 02:18](1232 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:26, 04:47] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [25:46, 02:13](1077 MB) - -PASS -- COMPILE 'hafsw_intel' [17:33, 09:29] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [25:57, 03:04](1670 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [25:16, 02:10](2013 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:08, 03:06](1199 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:03, 02:34](1224 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:01, 03:09](1376 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:40, 02:34](919 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [24:20, 02:42](1205 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [24:03, 02:02](1102 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [23:42, 03:43](1944 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [20:19, 02:23](957 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:26, 02:00](958 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:54, 02:24](1546 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:04, 01:32](1126 MB) -PASS -- TEST 'gnv1_nested_intel' [18:58, 04:24](1904 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:28, 05:25] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:53, 02:03](1643 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:30, 09:14] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:27, 01:51](1588 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:42, 02:36](1765 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [51:07, 09:06] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:02, 02:37](1760 MB) - -PASS -- COMPILE 'hafs_all_intel' [50:04, 09:03] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:32, 02:26](1182 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:28, 02:46](1169 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [09:56, 01:14](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [51:08, 09:26] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:36, 01:38](769 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [00:08, 01:12](757 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:06, 01:47](651 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:01](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:00, 02:08](649 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:22, 01:29](770 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:15, 01:20](771 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [01:13, 01:31](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [01:00, 02:00](815 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [00:29, 01:55](795 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [59:31, 01:42](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [58:58, 01:35](2039 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [57:50, 01:27](2035 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [50:06, 09:23] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [57:40, 01:24](769 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [46:03, 01:04] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [13:43, 02:09](609 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [13:43, 01:54](747 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [56:51, 01:36](751 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [55:11, 09:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [56:56, 02:50](1973 MB) - -PASS -- COMPILE 'atml_intel' [55:10, 09:08] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [56:37, 04:00](2171 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [56:13, 03:57](2150 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [43:34, 02:05](1318 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:26, 05:32] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [45:15, 03:02](2221 MB) - -PASS -- COMPILE 'atmw_intel' [08:24, 08:47] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [42:13, 03:20](1940 MB) - -PASS -- COMPILE 'atmaero_intel' [06:22, 08:36] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [42:03, 02:49](3200 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [42:03, 03:17](3001 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [42:03, 03:09](3008 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [28:41, 04:50] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [45:00, 02:32](4802 MB) +PASS -- TEST 'regional_ifi_control_intel' [18:26, 01:50](870 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [18:18, 01:45](871 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [18:13, 01:59](1176 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:25] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [17:17, 04:03](988 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [15:14, 01:56](1660 MB) +PASS -- TEST 'rap_decomp_intel' [14:50, 02:56](994 MB) +PASS -- TEST 'rap_2threads_intel' [14:37, 02:28](1089 MB) +PASS -- TEST 'rap_restart_intel' [04:50, 04:04](831 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:28, 04:08](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:21, 03:46](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [01:49, 03:11](833 MB) +PASS -- TEST 'hrrr_control_intel' [14:19, 03:13](985 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [13:02, 02:20](984 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:22, 04:01](1214 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:53, 01:42](783 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:50, 04:00](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 01:32](1949 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 02:22](1934 MB) + +PASS -- COMPILE 'csawmg_intel' [10:23, 08:13] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [11:23, 02:19](927 MB) +PASS -- TEST 'control_ras_intel' [11:09, 01:24](638 MB) + +PASS -- COMPILE 'wam_intel' [10:23, 08:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:35, 02:12](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:29, 08:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [10:03, 03:23](1814 MB) +PASS -- TEST 'regional_control_faster_intel' [09:56, 02:07](859 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:26, 07:10] ( 883 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:51, 01:53](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:51, 01:34](1593 MB) +PASS -- TEST 'control_stochy_debug_intel' [07:58, 02:18](797 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:07, 02:06](798 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:07, 01:33](1081 MB) +PASS -- TEST 'control_ras_debug_intel' [06:19, 01:29](800 MB) +PASS -- TEST 'control_diag_debug_intel' [05:33, 01:45](1660 MB) +PASS -- TEST 'control_debug_p8_intel' [04:38, 01:51](1865 MB) +PASS -- TEST 'regional_debug_intel' [04:29, 02:10](941 MB) +PASS -- TEST 'rap_control_debug_intel' [04:06, 01:52](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:02, 01:50](1173 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [03:10, 02:16](1177 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [02:57, 01:20](1176 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [02:51, 02:03](1181 MB) +PASS -- TEST 'rap_diag_debug_intel' [01:49, 02:19](1261 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [01:39, 02:07](1177 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [01:20, 02:16](1177 MB) +PASS -- TEST 'rap_lndp_debug_intel' [00:48, 01:26](1178 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [00:36, 01:35](1177 MB) +PASS -- TEST 'rap_noah_debug_intel' [00:24, 01:22](1173 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [59:51, 02:02](1174 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [59:36, 01:30](1172 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [59:27, 01:59](1172 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [59:25, 02:11](1180 MB) +PASS -- TEST 'rap_flake_debug_intel' [59:16, 02:10](1177 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [58:48, 03:41](1183 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:23, 04:49] ( 838 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [58:47, 02:16](1675 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:25, 08:11] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [58:45, 02:22](1524 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [58:21, 03:59](869 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [56:26, 04:48](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [55:57, 03:19](936 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [55:34, 04:29](1065 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [55:25, 04:33](861 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [45:52, 03:22](764 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [46:45, 01:28](750 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:24, 08:13] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [55:24, 01:39](1064 MB) +PASS -- TEST 'conus13km_2threads_intel' [50:13, 02:09](1398 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [49:16, 01:38](913 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:18] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [55:21, 02:34](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:48] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [54:34, 01:19](1051 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [54:27, 01:44](1056 MB) +PASS -- TEST 'conus13km_debug_intel' [54:16, 02:08](1160 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [53:14, 02:06](842 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [53:12, 01:22](1469 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [53:05, 01:50](1209 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:24, 04:42] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [52:54, 01:18](1075 MB) + +PASS -- COMPILE 'hafsw_intel' [15:28, 09:36] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [53:04, 02:37](1671 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [52:51, 01:27](2022 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [52:44, 02:35](1198 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [52:24, 02:44](1231 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [51:53, 02:28](1377 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [50:29, 02:37](921 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [48:50, 03:14](1205 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [48:38, 02:47](1096 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [47:54, 03:49](1955 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [47:48, 01:55](956 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [47:27, 02:31](954 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [46:48, 02:05](1542 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [46:03, 01:37](1127 MB) +PASS -- TEST 'gnv1_nested_intel' [45:57, 04:08](1897 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:26, 05:23] ( 1466 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [45:55, 02:05](1586 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:25, 09:06] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [45:30, 02:30](1585 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [43:09, 02:06](1769 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:27, 08:53] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [42:24, 02:21](1770 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:27, 08:59] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [42:04, 02:31](1188 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [38:45, 02:28](1179 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [38:33, 02:00](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:27, 09:14] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [37:31, 01:17](771 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [30:03, 01:33](745 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [35:10, 01:17](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [33:37, 01:49](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [32:52, 01:52](649 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [32:11, 01:22](756 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:44, 01:17](769 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [29:08, 02:03](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [29:05, 01:57](817 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:40, 01:49](796 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [28:11, 01:53](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [27:53, 01:33](2036 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [27:45, 01:22](2040 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:28, 09:11] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [27:09, 01:43](773 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [40:56, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [26:29, 02:02](602 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [25:48, 01:14](748 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [21:16, 01:18](747 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [59:17, 09:39] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [24:56, 02:13](1963 MB) + +PASS -- COMPILE 'atml_intel' [16:37, 09:43] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:36, 03:11](2172 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:36, 03:17](2172 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [01:06, 02:05](1289 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:32, 05:40] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:38, 03:10](2216 MB) + +PASS -- COMPILE 'atmw_intel' [09:29, 08:43] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [11:39, 03:31](1927 MB) + +PASS -- COMPILE 'atmaero_intel' [09:28, 08:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:37, 02:46](3198 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:37, 03:08](2993 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:29, 03:11](3009 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:22, 04:51] ( 883 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [14:28, 02:33](4810 MB) SYNOPSIS: -Starting Date/Time: 20240826 16:28:40 -Ending Date/Time: 20240826 18:42:51 -Total Time: 02h:14m:37s +Starting Date/Time: 20240827 20:00:15 +Ending Date/Time: 20240827 22:13:47 +Total Time: 02h:13m:59s Compiles Completed: 38/38 Tests Completed: 179/179 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index a7ef72b6eb..a06b5aeec9 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,20 +1,20 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 +4d4f175dce1d688311d329ad322abb16e29715cd Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) - 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) + 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,283 +36,283 @@ 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-20240821 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_127037 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_129978 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: scsg0002 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [27:22, 25:36] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:18, 06:11](3202 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [29:23, 26:47] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:53, 15:13](1912 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:15, 16:31](1940 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:57, 08:39](1066 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:50, 16:54](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:28, 27:21] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:06, 15:05](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:21, 15:36] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:47, 23:22](1940 MB) - -PASS -- COMPILE 's2swa_intel' [27:23, 24:56] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:15, 06:59](3222 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:33, 06:56](3221 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:43, 04:57](3151 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:32, 06:54](3250 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [13:31, 04:49](3177 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:43, 06:35](3733 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:49, 06:59](3218 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [19:02, 06:09](3537 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:29, 06:41](3235 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:51, 10:16](3821 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [20:05, 07:20](3618 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [52:37, 11:45](4516 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [45:31, 08:16](4664 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:31, 06:38](3207 MB) - -PASS -- COMPILE 's2sw_intel' [25:24, 23:03] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:01, 05:33](1917 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:16, 05:40](1983 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:18, 14:58] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [14:12, 08:41](3303 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:20, 14:16] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 06:29](1955 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [22:20, 19:22] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:33, 05:19](1982 MB) - -PASS -- COMPILE 's2s_intel' [22:20, 19:12] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:42, 07:19](2880 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [08:40, 02:59](2895 MB) -PASS -- TEST 'cpld_restart_c48_intel' [09:30, 02:12](2307 MB) - -PASS -- COMPILE 's2swa_faster_intel' [31:19, 28:20] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:08, 06:47](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [30:27, 26:41] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:19, 15:27](1918 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:56, 08:43](1090 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:23, 17:09](1893 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [20:17, 14:53] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:06, 24:43](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:18, 16:07] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [13:50, 03:38](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [15:15, 02:59](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:45, 02:41](1571 MB) -PASS -- TEST 'control_latlon_intel' [14:25, 02:58](1563 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:19, 02:54](1563 MB) -PASS -- TEST 'control_c48_intel' [09:18, 06:12](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:56, 05:25](710 MB) -PASS -- TEST 'control_c192_intel' [18:38, 09:07](1675 MB) -PASS -- TEST 'control_c384_intel' [22:39, 09:28](1942 MB) -PASS -- TEST 'control_c384gdas_intel' [28:03, 07:33](1166 MB) -PASS -- TEST 'control_stochy_intel' [05:53, 01:40](619 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:52, 01:00](437 MB) -PASS -- TEST 'control_lndp_intel' [04:50, 01:38](619 MB) -PASS -- TEST 'control_iovr4_intel' [05:06, 02:15](617 MB) -PASS -- TEST 'control_iovr5_intel' [06:01, 02:14](615 MB) -PASS -- TEST 'control_p8_intel' [07:01, 03:30](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:13, 03:24](1854 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:07, 03:29](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [06:49, 02:21](1003 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:09, 03:27](1844 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:57, 02:27](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:48, 03:33](1845 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:44, 03:26](1936 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:57, 05:33](1856 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:59, 04:11](1911 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:08, 03:24](1856 MB) -PASS -- TEST 'merra2_thompson_intel' [11:05, 03:48](1860 MB) -PASS -- TEST 'regional_control_intel' [08:21, 05:26](859 MB) -PASS -- TEST 'regional_restart_intel' [06:16, 03:26](859 MB) -PASS -- TEST 'regional_decomp_intel' [10:16, 05:44](864 MB) -PASS -- TEST 'regional_noquilt_intel' [15:11, 05:10](1189 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [12:01, 05:31](863 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:13, 05:27](862 MB) -PASS -- TEST 'regional_wofs_intel' [14:09, 05:44](1593 MB) - -PASS -- COMPILE 'rrfs_intel' [17:17, 14:45] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [15:03, 06:23](1003 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:21, 04:02](1160 MB) -PASS -- TEST 'rap_decomp_intel' [16:22, 06:56](1003 MB) -PASS -- TEST 'rap_2threads_intel' [13:43, 05:52](1083 MB) -PASS -- TEST 'rap_restart_intel' [07:46, 03:21](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:19, 06:12](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:32, 06:34](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:30, 04:47](878 MB) -PASS -- TEST 'hrrr_control_intel' [14:25, 03:25](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [14:25, 03:28](1002 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [18:13, 03:20](1076 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:01, 01:56](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:49, 06:15](1006 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:50, 07:36](1955 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:53, 07:20](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [16:24, 13:32] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [11:14, 06:59](960 MB) -PASS -- TEST 'control_ras_intel' [06:49, 02:57](658 MB) - -PASS -- COMPILE 'wam_intel' [16:17, 13:23] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:02, 10:22](1650 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:17, 13:54] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:11, 03:21](1852 MB) -PASS -- TEST 'regional_control_faster_intel' [09:23, 05:10](861 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [19:18, 16:44] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:24, 02:43](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:17, 02:44](1606 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:41, 02:58](805 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:49, 02:43](804 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:35, 04:58](1111 MB) -PASS -- TEST 'control_ras_debug_intel' [05:40, 02:45](810 MB) -PASS -- TEST 'control_diag_debug_intel' [09:12, 02:44](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [08:32, 03:47](1891 MB) -PASS -- TEST 'regional_debug_intel' [20:27, 17:07](914 MB) -PASS -- TEST 'rap_control_debug_intel' [08:51, 04:47](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:49, 04:47](1181 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:55, 05:03](1191 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:53, 04:49](1189 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:55, 04:56](1190 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:27, 05:06](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:49, 04:56](1186 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:48, 05:01](1186 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:47, 04:58](1189 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:56, 04:57](1190 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:55, 04:48](1187 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:52, 04:54](1188 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:51, 07:38](1184 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:53, 04:52](1180 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:57, 05:35](1191 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:49, 04:54](1186 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:33, 08:22](1192 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:20, 09:27] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:36, 12:18](1688 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:20, 14:15] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:35, 03:47](1013 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:16, 05:19](877 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:28, 02:55](879 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:33, 04:54](934 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:12, 02:37](928 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:14, 03:06](876 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:23, 04:01](786 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:46, 01:36](771 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:22, 13:21] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:00, 02:07](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:29, 01:18](1073 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:15, 01:20](962 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:18, 13:28] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:16, 03:47](897 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:19, 09:52] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:49, 04:44](1069 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:49, 04:38](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [19:20, 14:00](1146 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:21, 14:13](826 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:42, 08:03](1139 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:22, 14:22](1228 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:19, 10:01] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:57, 04:44](1091 MB) - -PASS -- COMPILE 'hafsw_intel' [25:20, 20:46] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:00, 04:58](698 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:00, 05:53](1054 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:13, 06:51](752 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:50, 11:32](769 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:36, 12:32](795 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:13, 04:57](465 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:06, 06:06](477 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:30, 02:31](386 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:52, 06:41](743 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:18, 03:38](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:16, 03:16](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:09, 04:08](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:45, 01:27](419 MB) -PASS -- TEST 'gnv1_nested_intel' [10:45, 04:40](1714 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [16:18, 11:28] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:44, 12:24](628 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:27, 20:02] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:19, 07:47](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:29, 07:53](679 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [25:24, 22:05] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:10, 05:39](670 MB) - -PASS -- COMPILE 'hafs_all_intel' [22:17, 19:01] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:11, 06:07](739 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:49, 06:09](723 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:03, 16:38](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:20, 10:52] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:54, 02:38](757 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:06, 01:45](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:37, 02:30](655 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:59, 02:31](648 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:49, 02:34](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:49, 02:53](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:54, 02:56](769 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:50, 02:29](649 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:44, 05:58](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:56, 06:01](679 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:33, 02:39](756 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:03, 04:09](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:04, 04:04](2037 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:19, 08:03] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:39, 05:26](751 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [23:23, 11:03] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:53, 02:33](770 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [15:17, 03:56] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:06, 01:53](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:02, 01:39](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:00, 01:08](452 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:23, 16:08] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:34, 04:21](1912 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [22:22, 14:54] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:34, 04:12](1899 MB) - -PASS -- COMPILE 'atml_intel' [24:22, 16:43] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:31, 09:17](1892 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [14:32, 09:13](1880 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:29, 05:04](1027 MB) - -PASS -- COMPILE 'atml_debug_intel' [17:18, 12:50] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:12, 06:36](1927 MB) - -PASS -- COMPILE 'atmw_intel' [19:17, 16:16] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:03, 02:32](1876 MB) - -PASS -- COMPILE 'atmaero_intel' [18:18, 15:16] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:40, 04:51](3122 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:21, 04:27](3001 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:04, 04:38](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:21, 10:50] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [32:06, 22:46](4550 MB) +PASS -- COMPILE 's2swa_32bit_intel' [27:32, 25:22] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:59, 05:52](3202 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:32, 26:57] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:54, 14:53](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:27, 16:31](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:45, 08:41](1066 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:41, 16:55](1890 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:31, 27:07] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:54, 14:40](1903 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:28, 15:47] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:22, 23:20](1943 MB) + +PASS -- COMPILE 's2swa_intel' [27:32, 25:19] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:00, 06:46](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:29, 06:40](3221 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:48, 04:19](3151 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:00, 06:38](3252 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:48, 04:21](3180 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:31, 06:12](3738 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:31, 06:40](3216 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:32, 05:35](3536 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:11, 06:39](3231 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:50, 09:58](3819 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:50, 07:19](3621 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [34:01, 11:03](4520 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [39:31, 08:11](4668 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:17, 06:12](3210 MB) + +PASS -- COMPILE 's2sw_intel' [25:31, 23:19] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:55, 05:16](1919 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:02, 05:20](1977 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:28, 15:24] ( 1453 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:27, 08:41](3303 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:27, 14:25] ( 1453 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:01, 06:09](1955 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [21:30, 19:32] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:24, 05:10](1987 MB) + +PASS -- COMPILE 's2s_intel' [21:30, 19:31] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:31, 07:08](2889 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:29, 02:43](2893 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:19, 01:59](2308 MB) + +PASS -- COMPILE 's2swa_faster_intel' [29:26, 27:15] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:28, 06:36](3234 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [27:24, 25:02] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 15:11](1932 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:53, 09:19](1102 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:15, 17:13](1892 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:22, 14:13] ( 1563 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:13, 24:21](1955 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:21, 16:03] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:51, 03:32](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:28, 02:39](1559 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:57, 02:39](1565 MB) +PASS -- TEST 'control_latlon_intel' [05:31, 02:33](1559 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:33, 02:38](1564 MB) +PASS -- TEST 'control_c48_intel' [09:35, 06:11](1569 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:42, 05:23](710 MB) +PASS -- TEST 'control_c192_intel' [13:28, 08:58](1676 MB) +PASS -- TEST 'control_c384_intel' [19:44, 09:04](1945 MB) +PASS -- TEST 'control_c384gdas_intel' [22:46, 07:32](1179 MB) +PASS -- TEST 'control_stochy_intel' [03:53, 01:33](618 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:00, 00:57](436 MB) +PASS -- TEST 'control_lndp_intel' [03:51, 01:31](618 MB) +PASS -- TEST 'control_iovr4_intel' [04:44, 02:12](614 MB) +PASS -- TEST 'control_iovr5_intel' [04:41, 02:12](616 MB) +PASS -- TEST 'control_p8_intel' [06:55, 03:27](1861 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:56, 03:25](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:03, 03:22](1855 MB) +PASS -- TEST 'control_restart_p8_intel' [05:39, 02:26](993 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:12, 03:29](1849 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:51, 02:27](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:07, 03:28](1847 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:04, 03:13](1938 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:01, 05:17](1850 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:24, 04:13](1907 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:20, 03:25](1866 MB) +PASS -- TEST 'merra2_thompson_intel' [08:22, 03:39](1849 MB) +PASS -- TEST 'regional_control_intel' [08:30, 05:15](859 MB) +PASS -- TEST 'regional_restart_intel' [06:01, 03:24](855 MB) +PASS -- TEST 'regional_decomp_intel' [08:25, 05:28](864 MB) +PASS -- TEST 'regional_noquilt_intel' [08:03, 05:23](1178 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:04, 05:23](855 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:02, 05:13](860 MB) +PASS -- TEST 'regional_wofs_intel' [08:57, 05:50](1586 MB) + +PASS -- COMPILE 'rrfs_intel' [16:20, 14:30] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:15, 06:19](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:43, 03:49](1160 MB) +PASS -- TEST 'rap_decomp_intel' [10:18, 06:33](1009 MB) +PASS -- TEST 'rap_2threads_intel' [10:15, 05:51](1090 MB) +PASS -- TEST 'rap_restart_intel' [06:37, 03:23](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:22, 06:15](1004 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:23, 06:35](1004 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:37, 04:45](879 MB) +PASS -- TEST 'hrrr_control_intel' [06:30, 03:24](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:30, 03:29](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:29, 03:02](1079 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:55, 01:57](828 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:29, 06:08](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:17, 07:31](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:16, 07:19](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [15:18, 13:28] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:17, 06:39](960 MB) +PASS -- TEST 'control_ras_intel' [05:42, 02:59](656 MB) + +PASS -- COMPILE 'wam_intel' [15:18, 13:13] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:16, 10:33](1643 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:18, 13:33] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:54, 03:21](1856 MB) +PASS -- TEST 'regional_control_faster_intel' [08:17, 04:56](854 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [18:18, 16:30] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:21, 02:42](1598 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:15, 02:36](1601 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:36, 03:03](801 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:40, 02:42](804 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:06, 05:03](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [05:41, 02:44](809 MB) +PASS -- TEST 'control_diag_debug_intel' [07:32, 02:45](1662 MB) +PASS -- TEST 'control_debug_p8_intel' [07:00, 03:40](1891 MB) +PASS -- TEST 'regional_debug_intel' [20:04, 16:59](913 MB) +PASS -- TEST 'rap_control_debug_intel' [07:54, 04:53](1187 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:49, 04:47](1178 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:46, 04:49](1192 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:46, 04:50](1188 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:48, 04:53](1187 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:50, 05:02](1271 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:45, 05:00](1187 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:41, 05:04](1186 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:42, 05:01](1191 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:43, 04:57](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:51, 04:46](1187 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:48, 04:57](1185 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:50, 07:45](1186 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:39, 04:46](1183 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:45, 05:40](1191 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:45, 04:49](1187 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:32, 08:11](1193 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:14, 08:30] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:55, 12:18](1692 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:15, 12:57] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:17, 03:46](1017 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:20, 05:15](879 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:19, 02:51](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:19, 04:53](940 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:35, 02:34](928 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:20, 03:01](876 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:21, 04:11](787 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:56, 01:45](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:18, 12:38] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:36, 02:04](1075 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:12, 01:17](1072 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:13, 01:17](961 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:16, 12:51] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:15, 03:47](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:14, 09:34] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:47, 04:46](1069 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:52, 04:35](1063 MB) +PASS -- TEST 'conus13km_debug_intel' [18:39, 14:02](1146 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:34, 13:55](830 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:10, 08:10](1146 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:31, 13:54](1231 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:19, 09:12] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 04:45](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [22:23, 20:36] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:03, 05:07](700 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:26, 05:53](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:19, 06:50](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:05, 11:12](775 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:56, 12:32](784 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:45, 04:58](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:10, 06:09](481 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:11, 02:36](385 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:04, 06:39](455 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:20, 03:39](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:53, 03:22](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:53, 04:14](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:39, 01:28](425 MB) +PASS -- TEST 'gnv1_nested_intel' [09:26, 04:35](1715 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:18, 10:50] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:47, 12:26](627 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:23, 19:19] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:57, 07:24](621 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:16, 07:33](680 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [23:21, 21:21] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:25, 05:39](669 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:23, 18:05] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:09, 06:01](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:20, 06:06](723 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:40, 16:14](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:14, 11:04] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:36, 02:36](756 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:59, 01:40](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:28](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:39, 02:32](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:29, 02:31](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:42, 02:39](768 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:53, 02:38](755 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:45, 02:27](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:49, 05:58](697 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:08, 06:01](680 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:26, 02:35](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:00, 04:04](2035 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:52, 04:02](2034 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:19, 07:49] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:36, 05:20](752 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:20, 10:39] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:28, 02:34](767 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:17, 03:46] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:51, 01:38](312 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:36, 01:29](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:50, 00:56](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:19, 15:49] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:11, 04:14](1908 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:21, 15:05] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:58, 04:11](1903 MB) + +PASS -- COMPILE 'atml_intel' [19:24, 16:58] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:14, 08:43](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [13:31, 09:00](1893 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:39, 05:19](1037 MB) + +PASS -- COMPILE 'atml_debug_intel' [15:15, 12:57] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:59, 06:58](1929 MB) + +PASS -- COMPILE 'atmw_intel' [18:15, 16:06] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:58, 02:31](1879 MB) + +PASS -- COMPILE 'atmaero_intel' [17:16, 14:57] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:58, 04:41](3125 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:14, 04:30](2999 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:53, 04:33](3015 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:18, 11:00] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:10, 22:42](4541 MB) SYNOPSIS: -Starting Date/Time: 20240826 10:16:30 -Ending Date/Time: 20240826 12:28:53 -Total Time: 02h:13m:54s +Starting Date/Time: 20240828 06:22:41 +Ending Date/Time: 20240828 08:19:32 +Total Time: 01h:58m:37s Compiles Completed: 41/41 Tests Completed: 184/184 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 66aa06f2a1..e43d39637a 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,20 +1,20 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 +4d4f175dce1d688311d329ad322abb16e29715cd Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) - 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) + 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,284 +36,284 @@ 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-20240821 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_218269 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_86307 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:15, 20:27] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [26:50, 07:27](3205 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:13, 23:23] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [33:05, 13:45](1913 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:19, 14:12](1935 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:29, 06:58](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [33:50, 15:00](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:14, 23:42] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [33:13, 13:52](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:11, 15:53] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:34, 25:21](1940 MB) - -PASS -- COMPILE 's2swa_intel' [21:11, 20:06] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:32, 08:20](3223 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:29, 08:48](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [36:20, 05:39](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:34, 08:58](3246 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [34:17, 05:41](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:36, 06:50](3466 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:23, 08:26](3223 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:23, 07:30](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:39, 08:30](3224 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:50, 10:41](3444 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [30:26, 06:46](3602 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [35:48, 10:29](4211 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:37, 06:29](4360 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:29, 08:12](3212 MB) - -PASS -- COMPILE 's2sw_intel' [20:14, 19:08] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:53, 05:04](1929 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:03, 05:38](1988 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:11, 14:48] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [14:03, 10:11](3281 MB) - -PASS -- COMPILE 's2sw_debug_intel' [18:15, 16:51] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:41, 06:16](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:15, 17:24] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:07, 05:24](1994 MB) - -PASS -- COMPILE 's2s_intel' [19:15, 17:10] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:32, 06:28](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:18, 02:03](2877 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:26, 01:13](2289 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:16, 21:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [28:33, 08:08](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:12, 22:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:30, 15:20](1928 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:22, 07:57](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:09, 18:00](1906 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:15, 14:18] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [58:59, 28:17](1944 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:11, 15:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [30:56, 03:56](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [32:02, 03:40](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [31:53, 03:37](1566 MB) -PASS -- TEST 'control_latlon_intel' [31:28, 03:38](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [31:44, 03:37](1564 MB) -PASS -- TEST 'control_c48_intel' [34:57, 06:37](1569 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [17:53, 05:46](698 MB) -PASS -- TEST 'control_c192_intel' [37:53, 10:12](1671 MB) -PASS -- TEST 'control_c384_intel' [46:11, 18:43](1929 MB) -PASS -- TEST 'control_c384gdas_intel' [44:03, 14:44](1155 MB) -PASS -- TEST 'control_stochy_intel' [29:56, 02:10](620 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:50, 01:00](426 MB) -PASS -- TEST 'control_lndp_intel' [30:01, 02:11](619 MB) -PASS -- TEST 'control_iovr4_intel' [30:02, 03:01](617 MB) -PASS -- TEST 'control_iovr5_intel' [31:00, 03:07](617 MB) -PASS -- TEST 'control_p8_intel' [32:42, 03:43](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [33:19, 03:50](1849 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [32:52, 03:52](1853 MB) -PASS -- TEST 'control_restart_p8_intel' [05:26, 01:47](1007 MB) -PASS -- TEST 'control_noqr_p8_intel' [32:42, 03:40](1844 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:26, 01:42](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [29:49, 03:35](1849 MB) -PASS -- TEST 'control_2threads_p8_intel' [14:05, 02:54](1928 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:21, 05:14](1851 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:18, 04:07](1906 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:41, 03:21](1864 MB) -PASS -- TEST 'merra2_thompson_intel' [07:10, 03:36](1857 MB) -PASS -- TEST 'regional_control_intel' [07:18, 04:38](833 MB) -PASS -- TEST 'regional_restart_intel' [04:51, 02:34](850 MB) -PASS -- TEST 'regional_decomp_intel' [07:06, 04:48](852 MB) -PASS -- TEST 'regional_2threads_intel' [05:19, 02:53](991 MB) -PASS -- TEST 'regional_noquilt_intel' [07:27, 04:28](1174 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:29, 04:33](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:09, 04:34](851 MB) -PASS -- TEST 'regional_wofs_intel' [09:08, 06:06](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [17:11, 15:27] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:40, 06:49](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:37, 03:43](1149 MB) -PASS -- TEST 'rap_decomp_intel' [09:50, 06:49](1005 MB) -PASS -- TEST 'rap_2threads_intel' [08:42, 05:58](1082 MB) -PASS -- TEST 'rap_restart_intel' [06:25, 03:24](875 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:27, 07:17](1002 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:27, 07:11](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:55, 05:29](875 MB) -PASS -- TEST 'hrrr_control_intel' [06:21, 03:54](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:35, 03:57](995 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:28, 03:21](1076 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:53, 01:53](830 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:41, 07:04](998 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:48, 08:20](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:52, 07:57](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [16:11, 14:14] -PASS -- TEST 'control_csawmg_intel' [09:08, 06:58](957 MB) -PASS -- TEST 'control_ras_intel' [05:54, 03:32](653 MB) - -PASS -- COMPILE 'wam_intel' [15:11, 13:37] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [39:59, 12:10](1644 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:14, 14:06] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:45, 03:23](1849 MB) -PASS -- TEST 'regional_control_faster_intel' [07:19, 04:30](848 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:11, 15:27] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:48, 03:03](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:24, 03:09](1594 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:45, 03:13](794 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:54, 02:54](795 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:06, 04:22](1100 MB) -PASS -- TEST 'control_ras_debug_intel' [06:10, 03:07](801 MB) -PASS -- TEST 'control_diag_debug_intel' [06:11, 03:07](1655 MB) -PASS -- TEST 'control_debug_p8_intel' [06:02, 03:26](1890 MB) -PASS -- TEST 'regional_debug_intel' [18:51, 16:08](891 MB) -PASS -- TEST 'rap_control_debug_intel' [07:44, 05:24](1184 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:37, 05:16](1173 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:46, 05:12](1178 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:37, 05:24](1178 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:05, 05:12](1184 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:25, 05:22](1263 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:06, 05:11](1178 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:05, 05:19](1180 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:07, 05:10](1183 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:57, 05:28](1183 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:57, 05:11](1180 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:02, 05:23](1182 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:48, 08:00](1177 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:51, 05:31](1172 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:49, 06:35](1183 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:38, 05:18](1177 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:33, 08:41](1180 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:13, 11:28] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:21, 14:00](1672 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:13, 12:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:17, 03:34](1012 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:20, 06:14](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:24, 03:48](880 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:21, 05:33](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:18, 02:41](925 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:13, 03:41](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:20, 04:26](775 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:48, 01:41](761 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 13:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:40, 02:34](1086 MB) -PASS -- TEST 'conus13km_2threads_intel' [16:15, 01:15](1062 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [21:14, 01:30](964 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:12, 14:17] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:28, 04:33](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:15, 11:10] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:36, 05:15](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:37, 05:13](1049 MB) -PASS -- TEST 'conus13km_debug_intel' [18:25, 14:40](1135 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:04, 15:04](808 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:18, 08:43](1111 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:13, 14:12](1199 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:10, 11:08] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:46, 05:07](1080 MB) - -PASS -- COMPILE 'hafsw_intel' [18:12, 16:52] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:27, 04:43](685 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:47, 03:54](1033 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:02, 07:37](729 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:29, 11:25](760 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:57, 12:52](782 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:31, 05:04](465 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:47, 06:16](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [15:31, 02:39](368 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:05, 07:05](441 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [23:18, 03:34](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [22:24, 03:15](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:25, 04:02](551 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [22:53, 01:16](398 MB) -PASS -- TEST 'gnv1_nested_intel' [27:32, 05:18](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:14, 12:42] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [33:21, 12:24](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:16, 17:07] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:26, 07:14](600 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [27:22, 07:09](777 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:12, 17:18] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [25:42, 05:25](776 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:16, 17:03] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [26:23, 06:02](722 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [25:21, 06:07](706 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [38:21, 20:06](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:36] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [18:30, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 01:34](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [19:30, 02:28](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [18:32, 02:28](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [17:25, 02:30](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [16:36, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [15:30, 02:33](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [16:31, 02:26](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:22, 06:01](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:14, 05:57](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [16:28, 02:38](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:30, 04:38](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [16:33, 04:41](2033 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [13:11, 11:50] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [17:32, 05:45](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:12, 12:57] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [12:31, 02:36](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:15, 03:26] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [09:03, 02:33](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:55, 01:22](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:01, 00:57](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:12, 16:20] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:48, 04:02](1915 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:16, 15:44] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:19, 04:26](1903 MB) - -PASS -- COMPILE 'atml_intel' [17:15, 15:25] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:19, 07:20](1879 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:12, 07:16](1879 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:07, 03:47](1034 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:15, 11:23] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:50, 06:27](1916 MB) - -PASS -- COMPILE 'atmw_intel' [17:12, 15:17] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:07, 02:49](1884 MB) - -PASS -- COMPILE 'atmaero_intel' [15:11, 13:31] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:32, 06:22](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:43, 06:55](3008 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:29, 07:10](3018 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [16:11, 14:32] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [33:38, 18:23](4485 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:13, 21:17] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:16, 07:33](3203 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 25:02] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:48, 13:57](1908 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:50, 14:38](1936 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:52, 06:49](1071 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:40, 15:18](1893 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:12, 24:56] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:57, 14:12](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:12, 16:15] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:52, 24:48](1939 MB) + +PASS -- COMPILE 's2swa_intel' [22:12, 20:42] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:16, 08:27](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:33, 08:25](3221 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:11, 06:03](3154 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:16, 08:32](3248 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:11, 06:07](3172 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:14, 07:14](3464 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:09, 08:11](3223 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:56, 07:32](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:33, 08:39](3223 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:01, 10:27](3446 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:08, 06:51](3606 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:06, 10:37](4208 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:48, 06:40](4360 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:12, 07:58](3211 MB) + +PASS -- COMPILE 's2sw_intel' [21:12, 19:43] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:44, 05:01](1929 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:52, 06:01](1995 MB) + +PASS -- COMPILE 's2swa_debug_intel' [18:12, 16:33] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:52, 10:12](3280 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:12, 13:30] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:42, 05:58](1947 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [20:13, 18:09] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:52, 05:26](1991 MB) + +PASS -- COMPILE 's2s_intel' [20:14, 18:28] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:14, 06:36](2873 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:15, 02:04](2881 MB) +PASS -- TEST 'cpld_restart_c48_intel' [10:12, 01:09](2291 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:11, 20:11] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:15, 09:12](3223 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:12, 21:23] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:05, 15:07](1930 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:51, 07:23](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:57, 17:08](1904 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 14:24] ( 1558 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:41, 26:59](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:12, 14:39] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:33, 04:05](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:03, 04:04](1559 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:09, 03:46](1571 MB) +PASS -- TEST 'control_latlon_intel' [08:56, 03:26](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:06, 03:59](1568 MB) +PASS -- TEST 'control_c48_intel' [13:11, 07:11](1566 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:13, 06:04](699 MB) +PASS -- TEST 'control_c192_intel' [14:10, 10:50](1665 MB) +PASS -- TEST 'control_c384_intel' [21:23, 18:45](1933 MB) +PASS -- TEST 'control_c384gdas_intel' [18:32, 14:50](1152 MB) +PASS -- TEST 'control_stochy_intel' [03:32, 02:02](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:35, 01:00](425 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 01:51](619 MB) +PASS -- TEST 'control_iovr4_intel' [04:44, 02:33](619 MB) +PASS -- TEST 'control_iovr5_intel' [04:37, 02:44](618 MB) +PASS -- TEST 'control_p8_intel' [06:21, 03:41](1856 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:43, 03:36](1856 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 03:21](1854 MB) +PASS -- TEST 'control_restart_p8_intel' [04:11, 01:44](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:27, 03:22](1851 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:25, 01:46](1013 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:24, 03:24](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:17, 02:51](1932 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:57, 05:40](1863 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:27, 04:16](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:27, 03:50](1860 MB) +PASS -- TEST 'merra2_thompson_intel' [08:16, 03:42](1866 MB) +PASS -- TEST 'regional_control_intel' [07:47, 04:39](849 MB) +PASS -- TEST 'regional_restart_intel' [04:41, 02:34](854 MB) +PASS -- TEST 'regional_decomp_intel' [07:45, 04:49](859 MB) +PASS -- TEST 'regional_2threads_intel' [05:36, 02:52](991 MB) +PASS -- TEST 'regional_noquilt_intel' [06:49, 04:31](1181 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 05:00](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:44, 04:40](849 MB) +PASS -- TEST 'regional_wofs_intel' [07:44, 06:05](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 13:42] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:28, 06:47](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:19, 04:35](1136 MB) +PASS -- TEST 'rap_decomp_intel' [10:32, 07:31](1005 MB) +PASS -- TEST 'rap_2threads_intel' [09:28, 06:05](1085 MB) +PASS -- TEST 'rap_restart_intel' [06:09, 03:29](871 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:30, 06:56](1001 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:31, 07:25](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:14, 05:02](871 MB) +PASS -- TEST 'hrrr_control_intel' [07:38, 04:11](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:31, 05:01](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:55, 03:24](1068 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:39, 01:54](827 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:29, 06:44](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:58, 08:38](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:58, 08:19](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [15:14, 13:20] +PASS -- TEST 'control_csawmg_intel' [08:44, 06:53](959 MB) +PASS -- TEST 'control_ras_intel' [05:38, 03:27](653 MB) + +PASS -- COMPILE 'wam_intel' [16:13, 14:22] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:22, 11:55](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 13:51] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:35, 03:14](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [06:42, 04:46](837 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [18:12, 16:20] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:06, 03:02](1595 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:52, 03:00](1597 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:08](797 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:40, 02:52](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:24](1098 MB) +PASS -- TEST 'control_ras_debug_intel' [04:31, 03:04](803 MB) +PASS -- TEST 'control_diag_debug_intel' [05:54, 03:11](1658 MB) +PASS -- TEST 'control_debug_p8_intel' [05:53, 03:23](1888 MB) +PASS -- TEST 'regional_debug_intel' [18:50, 16:55](891 MB) +PASS -- TEST 'rap_control_debug_intel' [07:34, 05:23](1176 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:35, 05:30](1172 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:42, 05:17](1179 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:32, 05:15](1178 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:31, 05:10](1175 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:43, 05:28](1260 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:38, 05:17](1175 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 05:09](1176 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:30, 05:09](1179 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:03](1175 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:34, 05:05](1171 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:15](1175 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:40, 08:05](1171 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:40, 05:08](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:42, 06:00](1182 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:33, 05:10](1178 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:14, 08:43](1180 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:11, 11:22] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:16, 13:32](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:15, 13:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:19, 03:38](1010 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:00, 06:27](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:13, 03:54](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:04, 05:13](939 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 02:50](926 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 03:28](878 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:04, 04:09](776 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 01:43](760 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:15, 13:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:24, 02:30](1083 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:59, 01:11](1061 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:58, 01:23](962 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:15, 12:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:13, 04:09](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 11:30] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:34, 05:01](1052 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 04:55](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [17:28, 14:15](1133 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:11, 14:10](805 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:06, 08:16](1114 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:09, 14:49](1198 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:11, 11:25] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 05:03](1077 MB) + +PASS -- COMPILE 'hafsw_intel' [21:14, 19:17] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:21, 04:43](686 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:44, 04:00](1036 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:40, 07:29](724 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:15, 11:29](760 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:37, 12:36](781 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:20, 05:08](462 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:33, 06:14](481 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:19, 02:32](366 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:11, 06:57](441 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:07, 03:35](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:20, 03:15](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 04:04](557 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:44, 01:20](396 MB) +PASS -- TEST 'gnv1_nested_intel' [09:24, 05:11](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [16:13, 14:33] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:08, 12:23](586 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:12, 18:54] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:29, 07:15](605 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:30, 07:13](784 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:12, 18:38] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:54, 05:23](777 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:11, 16:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:23, 05:51](717 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:26, 06:13](703 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:22, 20:13](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:13, 13:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:33, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:28, 01:37](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:27](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:29, 02:33](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:29, 02:32](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:30, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:30, 02:38](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:30, 02:29](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:16](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:04, 06:00](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:24, 02:35](752 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 04:38](2029 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:39](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 09:00] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:32](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:14, 13:11] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:28, 02:34](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:44] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:55, 01:38](317 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:54, 01:31](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:52, 00:59](455 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:11, 16:21] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:35, 04:04](1916 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:12, 15:16] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:53, 03:57](1900 MB) + +PASS -- COMPILE 'atml_intel' [18:11, 16:25] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:53, 07:07](1879 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:42, 07:00](1891 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:48, 03:46](1035 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:11, 12:13] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:31, 06:32](1918 MB) + +PASS -- COMPILE 'atmw_intel' [17:15, 15:28] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:12, 02:47](1888 MB) + +PASS -- COMPILE 'atmaero_intel' [16:11, 14:24] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:19, 06:13](3122 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:21, 06:52](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:45](3016 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:11, 11:22] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:34, 18:17](4487 MB) SYNOPSIS: -Starting Date/Time: 20240826 12:28:28 -Ending Date/Time: 20240826 15:05:06 -Total Time: 02h:38m:09s +Starting Date/Time: 20240827 16:33:06 +Ending Date/Time: 20240827 18:16:51 +Total Time: 01h:45m:09s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index e09b636b6f..ceda2b7d30 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,15 +1,15 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 +4d4f175dce1d688311d329ad322abb16e29715cd Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) @@ -25,374 +25,374 @@ 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-20240821 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_3692277 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_391126 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic +* (-a) - HPC PROJECT ACCOUNT: nems * (-l) - USE CONFIG FILE: rt.conf -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [12:20, 12:20] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:29, 05:41](3309 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:17, 16:16] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:02, 17:19](1940 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:06, 18:07](2138 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:16, 08:21](1244 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:07, 19:26](1841 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:19, 16:18] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:34, 17:04](1950 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:42, 05:42] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:13, 23:31](1888 MB) - -PASS -- COMPILE 's2swa_intel' [12:26, 12:26] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [06:58, 06:07](3338 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:48, 05:57](3325 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:34, 03:47](3221 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:02, 06:13](3370 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:40, 03:38](3270 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [06:18, 05:34](3629 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:53, 06:10](3309 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [05:41, 04:49](3207 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:27, 06:33](3326 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [12:16, 10:41](3513 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:46, 06:32](3617 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [15:24, 09:51](4273 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:04, 05:57](4357 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:30, 05:42](3296 MB) - -PASS -- COMPILE 's2sw_intel' [11:38, 11:38] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:51, 05:05](1992 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:17, 04:32](2040 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:41, 05:41] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:45, 08:56](3396 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:22, 05:22] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:44, 05:58](1964 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:00, 11:00] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:10, 04:23](2017 MB) - -PASS -- COMPILE 's2s_intel' [11:03, 11:03] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:22, 08:56](3060 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:05, 02:36](3037 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:00, 01:29](2457 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:34, 17:33] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [06:28, 05:30](3332 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:06, 15:05] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 17:41](1973 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:36, 08:35](1244 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:58, 20:09](1891 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:25, 05:25] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:50, 26:01](1937 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:38, 10:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:34, 03:20](695 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:55](1601 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:30, 02:59](1583 MB) -PASS -- TEST 'control_latlon_intel' [03:25, 02:58](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 02:59](1585 MB) -PASS -- TEST 'control_c48_intel' [08:22, 07:49](1706 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:42, 06:28](858 MB) -PASS -- TEST 'control_c192_intel' [11:24, 10:44](1727 MB) -PASS -- TEST 'control_c384_intel' [12:07, 10:45](1964 MB) -PASS -- TEST 'control_c384gdas_intel' [10:17, 08:04](1379 MB) -PASS -- TEST 'control_stochy_intel' [01:50, 01:38](658 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:20, 01:02](505 MB) -PASS -- TEST 'control_lndp_intel' [01:48, 01:33](661 MB) -PASS -- TEST 'control_iovr4_intel' [02:45, 02:28](655 MB) -PASS -- TEST 'control_iovr5_intel' [02:46, 02:28](652 MB) -PASS -- TEST 'control_p8_intel' [04:01, 03:15](1870 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:54, 03:09](1853 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:39, 02:57](1897 MB) -PASS -- TEST 'control_restart_p8_intel' [02:18, 01:45](1132 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:38, 03:04](1850 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:20, 01:43](1158 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:46, 03:12](1856 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:31, 02:55](1962 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:49, 05:26](1892 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:46, 04:06](1948 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:29, 03:11](1897 MB) -PASS -- TEST 'merra2_thompson_intel' [05:00, 03:26](1866 MB) -PASS -- TEST 'regional_control_intel' [06:02, 05:32](1086 MB) -PASS -- TEST 'regional_restart_intel' [03:18, 02:52](1084 MB) -PASS -- TEST 'regional_decomp_intel' [06:02, 05:35](1085 MB) -PASS -- TEST 'regional_2threads_intel' [03:51, 03:26](1081 MB) -PASS -- TEST 'regional_noquilt_intel' [05:42, 05:19](1393 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:46, 05:16](1089 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:26, 05:20](1078 MB) -PASS -- TEST 'regional_wofs_intel' [07:23, 06:56](1891 MB) - -PASS -- COMPILE 'rrfs_intel' [10:07, 10:06] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:17, 07:49](1109 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:50, 04:03](1257 MB) -PASS -- TEST 'rap_decomp_intel' [08:39, 08:11](1032 MB) -PASS -- TEST 'rap_2threads_intel' [07:51, 07:24](1174 MB) -PASS -- TEST 'rap_restart_intel' [04:42, 04:06](1098 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:12, 07:44](1105 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:42, 08:18](1039 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:27, 05:53](1126 MB) -PASS -- TEST 'hrrr_control_intel' [04:29, 03:59](1042 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:33, 04:06](1036 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:06, 03:43](1103 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:32, 02:10](996 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:24, 07:52](1101 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:36, 09:21](1983 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:21, 09:07](2068 MB) - -PASS -- COMPILE 'csawmg_intel' [09:43, 09:42] -PASS -- TEST 'control_csawmg_intel' [06:33, 06:07](1021 MB) -PASS -- TEST 'control_ras_intel' [03:34, 03:18](739 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:17, 04:16] -PASS -- TEST 'control_csawmg_gnu' [09:11, 08:43](745 MB) - -PASS -- COMPILE 'wam_intel' [10:09, 10:08] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:39, 11:10](1656 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:56, 09:55] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:25, 02:46](1887 MB) -PASS -- TEST 'regional_control_faster_intel' [05:21, 04:52](1086 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:25, 07:24] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:13, 02:47](1624 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:12, 02:39](1628 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:07](829 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:01, 02:49](826 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:43, 04:18](1139 MB) -PASS -- TEST 'control_ras_debug_intel' [03:11, 02:55](839 MB) -PASS -- TEST 'control_diag_debug_intel' [03:27, 02:52](1686 MB) -PASS -- TEST 'control_debug_p8_intel' [03:45, 03:12](1876 MB) -PASS -- TEST 'regional_debug_intel' [19:14, 18:44](1094 MB) -PASS -- TEST 'rap_control_debug_intel' [05:34, 05:19](1230 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:32, 05:16](1212 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:37, 05:20](1221 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 05:11](1219 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:19, 05:06](1195 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:44, 05:17](1299 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:09](1219 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 05:08](1217 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:20, 05:05](1220 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 05:01](1221 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:11, 04:57](1221 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 05:00](1219 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 09:13](1219 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 06:03](1192 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:06, 06:50](1219 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:12, 05:55](1217 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 10:04](1224 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:16, 04:15] -PASS -- TEST 'control_csawmg_debug_gnu' [02:52, 02:23](735 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:40, 04:39] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:17, 13:40](1658 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:45, 09:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:32, 04:31](1129 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:22, 06:30](1052 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:06, 03:29](985 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:50, 06:23](1079 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:32, 03:10](966 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:04, 03:38](932 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:21, 04:51](1036 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:12, 01:52](930 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:55, 09:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:58, 02:12](1193 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:30, 00:57](1112 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:56, 01:21](1082 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:48, 09:47] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:43, 04:14](981 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:44, 04:44] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 05:03](1094 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:04, 04:50](1094 MB) -PASS -- TEST 'conus13km_debug_intel' [15:49, 15:10](1238 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 15:16](909 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:03, 08:29](1155 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:31, 15:01](1305 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:27, 04:27] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:22, 05:10](1146 MB) - -PASS -- COMPILE 'hafsw_intel' [11:22, 11:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:12, 05:10](722 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 06:13](1094 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:12, 07:01](813 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:36, 13:35](855 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:29, 15:20](871 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:22, 05:39](487 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:01, 06:54](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:20, 02:48](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:24, 07:38](469 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:18, 03:46](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:12, 03:36](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:49, 04:11](580 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:30, 01:12](409 MB) -PASS -- TEST 'gnv1_nested_intel' [05:19, 04:03](1719 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:16, 05:15] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:53, 13:02](593 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:16, 11:16] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:36, 08:51](630 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:42, 08:48](743 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:21, 11:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:09, 06:50](722 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:49, 10:48] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:33, 06:36](814 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:34, 06:36](802 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:39, 16:00](1219 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:46, 06:46] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:54, 02:43](1163 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:48, 01:39](1101 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:42, 02:34](1032 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:58, 02:51](1027 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:49, 02:42](1024 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:49, 02:39](1169 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:51, 02:44](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:39, 02:32](1022 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:17, 06:14](1073 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:14, 06:12](1048 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 03:14](1141 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:43, 04:36](2443 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:04, 03:53](2509 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:10, 03:10] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:22, 06:14](1095 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:27, 06:27] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:08, 03:00](1132 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:19, 01:19] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:09, 00:51](262 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:00, 00:48](328 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:47, 00:33](325 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:21, 10:21] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:34, 03:42](1951 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:06, 10:06] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:36, 03:41](1935 MB) - -PASS -- COMPILE 'atml_intel' [10:52, 10:51] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:10, 04:23](1862 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:10, 04:20](1831 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:02, 02:25](1108 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:34, 05:33] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:47, 05:50](1846 MB) - -PASS -- COMPILE 'atmw_intel' [10:30, 10:29] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:35, 01:55](1895 MB) - -PASS -- COMPILE 'atmaero_intel' [10:17, 10:17] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:01, 04:16](3182 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:42, 05:00](3075 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 04:53](3113 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:37, 04:37] ( 884 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [04:35, 04:34] -PASS -- TEST 'control_c48_gnu' [11:42, 11:14](1510 MB) -PASS -- TEST 'control_stochy_gnu' [03:40, 03:24](494 MB) -PASS -- TEST 'control_ras_gnu' [05:02, 04:46](504 MB) -PASS -- TEST 'control_p8_gnu' [05:43, 04:57](1450 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:23, 04:42](1452 MB) -PASS -- TEST 'control_flake_gnu' [10:42, 10:28](535 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:29, 04:29] -PASS -- TEST 'rap_control_gnu' [11:26, 10:59](813 MB) -PASS -- TEST 'rap_decomp_gnu' [11:27, 11:03](816 MB) -PASS -- TEST 'rap_2threads_gnu' [10:11, 09:49](921 MB) -PASS -- TEST 'rap_restart_gnu' [06:03, 05:33](574 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:16, 10:51](813 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:40, 11:14](814 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:35, 08:04](580 MB) -PASS -- TEST 'hrrr_control_gnu' [06:02, 05:33](846 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:00, 05:37](833 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:24, 05:01](916 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:03, 05:41](808 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:11, 02:54](564 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:08, 02:49](655 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:07, 10:36](840 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:38, 06:38] -PASS -- TEST 'control_diag_debug_gnu' [02:14, 01:41](1270 MB) -PASS -- TEST 'regional_debug_gnu' [11:11, 10:45](743 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:53, 02:41](819 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:48, 02:35](816 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:46, 02:33](826 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:48, 02:36](826 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:17, 02:51](905 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 04:07](819 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:49, 02:37](825 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:47, 02:35](815 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:45, 01:34](455 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:03, 01:53](448 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:15, 01:47](1426 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:55, 02:42](820 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:10, 02:57](818 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:50, 04:22](824 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:40, 02:40] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:24, 04:23] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:46, 09:21](702 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:31, 05:02](708 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:05, 08:36](756 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:01, 04:36](741 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:28, 05:06](705 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:30, 07:02](551 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:53, 02:34](538 MB) -PASS -- TEST 'conus13km_control_gnu' [03:53, 03:14](873 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:53, 06:18](888 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:23, 01:51](558 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:41, 09:40] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:08, 05:42](727 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:25, 06:24] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:51, 02:34](716 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:45, 02:32](714 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:28, 06:55](890 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:40, 07:08](577 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:26, 07:57](889 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:29, 06:59](956 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:25, 06:24] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:56, 02:43](736 MB) - -PASS -- COMPILE 's2swa_gnu' [16:32, 16:32] - -PASS -- COMPILE 's2s_gnu' [15:52, 15:52] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:18, 07:23](1514 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:08, 03:07] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:16, 16:16] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:54, 19:07](1467 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:21, 03:20] - -PASS -- COMPILE 'datm_cdeps_gnu' [15:36, 15:36] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:06, 02:59](697 MB) +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 12:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [38:24, 05:40](3309 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [54:00, 17:26](1971 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [32:11, 18:08](2135 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [17:10, 08:22](1240 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:00, 19:28](1874 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:28] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [53:47, 17:29](1969 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:01] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [49:09, 23:16](1910 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 12:44] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [37:26, 05:57](3326 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:26, 06:29](3361 MB) +PASS -- TEST 'cpld_restart_p8_intel' [29:24, 03:34](3266 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [39:28, 05:57](3370 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [27:22, 03:38](3281 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [34:21, 05:37](3636 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [34:21, 06:12](3325 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [37:26, 05:04](3213 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:28, 06:24](3342 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [48:15, 10:37](3535 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [25:48, 06:41](3630 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [12:38, 09:37](4347 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:07, 05:59](4382 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [37:25, 05:25](3299 MB) + +PASS -- COMPILE 's2sw_intel' [14:12, 12:08] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [31:15, 05:01](1994 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:22, 04:30](2050 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:12, 05:57] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [39:16, 08:33](3398 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:36] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [35:07, 05:55](2006 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:20] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:13, 04:53](2059 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 11:15] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [31:48, 09:11](3063 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [22:50, 02:46](3046 MB) +PASS -- TEST 'cpld_restart_c48_intel' [12:55, 01:37](2492 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:15, 16:54] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [35:06, 05:53](3336 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:14, 15:42] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [48:00, 17:39](2013 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:07, 08:28](1278 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:57, 20:03](1881 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:13, 05:33] ( 1558 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [01:04, 26:48](1958 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [30:18, 10:50] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [31:27, 03:21](709 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [30:44, 02:59](1603 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [29:46, 03:01](1602 MB) +PASS -- TEST 'control_latlon_intel' [30:38, 02:53](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [29:45, 03:00](1599 MB) +PASS -- TEST 'control_c48_intel' [24:41, 07:38](1717 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [26:25, 06:34](856 MB) +PASS -- TEST 'control_c192_intel' [38:02, 11:12](1740 MB) +PASS -- TEST 'control_c384_intel' [38:05, 10:55](1967 MB) +PASS -- TEST 'control_c384gdas_intel' [35:54, 08:03](1376 MB) +PASS -- TEST 'control_stochy_intel' [27:24, 01:42](661 MB) +PASS -- TEST 'control_stochy_restart_intel' [09:28, 00:58](503 MB) +PASS -- TEST 'control_lndp_intel' [26:24, 01:35](663 MB) +PASS -- TEST 'control_iovr4_intel' [24:30, 02:29](658 MB) +PASS -- TEST 'control_iovr5_intel' [19:27, 02:34](654 MB) +PASS -- TEST 'control_p8_intel' [17:54, 03:14](1889 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [19:01, 03:06](1902 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [15:56, 03:04](1908 MB) +PASS -- TEST 'control_restart_p8_intel' [11:46, 01:45](1128 MB) +PASS -- TEST 'control_noqr_p8_intel' [16:51, 03:02](1882 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [11:49, 01:43](1165 MB) +PASS -- TEST 'control_decomp_p8_intel' [18:50, 03:10](1879 MB) +PASS -- TEST 'control_2threads_p8_intel' [16:49, 02:54](1967 MB) +PASS -- TEST 'control_p8_lndp_intel' [14:44, 05:24](1879 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:48, 04:10](1940 MB) +PASS -- TEST 'control_p8_mynn_intel' [16:52, 03:07](1896 MB) +PASS -- TEST 'merra2_thompson_intel' [13:51, 03:24](1893 MB) +PASS -- TEST 'regional_control_intel' [14:38, 05:21](1089 MB) +PASS -- TEST 'regional_restart_intel' [04:45, 02:49](1071 MB) +PASS -- TEST 'regional_decomp_intel' [15:37, 05:35](1078 MB) +PASS -- TEST 'regional_2threads_intel' [10:36, 03:23](1088 MB) +PASS -- TEST 'regional_noquilt_intel' [15:39, 05:16](1400 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [14:39, 05:42](1095 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [13:32, 05:17](1091 MB) +PASS -- TEST 'regional_wofs_intel' [15:37, 06:55](1910 MB) + +PASS -- COMPILE 'rrfs_intel' [29:18, 10:18] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [22:46, 07:52](1100 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [29:04, 04:09](1248 MB) +PASS -- TEST 'rap_decomp_intel' [22:46, 08:14](1036 MB) +PASS -- TEST 'rap_2threads_intel' [24:38, 07:21](1178 MB) +PASS -- TEST 'rap_restart_intel' [12:44, 04:05](1097 MB) +PASS -- TEST 'rap_sfcdiff_intel' [22:48, 07:47](1100 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:48, 08:12](1039 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [14:47, 05:53](1123 MB) +PASS -- TEST 'hrrr_control_intel' [12:40, 04:04](1043 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [14:33, 04:08](1030 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:36, 03:41](1101 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:08](1002 MB) +PASS -- TEST 'rrfs_v1beta_intel' [16:45, 07:48](1096 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [17:25, 09:22](1992 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:27, 09:16](2058 MB) + +PASS -- COMPILE 'csawmg_intel' [33:14, 09:58] +PASS -- TEST 'control_csawmg_intel' [07:41, 06:05](1022 MB) +PASS -- TEST 'control_ras_intel' [08:25, 03:17](738 MB) + +PASS -- COMPILE 'csawmg_gnu' [27:17, 04:02] +PASS -- TEST 'control_csawmg_gnu' [22:42, 08:34](743 MB) + +PASS -- COMPILE 'wam_intel' [33:19, 10:06] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:48, 11:20](1663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:12, 10:09] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:51, 02:45](1886 MB) +PASS -- TEST 'regional_control_faster_intel' [08:40, 04:52](1084 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [35:20, 07:23] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:49, 02:38](1627 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:42, 02:37](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [07:22, 03:13](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:47](834 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:33, 04:17](1142 MB) +PASS -- TEST 'control_ras_debug_intel' [04:20, 02:49](833 MB) +PASS -- TEST 'control_diag_debug_intel' [04:39, 02:59](1678 MB) +PASS -- TEST 'control_debug_p8_intel' [04:49, 02:58](1919 MB) +PASS -- TEST 'regional_debug_intel' [20:34, 17:18](1095 MB) +PASS -- TEST 'rap_control_debug_intel' [07:22, 05:10](1207 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:48](1214 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:20, 04:58](1220 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 05:05](1223 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 05:14](1212 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:07](1302 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:01](1214 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 05:07](1221 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:21, 05:01](1216 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 05:01](1219 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:56](1213 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:58](1218 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:10](1213 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:54](1212 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 06:08](1217 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:26, 04:59](1216 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:38, 08:37](1230 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [33:19, 04:16] +PASS -- TEST 'control_csawmg_debug_gnu' [04:36, 02:15](724 MB) + +PASS -- COMPILE 'wam_debug_intel' [26:12, 04:58] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:44, 13:48](1673 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:12, 09:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 03:52](1131 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:37, 06:26](1057 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:34, 03:24](978 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:30, 06:08](1086 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:39, 03:10](960 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:35](943 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:51](1033 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:49](931 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:12, 09:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:50, 02:04](1198 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:37, 00:51](1113 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:13](1097 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:12, 10:07] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:37, 04:09](985 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [20:12, 04:39] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:59](1096 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:51](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [16:44, 15:04](1244 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 14:56](926 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:50, 08:21](1152 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 14:58](1302 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [16:11, 04:38] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:59](1142 MB) + +PASS -- COMPILE 'hafsw_intel' [28:12, 11:42] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:14, 05:11](724 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:27, 06:15](1102 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:20, 06:59](817 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:12, 13:44](984 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:23, 15:22](868 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 05:26](494 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:18, 06:51](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:39, 02:42](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:51, 07:13](476 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 03:41](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:46, 03:34](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 04:08](581 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:09](404 MB) +PASS -- TEST 'gnv1_nested_intel' [06:23, 04:00](1731 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [24:12, 05:02] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:48, 13:10](595 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [34:12, 11:05] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:40](656 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:58, 08:43](742 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [35:14, 11:16] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:24, 06:31](723 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:12, 10:47] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:12, 07:35](819 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 06:31](803 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:54, 16:26](1215 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [28:12, 06:47] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 03:03](1140 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:38](1114 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:50](1009 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:42](1034 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:59](1007 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:44](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:47](1164 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:33](1047 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:12, 06:12](1069 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:13, 06:07](1045 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:19, 02:42](1143 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:53](2451 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:00](2519 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [23:12, 03:27] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:21](1086 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [21:12, 06:31] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:42](1170 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [16:11, 01:15] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:43](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:22, 00:53](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:30](330 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [23:13, 10:45] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:03, 03:39](1991 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:11, 10:16] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 03:34](1966 MB) + +PASS -- COMPILE 'atml_intel' [21:12, 10:35] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:53, 04:21](1844 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:50, 04:14](1865 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:40, 02:22](1091 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:11, 05:21] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:52, 05:51](1898 MB) + +PASS -- COMPILE 'atmw_intel' [17:12, 10:09] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:44, 01:53](1913 MB) + +PASS -- COMPILE 'atmaero_intel' [15:12, 10:08] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:51, 04:06](3203 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:51, 04:52](3105 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:38, 04:57](3096 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:11, 04:31] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [10:11, 04:34] +PASS -- TEST 'control_c48_gnu' [13:40, 11:16](1512 MB) +PASS -- TEST 'control_stochy_gnu' [05:21, 03:21](492 MB) +PASS -- TEST 'control_ras_gnu' [06:20, 04:46](504 MB) +PASS -- TEST 'control_p8_gnu' [06:52, 04:49](1430 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:45, 04:38](1455 MB) +PASS -- TEST 'control_flake_gnu' [12:24, 10:22](502 MB) + +PASS -- COMPILE 'rrfs_gnu' [08:11, 04:10] +PASS -- TEST 'rap_control_gnu' [12:30, 10:54](840 MB) +PASS -- TEST 'rap_decomp_gnu' [13:31, 11:12](844 MB) +PASS -- TEST 'rap_2threads_gnu' [11:34, 09:55](922 MB) +PASS -- TEST 'rap_restart_gnu' [07:39, 05:35](578 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:36, 11:02](814 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:30, 11:09](841 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:40, 08:08](579 MB) +PASS -- TEST 'hrrr_control_gnu' [07:34, 05:36](842 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:34](789 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:30, 05:04](911 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 05:35](810 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:27, 02:53](565 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:24, 03:03](653 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:46, 10:39](807 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:12, 06:25] +PASS -- TEST 'control_diag_debug_gnu' [03:40, 01:37](1271 MB) +PASS -- TEST 'regional_debug_gnu' [14:36, 12:10](754 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:42](827 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:40](827 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:19, 02:37](825 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [05:21, 02:38](829 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:35, 02:49](910 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:21, 04:07](822 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:21, 02:35](823 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [05:21, 02:35](821 MB) +PASS -- TEST 'control_ras_debug_gnu' [04:20, 01:33](459 MB) +PASS -- TEST 'control_stochy_debug_gnu' [04:20, 01:45](453 MB) +PASS -- TEST 'control_debug_p8_gnu' [04:38, 01:48](1429 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:35](824 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [05:23, 02:55](828 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:38, 04:23](828 MB) + +PASS -- COMPILE 'wam_debug_gnu' [06:11, 02:26] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:09] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:37, 09:29](703 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:40, 04:59](707 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:29, 08:37](753 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:34, 04:33](742 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:32, 05:07](705 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:36, 07:03](556 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:25, 02:32](541 MB) +PASS -- TEST 'conus13km_control_gnu' [10:52, 03:11](873 MB) +PASS -- TEST 'conus13km_2threads_gnu' [08:42, 06:34](883 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:43, 01:49](565 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 09:37] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:40, 05:45](724 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:39] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [09:23, 02:35](712 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [09:21, 02:29](711 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:44, 06:56](894 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [10:41, 07:09](580 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:39, 07:52](895 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:37, 06:58](957 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:56] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:26, 02:35](733 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:31] + +PASS -- COMPILE 's2s_gnu' [17:11, 15:50] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:19, 07:20](1528 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:08] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:03] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:55, 19:32](1460 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:56] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:13] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:04](692 MB) SYNOPSIS: -Starting Date/Time: 20240826 16:21:26 -Ending Date/Time: 20240826 20:29:01 -Total Time: 04h:07m:50s +Starting Date/Time: 20240827 21:24:12 +Ending Date/Time: 20240828 14:55:56 +Total Time: 17h:32m:02s Compiles Completed: 57/57 Tests Completed: 243/243 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 9093919749..3f7ae85b5c 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,20 +1,20 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 +4d4f175dce1d688311d329ad322abb16e29715cd Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) - 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) + 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,375 +36,375 @@ 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-20240821 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2935643 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_60228 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:10, 11:37] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:21, 08:30](2112 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:11, 18:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:36, 13:25](1999 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:32, 14:50](2320 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:20, 07:40](1327 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:24, 15:14](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 17:01] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:57, 13:56](1991 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:10, 05:34] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:29, 22:38](1974 MB) - -PASS -- COMPILE 's2swa_intel' [17:11, 10:28] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:10, 08:46](2178 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:19, 08:53](2177 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:23, 04:52](1978 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:12, 08:42](2201 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:21, 05:27](1737 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:12, 10:20](2535 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:09, 08:52](2171 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:15, 07:00](2078 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:23, 08:52](2172 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:53, 16:00](2985 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:28, 07:03](2923 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:36, 11:06](3837 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:53, 07:19](3647 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:19, 05:36](2145 MB) - -PASS -- COMPILE 's2sw_intel' [19:11, 13:03] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:03, 08:18](2026 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:07, 05:31](2076 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:10, 07:01] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:32, 08:47](2205 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:10, 06:31] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:09, 06:47](2049 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 11:11] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:32, 04:35](2079 MB) - -PASS -- COMPILE 's2s_intel' [17:11, 11:11] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [13:57, 08:09](3064 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [09:53, 04:01](3040 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:40, 01:19](2485 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:11, 12:37] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:19, 07:27](2176 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:49] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:51, 13:58](2034 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:04, 06:48](1397 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:51, 15:26](1959 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:10] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:09, 23:52](2013 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:10, 09:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:18, 03:43](712 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 02:31](1617 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:45, 02:32](1612 MB) -PASS -- TEST 'control_latlon_intel' [04:28, 02:29](1601 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:33, 02:31](1617 MB) -PASS -- TEST 'control_c48_intel' [09:41, 07:03](1712 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:25, 06:02](833 MB) -PASS -- TEST 'control_c192_intel' [12:43, 09:18](1742 MB) -PASS -- TEST 'control_c384_intel' [12:29, 09:13](1990 MB) -PASS -- TEST 'control_c384gdas_intel' [14:13, 09:55](1506 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:47](674 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:06](548 MB) -PASS -- TEST 'control_lndp_intel' [03:22, 01:36](670 MB) -PASS -- TEST 'control_iovr4_intel' [04:21, 02:31](662 MB) -PASS -- TEST 'control_iovr5_intel' [04:21, 02:34](668 MB) -PASS -- TEST 'control_p8_intel' [05:12, 02:39](1901 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:12, 02:45](1903 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:09, 02:38](1895 MB) -PASS -- TEST 'control_restart_p8_intel' [06:55, 02:29](1153 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:50, 02:36](1891 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:53, 02:21](1199 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:47, 02:44](1883 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:39, 02:26](1982 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:38, 04:35](1908 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 04:04](1968 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:50, 02:46](1917 MB) -PASS -- TEST 'merra2_thompson_intel' [05:20, 02:57](1903 MB) -PASS -- TEST 'regional_control_intel' [06:31, 04:39](1188 MB) -PASS -- TEST 'regional_restart_intel' [04:24, 02:42](1169 MB) -PASS -- TEST 'regional_decomp_intel' [06:28, 04:55](1184 MB) -PASS -- TEST 'regional_2threads_intel' [08:36, 03:45](1151 MB) -PASS -- TEST 'regional_noquilt_intel' [09:39, 05:08](1521 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:30, 05:32](1196 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:22, 05:25](1206 MB) -PASS -- TEST 'regional_wofs_intel' [10:23, 05:47](2077 MB) - -PASS -- COMPILE 'rrfs_intel' [10:11, 08:32] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:49, 06:50](1198 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:49, 03:48](1357 MB) -PASS -- TEST 'rap_decomp_intel' [13:04, 07:02](1155 MB) -PASS -- TEST 'rap_2threads_intel' [11:53, 06:34](1366 MB) -PASS -- TEST 'rap_restart_intel' [07:59, 03:33](1156 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:52, 06:48](1203 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:07, 07:06](1148 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:04, 05:03](1195 MB) -PASS -- TEST 'hrrr_control_intel' [09:55, 03:30](1081 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:55, 03:38](1048 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:59, 03:13](1110 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:25, 01:52](1026 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:01, 06:41](1184 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 07:45](2009 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 07:33](2167 MB) - -PASS -- COMPILE 'csawmg_intel' [09:11, 08:04] -PASS -- TEST 'control_csawmg_intel' [07:36, 05:34](1047 MB) -PASS -- TEST 'control_ras_intel' [04:21, 02:53](817 MB) - -PASS -- COMPILE 'csawmg_gnu' [07:10, 04:23] -PASS -- TEST 'control_csawmg_gnu' [09:42, 07:20](1067 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 09:21] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:35, 09:57](1666 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 08:11] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:53, 03:11](1903 MB) -PASS -- TEST 'regional_control_faster_intel' [08:34, 05:27](1197 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 06:06] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:33, 02:41](1644 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 02:39](1640 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:02](841 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:18, 02:50](848 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:24, 05:11](1155 MB) -PASS -- TEST 'control_ras_debug_intel' [06:19, 02:49](858 MB) -PASS -- TEST 'control_diag_debug_intel' [05:42, 02:40](1698 MB) -PASS -- TEST 'control_debug_p8_intel' [06:35, 03:38](1928 MB) -PASS -- TEST 'regional_debug_intel' [20:29, 17:18](1153 MB) -PASS -- TEST 'rap_control_debug_intel' [07:20, 04:50](1234 MB) -PASS -- TEST 'hrrr_control_debug_intel' [12:22, 04:39](1230 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [11:17, 04:34](1231 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [12:18, 04:49](1224 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:17, 04:36](1230 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:24, 05:02](1319 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:17, 04:36](1235 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:17, 04:51](1235 MB) -PASS -- TEST 'rap_lndp_debug_intel' [15:17, 04:50](1239 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:17, 04:51](1242 MB) -PASS -- TEST 'rap_noah_debug_intel' [15:18, 04:52](1239 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [15:19, 04:44](1232 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:18, 07:28](1234 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [16:18, 04:37](1226 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [16:24, 05:35](1243 MB) -PASS -- TEST 'rap_flake_debug_intel' [14:18, 04:28](1238 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:52, 08:14](1238 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 03:49] -PASS -- TEST 'control_csawmg_debug_gnu' [12:32, 03:00](1053 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 03:48] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:48, 03:41](1240 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:45, 05:32](1130 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:35, 02:58](1039 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:33, 05:12](1290 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:39, 02:41](1018 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:39, 03:06](991 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:55, 04:06](1100 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:20, 01:37](963 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:10, 07:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:46, 01:53](1286 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:27, 00:44](1200 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:25, 01:02](1144 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:24] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:31, 03:51](1075 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 03:41] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:17, 04:49](1112 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:17, 05:04](1099 MB) -PASS -- TEST 'conus13km_debug_intel' [17:31, 15:12](1332 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:33, 14:56](1000 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:30, 11:41](1246 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:25, 15:17](1417 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 03:43] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 04:31](1161 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 10:09] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:07, 05:34](858 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:20, 05:00](1260 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:13, 06:21](926 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:02, 14:07](974 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:08, 15:31](1002 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:03, 05:34](591 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:16, 07:10](605 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:42, 02:35](433 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:54, 07:33](550 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:48, 03:52](603 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:50, 03:42](608 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:50, 04:56](647 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:25, 01:17](451 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 04:02] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:41, 11:58](673 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:12, 09:45] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:12, 16:34](846 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:55, 16:05](837 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 09:45] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:22, 09:24](820 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 09:35] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [15:04, 07:05](921 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:04, 07:06](895 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:45, 16:42](1345 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:29] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:17, 02:11](1142 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:22](1100 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:17, 02:06](1022 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:16, 02:08](1014 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:17, 02:11](1013 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:14, 02:10](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:15, 02:11](1147 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:08](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:54, 04:56](1161 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:47, 04:54](1160 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:15](1172 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 03:02](2453 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:11](2456 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:49] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:15](1076 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 05:52] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:13](1165 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:01] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 01:04](334 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:55](573 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:35](561 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:30] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:01, 04:35](2012 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:19] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:03, 04:50](1986 MB) - -PASS -- COMPILE 'atml_intel' [10:11, 08:48] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:11, 06:51](1902 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:07, 06:03](1908 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:38, 04:19](1154 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 04:52] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:58, 06:10](1916 MB) - -PASS -- COMPILE 'atmw_intel' [13:11, 08:46] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:51, 02:42](1938 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 08:13] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:52, 04:57](2011 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:50, 04:31](1807 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:39, 04:26](1819 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:11, 03:47] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:47, 16:41](4634 MB) - -PASS -- COMPILE 'atm_gnu' [08:11, 04:22] -PASS -- TEST 'control_c48_gnu' [12:40, 09:26](1548 MB) -PASS -- TEST 'control_stochy_gnu' [05:24, 02:27](726 MB) -PASS -- TEST 'control_ras_gnu' [06:17, 04:07](731 MB) -PASS -- TEST 'control_p8_gnu' [06:47, 04:11](1704 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:39, 03:53](1726 MB) -PASS -- TEST 'control_flake_gnu' [07:21, 04:46](806 MB) - -PASS -- COMPILE 'rrfs_gnu' [07:10, 04:08] -PASS -- TEST 'rap_control_gnu' [10:41, 08:38](1082 MB) -PASS -- TEST 'rap_decomp_gnu' [10:41, 08:40](1081 MB) -PASS -- TEST 'rap_2threads_gnu' [10:34, 07:58](1110 MB) -PASS -- TEST 'rap_restart_gnu' [06:59, 04:12](884 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:46, 08:10](1083 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:33, 08:31](1080 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:52, 06:08](884 MB) -PASS -- TEST 'hrrr_control_gnu' [06:54, 04:22](1070 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:51, 04:15](1138 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:49, 03:54](1022 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:31, 04:29](1066 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:45, 02:12](885 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:46, 02:09](934 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:53, 08:01](1081 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 06:11] -PASS -- TEST 'control_diag_debug_gnu' [03:30, 01:21](1624 MB) -PASS -- TEST 'regional_debug_gnu' [08:25, 06:44](1106 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:28, 02:16](1097 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:16, 02:05](1089 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:11](1093 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:16, 02:00](1100 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:26, 02:54](1266 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 03:25](1093 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:23](1094 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:18, 02:14](1092 MB) -PASS -- TEST 'control_ras_debug_gnu' [04:17, 01:38](726 MB) -PASS -- TEST 'control_stochy_debug_gnu' [04:16, 01:46](722 MB) -PASS -- TEST 'control_debug_p8_gnu' [05:29, 03:01](1699 MB) -PASS -- TEST 'rap_flake_debug_gnu' [06:18, 02:11](1097 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [05:18, 02:15](1097 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:48, 03:32](1101 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:25] -PASS -- TEST 'control_wam_debug_gnu' [07:51, 05:24](1559 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:11, 04:48] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:44, 08:14](965 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:36, 04:05](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:44, 06:57](976 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:54, 03:45](886 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:35, 04:11](953 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:44, 06:13](863 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:21, 02:15](861 MB) -PASS -- TEST 'conus13km_control_gnu' [05:36, 02:47](1270 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:30, 01:09](1182 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:29, 01:28](937 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:10, 11:06] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:46, 04:39](991 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 05:53] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:18, 02:09](978 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:18, 01:58](970 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:34, 05:42](1291 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:30, 05:59](978 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:28, 03:28](1193 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:28, 05:38](1352 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:10, 06:29] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:19, 02:09](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [23:10, 17:09] - -PASS -- COMPILE 's2s_gnu' [22:10, 16:43] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:03, 05:08](3072 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [10:10, 04:46] - -PASS -- COMPILE 's2sw_pdlib_gnu' [21:10, 17:23] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:58, 25:52](2912 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:10, 03:20] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:46, 11:58](2946 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [22:10, 15:38] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:27](772 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:10, 11:29] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:03, 08:22](2122 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:10, 16:25] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:04, 13:18](1986 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:17, 14:04](2290 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:22, 06:35](1306 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:03, 15:25](1919 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:10, 17:05] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:34, 13:01](1989 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:10, 06:14] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:03, 21:01](1979 MB) + +PASS -- COMPILE 's2swa_intel' [16:10, 11:29] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:53, 08:53](2179 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:06, 08:32](2165 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:14, 05:23](1967 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:56, 08:49](2199 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:12, 05:24](1740 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:54, 09:48](2538 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:49, 08:44](2162 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:57, 07:18](2079 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:05, 08:39](2178 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:49, 15:56](2981 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:03, 05:58](2919 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:26, 10:46](3836 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:33, 06:44](3630 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:54, 05:50](2132 MB) + +PASS -- COMPILE 's2sw_intel' [16:10, 10:54] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:49, 07:41](2028 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:59, 05:21](2086 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:10, 05:26] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:01, 08:22](2213 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:10, 05:14] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:58, 05:37](2052 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:10, 10:21] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:53, 05:10](2085 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 10:01] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:46, 08:13](3055 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:51, 03:19](3041 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:36, 01:26](2487 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:06] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:01, 07:30](2185 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:10, 16:50] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:54, 13:49](2040 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:57, 06:44](1392 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:53, 15:18](1956 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:57] ( 1558 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:57, 23:34](2014 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:21, 03:29](723 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:33, 03:08](1627 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:37, 03:17](1634 MB) +PASS -- TEST 'control_latlon_intel' [05:26, 03:06](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:33, 03:09](1609 MB) +PASS -- TEST 'control_c48_intel' [08:31, 07:04](1709 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:24, 05:52](838 MB) +PASS -- TEST 'control_c192_intel' [13:38, 12:04](1754 MB) +PASS -- TEST 'control_c384_intel' [15:22, 12:48](2001 MB) +PASS -- TEST 'control_c384gdas_intel' [12:51, 09:55](1508 MB) +PASS -- TEST 'control_stochy_intel' [03:22, 01:39](673 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:00](546 MB) +PASS -- TEST 'control_lndp_intel' [03:17, 01:35](677 MB) +PASS -- TEST 'control_iovr4_intel' [04:20, 02:42](668 MB) +PASS -- TEST 'control_iovr5_intel' [04:19, 02:42](682 MB) +PASS -- TEST 'control_p8_intel' [05:49, 03:18](1902 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:15](1905 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:56, 03:04](1904 MB) +PASS -- TEST 'control_restart_p8_intel' [04:40, 01:50](1156 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:50, 03:08](1890 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:44, 01:46](1222 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:44, 03:26](1890 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:38, 02:55](1979 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:29, 05:45](1894 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:48, 04:24](1975 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:50, 02:41](1911 MB) +PASS -- TEST 'merra2_thompson_intel' [05:51, 03:46](1914 MB) +PASS -- TEST 'regional_control_intel' [06:24, 04:47](1207 MB) +PASS -- TEST 'regional_restart_intel' [04:24, 02:48](1163 MB) +PASS -- TEST 'regional_decomp_intel' [07:21, 05:21](1176 MB) +PASS -- TEST 'regional_2threads_intel' [05:24, 03:25](1161 MB) +PASS -- TEST 'regional_noquilt_intel' [06:25, 04:42](1523 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:30, 05:13](1197 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:22, 04:55](1193 MB) +PASS -- TEST 'regional_wofs_intel' [07:23, 05:41](2087 MB) + +PASS -- COMPILE 'rrfs_intel' [10:11, 09:06] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:37, 06:41](1186 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:47, 03:27](1360 MB) +PASS -- TEST 'rap_decomp_intel' [08:37, 06:59](1140 MB) +PASS -- TEST 'rap_2threads_intel' [08:37, 06:14](1365 MB) +PASS -- TEST 'rap_restart_intel' [06:00, 03:24](1138 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:38, 06:39](1201 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:38, 07:01](1161 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:51, 05:01](1199 MB) +PASS -- TEST 'hrrr_control_intel' [05:40, 03:26](1083 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:40, 03:38](1049 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:40, 03:10](1115 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:32, 01:51](1015 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:54, 06:30](1181 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:20, 07:47](2017 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:28](2177 MB) + +PASS -- COMPILE 'csawmg_intel' [10:11, 08:09] +PASS -- TEST 'control_csawmg_intel' [08:24, 06:17](1057 MB) +PASS -- TEST 'control_ras_intel' [05:17, 02:57](828 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:10, 04:20] +PASS -- TEST 'control_csawmg_gnu' [09:31, 08:05](1065 MB) + +PASS -- COMPILE 'wam_intel' [10:10, 08:45] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:34, 09:58](1659 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 08:47] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:52, 02:22](1901 MB) +PASS -- TEST 'regional_control_faster_intel' [06:24, 04:15](1191 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 06:20] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:29, 02:27](1636 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:30, 02:21](1639 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:49](853 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:39](845 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:23, 03:47](1155 MB) +PASS -- TEST 'control_ras_debug_intel' [04:16, 02:51](856 MB) +PASS -- TEST 'control_diag_debug_intel' [04:32, 02:31](1707 MB) +PASS -- TEST 'control_debug_p8_intel' [05:32, 03:34](1937 MB) +PASS -- TEST 'regional_debug_intel' [18:25, 16:43](1157 MB) +PASS -- TEST 'rap_control_debug_intel' [07:19, 05:09](1235 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:35](1230 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:45](1232 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:44](1229 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:52](1236 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:24, 04:53](1307 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:43](1228 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 04:53](1229 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:17, 04:32](1237 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 04:36](1239 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:18, 04:46](1232 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:48](1230 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:17, 07:55](1237 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 04:55](1240 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:20, 05:54](1242 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:36](1247 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:48, 08:15](1234 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 03:53] +PASS -- TEST 'control_csawmg_debug_gnu' [07:29, 02:39](1053 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 03:43] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:47, 04:14](1221 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:33, 07:30](1188 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:51, 03:39](1053 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:47, 07:06](1273 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:01, 03:24](1041 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:49, 03:54](1005 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:52, 05:45](1152 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [16:21, 01:59](954 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:18] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:40, 02:09](1274 MB) +PASS -- TEST 'conus13km_2threads_intel' [15:40, 01:00](1189 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [16:33, 01:12](1137 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:34, 03:46](1072 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:26] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:16, 04:54](1114 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:17, 05:03](1108 MB) +PASS -- TEST 'conus13km_debug_intel' [19:29, 15:48](1356 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:35, 16:14](1003 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:33, 12:24](1245 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:33, 16:10](1430 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:35] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:18, 04:38](1161 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 10:15] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:08, 05:31](865 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:24, 04:55](1250 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:20, 06:36](932 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:06, 14:06](974 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:20, 15:27](974 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:52, 05:27](598 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:20, 06:58](612 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [14:42, 02:31](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:54, 07:34](548 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:43, 03:52](609 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:44, 03:42](606 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [17:50, 04:55](663 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:25, 01:18](448 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 03:41] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:45, 11:28](638 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:11, 09:58] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [30:56, 16:17](755 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [31:59, 16:29](838 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:11, 09:51] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [25:23, 09:51](811 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:11, 09:48] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [22:14, 05:45](923 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [22:16, 05:46](900 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [32:44, 16:32](1344 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 05:54] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [18:16, 02:14](1154 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:17, 01:24](1112 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [18:15, 02:10](1018 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [17:15, 02:12](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [16:16, 02:12](1023 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [15:15, 02:15](1162 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [13:15, 02:16](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [13:15, 02:10](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:50, 05:01](1163 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:49, 04:54](1150 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [13:13, 02:12](1117 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:05](2390 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [12:15, 03:08](2399 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:11] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:17, 05:17](1082 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:03] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [12:15, 02:15](1128 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:06] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [10:26, 00:54](337 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [10:20, 00:49](577 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:22, 00:33](570 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:10, 09:20] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [13:45, 04:20](2032 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:39] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:52, 04:18](2000 MB) + +PASS -- COMPILE 'atml_intel' [11:10, 09:23] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [15:05, 06:47](1900 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:59, 06:54](1904 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:32, 03:13](1147 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 04:45] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:57, 06:07](1918 MB) + +PASS -- COMPILE 'atmw_intel' [11:11, 09:09] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:49, 02:40](1948 MB) + +PASS -- COMPILE 'atmaero_intel' [11:10, 08:52] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:53, 04:55](2029 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:44, 04:24](1808 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:40, 04:25](1816 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:23] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:30, 16:56](4579 MB) + +PASS -- COMPILE 'atm_gnu' [07:10, 05:21] +PASS -- TEST 'control_c48_gnu' [11:34, 09:28](1531 MB) +PASS -- TEST 'control_stochy_gnu' [04:18, 02:24](727 MB) +PASS -- TEST 'control_ras_gnu' [07:21, 04:00](729 MB) +PASS -- TEST 'control_p8_gnu' [08:48, 04:48](1722 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:37, 04:54](1727 MB) +PASS -- TEST 'control_flake_gnu' [07:19, 04:33](807 MB) + +PASS -- COMPILE 'rrfs_gnu' [07:10, 05:14] +PASS -- TEST 'rap_control_gnu' [11:32, 08:40](1082 MB) +PASS -- TEST 'rap_decomp_gnu' [11:32, 08:29](1084 MB) +PASS -- TEST 'rap_2threads_gnu' [10:45, 07:27](1114 MB) +PASS -- TEST 'rap_restart_gnu' [06:40, 04:29](887 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:46, 08:33](1081 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:33, 08:46](1080 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:38, 06:27](885 MB) +PASS -- TEST 'hrrr_control_gnu' [07:45, 04:17](1070 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 04:22](1136 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:34, 03:50](1034 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 04:07](1070 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:18, 02:13](887 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:19, 02:06](935 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [10:50, 07:50](1078 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:49] +PASS -- TEST 'control_diag_debug_gnu' [03:29, 01:16](1625 MB) +PASS -- TEST 'regional_debug_gnu' [08:25, 06:37](1114 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:16, 02:07](1099 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 02:08](1088 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:16, 02:04](1096 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:18, 02:07](1095 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:24, 02:11](1268 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:17, 03:32](1094 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 02:10](1097 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:17, 02:01](1093 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:11](725 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:21](723 MB) +PASS -- TEST 'control_debug_p8_gnu' [05:31, 02:28](1722 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:16, 02:01](1096 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:11](1103 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 03:21](1100 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:11] +PASS -- TEST 'control_wam_debug_gnu' [08:30, 06:01](1560 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [14:11, 10:31] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:30, 07:40](963 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:38, 04:06](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:42, 06:57](994 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:52, 03:26](889 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:35, 04:08](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:35, 05:48](864 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:18, 02:23](864 MB) +PASS -- TEST 'conus13km_control_gnu' [05:36, 02:43](1270 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:29, 01:10](1179 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:28, 01:35](938 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [20:11, 16:12] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:28, 05:27](991 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [19:10, 15:25] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:17, 02:05](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:17, 02:02](970 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:30, 05:47](1284 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:31, 06:00](973 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:25, 03:23](1194 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:25, 05:45](1352 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [18:10, 15:30] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:16, 02:10](1000 MB) + +PASS -- COMPILE 's2swa_gnu' [26:11, 23:31] + +PASS -- COMPILE 's2s_gnu' [23:11, 20:32] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:51, 06:34](2758 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [18:10, 15:19] + +PASS -- COMPILE 's2sw_pdlib_gnu' [25:11, 23:31] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [30:01, 26:55](3046 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [16:10, 14:52] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:47, 12:45](3055 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [24:10, 19:48] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:14, 02:26](772 MB) SYNOPSIS: -Starting Date/Time: 20240826 11:16:18 -Ending Date/Time: 20240826 13:18:16 -Total Time: 02h:02m:53s +Starting Date/Time: 20240828 22:30:47 +Ending Date/Time: 20240829 00:34:18 +Total Time: 02h:04m:04s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 2559d4ea50..8ace8bd225 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,20 +1,20 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 +4d4f175dce1d688311d329ad322abb16e29715cd Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) - 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) + 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,253 +36,253 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2302393 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3172495 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [54:18, 41:37] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:21, 06:47](2020 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [03:20, 50:38] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [55:14, 20:37](1903 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:44, 22:03](2014 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:20, 10:03](1130 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [56:18, 23:44](1849 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [00:20, 48:10] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [55:59, 20:23](1888 MB) - -PASS -- COMPILE 's2swa_intel' [54:18, 42:43] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:10, 07:13](2060 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:42, 07:25](2062 MB) -PASS -- TEST 'cpld_restart_p8_intel' [38:23, 04:16](1721 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:13, 07:25](2072 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [39:24, 04:21](1741 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:05, 07:00](2315 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:06, 07:21](2048 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:21, 06:13](2009 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:32, 07:17](2059 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [48:30, 07:06](2035 MB) - -PASS -- COMPILE 's2sw_intel' [52:18, 39:49] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:20, 05:48](1910 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:37, 05:44](1976 MB) - -PASS -- COMPILE 's2swa_debug_intel' [49:17, 06:28] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:25, 10:31](2092 MB) - -PASS -- COMPILE 's2sw_debug_intel' [47:18, 06:09] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:08, 07:18](1940 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:22, 36:15] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:30, 05:35](1979 MB) - -PASS -- COMPILE 's2s_intel' [12:20, 36:52] ( 1015 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [13:54, 11:58](3026 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:55, 03:30](3017 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:49, 01:55](2462 MB) - -PASS -- COMPILE 's2swa_faster_intel' [05:29, 33:05] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:35, 06:59](2058 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [50:17, 47:53] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:21, 20:48](1915 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:25, 10:12](1125 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:18, 23:52](1892 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:13, 06:05] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:18, 33:03](1938 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:36] ( 1 warnings 1126 remarks ) -PASS -- TEST 'control_flake_intel' [06:32, 04:31](647 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:07, 03:53](1547 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:13, 04:10](1557 MB) -PASS -- TEST 'control_latlon_intel' [06:03, 03:53](1544 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:13, 03:53](1554 MB) -PASS -- TEST 'control_c48_intel' [17:13, 11:52](1703 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:39, 09:08](832 MB) -PASS -- TEST 'control_c192_intel' [17:25, 14:09](1669 MB) -PASS -- TEST 'control_c384_intel' [24:29, 17:57](1800 MB) -PASS -- TEST 'control_c384gdas_intel' [20:13, 13:16](1009 MB) -PASS -- TEST 'control_stochy_intel' [04:31, 02:11](606 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:26, 01:16](436 MB) -PASS -- TEST 'control_lndp_intel' [04:31, 02:06](606 MB) -PASS -- TEST 'control_iovr4_intel' [05:34, 03:16](602 MB) -PASS -- TEST 'control_iovr5_intel' [05:32, 03:19](602 MB) -PASS -- TEST 'control_p8_intel' [07:29, 04:09](1844 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:41, 04:02](1844 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:22, 04:00](1835 MB) -PASS -- TEST 'control_restart_p8_intel' [04:54, 02:21](1053 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:21, 03:49](1831 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:54, 02:15](1069 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:19, 04:06](1826 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:23, 03:54](1919 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:11, 07:10](1843 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:25, 05:16](1902 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:26, 03:58](1855 MB) -PASS -- TEST 'merra2_thompson_intel' [07:20, 04:31](1844 MB) -PASS -- TEST 'regional_control_intel' [15:01, 07:09](1010 MB) -PASS -- TEST 'regional_restart_intel' [05:37, 03:47](1004 MB) -PASS -- TEST 'regional_decomp_intel' [16:01, 07:36](1004 MB) -PASS -- TEST 'regional_2threads_intel' [07:02, 04:30](999 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [15:08, 07:02](1010 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [15:00, 07:09](1005 MB) - -PASS -- COMPILE 'rrfs_intel' [39:17, 37:24] ( 3 warnings 1102 remarks ) -PASS -- TEST 'rap_control_intel' [12:50, 10:13](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:10, 05:45](1173 MB) -PASS -- TEST 'rap_decomp_intel' [13:42, 10:51](988 MB) -PASS -- TEST 'rap_2threads_intel' [12:49, 09:50](1081 MB) -PASS -- TEST 'rap_restart_intel' [07:46, 05:16](990 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:50, 10:13](991 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:42, 10:45](985 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:46, 07:36](999 MB) -PASS -- TEST 'hrrr_control_intel' [07:48, 05:22](988 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:48, 05:27](977 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:48, 04:53](1056 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:41](921 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:04, 10:09](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:31, 12:35](1949 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:32, 12:12](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [36:13, 34:13] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:40, 08:13](964 MB) -PASS -- TEST 'control_ras_intel' [06:26, 04:28](672 MB) - -PASS -- COMPILE 'wam_intel' [36:14, 34:32] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [16:49, 14:22](1621 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [40:14, 36:26] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:54, 03:38](1829 MB) -PASS -- TEST 'regional_control_faster_intel' [08:35, 06:33](1002 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:36] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:53, 03:22](1579 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:54, 03:14](1576 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:55](782 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:29, 03:33](782 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:46, 05:31](1095 MB) -PASS -- TEST 'control_ras_debug_intel' [05:29, 03:34](788 MB) -PASS -- TEST 'control_diag_debug_intel' [07:53, 03:24](1631 MB) -PASS -- TEST 'control_debug_p8_intel' [07:52, 03:46](1869 MB) -PASS -- TEST 'regional_debug_intel' [25:50, 21:56](1039 MB) -PASS -- TEST 'rap_control_debug_intel' [08:33, 06:19](1170 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:32, 06:11](1160 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 06:12](1173 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:32, 06:18](1172 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:33, 06:18](1168 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:50, 06:35](1258 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:33, 06:25](1167 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:30, 06:27](1170 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:27, 06:10](1176 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:27, 06:14](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:03](1165 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:27, 06:14](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:24, 10:01](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:24, 06:04](1166 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:25, 07:21](1168 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:25, 06:08](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 10:44](1176 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:12] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:53, 16:38](1648 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:31] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:08, 05:24](1045 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:38, 08:20](907 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:36, 04:21](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:48, 07:52](949 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 04:00](908 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:36, 04:32](864 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:41, 06:14](903 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:22](848 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:13, 31:54] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:49, 02:48](1105 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:40, 01:23](1046 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:51](1018 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:12, 31:03] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:57, 05:36](917 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:12] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:43, 05:59](1045 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 05:53](1047 MB) -PASS -- TEST 'conus13km_debug_intel' [21:57, 19:11](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:58, 18:51](860 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:48](1105 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:53, 18:48](1226 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:56] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 06:10](1083 MB) - -PASS -- COMPILE 'hafsw_intel' [40:14, 39:09] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:17, 06:59](704 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:30, 06:37](1060 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [20:36, 09:06](760 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [21:35, 16:12](788 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:40, 18:38](804 MB) -PASS -- TEST 'gnv1_nested_intel' [34:57, 06:21](1678 MB) - -PASS -- COMPILE 'hafs_all_intel' [37:14, 35:33] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:34, 08:37](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:34, 08:43](737 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:05] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:33](1072 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 02:11](1037 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 03:30](935 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:31](934 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:34](934 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:33](1055 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:23, 03:35](1075 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:27](931 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:18, 07:42](900 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:44, 07:38](851 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:35](1070 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:01](2362 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:24, 05:06](2425 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:22] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:22, 08:07](1023 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:18] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:34](1076 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:52] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:35, 01:23](241 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:30, 01:05](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:42](261 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:14, 35:39] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:58, 04:49](1906 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:13, 35:17] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:14, 04:38](1908 MB) - -PASS -- COMPILE 'atml_intel' [39:13, 37:31] ( 8 warnings 1167 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:24, 06:00](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:25, 06:01](1834 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:44, 03:15](1070 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:24] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [30:18, 07:26](1894 MB) - -PASS -- COMPILE 'atmw_intel' [37:13, 36:04] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:55, 02:21](1865 MB) - -PASS -- COMPILE 'atmaero_intel' [38:14, 34:56] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:00, 05:19](1930 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:00, 06:18](1719 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:49, 06:24](1739 MB) +PASS -- COMPILE 's2swa_32bit_intel' [52:21, 42:33] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [44:28, 06:44](2020 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [59:22, 49:19] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [08:10, 20:40](1886 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:17, 22:18](2020 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:13, 10:00](1129 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [05:20, 23:44](1848 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [59:22, 49:40] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [08:58, 20:11](1890 MB) + +PASS -- COMPILE 's2swa_intel' [52:21, 42:44] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [45:21, 07:16](2062 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [52:45, 07:18](2054 MB) +PASS -- TEST 'cpld_restart_p8_intel' [14:20, 04:22](1720 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [53:29, 07:23](2081 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:16, 04:26](1737 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [37:13, 07:03](2316 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [48:18, 07:20](2056 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [28:25, 06:07](2013 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:35, 07:21](2052 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [54:30, 06:54](2035 MB) + +PASS -- COMPILE 's2sw_intel' [42:17, 32:52] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [30:28, 05:45](1914 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [31:39, 05:44](1976 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:16] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [33:29, 10:33](2096 MB) + +PASS -- COMPILE 's2sw_debug_intel' [26:13, 05:11] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [39:15, 07:16](1934 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [28:24, 36:27] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:28, 05:32](1985 MB) + +PASS -- COMPILE 's2s_intel' [21:24, 29:35] ( 1015 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:53, 11:59](3024 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:53, 03:27](3006 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:50, 01:57](2459 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:31, 33:10] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:37, 07:04](2058 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [33:25, 46:57] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:17, 20:45](1918 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:17, 10:35](1127 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:09, 23:55](1882 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [43:19, 05:57] ( 1558 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:24, 32:56](1937 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [42:14, 37:38] ( 1 warnings 1126 remarks ) +PASS -- TEST 'control_flake_intel' [06:35, 04:24](647 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:08, 03:47](1549 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:17, 04:02](1555 MB) +PASS -- TEST 'control_latlon_intel' [07:17, 03:45](1548 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:20, 03:54](1545 MB) +PASS -- TEST 'control_c48_intel' [15:11, 11:42](1705 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:36, 10:12](824 MB) +PASS -- TEST 'control_c192_intel' [17:22, 14:17](1678 MB) +PASS -- TEST 'control_c384_intel' [22:24, 17:59](1787 MB) +PASS -- TEST 'control_c384gdas_intel' [18:09, 13:31](1008 MB) +PASS -- TEST 'control_stochy_intel' [04:29, 02:11](610 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:26, 01:21](436 MB) +PASS -- TEST 'control_lndp_intel' [03:29, 02:06](605 MB) +PASS -- TEST 'control_iovr4_intel' [05:40, 03:17](598 MB) +PASS -- TEST 'control_iovr5_intel' [05:42, 03:18](596 MB) +PASS -- TEST 'control_p8_intel' [09:25, 04:01](1835 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:35, 04:25](1838 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:23, 03:57](1843 MB) +PASS -- TEST 'control_restart_p8_intel' [04:47, 02:18](1052 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:32, 03:52](1839 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:12](1074 MB) +PASS -- TEST 'control_decomp_p8_intel' [11:18, 04:13](1835 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:15, 03:44](1924 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:10, 07:00](1826 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:22, 05:34](1897 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:25, 04:17](1840 MB) +PASS -- TEST 'merra2_thompson_intel' [12:19, 04:37](1843 MB) +PASS -- TEST 'regional_control_intel' [10:01, 07:12](1005 MB) +PASS -- TEST 'regional_restart_intel' [05:33, 03:48](1008 MB) +PASS -- TEST 'regional_decomp_intel' [15:01, 07:48](1006 MB) +PASS -- TEST 'regional_2threads_intel' [07:09, 04:29](1007 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:06, 07:08](1002 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [15:01, 07:19](1010 MB) + +PASS -- COMPILE 'rrfs_intel' [31:13, 30:03] ( 3 warnings 1102 remarks ) +PASS -- TEST 'rap_control_intel' [14:51, 10:19](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:13, 05:48](1170 MB) +PASS -- TEST 'rap_decomp_intel' [12:42, 10:47](992 MB) +PASS -- TEST 'rap_2threads_intel' [12:43, 09:43](1080 MB) +PASS -- TEST 'rap_restart_intel' [09:48, 05:24](986 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:53, 10:07](991 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:41, 10:43](986 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:52, 07:40](999 MB) +PASS -- TEST 'hrrr_control_intel' [07:53, 05:09](985 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:36, 05:20](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:33, 04:41](1059 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:30, 02:52](922 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:57, 09:59](990 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:27, 12:24](1941 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:29, 12:09](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [35:13, 33:59] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:38, 08:09](965 MB) +PASS -- TEST 'control_ras_intel' [06:26, 04:24](651 MB) + +PASS -- COMPILE 'wam_intel' [36:15, 34:39] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [16:43, 14:20](1609 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [38:15, 36:39] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:04, 03:38](1843 MB) +PASS -- TEST 'regional_control_faster_intel' [08:45, 06:31](1007 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 08:46] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:49, 03:26](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:54, 03:23](1580 MB) +PASS -- TEST 'control_stochy_debug_intel' [07:29, 03:44](778 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:29, 03:22](778 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:43, 05:27](1092 MB) +PASS -- TEST 'control_ras_debug_intel' [06:29, 03:31](788 MB) +PASS -- TEST 'control_diag_debug_intel' [09:50, 03:29](1634 MB) +PASS -- TEST 'control_debug_p8_intel' [09:50, 03:44](1869 MB) +PASS -- TEST 'regional_debug_intel' [28:47, 22:10](1042 MB) +PASS -- TEST 'rap_control_debug_intel' [10:30, 06:12](1167 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:30, 05:58](1159 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:30, 06:03](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [11:32, 06:13](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [12:26, 06:17](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:38, 06:36](1255 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:29, 06:26](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:26, 06:25](1169 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:27, 06:21](1164 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:28, 06:18](1161 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:03](1169 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 06:11](1156 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:25, 10:05](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 06:04](1162 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 07:32](1168 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:26, 06:11](1168 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:50, 10:46](1173 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:15] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:56, 16:37](1653 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:15, 30:35] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:05, 05:11](1051 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:32, 08:16](900 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:36, 04:22](874 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:46, 07:52](943 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:43, 04:00](917 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:36, 04:38](860 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:12](898 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:21](849 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:14, 31:55] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:52, 02:53](1101 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:35, 01:14](1047 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:37, 01:33](1021 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:14, 30:59] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:49, 05:29](911 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:16] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 06:02](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:27, 05:56](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [21:00, 18:45](1157 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:00, 18:44](867 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:51, 10:49](1101 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:52, 18:49](1226 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:03] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:09](1080 MB) + +PASS -- COMPILE 'hafsw_intel' [40:16, 38:35] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:18, 06:43](706 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:02](1061 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:35, 09:03](756 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [21:24, 15:52](786 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:37, 17:53](808 MB) +PASS -- TEST 'gnv1_nested_intel' [18:00, 06:26](1678 MB) + +PASS -- COMPILE 'hafs_all_intel' [37:14, 35:17] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:29, 08:28](760 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:30, 08:34](740 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:18] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:22, 03:37](1082 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:25, 02:13](1047 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:22, 03:38](928 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:23, 03:38](932 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:23, 03:38](936 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:23, 03:37](1069 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:23, 03:39](1068 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:22, 03:34](934 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:21, 07:45](895 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:23, 07:42](849 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:40](1077 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:06](2378 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 05:16](2363 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:19] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:21, 08:06](1021 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:04] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:34](1080 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:41] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:24](238 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:28, 01:08](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:41](262 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:14, 35:50] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:12, 04:46](1919 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:15, 35:15] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:12, 04:35](1902 MB) + +PASS -- COMPILE 'atml_intel' [38:17, 36:24] ( 8 warnings 1167 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:11, 05:51](1859 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:10, 05:50](1834 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:52, 03:23](1074 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:17] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [15:12, 07:21](1886 MB) + +PASS -- COMPILE 'atmw_intel' [39:15, 37:16] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:54, 02:20](1856 MB) + +PASS -- COMPILE 'atmaero_intel' [37:13, 35:02] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [13:02, 05:20](1935 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:07, 06:19](1725 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:54, 06:25](1737 MB) SYNOPSIS: -Starting Date/Time: 20240826 15:55:56 -Ending Date/Time: 20240826 20:48:51 -Total Time: 04h:53m:24s +Starting Date/Time: 20240827 19:15:44 +Ending Date/Time: 20240828 00:24:36 +Total Time: 05h:09m:17s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index cb3bd91174..b2db0f1c13 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,20 +1,20 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 +4d4f175dce1d688311d329ad322abb16e29715cd Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) - 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) + 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,284 +36,284 @@ 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-20240821 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2331418 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_135838 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:12, 18:54] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:07, 14:26](2077 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 22:53] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [28:39, 18:20](1961 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:19, 19:11](2128 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 09:15](1185 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:39, 20:26](1868 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:12, 22:53] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:01, 17:45](1939 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:11, 09:56] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [35:47, 27:39](1930 MB) - -PASS -- COMPILE 's2swa_intel' [20:12, 18:54] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [22:48, 14:49](2128 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:03, 14:37](2114 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:01, 08:03](1819 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [22:47, 14:41](2139 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:59, 08:08](1705 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [21:37, 13:44](2436 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [22:48, 14:42](2123 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [20:44, 12:34](2037 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:48, 15:08](2128 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [26:47, 17:23](2717 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [15:23, 09:02](2726 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:32, 12:54](3726 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:06, 07:23](3496 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:32, 06:02](2111 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 16:27] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [22:28, 13:48](1977 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:43, 05:19](2048 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:11, 09:30] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:20, 08:59](2160 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:41] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:12, 06:22](1991 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:40] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:35, 05:01](2028 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 15:05] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [17:13, 10:19](3058 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [10:12, 03:27](3033 MB) -PASS -- TEST 'cpld_restart_c48_intel' [10:09, 02:33](2495 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:11, 20:29] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:30, 15:00](2134 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [27:12, 20:54] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:21, 18:40](1986 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:30, 09:20](1236 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:12, 20:55](1914 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 09:56] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:12, 29:57](1970 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [21:11, 14:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:34, 03:46](691 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:06, 03:17](1590 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:11, 03:15](1597 MB) -PASS -- TEST 'control_latlon_intel' [05:47, 03:11](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:18](1588 MB) -PASS -- TEST 'control_c48_intel' [11:51, 09:31](1709 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:38, 08:12](844 MB) -PASS -- TEST 'control_c192_intel' [13:58, 11:50](1729 MB) -PASS -- TEST 'control_c384_intel' [16:35, 13:10](1980 MB) -PASS -- TEST 'control_c384gdas_intel' [15:12, 10:00](1330 MB) -PASS -- TEST 'control_stochy_intel' [03:27, 01:52](646 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:40, 01:06](484 MB) -PASS -- TEST 'control_lndp_intel' [04:28, 01:45](650 MB) -PASS -- TEST 'control_iovr4_intel' [05:32, 02:47](643 MB) -PASS -- TEST 'control_iovr5_intel' [04:31, 02:42](645 MB) -PASS -- TEST 'control_p8_intel' [06:25, 03:31](1876 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:20, 03:39](1886 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:35, 03:34](1886 MB) -PASS -- TEST 'control_restart_p8_intel' [04:13, 02:07](1096 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:11, 03:24](1880 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:35, 02:12](1122 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:08, 03:29](1870 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:06, 03:40](1954 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:03, 06:14](1884 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:36, 04:56](1934 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:31, 03:40](1882 MB) -PASS -- TEST 'merra2_thompson_intel' [06:36, 03:48](1891 MB) -PASS -- TEST 'regional_control_intel' [08:37, 06:35](1084 MB) -PASS -- TEST 'regional_restart_intel' [05:48, 03:35](1077 MB) -PASS -- TEST 'regional_decomp_intel' [08:37, 06:52](1081 MB) -PASS -- TEST 'regional_2threads_intel' [06:35, 04:44](1066 MB) -PASS -- TEST 'regional_noquilt_intel' [08:37, 06:28](1381 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:40, 06:57](1079 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:32, 06:30](1088 MB) -PASS -- TEST 'regional_wofs_intel' [09:36, 07:53](1900 MB) - -PASS -- COMPILE 'rrfs_intel' [21:11, 14:45] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:31, 08:28](1052 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:02, 05:13](1251 MB) -PASS -- TEST 'rap_decomp_intel' [12:08, 08:43](1021 MB) -PASS -- TEST 'rap_2threads_intel' [12:08, 08:34](1153 MB) -PASS -- TEST 'rap_restart_intel' [07:40, 04:22](1035 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:30, 08:25](1053 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:31, 08:40](1018 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 06:17](1072 MB) -PASS -- TEST 'hrrr_control_intel' [08:35, 04:24](1028 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:27, 04:24](1020 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:08, 04:11](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:37, 02:20](939 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:24, 08:27](1049 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 10:00](1982 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:24, 10:15](2025 MB) - -PASS -- COMPILE 'csawmg_intel' [18:11, 14:01] -PASS -- TEST 'control_csawmg_intel' [08:41, 06:40](1015 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:33](712 MB) - -PASS -- COMPILE 'wam_intel' [15:11, 13:04] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:51, 12:52](1656 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 13:55] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:41, 03:35](1873 MB) -PASS -- TEST 'regional_control_faster_intel' [08:38, 06:26](1082 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 12:36] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:49, 02:58](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:56, 02:47](1613 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:22](819 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:54](818 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:34](1131 MB) -PASS -- TEST 'control_ras_debug_intel' [04:26, 03:02](832 MB) -PASS -- TEST 'control_diag_debug_intel' [04:52, 02:54](1681 MB) -PASS -- TEST 'control_debug_p8_intel' [06:03, 03:16](1905 MB) -PASS -- TEST 'regional_debug_intel' [19:47, 17:22](1084 MB) -PASS -- TEST 'rap_control_debug_intel' [06:36, 05:02](1214 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:29, 05:06](1199 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 04:56](1207 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 05:03](1205 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:28, 05:21](1209 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:40, 05:07](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:04](1200 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 05:07](1209 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:25, 05:05](1213 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 05:04](1212 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:58](1205 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:02](1210 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:31, 08:02](1200 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 05:13](1192 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 06:12](1209 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:28, 04:57](1205 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:24](1209 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:11, 06:57] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:49, 13:22](1688 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:11, 14:43] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:57, 04:49](1124 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:09, 07:07](994 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:38, 03:43](918 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:02, 07:32](1048 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:38, 03:36](944 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:10, 03:55](895 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:39, 05:21](974 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [22:28, 02:04](882 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:11, 13:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:55, 02:42](1161 MB) -PASS -- TEST 'conus13km_2threads_intel' [20:42, 01:16](1117 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [19:43, 01:32](1060 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:11, 13:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:41, 04:32](979 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 08:00] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:26, 05:02](1081 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:28, 04:47](1088 MB) -PASS -- TEST 'conus13km_debug_intel' [26:57, 15:35](1235 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [25:53, 14:53](932 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [24:46, 08:41](1165 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [30:47, 14:48](1299 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 07:19] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:24, 05:22](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [18:11, 16:33] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [16:14, 05:59](735 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:33, 06:26](1108 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [24:28, 07:30](822 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [42:22, 25:55](847 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:33, 26:50](881 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:03, 07:07](494 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:36, 08:28](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [25:59, 03:29](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [32:34, 09:57](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [25:53, 04:43](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [25:47, 04:29](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [27:00, 05:47](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [22:31, 01:34](403 MB) -PASS -- TEST 'gnv1_nested_intel' [26:24, 04:20](1728 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:11, 08:29] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [34:12, 13:18](589 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:11, 15:58] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [31:18, 13:05](660 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [32:08, 13:23](727 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:24] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [27:54, 08:41](714 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:11, 14:24] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [24:19, 07:33](811 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:16, 07:29](797 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:54, 16:25](1209 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:11, 12:30] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [14:19, 02:58](1160 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:23, 01:57](1104 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [14:18, 02:52](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [13:20, 02:54](1016 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:18, 02:53](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:21, 02:58](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:18, 02:59](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:50](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:31](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:02, 06:31](1009 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:59](1154 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:19, 04:24](2402 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [10:22, 04:30](2448 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:10, 06:46] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [12:18, 06:34](1084 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 11:15] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:24, 02:37](1149 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:52] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:31, 01:05](254 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:24, 00:58](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:33, 00:58](325 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:10, 13:53] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:28, 04:17](1972 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:10, 13:19] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:30, 04:00](1948 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 14:03] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:46, 05:03](1870 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:43, 05:04](1862 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:00, 02:49](1068 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:10, 08:07] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:29, 06:05](1886 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 13:30] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:49, 02:15](1902 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 12:58] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:27, 04:34](1994 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:15, 05:23](1768 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:04, 05:27](1789 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:55] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:19, 20:33](4556 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:11, 17:52] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:39, 14:26](2075 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:41] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:36, 18:04](1952 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:12, 18:56](2125 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 08:51](1208 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:35, 20:15](1870 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:11, 24:39] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:39, 17:41](1944 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:43] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:44, 27:33](1938 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 17:07] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:27, 14:15](2132 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:36, 14:22](2132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:43, 07:50](1807 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:27, 14:21](2147 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:43, 07:40](1710 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:09, 13:12](2422 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:27, 14:20](2129 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:26, 12:38](2037 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:36, 14:23](2132 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:25, 17:10](2732 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 09:00](2720 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:58, 13:09](3685 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:44, 07:04](3496 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:26, 05:58](2098 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 16:03] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:03, 13:43](1984 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:09, 04:49](2046 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:10, 09:30] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:14, 08:43](2165 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:10, 08:56] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:09, 06:16](2002 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:32] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:09, 04:46](2056 MB) + +PASS -- COMPILE 's2s_intel' [16:13, 15:03] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:08, 10:05](3048 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:07, 03:25](3031 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:50, 02:07](2489 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:46] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:31, 14:45](2133 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:04] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:37, 18:11](1995 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:23, 09:02](1231 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:13, 20:40](1908 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:56] ( 1558 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:10, 29:27](1958 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:25, 03:44](697 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:43, 03:10](1587 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:41, 03:10](1594 MB) +PASS -- TEST 'control_latlon_intel' [04:41, 03:09](1595 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:43, 03:11](1590 MB) +PASS -- TEST 'control_c48_intel' [11:48, 09:28](1711 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:39, 08:21](831 MB) +PASS -- TEST 'control_c192_intel' [13:52, 11:40](1721 MB) +PASS -- TEST 'control_c384_intel' [15:49, 12:44](1968 MB) +PASS -- TEST 'control_c384gdas_intel' [13:36, 09:41](1339 MB) +PASS -- TEST 'control_stochy_intel' [04:22, 01:49](651 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:46, 01:03](476 MB) +PASS -- TEST 'control_lndp_intel' [04:20, 01:44](650 MB) +PASS -- TEST 'control_iovr4_intel' [04:24, 02:41](647 MB) +PASS -- TEST 'control_iovr5_intel' [04:28, 02:42](647 MB) +PASS -- TEST 'control_p8_intel' [06:09, 03:27](1870 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:09, 03:30](1888 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:20, 03:21](1888 MB) +PASS -- TEST 'control_restart_p8_intel' [04:05, 02:00](1091 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:11, 03:25](1877 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:22, 02:01](1134 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:08, 03:29](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:08, 03:35](1961 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:50, 05:52](1876 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:20, 04:58](1951 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:20, 03:30](1887 MB) +PASS -- TEST 'merra2_thompson_intel' [06:32, 03:52](1884 MB) +PASS -- TEST 'regional_control_intel' [08:39, 06:28](1084 MB) +PASS -- TEST 'regional_restart_intel' [05:36, 03:31](1078 MB) +PASS -- TEST 'regional_decomp_intel' [08:30, 06:51](1076 MB) +PASS -- TEST 'regional_2threads_intel' [06:28, 04:38](1065 MB) +PASS -- TEST 'regional_noquilt_intel' [08:44, 06:27](1377 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:36, 06:29](1063 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:36, 06:24](1080 MB) +PASS -- TEST 'regional_wofs_intel' [09:37, 07:50](1904 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 13:14] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:18, 08:23](1059 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:59, 05:08](1251 MB) +PASS -- TEST 'rap_decomp_intel' [11:03, 08:38](1029 MB) +PASS -- TEST 'rap_2threads_intel' [10:56, 08:25](1153 MB) +PASS -- TEST 'rap_restart_intel' [07:35, 04:21](1039 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:08, 08:19](1052 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:54, 08:34](1019 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:32, 06:14](1072 MB) +PASS -- TEST 'hrrr_control_intel' [06:57, 04:20](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:55, 04:24](1021 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:16, 04:08](1088 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:20](941 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:18, 08:15](1045 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:31, 09:59](1980 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 09:43](2024 MB) + +PASS -- COMPILE 'csawmg_intel' [15:11, 13:14] +PASS -- TEST 'control_csawmg_intel' [08:34, 06:31](1015 MB) +PASS -- TEST 'control_ras_intel' [05:19, 03:28](716 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:43] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:43, 12:44](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:12, 12:48] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:22, 03:19](1866 MB) +PASS -- TEST 'regional_control_faster_intel' [08:35, 06:12](1072 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:36] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:51, 02:48](1610 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:57, 02:40](1620 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:28, 03:09](819 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:26, 02:45](820 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:48, 04:25](1131 MB) +PASS -- TEST 'control_ras_debug_intel' [05:26, 02:45](824 MB) +PASS -- TEST 'control_diag_debug_intel' [05:52, 02:48](1670 MB) +PASS -- TEST 'control_debug_p8_intel' [05:54, 03:10](1907 MB) +PASS -- TEST 'regional_debug_intel' [20:55, 17:23](1092 MB) +PASS -- TEST 'rap_control_debug_intel' [08:28, 05:03](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:29, 04:56](1195 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:29, 05:12](1203 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:58](1203 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:01](1209 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:08](1292 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 04:58](1209 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:07](1202 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:05](1218 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:53](1198 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:53](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:54](1208 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 07:56](1214 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 05:02](1207 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:21, 06:00](1212 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:00](1212 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:24](1210 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:10, 06:42] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:45, 13:27](1688 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:11, 13:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:57, 04:47](1131 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:15, 07:07](1000 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:26, 03:44](926 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:52, 07:13](1073 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:06, 03:37](945 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:05, 03:58](894 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:24, 05:21](982 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 02:02](880 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:11, 13:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:55, 02:41](1168 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:50, 01:15](1116 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:31](1070 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:11, 13:16] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 04:33](972 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 07:01] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:55](1086 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:45](1084 MB) +PASS -- TEST 'conus13km_debug_intel' [16:47, 14:37](1235 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:45, 14:29](938 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:51, 08:38](1173 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 14:56](1300 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 06:54] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:51](1129 MB) + +PASS -- COMPILE 'hafsw_intel' [17:11, 14:46] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:15, 06:02](739 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:28, 06:22](1114 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:23, 07:26](813 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [27:10, 24:31](846 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [32:18, 29:12](1024 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:03, 07:03](503 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:30, 08:20](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 03:26](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:33, 09:34](479 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:53, 04:40](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:56, 04:25](521 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:54, 05:40](578 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:30, 01:32](404 MB) +PASS -- TEST 'gnv1_nested_intel' [08:15, 04:18](1730 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:15] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:04, 13:25](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 14:58] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:02, 12:50](639 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:06, 13:20](729 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:10] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:33, 08:29](719 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 13:41] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:17, 07:25](809 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:17, 07:26](795 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:29](1207 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:53] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 03:03](1157 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:54](1104 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:51](1005 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:56](1021 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:54](1015 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:01](1144 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:59](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:54](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:12, 06:32](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 06:28](1005 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:59](1151 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:19](2451 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:22](2454 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:47] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:52](1076 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:45] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:56](1154 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:33] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 01:00](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:55](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](318 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 14:31] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:08, 04:06](1975 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:26] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:07, 03:59](1950 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 13:54] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:54](1868 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:30, 04:51](1851 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:51, 02:49](1067 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:10, 07:57] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:23, 05:47](1895 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:32] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:08](1904 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 13:09] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:14, 04:40](1993 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:12, 05:18](1769 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:01, 05:22](1780 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:40] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:59, 20:28](4562 MB) SYNOPSIS: -Starting Date/Time: 20240826 11:14:55 -Ending Date/Time: 20240826 13:22:24 -Total Time: 02h:08m:05s +Starting Date/Time: 20240828 22:30:01 +Ending Date/Time: 20240829 00:12:13 +Total Time: 01h:42m:40s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 0a60125fab..cb0b036c33 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,20 +1,20 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 +4d4f175dce1d688311d329ad322abb16e29715cd Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) - 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) + 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) + cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,238 +36,238 @@ 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-20240821 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_185170 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_108392 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:26, 11:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:53, 02:29](3099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:52, 02:56](1809 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:46, 02:45](1840 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [59:27, 02:18](975 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:53, 02:22](1785 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:27, 12:04] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:52, 02:11](1807 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:13] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:00, 02:28](1841 MB) - -PASS -- COMPILE 's2swa_intel' [12:25, 11:05] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:54, 02:30](3133 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:54, 02:47](3130 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:41, 02:03](3061 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:54, 02:29](3153 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:41, 01:58](3078 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:54, 02:04](3373 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [19:54, 02:31](3128 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [19:55, 02:37](3076 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:54, 02:45](3134 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:03, 05:16](4123 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [00:18, 05:40](4266 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [19:54, 02:49](3112 MB) - -PASS -- COMPILE 's2sw_intel' [12:25, 10:55] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [19:54, 01:53](1822 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:54, 02:04](1897 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:34] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:52, 02:06](1889 MB) - -PASS -- COMPILE 's2s_intel' [12:26, 10:17] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [19:52, 01:58](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [19:52, 02:30](2879 MB) -PASS -- TEST 'cpld_restart_c48_intel' [14:50, 02:04](2287 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:30, 16:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:49, 02:45](3131 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:27, 11:46] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:52, 01:55](1824 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [00:30, 02:41](988 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [00:28, 02:39](1809 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:07] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [17:38, 02:21](1856 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:30, 01:19](568 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:30, 01:30](1468 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:30, 01:28](1480 MB) -PASS -- TEST 'control_latlon_intel' [09:30, 01:27](1475 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:30, 01:36](1470 MB) -PASS -- TEST 'control_c48_intel' [09:29, 01:58](1555 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:29, 01:47](693 MB) -PASS -- TEST 'control_c192_intel' [09:30, 02:13](1576 MB) -PASS -- TEST 'control_c384_intel' [09:34, 03:03](1849 MB) -PASS -- TEST 'control_c384gdas_intel' [09:34, 02:47](1065 MB) -PASS -- TEST 'control_stochy_intel' [09:30, 01:26](525 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:04, 02:09](329 MB) -PASS -- TEST 'control_lndp_intel' [09:30, 01:30](527 MB) -PASS -- TEST 'control_iovr4_intel' [09:30, 01:43](518 MB) -PASS -- TEST 'control_iovr5_intel' [09:30, 01:42](516 MB) -PASS -- TEST 'control_p8_intel' [06:04, 03:09](1753 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:27, 02:55](1753 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:01, 02:51](1758 MB) -PASS -- TEST 'control_restart_p8_intel' [59:27, 02:04](910 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:01, 02:58](1758 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [58:29, 01:47](916 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:01, 02:51](1752 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:43, 01:59](1841 MB) -PASS -- TEST 'control_p8_lndp_intel' [04:41, 02:07](1760 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:38, 02:59](1812 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:32, 02:49](1765 MB) -PASS -- TEST 'merra2_thompson_intel' [04:11, 02:35](1769 MB) -PASS -- TEST 'regional_control_intel' [04:10, 02:12](839 MB) -PASS -- TEST 'regional_restart_intel' [56:27, 01:22](840 MB) -PASS -- TEST 'regional_decomp_intel' [04:00, 01:59](840 MB) -PASS -- TEST 'regional_2threads_intel' [04:01, 01:56](896 MB) -PASS -- TEST 'regional_noquilt_intel' [03:43, 01:18](1180 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [02:30, 01:25](842 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [01:45, 01:17](843 MB) -PASS -- TEST 'regional_wofs_intel' [01:38, 01:27](1568 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 08:26] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [00:47, 02:54](906 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [59:06, 02:02](1061 MB) -PASS -- TEST 'rap_decomp_intel' [58:37, 02:16](910 MB) -PASS -- TEST 'rap_2threads_intel' [58:28, 02:12](991 MB) -PASS -- TEST 'rap_restart_intel' [50:21, 02:20](776 MB) -PASS -- TEST 'rap_sfcdiff_intel' [58:23, 03:02](907 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [58:09, 02:29](906 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [47:57, 02:47](779 MB) -PASS -- TEST 'hrrr_control_intel' [57:48, 02:19](904 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [57:45, 02:45](905 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [57:13, 02:07](983 MB) -PASS -- TEST 'hrrr_control_restart_intel' [51:22, 02:05](730 MB) -PASS -- TEST 'rrfs_v1beta_intel' [57:08, 03:02](901 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [56:59, 01:45](1863 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [56:58, 02:02](1857 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 07:53] -PASS -- TEST 'control_csawmg_intel' [10:29, 01:26](866 MB) -PASS -- TEST 'control_ras_intel' [10:29, 01:53](561 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 07:47] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:29, 01:27](1567 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:25, 08:00] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [10:26, 02:59](1755 MB) -PASS -- TEST 'regional_control_faster_intel' [10:25, 01:26](836 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:27, 07:28] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [56:53, 02:10](1491 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [56:35, 02:21](1494 MB) -PASS -- TEST 'control_stochy_debug_intel' [56:25, 01:43](703 MB) -PASS -- TEST 'control_lndp_debug_intel' [56:25, 02:03](700 MB) -PASS -- TEST 'control_csawmg_debug_intel' [56:22, 01:27](1005 MB) -PASS -- TEST 'control_ras_debug_intel' [55:39, 02:03](707 MB) -PASS -- TEST 'control_diag_debug_intel' [55:04, 02:04](1563 MB) -PASS -- TEST 'control_debug_p8_intel' [54:57, 01:40](1793 MB) -PASS -- TEST 'regional_debug_intel' [54:31, 02:13](884 MB) -PASS -- TEST 'rap_control_debug_intel' [54:24, 01:35](1085 MB) -PASS -- TEST 'hrrr_control_debug_intel' [52:58, 01:51](1075 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [51:56, 01:44](1080 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [51:51, 01:40](1080 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [51:19, 01:40](1088 MB) -PASS -- TEST 'rap_diag_debug_intel' [51:12, 01:32](1167 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [50:58, 01:38](1087 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [50:57, 01:37](1085 MB) -PASS -- TEST 'rap_lndp_debug_intel' [50:47, 01:36](1082 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [50:44, 01:37](1083 MB) -PASS -- TEST 'rap_noah_debug_intel' [50:10, 01:46](1079 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [49:43, 01:39](1083 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [49:28, 01:23](1083 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [49:14, 01:41](1079 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [49:10, 01:54](1080 MB) -PASS -- TEST 'rap_flake_debug_intel' [48:59, 01:41](1086 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [48:58, 02:57](1087 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:23, 04:30] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [12:28, 01:21](1583 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:26, 07:53] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [48:36, 02:22](917 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [48:30, 02:15](784 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [47:57, 03:37](784 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [46:56, 02:17](844 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [46:56, 02:54](834 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [46:44, 03:12](782 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [40:04, 02:32](688 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:52, 01:19](666 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:49] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [46:23, 02:00](992 MB) -PASS -- TEST 'conus13km_2threads_intel' [41:34, 01:57](993 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [41:31, 01:43](865 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 07:51] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [46:20, 02:24](816 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:27] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:23, 01:58](958 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:22, 02:01](956 MB) -PASS -- TEST 'conus13km_debug_intel' [44:20, 01:33](1038 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [43:53, 01:37](710 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [43:49, 01:48](1043 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [43:33, 02:02](1111 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:20] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:22, 01:27](990 MB) - -PASS -- COMPILE 'hafsw_intel' [11:25, 09:17] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [43:25, 02:50](601 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [43:21, 01:37](945 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:15, 02:50](650 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [42:40, 02:47](676 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [42:20, 02:26](695 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [42:15, 02:01](379 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [41:45, 03:11](391 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [41:26, 02:16](285 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [40:57, 03:29](366 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [40:40, 02:35](400 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [39:57, 02:01](406 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [39:37, 01:50](480 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [39:32, 01:29](318 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:49] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [39:31, 02:19](514 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:24, 08:54] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [39:02, 02:25](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [38:57, 02:26](703 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 09:21] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [38:55, 02:59](706 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:24, 08:38] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [37:46, 02:17](648 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:30, 03:04](628 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:25, 01:30](881 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 10:04] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [37:23, 01:49](1825 MB) - -PASS -- COMPILE 'atml_intel' [10:24, 08:50] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:21, 05:17] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [09:24, 08:04] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [36:46, 02:20](3022 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [36:13, 01:53](2914 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:00, 02:53](2917 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:19, 04:27] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [35:47, 02:55](4442 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:34, 11:11] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [03:33, 02:27](3100 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:35, 12:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [02:32, 02:48](1821 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [43:28, 02:30](1836 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [43:17, 03:12](980 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [02:33, 02:29](1800 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:35, 12:11] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [02:32, 02:08](1809 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:19] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [08:48, 03:07](1833 MB) + +PASS -- COMPILE 's2swa_intel' [12:34, 11:01] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [03:33, 02:25](3135 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [03:33, 02:49](3128 MB) +PASS -- TEST 'cpld_restart_p8_intel' [54:18, 02:38](3060 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [03:33, 02:19](3152 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [54:18, 02:34](3079 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [03:33, 02:02](3371 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [03:33, 02:25](3126 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [03:34, 02:37](3071 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [03:33, 02:48](3132 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [03:42, 05:25](4123 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [43:47, 05:06](4263 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [03:33, 02:47](3111 MB) + +PASS -- COMPILE 's2sw_intel' [12:34, 10:43] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [03:33, 01:50](1836 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [03:33, 02:56](1893 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:34, 10:47] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [03:33, 03:04](1892 MB) + +PASS -- COMPILE 's2s_intel' [12:34, 10:20] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [03:32, 01:59](2870 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:32, 02:29](2871 MB) +PASS -- TEST 'cpld_restart_c48_intel' [58:26, 02:22](2291 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:43, 15:18] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [59:24, 02:47](3133 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:35, 11:41] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [02:32, 01:58](1824 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:04, 02:22](1003 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [43:33, 02:05](1798 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:23, 05:09] ( 1539 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [01:24, 02:24](1853 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:22, 09:06] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [53:10, 01:53](569 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [53:10, 02:13](1473 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [53:10, 02:09](1468 MB) +PASS -- TEST 'control_latlon_intel' [53:10, 02:07](1470 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [53:10, 02:20](1467 MB) +PASS -- TEST 'control_c48_intel' [53:09, 01:53](1557 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [53:09, 02:24](693 MB) +PASS -- TEST 'control_c192_intel' [53:10, 01:57](1575 MB) +PASS -- TEST 'control_c384_intel' [53:14, 02:47](1858 MB) +PASS -- TEST 'control_c384gdas_intel' [53:14, 03:42](1062 MB) +PASS -- TEST 'control_stochy_intel' [53:10, 01:58](522 MB) +PASS -- TEST 'control_stochy_restart_intel' [47:40, 02:05](330 MB) +PASS -- TEST 'control_lndp_intel' [53:10, 01:59](525 MB) +PASS -- TEST 'control_iovr4_intel' [53:10, 02:14](523 MB) +PASS -- TEST 'control_iovr5_intel' [53:10, 02:14](522 MB) +PASS -- TEST 'control_p8_intel' [53:10, 02:33](1762 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [53:10, 02:36](1761 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [50:00, 02:55](1764 MB) +PASS -- TEST 'control_restart_p8_intel' [45:46, 01:49](910 MB) +PASS -- TEST 'control_noqr_p8_intel' [47:40, 02:40](1759 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [41:33, 02:02](918 MB) +PASS -- TEST 'control_decomp_p8_intel' [47:40, 02:30](1752 MB) +PASS -- TEST 'control_2threads_p8_intel' [46:35, 01:44](1832 MB) +PASS -- TEST 'control_p8_lndp_intel' [46:35, 02:09](1755 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [46:24, 02:57](1812 MB) +PASS -- TEST 'control_p8_mynn_intel' [46:16, 03:03](1767 MB) +PASS -- TEST 'merra2_thompson_intel' [46:12, 02:50](1764 MB) +PASS -- TEST 'regional_control_intel' [46:08, 01:21](841 MB) +PASS -- TEST 'regional_restart_intel' [39:18, 01:22](840 MB) +PASS -- TEST 'regional_decomp_intel' [45:44, 01:56](847 MB) +PASS -- TEST 'regional_2threads_intel' [45:45, 01:53](902 MB) +PASS -- TEST 'regional_noquilt_intel' [45:43, 01:20](1168 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [45:35, 01:32](827 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [44:25, 02:11](842 MB) +PASS -- TEST 'regional_wofs_intel' [44:10, 01:32](1569 MB) + +PASS -- COMPILE 'rrfs_intel' [10:22, 08:32] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [43:15, 03:05](913 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [42:52, 02:02](1054 MB) +PASS -- TEST 'rap_decomp_intel' [41:33, 02:18](910 MB) +PASS -- TEST 'rap_2threads_intel' [41:33, 02:09](991 MB) +PASS -- TEST 'rap_restart_intel' [32:38, 03:15](777 MB) +PASS -- TEST 'rap_sfcdiff_intel' [41:27, 03:01](907 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [41:21, 02:39](909 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [31:00, 02:59](780 MB) +PASS -- TEST 'hrrr_control_intel' [40:20, 02:21](900 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [40:04, 02:04](904 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [39:41, 02:14](978 MB) +PASS -- TEST 'hrrr_control_restart_intel' [33:52, 01:59](730 MB) +PASS -- TEST 'rrfs_v1beta_intel' [39:32, 02:59](901 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [39:10, 01:44](1867 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [39:03, 02:06](1858 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 07:57] +PASS -- TEST 'control_csawmg_intel' [54:11, 02:09](865 MB) +PASS -- TEST 'control_ras_intel' [54:11, 01:20](559 MB) + +PASS -- COMPILE 'wam_intel' [09:21, 07:58] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [54:11, 02:03](1556 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:11] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [39:03, 03:02](1760 MB) +PASS -- TEST 'regional_control_faster_intel' [38:46, 01:22](836 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:25] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [38:43, 02:16](1497 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [38:38, 02:22](1495 MB) +PASS -- TEST 'control_stochy_debug_intel' [38:37, 01:43](705 MB) +PASS -- TEST 'control_lndp_debug_intel' [38:12, 02:03](702 MB) +PASS -- TEST 'control_csawmg_debug_intel' [38:02, 01:28](1005 MB) +PASS -- TEST 'control_ras_debug_intel' [37:23, 02:00](711 MB) +PASS -- TEST 'control_diag_debug_intel' [37:11, 02:17](1559 MB) +PASS -- TEST 'control_debug_p8_intel' [36:41, 01:51](1789 MB) +PASS -- TEST 'regional_debug_intel' [35:44, 01:20](885 MB) +PASS -- TEST 'rap_control_debug_intel' [35:32, 01:40](1083 MB) +PASS -- TEST 'hrrr_control_debug_intel' [34:37, 01:39](1080 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [33:52, 01:32](1081 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [33:46, 01:36](1078 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [33:11, 01:43](1087 MB) +PASS -- TEST 'rap_diag_debug_intel' [32:59, 01:40](1164 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [32:52, 01:40](1084 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [32:51, 01:37](1087 MB) +PASS -- TEST 'rap_lndp_debug_intel' [32:46, 01:39](1084 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [32:46, 01:42](1085 MB) +PASS -- TEST 'rap_noah_debug_intel' [32:34, 01:45](1077 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [32:33, 01:43](1080 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [32:06, 01:51](1077 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [31:55, 01:51](1081 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [31:31, 01:55](1086 MB) +PASS -- TEST 'rap_flake_debug_intel' [31:24, 01:39](1086 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [31:22, 02:52](1088 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 04:24] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [56:12, 01:31](1594 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:49] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [31:11, 02:22](923 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [31:02, 02:38](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [31:00, 03:26](784 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [29:23, 02:14](842 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:07, 03:32](838 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:33, 02:39](780 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [22:16, 02:31](684 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [24:05, 01:21](665 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 07:54] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [28:20, 02:30](988 MB) +PASS -- TEST 'conus13km_2threads_intel' [23:03, 01:51](996 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [22:59, 01:44](866 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:55] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [28:01, 01:41](814 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:34] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [27:04, 02:12](957 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:20, 01:58](955 MB) +PASS -- TEST 'conus13km_debug_intel' [26:15, 02:08](1037 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:00, 01:50](710 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [25:41, 02:16](1044 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [25:21, 01:49](1109 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:22, 04:29] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [25:21, 01:50](991 MB) + +PASS -- COMPILE 'hafsw_intel' [12:28, 09:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [25:19, 03:04](600 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [25:18, 02:24](945 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:16, 02:53](636 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:10, 02:46](675 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:06, 02:18](690 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [25:04, 02:30](372 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [24:23, 03:10](392 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [24:09, 02:35](278 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [24:01, 03:29](363 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [23:07, 02:30](403 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [22:41, 01:46](407 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:21, 01:49](478 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [22:18, 01:29](414 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:22, 04:54] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [22:13, 02:24](519 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:28, 09:06] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:58, 01:46](521 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:29, 02:43](697 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:27, 09:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:14, 02:15](708 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:38, 08:34] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [20:37, 03:11](644 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:16, 03:09](625 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:13, 01:27](819 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:46, 09:56] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [19:14, 01:44](1825 MB) + +PASS -- COMPILE 'atml_intel' [11:37, 08:50] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:30, 05:19] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:29, 08:15] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [18:49, 02:21](3026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [18:46, 02:46](2905 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [18:43, 02:44](2918 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:23, 04:23] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:07, 02:58](4445 MB) SYNOPSIS: -Starting Date/Time: 20240826 16:27:24 -Ending Date/Time: 20240826 17:51:44 -Total Time: 01h:24m:52s +Starting Date/Time: 20240827 21:43:39 +Ending Date/Time: 20240827 23:09:49 +Total Time: 01h:26m:44s Compiles Completed: 33/33 Tests Completed: 156/156 From 9ae4f54282e00df8c8ec68c883905f49b8d5d826 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Tue, 3 Sep 2024 10:30:55 -0400 Subject: [PATCH 23/33] Update CMEPS; fix aux history functionality for float variable type; Switch to using Aux history files in atm_ds2s_docn_dice test; Remove IFI tests (was #2417) (#2395) * UFSWM - * CMEPS - fix aux history functionality; sync with ESCOMP * UFSWM - use auxiliary history files as input for atm_ds2s_docn_dice; remove the IFI tests --- CMEPS-interface/CMEPS | 2 +- tests/bl_date.conf | 2 +- tests/fv3_conf/cpld_docn_dice.IN | 6 +- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 30 +- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_acorn.log | 521 ++++++------- tests/logs/RegressionTests_derecho.log | 550 ++++++------- tests/logs/RegressionTests_gaea.log | 550 ++++++------- tests/logs/RegressionTests_hera.log | 730 ++++++++--------- tests/logs/RegressionTests_hercules.log | 732 +++++++++--------- tests/logs/RegressionTests_jet.log | 488 ++++++------ tests/logs/RegressionTests_orion.log | 550 ++++++------- tests/logs/RegressionTests_wcoss2.log | 460 +++++------ tests/parm/ufs.configure.s2s_esmf.IN | 18 +- tests/rt.conf | 5 - tests/test_changes.list | 1 + tests/tests/regional_ifi_2threads | 45 -- tests/tests/regional_ifi_control | 45 -- tests/tests/regional_ifi_decomp | 45 -- 20 files changed, 2372 insertions(+), 2508 deletions(-) delete mode 100644 tests/tests/regional_ifi_2threads delete mode 100644 tests/tests/regional_ifi_control delete mode 100644 tests/tests/regional_ifi_decomp diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index f13e16e414..663554e1c1 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit f13e16e414e115e268b2dd300b665e628e5f2429 +Subproject commit 663554e1c1724ade6292cf0a28a3c19e59caf980 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 70085f0b53..7a2bc33854 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240821 +export BL_DATE=20240830 diff --git a/tests/fv3_conf/cpld_docn_dice.IN b/tests/fv3_conf/cpld_docn_dice.IN index b2ad8bc18c..771b04dadb 100644 --- a/tests/fv3_conf/cpld_docn_dice.IN +++ b/tests/fv3_conf/cpld_docn_dice.IN @@ -6,10 +6,8 @@ if [[ ${OPNREQ_TEST} == true ]]; then fi #CDEPS data files -#cp @[INPUTDATA_ROOT]/DOCN_DICE_cplhist/ufs.cpld.cpl*.nc INPUT -module load nco -ncrcat ../${DEP_RUN}${SUFFIX}/ufs.cpld.cpl.hi.ice*nc ./INPUT/ufs.cpld.cpl.hi.ice.nc -ncrcat ../${DEP_RUN}${SUFFIX}/ufs.cpld.cpl.hi.ocn*nc ./INPUT/ufs.cpld.cpl.hi.ocn.nc +cp ../${DEP_RUN}${SUFFIX}/*ice.1h.aux*nc ./INPUT/ufs.cpld.cpl.hi.ice.nc +cp ../${DEP_RUN}${SUFFIX}/*ocn.1h.aux*nc ./INPUT/ufs.cpld.cpl.hi.ocn.nc #CDEPS fix files - same for ocn/ice cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc INPUT diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 70d614cb0e..fe7e7ef2e6 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Aug 28 16:38:17 UTC 2024 +Fri Aug 30 16:11:42 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/bit_base_bit_base +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_1541961/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 = 283.800402 - 0: The maximum resident set size (KB) = 1450532 + 0: The total amount of wall time = 285.319725 + 0: The maximum resident set size (KB) = 1459076 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/dbg_base_dbg_base +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_1541961/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 = 1002.626814 - 0: The maximum resident set size (KB) = 1429052 + 0: The total amount of wall time = 980.288173 + 0: The maximum resident set size (KB) = 1424524 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/dcp_dcp +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_1541961/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 = 248.583783 - 0: The maximum resident set size (KB) = 1432708 + 0: The total amount of wall time = 248.004317 + 0: The maximum resident set size (KB) = 1435996 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/mpi_mpi +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_1541961/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 = 249.643527 - 0: The maximum resident set size (KB) = 1421840 + 0: The total amount of wall time = 254.881553 + 0: The maximum resident set size (KB) = 1426068 Test mpi PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/rst_rst +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_1541961/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 = 247.585723 - 0: The maximum resident set size (KB) = 1424180 + 0: The total amount of wall time = 247.371317 + 0: The maximum resident set size (KB) = 1438120 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/std_base_std_base +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_1541961/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 = 251.398349 - 0: The maximum resident set size (KB) = 1433732 + 0: The total amount of wall time = 247.964958 + 0: The maximum resident set size (KB) = 1426916 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_900266/thr_thr +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_1541961/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 = 253.650286 - 0: The maximum resident set size (KB) = 1425568 + 0: The total amount of wall time = 249.125554 + 0: The maximum resident set size (KB) = 1430064 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 28 18:05:07 UTC 2024 -Elapsed time: 01h:26m:50s. Have a nice day! +Fri Aug 30 17:24:37 UTC 2024 +Elapsed time: 01h:12m:55s. 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 d4cfbb8d6e..4abdae7782 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Wed Aug 28 19:02:31 UTC 2024 +Fri Aug 30 15:02:11 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_859064/dbg_base_dbg_base +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_199771/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 = 1352.171779 - 0: The maximum resident set size (KB) = 1527368 + 0: The total amount of wall time = 1313.770246 + 0: The maximum resident set size (KB) = 1554336 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_859064/rst_rst +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_199771/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 = 434.264661 - 0: The maximum resident set size (KB) = 1521224 + 0: The total amount of wall time = 457.172265 + 0: The maximum resident set size (KB) = 1528760 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_859064/std_base_std_base +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_199771/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 = 429.232491 - 0: The maximum resident set size (KB) = 1518864 + 0: The total amount of wall time = 498.642653 + 0: The maximum resident set size (KB) = 1526632 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 28 20:12:34 UTC 2024 -Elapsed time: 01h:10m:03s. Have a nice day! +Fri Aug 30 16:11:42 UTC 2024 +Elapsed time: 01h:09m:32s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index c3a09590ac..79c4c09ce2 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Aug 28 14:06:09 UTC 2024 +Fri Aug 30 12:30:13 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3166513/bit_base_bit_base +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_37212/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 = 1365.461093 - 0: The maximum resident set size (KB) = 772116 + 0: The total amount of wall time = 1373.944509 + 0: The maximum resident set size (KB) = 776468 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3166513/dcp_dcp +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_37212/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 = 2161.790209 - 0: The maximum resident set size (KB) = 740428 + 0: The total amount of wall time = 2170.408116 + 0: The maximum resident set size (KB) = 721060 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3166513/std_base_std_base +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_37212/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 = 2253.074370 - 0: The maximum resident set size (KB) = 729952 + 0: The total amount of wall time = 2256.372781 + 0: The maximum resident set size (KB) = 731244 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3166513/thr_thr +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_37212/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 = 2194.893152 - 0: The maximum resident set size (KB) = 718656 + 0: The total amount of wall time = 2155.006152 + 0: The maximum resident set size (KB) = 742524 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 28 16:37:16 UTC 2024 -Elapsed time: 02h:31m:08s. Have a nice day! +Fri Aug 30 15:02:10 UTC 2024 +Elapsed time: 02h:31m:58s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 74b5702014..a94068e800 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: -4d4f175dce1d688311d329ad322abb16e29715cd +b7fc09c740c82647c6dac1c3fd2ea36cbd07f8e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (remotes/origin/HEAD) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,274 +35,269 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27065 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240830 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1960683 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:25, 10:19] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [47:01, 03:34](3298 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 16:30] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [40:55, 04:17](2104 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:50, 03:58](2125 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [18:46, 03:51](1225 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [40:56, 02:30](2169 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:30, 14:57] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [42:57, 02:14](2071 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:51] ( 1524 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [52:07, 03:50](2168 MB) - -PASS -- COMPILE 's2swa_intel' [12:26, 10:19] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [47:00, 02:44](3341 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [47:00, 03:28](3339 MB) -PASS -- TEST 'cpld_restart_p8_intel' [34:53, 03:13](3264 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [47:00, 02:07](3348 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [33:11, 02:25](3275 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [47:00, 03:10](3621 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [47:00, 02:42](3302 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [47:01, 02:51](3453 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [47:00, 02:49](3322 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [47:00, 03:10](3252 MB) - -PASS -- COMPILE 's2sw_intel' [11:25, 09:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [48:01, 02:49](2004 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [48:01, 03:04](2017 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:11] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [49:03, 03:16](2018 MB) - -PASS -- COMPILE 's2s_intel' [11:25, 09:23] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [48:00, 01:58](2889 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [48:00, 02:32](2898 MB) -PASS -- TEST 'cpld_restart_c48_intel' [42:31, 02:33](2310 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:31, 14:37] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [42:55, 03:20](3342 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:31, 15:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:56, 02:14](2094 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:17, 02:02](1284 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:29, 02:02](2198 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:37] ( 1559 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [44:46, 02:22](2216 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:24, 08:59] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [38:39, 01:31](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [38:39, 01:42](1547 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [38:39, 01:44](1554 MB) -PASS -- TEST 'control_latlon_intel' [38:39, 01:20](1552 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [38:39, 02:09](1546 MB) -PASS -- TEST 'control_c48_intel' [38:38, 02:25](1575 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [38:38, 01:49](711 MB) -PASS -- TEST 'control_c192_intel' [38:39, 02:25](1785 MB) -PASS -- TEST 'control_c384_intel' [38:43, 02:34](3082 MB) -PASS -- TEST 'control_c384gdas_intel' [38:43, 04:24](2306 MB) -PASS -- TEST 'control_stochy_intel' [38:39, 01:48](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [31:04, 02:09](412 MB) -PASS -- TEST 'control_lndp_intel' [38:39, 01:52](607 MB) -PASS -- TEST 'control_iovr4_intel' [38:27, 01:48](605 MB) -PASS -- TEST 'control_iovr5_intel' [37:06, 01:55](599 MB) -PASS -- TEST 'control_p8_intel' [37:06, 03:19](1846 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [36:58, 03:34](1845 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [36:50, 02:53](1841 MB) -PASS -- TEST 'control_restart_p8_intel' [14:38, 03:37](974 MB) -PASS -- TEST 'control_noqr_p8_intel' [36:42, 02:57](1815 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [14:38, 03:01](1006 MB) -PASS -- TEST 'control_decomp_p8_intel' [36:21, 02:48](1819 MB) -PASS -- TEST 'control_2threads_p8_intel' [36:01, 02:39](1916 MB) -PASS -- TEST 'control_p8_lndp_intel' [31:44, 01:47](1846 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [30:39, 03:08](1878 MB) -PASS -- TEST 'control_p8_mynn_intel' [30:45, 02:49](1833 MB) -PASS -- TEST 'merra2_thompson_intel' [29:52, 03:50](1809 MB) -PASS -- TEST 'regional_control_intel' [26:58, 01:48](860 MB) -PASS -- TEST 'regional_restart_intel' [12:59, 01:18](862 MB) -PASS -- TEST 'regional_decomp_intel' [25:12, 01:57](864 MB) -PASS -- TEST 'regional_2threads_intel' [23:43, 01:41](1177 MB) -PASS -- TEST 'regional_noquilt_intel' [22:46, 02:01](1191 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [21:44, 02:05](868 MB) -PASS -- TEST 'regional_wofs_intel' [19:06, 01:25](1595 MB) - -PASS -- COMPILE 'ifi_intel' [09:22, 07:51] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [18:26, 01:50](870 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [18:18, 01:45](871 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [18:13, 01:59](1176 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 08:25] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [17:17, 04:03](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [15:14, 01:56](1660 MB) -PASS -- TEST 'rap_decomp_intel' [14:50, 02:56](994 MB) -PASS -- TEST 'rap_2threads_intel' [14:37, 02:28](1089 MB) -PASS -- TEST 'rap_restart_intel' [04:50, 04:04](831 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:28, 04:08](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:21, 03:46](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [01:49, 03:11](833 MB) -PASS -- TEST 'hrrr_control_intel' [14:19, 03:13](985 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [13:02, 02:20](984 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:22, 04:01](1214 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:53, 01:42](783 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:50, 04:00](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 01:32](1949 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 02:22](1934 MB) - -PASS -- COMPILE 'csawmg_intel' [10:23, 08:13] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [11:23, 02:19](927 MB) -PASS -- TEST 'control_ras_intel' [11:09, 01:24](638 MB) - -PASS -- COMPILE 'wam_intel' [10:23, 08:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:35, 02:12](1640 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:29, 08:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [10:03, 03:23](1814 MB) -PASS -- TEST 'regional_control_faster_intel' [09:56, 02:07](859 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:26, 07:10] ( 883 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:51, 01:53](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:51, 01:34](1593 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:58, 02:18](797 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:07, 02:06](798 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:07, 01:33](1081 MB) -PASS -- TEST 'control_ras_debug_intel' [06:19, 01:29](800 MB) -PASS -- TEST 'control_diag_debug_intel' [05:33, 01:45](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [04:38, 01:51](1865 MB) -PASS -- TEST 'regional_debug_intel' [04:29, 02:10](941 MB) -PASS -- TEST 'rap_control_debug_intel' [04:06, 01:52](1177 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:02, 01:50](1173 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [03:10, 02:16](1177 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [02:57, 01:20](1176 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [02:51, 02:03](1181 MB) -PASS -- TEST 'rap_diag_debug_intel' [01:49, 02:19](1261 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [01:39, 02:07](1177 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [01:20, 02:16](1177 MB) -PASS -- TEST 'rap_lndp_debug_intel' [00:48, 01:26](1178 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [00:36, 01:35](1177 MB) -PASS -- TEST 'rap_noah_debug_intel' [00:24, 01:22](1173 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [59:51, 02:02](1174 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [59:36, 01:30](1172 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [59:27, 01:59](1172 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [59:25, 02:11](1180 MB) -PASS -- TEST 'rap_flake_debug_intel' [59:16, 02:10](1177 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [58:48, 03:41](1183 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:23, 04:49] ( 838 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [58:47, 02:16](1675 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:25, 08:11] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [58:45, 02:22](1524 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [58:21, 03:59](869 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [56:26, 04:48](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [55:57, 03:19](936 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [55:34, 04:29](1065 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [55:25, 04:33](861 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [45:52, 03:22](764 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [46:45, 01:28](750 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:24, 08:13] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [55:24, 01:39](1064 MB) -PASS -- TEST 'conus13km_2threads_intel' [50:13, 02:09](1398 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [49:16, 01:38](913 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:18] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [55:21, 02:34](895 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:26, 10:38] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [44:38, 02:40](3314 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:33, 16:09] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [39:32, 03:33](2103 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:18, 04:32](2095 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:24, 04:10](1250 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:33, 02:34](2195 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:33, 15:50] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [39:32, 01:48](2099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:48] ( 1524 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [49:44, 04:04](2150 MB) + +PASS -- COMPILE 's2swa_intel' [12:28, 10:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [44:36, 02:47](3323 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [44:36, 03:27](3339 MB) +PASS -- TEST 'cpld_restart_p8_intel' [34:30, 03:00](3259 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [44:36, 02:46](3339 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [34:30, 02:26](3280 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [44:36, 02:22](3622 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [44:36, 02:06](3334 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [44:37, 02:57](3434 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [44:36, 02:55](3323 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [44:36, 03:13](3252 MB) + +PASS -- COMPILE 's2sw_intel' [11:27, 09:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [45:38, 02:50](2024 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [45:38, 03:09](2021 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:27, 09:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [45:38, 03:16](2019 MB) + +PASS -- COMPILE 's2s_intel' [11:27, 09:43] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [45:37, 02:01](2890 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [45:36, 02:21](2897 MB) +PASS -- TEST 'cpld_restart_c48_intel' [40:05, 02:38](2312 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:32, 15:06] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [40:32, 02:56](3305 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:30, 15:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [39:34, 02:46](2106 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:49, 02:20](1256 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:27, 02:35](2179 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:32] ( 1559 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:23, 02:17](2218 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:24, 09:00] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [35:13, 01:49](652 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [35:13, 01:36](1548 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [35:13, 01:38](1552 MB) +PASS -- TEST 'control_latlon_intel' [35:13, 01:24](1554 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [35:13, 01:38](1553 MB) +PASS -- TEST 'control_c48_intel' [35:12, 02:03](1576 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [35:12, 01:59](715 MB) +PASS -- TEST 'control_c192_intel' [35:13, 02:31](1784 MB) +PASS -- TEST 'control_c384_intel' [35:17, 03:15](3085 MB) +PASS -- TEST 'control_c384gdas_intel' [35:17, 03:42](2319 MB) +PASS -- TEST 'control_stochy_intel' [35:13, 02:10](608 MB) +PASS -- TEST 'control_stochy_restart_intel' [16:20, 01:34](410 MB) +PASS -- TEST 'control_lndp_intel' [35:13, 01:23](603 MB) +PASS -- TEST 'control_iovr4_intel' [35:13, 01:37](605 MB) +PASS -- TEST 'control_iovr5_intel' [35:13, 01:32](605 MB) +PASS -- TEST 'control_p8_intel' [34:30, 03:13](1846 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [34:23, 03:14](1827 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [33:35, 02:58](1821 MB) +PASS -- TEST 'control_restart_p8_intel' [11:49, 03:35](973 MB) +PASS -- TEST 'control_noqr_p8_intel' [32:30, 02:24](1816 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [09:20, 02:10](1005 MB) +PASS -- TEST 'control_decomp_p8_intel' [30:56, 02:56](1819 MB) +PASS -- TEST 'control_2threads_p8_intel' [30:53, 03:04](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [28:34, 02:00](1846 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [27:27, 03:33](1897 MB) +PASS -- TEST 'control_p8_mynn_intel' [27:16, 03:33](1828 MB) +PASS -- TEST 'merra2_thompson_intel' [25:52, 04:15](1847 MB) +PASS -- TEST 'regional_control_intel' [23:45, 01:21](865 MB) +PASS -- TEST 'regional_restart_intel' [09:46, 01:11](864 MB) +PASS -- TEST 'regional_decomp_intel' [20:20, 01:22](864 MB) +PASS -- TEST 'regional_2threads_intel' [19:14, 01:59](1180 MB) +PASS -- TEST 'regional_noquilt_intel' [16:18, 01:17](1191 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [15:33, 02:09](860 MB) +PASS -- TEST 'regional_wofs_intel' [14:20, 01:57](1594 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:24] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [13:55, 03:27](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:55, 02:00](1661 MB) +PASS -- TEST 'rap_decomp_intel' [13:47, 02:58](991 MB) +PASS -- TEST 'rap_2threads_intel' [13:44, 03:27](1090 MB) +PASS -- TEST 'rap_restart_intel' [00:58, 03:39](831 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:47, 03:32](989 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:33, 03:14](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [00:03, 03:57](836 MB) +PASS -- TEST 'hrrr_control_intel' [11:25, 04:15](979 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [11:03, 03:07](984 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [11:04, 03:50](1211 MB) +PASS -- TEST 'hrrr_control_restart_intel' [01:39, 01:36](783 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:26, 03:05](982 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:59, 01:45](1945 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:57, 02:03](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [10:24, 08:17] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:57, 01:58](923 MB) +PASS -- TEST 'control_ras_intel' [08:45, 01:49](638 MB) + +PASS -- COMPILE 'wam_intel' [10:23, 08:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [07:52, 02:05](1633 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:24] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:20, 03:10](1814 MB) +PASS -- TEST 'regional_control_faster_intel' [06:53, 01:51](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:21, 07:10] ( 883 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:50, 02:06](1585 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:39, 01:55](1587 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:32, 02:09](796 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:26, 01:26](792 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:24, 01:35](1096 MB) +PASS -- TEST 'control_ras_debug_intel' [02:54, 02:07](802 MB) +PASS -- TEST 'control_diag_debug_intel' [01:53, 01:42](1646 MB) +PASS -- TEST 'control_debug_p8_intel' [01:43, 01:27](1869 MB) +PASS -- TEST 'regional_debug_intel' [00:57, 01:44](940 MB) +PASS -- TEST 'rap_control_debug_intel' [00:58, 02:08](1178 MB) +PASS -- TEST 'hrrr_control_debug_intel' [00:11, 01:43](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [59:53, 01:54](1179 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [58:57, 01:20](1174 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [58:55, 02:14](1177 MB) +PASS -- TEST 'rap_diag_debug_intel' [58:54, 01:47](1259 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [58:27, 02:03](1184 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:06, 01:51](1175 MB) +PASS -- TEST 'rap_lndp_debug_intel' [57:59, 01:50](1181 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [57:53, 01:50](1174 MB) +PASS -- TEST 'rap_noah_debug_intel' [57:20, 01:34](1169 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [57:18, 01:33](1170 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [56:55, 01:27](1170 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [56:34, 01:37](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [56:21, 01:39](1178 MB) +PASS -- TEST 'rap_flake_debug_intel' [55:52, 01:31](1175 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [55:54, 03:57](1186 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:23, 04:47] ( 838 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [55:52, 02:10](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:25, 08:09] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [55:35, 02:28](1527 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [54:41, 04:08](870 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [54:21, 04:14](863 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [52:36, 03:43](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [52:34, 04:03](1068 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [52:24, 03:40](861 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [42:09, 03:26](760 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [43:55, 01:20](748 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:26, 08:15] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [51:45, 01:59](1069 MB) +PASS -- TEST 'conus13km_2threads_intel' [46:33, 01:40](1398 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [45:58, 01:17](914 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:26, 08:14] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [51:44, 01:50](895 MB) PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:48] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [54:34, 01:19](1051 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [54:27, 01:44](1056 MB) -PASS -- TEST 'conus13km_debug_intel' [54:16, 02:08](1160 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [53:14, 02:06](842 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [53:12, 01:22](1469 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [53:05, 01:50](1209 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:24, 04:42] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [52:54, 01:18](1075 MB) - -PASS -- COMPILE 'hafsw_intel' [15:28, 09:36] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [53:04, 02:37](1671 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [52:51, 01:27](2022 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [52:44, 02:35](1198 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [52:24, 02:44](1231 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [51:53, 02:28](1377 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [50:29, 02:37](921 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [48:50, 03:14](1205 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [48:38, 02:47](1096 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [47:54, 03:49](1955 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [47:48, 01:55](956 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [47:27, 02:31](954 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [46:48, 02:05](1542 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [46:03, 01:37](1127 MB) -PASS -- TEST 'gnv1_nested_intel' [45:57, 04:08](1897 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:26, 05:23] ( 1466 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [45:55, 02:05](1586 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:25, 09:06] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [45:30, 02:30](1585 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [43:09, 02:06](1769 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:27, 08:53] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [42:24, 02:21](1770 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:27, 08:59] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [42:04, 02:31](1188 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [38:45, 02:28](1179 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [38:33, 02:00](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:27, 09:14] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [37:31, 01:17](771 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [30:03, 01:33](745 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [35:10, 01:17](649 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [33:37, 01:49](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [32:52, 01:52](649 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [32:11, 01:22](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:44, 01:17](769 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [29:08, 02:03](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [29:05, 01:57](817 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:40, 01:49](796 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [28:11, 01:53](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [27:53, 01:33](2036 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [27:45, 01:22](2040 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:28, 09:11] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [27:09, 01:43](773 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [40:56, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [26:29, 02:02](602 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [25:48, 01:14](748 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [21:16, 01:18](747 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [59:17, 09:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [24:56, 02:13](1963 MB) - -PASS -- COMPILE 'atml_intel' [16:37, 09:43] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:36, 03:11](2172 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:36, 03:17](2172 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [01:06, 02:05](1289 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:32, 05:40] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:38, 03:10](2216 MB) - -PASS -- COMPILE 'atmw_intel' [09:29, 08:43] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [11:39, 03:31](1927 MB) - -PASS -- COMPILE 'atmaero_intel' [09:28, 08:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:37, 02:46](3198 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:37, 03:08](2993 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:29, 03:11](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:22, 04:51] ( 883 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [14:28, 02:33](4810 MB) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [51:21, 01:42](1055 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [51:09, 02:02](1056 MB) +PASS -- TEST 'conus13km_debug_intel' [50:43, 02:01](1160 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [50:20, 02:06](842 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [50:09, 02:16](1471 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [49:52, 01:24](1230 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:44] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [49:47, 02:16](1077 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 09:44] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [49:39, 03:04](1678 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:37, 01:29](2028 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [49:25, 02:30](1190 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [49:19, 02:37](1229 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:46, 02:47](1515 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [47:20, 02:35](918 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [45:18, 02:47](1204 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [45:16, 02:56](1096 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [44:54, 03:26](1996 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [44:44, 02:30](956 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [43:56, 02:26](953 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [43:51, 02:28](1544 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [42:45, 01:40](1127 MB) +PASS -- TEST 'gnv1_nested_intel' [42:34, 04:17](1896 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:23, 05:29] ( 1466 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [42:12, 01:56](1644 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:28, 09:19] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [41:58, 02:37](1591 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [39:14, 01:58](1763 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:27, 09:24] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [37:56, 02:21](1768 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:26, 08:52] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [37:48, 02:16](1184 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [35:38, 02:44](1172 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [33:59, 01:40](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:26, 09:17] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [31:30, 02:07](768 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [23:02, 01:59](757 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [31:24, 01:46](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [29:30, 01:40](648 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [29:01, 01:25](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [28:43, 01:19](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [26:35, 01:29](769 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [25:45, 01:21](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [24:53, 02:26](815 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [23:08, 02:38](795 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [22:40, 02:09](771 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [22:28, 01:23](2040 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [22:09, 01:58](2035 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:27, 09:12] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [21:55, 02:05](756 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 01:04] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [21:17, 01:43](610 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [20:35, 01:42](747 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [16:03, 02:06](747 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 09:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [20:01, 01:59](1974 MB) + +PASS -- COMPILE 'atml_intel' [11:25, 09:10] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [19:41, 03:13](2171 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [19:02, 03:55](2173 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:35, 02:01](1289 MB) + +PASS -- COMPILE 'atml_debug_intel' [48:03, 05:31] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [18:30, 03:37](2217 MB) + +PASS -- COMPILE 'atmw_intel' [57:13, 08:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [18:16, 03:37](1925 MB) + +PASS -- COMPILE 'atmaero_intel' [20:41, 08:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [03:06, 02:48](3216 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [03:06, 03:13](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [03:06, 02:59](3009 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:31, 04:56] ( 883 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [06:14, 02:42](4809 MB) SYNOPSIS: -Starting Date/Time: 20240827 20:00:15 -Ending Date/Time: 20240827 22:13:47 -Total Time: 02h:13m:59s -Compiles Completed: 38/38 -Tests Completed: 179/179 +Starting Date/Time: 20240830 13:02:27 +Ending Date/Time: 20240830 15:21:36 +Total Time: 02h:19m:36s +Compiles Completed: 37/37 +Tests Completed: 176/176 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index a06b5aeec9..d93357ae91 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: -4d4f175dce1d688311d329ad322abb16e29715cd +481792ad8644aa9b8e70fbb3ecc0b5c05fd9a28d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,284 +35,284 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_129978 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240830 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_8918 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: scsg0002 +* (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [27:32, 25:22] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:59, 05:52](3202 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:32, 26:57] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:54, 14:53](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:27, 16:31](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:45, 08:41](1066 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:41, 16:55](1890 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:31, 27:07] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:54, 14:40](1903 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:28, 15:47] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:22, 23:20](1943 MB) - -PASS -- COMPILE 's2swa_intel' [27:32, 25:19] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:00, 06:46](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:29, 06:40](3221 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:48, 04:19](3151 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:00, 06:38](3252 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:48, 04:21](3180 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:31, 06:12](3738 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:31, 06:40](3216 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:32, 05:35](3536 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:11, 06:39](3231 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:50, 09:58](3819 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:50, 07:19](3621 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [34:01, 11:03](4520 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [39:31, 08:11](4668 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:17, 06:12](3210 MB) - -PASS -- COMPILE 's2sw_intel' [25:31, 23:19] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:55, 05:16](1919 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:02, 05:20](1977 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:28, 15:24] ( 1453 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:27, 08:41](3303 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:27, 14:25] ( 1453 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:01, 06:09](1955 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [21:30, 19:32] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:24, 05:10](1987 MB) - -PASS -- COMPILE 's2s_intel' [21:30, 19:31] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:31, 07:08](2889 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:29, 02:43](2893 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:19, 01:59](2308 MB) - -PASS -- COMPILE 's2swa_faster_intel' [29:26, 27:15] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:28, 06:36](3234 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [27:24, 25:02] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 15:11](1932 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:53, 09:19](1102 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:15, 17:13](1892 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:22, 14:13] ( 1563 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:13, 24:21](1955 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:21, 16:03] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:51, 03:32](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:28, 02:39](1559 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:57, 02:39](1565 MB) -PASS -- TEST 'control_latlon_intel' [05:31, 02:33](1559 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:33, 02:38](1564 MB) -PASS -- TEST 'control_c48_intel' [09:35, 06:11](1569 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:42, 05:23](710 MB) -PASS -- TEST 'control_c192_intel' [13:28, 08:58](1676 MB) -PASS -- TEST 'control_c384_intel' [19:44, 09:04](1945 MB) -PASS -- TEST 'control_c384gdas_intel' [22:46, 07:32](1179 MB) -PASS -- TEST 'control_stochy_intel' [03:53, 01:33](618 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:00, 00:57](436 MB) -PASS -- TEST 'control_lndp_intel' [03:51, 01:31](618 MB) -PASS -- TEST 'control_iovr4_intel' [04:44, 02:12](614 MB) -PASS -- TEST 'control_iovr5_intel' [04:41, 02:12](616 MB) -PASS -- TEST 'control_p8_intel' [06:55, 03:27](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:56, 03:25](1861 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:03, 03:22](1855 MB) -PASS -- TEST 'control_restart_p8_intel' [05:39, 02:26](993 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:12, 03:29](1849 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:51, 02:27](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:07, 03:28](1847 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:04, 03:13](1938 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:01, 05:17](1850 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:24, 04:13](1907 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:20, 03:25](1866 MB) -PASS -- TEST 'merra2_thompson_intel' [08:22, 03:39](1849 MB) -PASS -- TEST 'regional_control_intel' [08:30, 05:15](859 MB) -PASS -- TEST 'regional_restart_intel' [06:01, 03:24](855 MB) -PASS -- TEST 'regional_decomp_intel' [08:25, 05:28](864 MB) -PASS -- TEST 'regional_noquilt_intel' [08:03, 05:23](1178 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:04, 05:23](855 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:02, 05:13](860 MB) -PASS -- TEST 'regional_wofs_intel' [08:57, 05:50](1586 MB) - -PASS -- COMPILE 'rrfs_intel' [16:20, 14:30] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:15, 06:19](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:43, 03:49](1160 MB) -PASS -- TEST 'rap_decomp_intel' [10:18, 06:33](1009 MB) -PASS -- TEST 'rap_2threads_intel' [10:15, 05:51](1090 MB) -PASS -- TEST 'rap_restart_intel' [06:37, 03:23](878 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:22, 06:15](1004 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:23, 06:35](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:37, 04:45](879 MB) -PASS -- TEST 'hrrr_control_intel' [06:30, 03:24](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:30, 03:29](997 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:29, 03:02](1079 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:55, 01:57](828 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:29, 06:08](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:17, 07:31](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:16, 07:19](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [15:18, 13:28] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:17, 06:39](960 MB) -PASS -- TEST 'control_ras_intel' [05:42, 02:59](656 MB) - -PASS -- COMPILE 'wam_intel' [15:18, 13:13] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:16, 10:33](1643 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:18, 13:33] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:54, 03:21](1856 MB) -PASS -- TEST 'regional_control_faster_intel' [08:17, 04:56](854 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [18:18, 16:30] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:21, 02:42](1598 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:15, 02:36](1601 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:36, 03:03](801 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:40, 02:42](804 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:06, 05:03](1109 MB) -PASS -- TEST 'control_ras_debug_intel' [05:41, 02:44](809 MB) -PASS -- TEST 'control_diag_debug_intel' [07:32, 02:45](1662 MB) -PASS -- TEST 'control_debug_p8_intel' [07:00, 03:40](1891 MB) -PASS -- TEST 'regional_debug_intel' [20:04, 16:59](913 MB) -PASS -- TEST 'rap_control_debug_intel' [07:54, 04:53](1187 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:49, 04:47](1178 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:46, 04:49](1192 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:46, 04:50](1188 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:48, 04:53](1187 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:50, 05:02](1271 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:45, 05:00](1187 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:41, 05:04](1186 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:42, 05:01](1191 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:43, 04:57](1181 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:51, 04:46](1187 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:48, 04:57](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:50, 07:45](1186 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:39, 04:46](1183 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:45, 05:40](1191 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:45, 04:49](1187 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:32, 08:11](1193 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:14, 08:30] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:55, 12:18](1692 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:15, 12:57] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:17, 03:46](1017 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:20, 05:15](879 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:19, 02:51](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:19, 04:53](940 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:35, 02:34](928 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:20, 03:01](876 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:21, 04:11](787 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:56, 01:45](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:18, 12:38] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:36, 02:04](1075 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:12, 01:17](1072 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:13, 01:17](961 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:16, 12:51] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:15, 03:47](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:14, 09:34] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:47, 04:46](1069 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:52, 04:35](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [18:39, 14:02](1146 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:34, 13:55](830 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:10, 08:10](1146 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:31, 13:54](1231 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:19, 09:12] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 04:45](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [22:23, 20:36] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:03, 05:07](700 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:26, 05:53](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:19, 06:50](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:05, 11:12](775 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:56, 12:32](784 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:45, 04:58](465 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:10, 06:09](481 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:11, 02:36](385 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:04, 06:39](455 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:20, 03:39](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:53, 03:22](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:53, 04:14](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:39, 01:28](425 MB) -PASS -- TEST 'gnv1_nested_intel' [09:26, 04:35](1715 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:18, 10:50] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:47, 12:26](627 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:23, 19:19] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:57, 07:24](621 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:16, 07:33](680 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [23:21, 21:21] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:25, 05:39](669 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:23, 18:05] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:09, 06:01](736 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:20, 06:06](723 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:40, 16:14](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:14, 11:04] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:36, 02:36](756 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:59, 01:40](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:28](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:39, 02:32](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:29, 02:31](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:42, 02:39](768 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:53, 02:38](755 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:45, 02:27](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:49, 05:58](697 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:08, 06:01](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:26, 02:35](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:00, 04:04](2035 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:52, 04:02](2034 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:19, 07:49] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:36, 05:20](752 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:20, 10:39] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:28, 02:34](767 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:17, 03:46] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:51, 01:38](312 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:36, 01:29](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:50, 00:56](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:19, 15:49] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:11, 04:14](1908 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:21, 15:05] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:58, 04:11](1903 MB) - -PASS -- COMPILE 'atml_intel' [19:24, 16:58] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:14, 08:43](1892 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:31, 09:00](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:39, 05:19](1037 MB) - -PASS -- COMPILE 'atml_debug_intel' [15:15, 12:57] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:59, 06:58](1929 MB) - -PASS -- COMPILE 'atmw_intel' [18:15, 16:06] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:58, 02:31](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [17:16, 14:57] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:58, 04:41](3125 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:14, 04:30](2999 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:53, 04:33](3015 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:18, 11:00] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:10, 22:42](4541 MB) +PASS -- COMPILE 's2swa_32bit_intel' [27:34, 25:33] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:17, 06:04](3205 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [29:33, 27:12] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:12, 15:05](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:12, 16:33](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:53, 08:35](1073 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:10, 16:56](1879 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:33, 27:22] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:06, 14:56](1915 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:23, 15:48] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:44, 23:25](1938 MB) + +PASS -- COMPILE 's2swa_intel' [27:34, 25:18] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:30, 06:45](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:45, 06:37](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:47, 04:34](3152 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:30, 06:47](3252 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:47, 04:21](3179 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:08, 06:21](3735 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:09, 06:43](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:13, 05:49](3536 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:44, 06:42](3230 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [24:00, 10:15](3813 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [20:42, 07:25](3623 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [40:11, 11:21](4521 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [48:43, 08:30](4671 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [19:58, 06:24](3212 MB) + +PASS -- COMPILE 's2sw_intel' [25:31, 23:26] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [20:31, 05:23](1913 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:22, 05:18](1984 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:27, 15:53] ( 1453 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:49, 08:42](3303 MB) + +PASS -- COMPILE 's2sw_debug_intel' [17:23, 15:02] ( 1453 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:43, 06:15](1961 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [21:32, 19:23] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:24, 05:21](1975 MB) + +PASS -- COMPILE 's2s_intel' [21:32, 19:25] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:32, 07:06](2882 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:36, 03:13](2891 MB) +PASS -- TEST 'cpld_restart_c48_intel' [08:33, 02:08](2302 MB) + +PASS -- COMPILE 's2swa_faster_intel' [36:28, 27:38] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:21, 06:43](3232 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [36:28, 25:55] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:15, 15:13](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:15, 09:01](1086 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:40, 17:21](1897 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [25:26, 14:28] ( 1563 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:36, 24:24](1956 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [26:20, 16:28] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:03, 03:36](663 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:06, 02:34](1564 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:49, 02:37](1566 MB) +PASS -- TEST 'control_latlon_intel' [06:59, 02:33](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:57, 02:32](1566 MB) +PASS -- TEST 'control_c48_intel' [13:20, 06:13](1571 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:52, 05:28](713 MB) +PASS -- TEST 'control_c192_intel' [14:01, 09:01](1675 MB) +PASS -- TEST 'control_c384_intel' [22:28, 09:13](1954 MB) +PASS -- TEST 'control_c384gdas_intel' [24:55, 07:38](1175 MB) +PASS -- TEST 'control_stochy_intel' [04:10, 01:33](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:56, 01:00](432 MB) +PASS -- TEST 'control_lndp_intel' [03:53, 01:27](622 MB) +PASS -- TEST 'control_iovr4_intel' [06:02, 02:17](620 MB) +PASS -- TEST 'control_iovr5_intel' [05:03, 02:09](618 MB) +PASS -- TEST 'control_p8_intel' [09:09, 03:29](1856 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:21, 03:32](1851 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:16, 03:38](1857 MB) +PASS -- TEST 'control_restart_p8_intel' [07:03, 02:40](1001 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:08, 03:30](1846 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:08, 02:34](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:04, 03:29](1844 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:57, 03:17](1936 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:49, 05:19](1848 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:38, 04:14](1910 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:38, 03:32](1863 MB) +PASS -- TEST 'merra2_thompson_intel' [09:30, 03:44](1854 MB) +PASS -- TEST 'regional_control_intel' [09:48, 05:21](861 MB) +PASS -- TEST 'regional_restart_intel' [07:22, 03:39](862 MB) +PASS -- TEST 'regional_decomp_intel' [09:30, 05:39](856 MB) +PASS -- TEST 'regional_noquilt_intel' [08:21, 05:15](1181 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:20, 05:20](854 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:18, 05:17](862 MB) +PASS -- TEST 'regional_wofs_intel' [09:09, 05:54](1590 MB) + +PASS -- COMPILE 'rrfs_intel' [23:20, 14:52] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:44, 06:19](1007 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:35, 03:58](1157 MB) +PASS -- TEST 'rap_decomp_intel' [10:41, 06:31](1011 MB) +PASS -- TEST 'rap_2threads_intel' [10:41, 05:54](1089 MB) +PASS -- TEST 'rap_restart_intel' [06:47, 03:22](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:38, 06:17](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:35, 06:32](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:45, 04:45](879 MB) +PASS -- TEST 'hrrr_control_intel' [07:35, 03:20](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:35, 03:25](998 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:35, 02:56](1076 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:51, 01:53](828 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:34, 06:11](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:42, 07:32](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:42, 07:17](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [20:23, 13:51] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [11:06, 06:52](957 MB) +PASS -- TEST 'control_ras_intel' [05:51, 03:02](654 MB) + +PASS -- COMPILE 'wam_intel' [21:18, 13:33] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:16, 10:32](1655 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:17, 14:02] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:36, 03:33](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [08:50, 05:07](861 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [27:28, 16:38] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:35, 02:47](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:41, 02:43](1605 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:49, 02:59](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:04, 02:41](810 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:43, 05:08](1113 MB) +PASS -- TEST 'control_ras_debug_intel' [05:52, 02:49](815 MB) +PASS -- TEST 'control_diag_debug_intel' [08:04, 02:51](1670 MB) +PASS -- TEST 'control_debug_p8_intel' [07:15, 03:47](1894 MB) +PASS -- TEST 'regional_debug_intel' [20:14, 16:53](921 MB) +PASS -- TEST 'rap_control_debug_intel' [07:56, 04:53](1187 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:58, 04:44](1186 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:56, 04:56](1189 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:56, 04:47](1191 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:02, 04:53](1190 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:52, 05:10](1273 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:57, 05:05](1192 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:00, 05:01](1194 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:00, 05:02](1195 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:07, 05:01](1190 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:13, 04:53](1189 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:09, 04:56](1186 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:58, 07:44](1184 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:04, 04:55](1186 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:55, 05:51](1196 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:05, 04:53](1191 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:00, 08:26](1190 MB) + +PASS -- COMPILE 'wam_debug_intel' [21:17, 09:35] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:43, 12:26](1689 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:27, 13:33] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:23, 03:48](1016 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:49, 05:22](880 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:48, 02:55](874 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:47, 04:59](939 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:33, 02:32](928 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 03:08](872 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:32, 04:05](786 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:59, 01:40](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:27, 13:24] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:10, 02:10](1076 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:15, 01:19](1070 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:02, 01:21](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:17, 13:42] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:42, 03:49](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [19:18, 09:54] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:00, 04:41](1069 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:00, 04:42](1069 MB) +PASS -- TEST 'conus13km_debug_intel' [19:57, 13:41](1148 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:42, 14:27](829 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:53, 08:13](1147 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:44, 13:53](1215 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:23, 09:26] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:43, 04:51](1092 MB) + +PASS -- COMPILE 'hafsw_intel' [28:28, 21:07] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:06, 05:11](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:20, 06:07](1052 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:43, 06:56](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:23, 11:27](775 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:18, 12:37](805 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:30, 04:55](463 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:03, 06:03](482 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:26, 02:35](388 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:46, 06:47](451 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:30, 03:37](549 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:06, 03:23](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:33, 04:19](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:45, 01:27](422 MB) +PASS -- TEST 'gnv1_nested_intel' [10:27, 04:52](1714 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [16:26, 11:20] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:51, 12:35](617 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [22:29, 20:36] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:05, 07:26](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:02, 07:34](680 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [24:31, 22:18] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:30, 05:36](668 MB) + +PASS -- COMPILE 'hafs_all_intel' [21:25, 19:04] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:58, 06:09](738 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:59, 06:08](724 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:44, 16:22](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:27, 11:30] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:42, 02:38](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:59, 01:41](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:40, 02:29](646 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:40, 02:29](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:39, 02:33](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:42, 02:38](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:52, 02:38](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:51, 02:30](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:27, 05:57](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:51, 05:57](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:30, 02:34](754 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:10, 04:10](2035 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:07, 04:12](1970 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:24, 08:40] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:29, 05:21](752 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:23, 11:35] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:54, 02:36](767 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:19, 04:08] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:57, 01:44](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:41, 01:33](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:47, 01:03](453 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:22, 16:40] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:06, 04:25](1907 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [18:22, 15:45] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:42, 04:19](1895 MB) + +PASS -- COMPILE 'atml_intel' [20:23, 18:00] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:11, 09:32](1895 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [14:06, 09:31](1888 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [27:46, 05:40](1038 MB) + +PASS -- COMPILE 'atml_debug_intel' [16:22, 13:24] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:18, 06:50](1925 MB) + +PASS -- COMPILE 'atmw_intel' [18:24, 16:46] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:57, 02:45](1872 MB) + +PASS -- COMPILE 'atmaero_intel' [17:24, 15:53] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:47, 04:57](3125 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:41, 04:30](3004 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:07, 04:41](3013 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:17, 11:18] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [32:35, 23:02](4553 MB) SYNOPSIS: -Starting Date/Time: 20240828 06:22:41 -Ending Date/Time: 20240828 08:19:32 -Total Time: 01h:58m:37s +Starting Date/Time: 20240830 10:29:50 +Ending Date/Time: 20240830 12:50:29 +Total Time: 02h:22m:31s Compiles Completed: 41/41 Tests Completed: 184/184 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index e43d39637a..87b6c184fe 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -4d4f175dce1d688311d329ad322abb16e29715cd +1d8f4c649b384af7bfb16a49544e0877ee14ae1b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,285 +35,285 @@ 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-20240821 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_86307 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240830 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_5209 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:13, 21:17] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:16, 07:33](3203 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 25:02] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:48, 13:57](1908 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:50, 14:38](1936 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:52, 06:49](1071 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:40, 15:18](1893 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:12, 24:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:57, 14:12](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:12, 16:15] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:52, 24:48](1939 MB) - -PASS -- COMPILE 's2swa_intel' [22:12, 20:42] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:16, 08:27](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:33, 08:25](3221 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:11, 06:03](3154 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:16, 08:32](3248 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:11, 06:07](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:14, 07:14](3464 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:09, 08:11](3223 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:56, 07:32](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:33, 08:39](3223 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:01, 10:27](3446 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:08, 06:51](3606 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:06, 10:37](4208 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:48, 06:40](4360 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:12, 07:58](3211 MB) - -PASS -- COMPILE 's2sw_intel' [21:12, 19:43] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:44, 05:01](1929 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:52, 06:01](1995 MB) - -PASS -- COMPILE 's2swa_debug_intel' [18:12, 16:33] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:52, 10:12](3280 MB) - -PASS -- COMPILE 's2sw_debug_intel' [15:12, 13:30] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:42, 05:58](1947 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [20:13, 18:09] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:52, 05:26](1991 MB) - -PASS -- COMPILE 's2s_intel' [20:14, 18:28] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:14, 06:36](2873 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:15, 02:04](2881 MB) -PASS -- TEST 'cpld_restart_c48_intel' [10:12, 01:09](2291 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:11, 20:11] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:15, 09:12](3223 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:12, 21:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:05, 15:07](1930 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:51, 07:23](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:57, 17:08](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 14:24] ( 1558 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:41, 26:59](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:12, 14:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:33, 04:05](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:03, 04:04](1559 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:09, 03:46](1571 MB) -PASS -- TEST 'control_latlon_intel' [08:56, 03:26](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:06, 03:59](1568 MB) -PASS -- TEST 'control_c48_intel' [13:11, 07:11](1566 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:13, 06:04](699 MB) -PASS -- TEST 'control_c192_intel' [14:10, 10:50](1665 MB) -PASS -- TEST 'control_c384_intel' [21:23, 18:45](1933 MB) -PASS -- TEST 'control_c384gdas_intel' [18:32, 14:50](1152 MB) -PASS -- TEST 'control_stochy_intel' [03:32, 02:02](620 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:35, 01:00](425 MB) -PASS -- TEST 'control_lndp_intel' [03:33, 01:51](619 MB) -PASS -- TEST 'control_iovr4_intel' [04:44, 02:33](619 MB) -PASS -- TEST 'control_iovr5_intel' [04:37, 02:44](618 MB) -PASS -- TEST 'control_p8_intel' [06:21, 03:41](1856 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:43, 03:36](1856 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 03:21](1854 MB) -PASS -- TEST 'control_restart_p8_intel' [04:11, 01:44](1005 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:27, 03:22](1851 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:25, 01:46](1013 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:24, 03:24](1854 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:17, 02:51](1932 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:57, 05:40](1863 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:27, 04:16](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:27, 03:50](1860 MB) -PASS -- TEST 'merra2_thompson_intel' [08:16, 03:42](1866 MB) -PASS -- TEST 'regional_control_intel' [07:47, 04:39](849 MB) -PASS -- TEST 'regional_restart_intel' [04:41, 02:34](854 MB) -PASS -- TEST 'regional_decomp_intel' [07:45, 04:49](859 MB) -PASS -- TEST 'regional_2threads_intel' [05:36, 02:52](991 MB) -PASS -- TEST 'regional_noquilt_intel' [06:49, 04:31](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 05:00](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:44, 04:40](849 MB) -PASS -- TEST 'regional_wofs_intel' [07:44, 06:05](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 13:42] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:28, 06:47](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:19, 04:35](1136 MB) -PASS -- TEST 'rap_decomp_intel' [10:32, 07:31](1005 MB) -PASS -- TEST 'rap_2threads_intel' [09:28, 06:05](1085 MB) -PASS -- TEST 'rap_restart_intel' [06:09, 03:29](871 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:30, 06:56](1001 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:31, 07:25](1002 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:14, 05:02](871 MB) -PASS -- TEST 'hrrr_control_intel' [07:38, 04:11](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:31, 05:01](997 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:55, 03:24](1068 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:39, 01:54](827 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:29, 06:44](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:58, 08:38](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:58, 08:19](1946 MB) - -PASS -- COMPILE 'csawmg_intel' [15:14, 13:20] -PASS -- TEST 'control_csawmg_intel' [08:44, 06:53](959 MB) -PASS -- TEST 'control_ras_intel' [05:38, 03:27](653 MB) - -PASS -- COMPILE 'wam_intel' [16:13, 14:22] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:22, 11:55](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 13:51] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:35, 03:14](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [06:42, 04:46](837 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [18:12, 16:20] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:06, 03:02](1595 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:52, 03:00](1597 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:08](797 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:40, 02:52](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:24](1098 MB) -PASS -- TEST 'control_ras_debug_intel' [04:31, 03:04](803 MB) -PASS -- TEST 'control_diag_debug_intel' [05:54, 03:11](1658 MB) -PASS -- TEST 'control_debug_p8_intel' [05:53, 03:23](1888 MB) -PASS -- TEST 'regional_debug_intel' [18:50, 16:55](891 MB) -PASS -- TEST 'rap_control_debug_intel' [07:34, 05:23](1176 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:35, 05:30](1172 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:42, 05:17](1179 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:32, 05:15](1178 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:31, 05:10](1175 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:43, 05:28](1260 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:38, 05:17](1175 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 05:09](1176 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:30, 05:09](1179 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:03](1175 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:34, 05:05](1171 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:15](1175 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:40, 08:05](1171 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:40, 05:08](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:42, 06:00](1182 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:33, 05:10](1178 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:14, 08:43](1180 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:11, 11:22] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:16, 13:32](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:15, 13:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:19, 03:38](1010 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:00, 06:27](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:13, 03:54](878 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:04, 05:13](939 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 02:50](926 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 03:28](878 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:04, 04:09](776 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 01:43](760 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:15, 13:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:24, 02:30](1083 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:59, 01:11](1061 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:58, 01:23](962 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:15, 12:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:13, 04:09](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 11:30] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:34, 05:01](1052 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 04:55](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [17:28, 14:15](1133 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:11, 14:10](805 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:06, 08:16](1114 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:09, 14:49](1198 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:11, 11:25] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 05:03](1077 MB) - -PASS -- COMPILE 'hafsw_intel' [21:14, 19:17] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:21, 04:43](686 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:44, 04:00](1036 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:40, 07:29](724 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:15, 11:29](760 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:37, 12:36](781 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:20, 05:08](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:33, 06:14](481 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:19, 02:32](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:11, 06:57](441 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:07, 03:35](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:20, 03:15](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 04:04](557 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:44, 01:20](396 MB) -PASS -- TEST 'gnv1_nested_intel' [09:24, 05:11](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [16:13, 14:33] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:08, 12:23](586 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:12, 18:54] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:29, 07:15](605 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:30, 07:13](784 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:12, 18:38] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:54, 05:23](777 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:11, 16:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:23, 05:51](717 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:26, 06:13](703 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:22, 20:13](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:13, 13:29] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:33, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:28, 01:37](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:27](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:29, 02:33](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:29, 02:32](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:30, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:30, 02:38](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:30, 02:29](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:16](696 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:04, 06:00](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:24, 02:35](752 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 04:38](2029 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:39](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 09:00] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:32](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:14, 13:11] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:28, 02:34](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:44] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:55, 01:38](317 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:54, 01:31](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:52, 00:59](455 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:11, 16:21] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:35, 04:04](1916 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:12, 15:16] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:53, 03:57](1900 MB) - -PASS -- COMPILE 'atml_intel' [18:11, 16:25] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:53, 07:07](1879 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:42, 07:00](1891 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:48, 03:46](1035 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:11, 12:13] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:31, 06:32](1918 MB) - -PASS -- COMPILE 'atmw_intel' [17:15, 15:28] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:12, 02:47](1888 MB) - -PASS -- COMPILE 'atmaero_intel' [16:11, 14:24] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:19, 06:13](3122 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:21, 06:52](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:45](3016 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:11, 11:22] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:34, 18:17](4487 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:11, 19:39] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:35, 07:18](3204 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 23:31] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:50, 14:36](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:48, 14:34](1925 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:44, 07:14](1071 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:32, 14:49](1892 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:12, 23:08] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:54, 13:27](1906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:11, 14:21] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:33, 24:43](1939 MB) + +PASS -- COMPILE 's2swa_intel' [21:11, 19:48] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:22, 08:19](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:33, 07:56](3223 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:38, 05:48](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [22:31, 08:09](3246 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:50, 05:49](3172 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:20, 06:58](3466 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:38, 08:18](3223 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:20, 07:39](3167 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:05, 08:06](3224 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [26:37, 10:08](3444 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:40, 06:52](3608 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:56, 10:33](4208 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:09, 06:37](4364 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:49, 08:17](3211 MB) + +PASS -- COMPILE 's2sw_intel' [19:11, 18:00] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:37, 04:50](1930 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:36, 05:21](1995 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:11, 14:20] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:39, 09:53](3281 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:14, 13:21] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:27, 06:08](1948 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:11, 16:47] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:51, 05:17](1993 MB) + +PASS -- COMPILE 's2s_intel' [18:11, 16:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:20, 06:30](2870 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:29, 01:59](2882 MB) +PASS -- TEST 'cpld_restart_c48_intel' [14:26, 01:12](2292 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:12, 20:15] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:01, 08:14](3224 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 21:36] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:48, 15:09](1930 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:50, 07:30](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:57, 17:58](1904 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 14:58] ( 1558 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:36, 26:39](1945 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:28] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [08:54, 04:14](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [10:36, 03:41](1559 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:30, 03:31](1571 MB) +PASS -- TEST 'control_latlon_intel' [10:20, 03:30](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:36, 03:42](1567 MB) +PASS -- TEST 'control_c48_intel' [13:44, 06:39](1568 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:16, 05:47](698 MB) +PASS -- TEST 'control_c192_intel' [17:29, 10:24](1665 MB) +PASS -- TEST 'control_c384_intel' [25:53, 18:40](1938 MB) +PASS -- TEST 'control_c384gdas_intel' [22:42, 14:28](1157 MB) +PASS -- TEST 'control_stochy_intel' [04:49, 02:16](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:34, 01:00](425 MB) +PASS -- TEST 'control_lndp_intel' [06:54, 01:53](619 MB) +PASS -- TEST 'control_iovr4_intel' [06:54, 02:37](618 MB) +PASS -- TEST 'control_iovr5_intel' [06:55, 02:35](619 MB) +PASS -- TEST 'control_p8_intel' [10:47, 03:36](1857 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:07, 03:39](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:46, 03:34](1865 MB) +PASS -- TEST 'control_restart_p8_intel' [04:14, 01:45](1003 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:15, 03:37](1850 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 01:45](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:07, 03:53](1855 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:05, 02:54](1929 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:46, 05:28](1862 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:18, 04:28](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:20, 03:43](1861 MB) +PASS -- TEST 'merra2_thompson_intel' [06:20, 03:49](1855 MB) +PASS -- TEST 'regional_control_intel' [06:41, 04:41](857 MB) +PASS -- TEST 'regional_restart_intel' [04:45, 02:29](853 MB) +PASS -- TEST 'regional_decomp_intel' [06:40, 04:58](859 MB) +PASS -- TEST 'regional_2threads_intel' [04:43, 02:51](988 MB) +PASS -- TEST 'regional_noquilt_intel' [06:40, 04:40](1177 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 04:42](850 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:35, 04:39](850 MB) +PASS -- TEST 'regional_wofs_intel' [08:43, 06:09](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [16:11, 14:29] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:13, 07:07](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:09, 03:43](1148 MB) +PASS -- TEST 'rap_decomp_intel' [10:07, 07:07](1005 MB) +PASS -- TEST 'rap_2threads_intel' [09:10, 06:12](1086 MB) +PASS -- TEST 'rap_restart_intel' [07:14, 03:40](871 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:12, 06:51](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:02, 07:13](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:04, 04:54](871 MB) +PASS -- TEST 'hrrr_control_intel' [06:15, 03:47](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:06, 04:11](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:05, 03:07](1073 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:45, 02:07](827 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:07, 07:05](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:34, 08:32](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:32, 08:16](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [15:14, 13:28] +PASS -- TEST 'control_csawmg_intel' [08:43, 06:50](958 MB) +PASS -- TEST 'control_ras_intel' [05:38, 03:28](653 MB) + +PASS -- COMPILE 'wam_intel' [15:13, 13:13] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:22, 12:12](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:13, 13:48] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:15, 03:14](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [06:44, 04:43](846 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 14:25] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:06, 02:55](1588 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:06, 03:10](1596 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:35, 03:14](797 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:53](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:28](1099 MB) +PASS -- TEST 'control_ras_debug_intel' [04:26, 02:52](804 MB) +PASS -- TEST 'control_diag_debug_intel' [05:58, 03:04](1659 MB) +PASS -- TEST 'control_debug_p8_intel' [06:46, 03:32](1889 MB) +PASS -- TEST 'regional_debug_intel' [18:42, 16:22](890 MB) +PASS -- TEST 'rap_control_debug_intel' [07:37, 05:01](1176 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:32, 05:05](1172 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:33, 05:05](1179 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:32, 05:10](1178 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:30, 05:12](1175 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:13](1260 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:32, 05:13](1175 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 05:08](1175 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:32, 05:11](1179 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:32, 05:04](1175 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:39, 04:58](1172 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:34, 05:04](1175 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:32, 07:54](1174 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:32, 05:07](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:31, 05:54](1182 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:30, 05:12](1178 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:05, 08:40](1181 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:12, 10:49] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:07, 13:49](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:13, 13:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:13, 03:32](1013 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:08, 06:04](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:56, 03:37](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:00, 05:22](938 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:07, 02:45](924 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:00, 03:40](878 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:17, 04:07](776 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 02:02](760 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 14:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:28, 02:33](1084 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:58, 01:02](1062 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:00, 01:23](962 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:11, 13:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:09, 04:22](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 10:55] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:36, 04:55](1052 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 04:49](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [17:26, 14:39](1133 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:24, 14:56](805 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:13, 08:10](1113 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:09, 14:21](1198 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:11, 10:48] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 05:07](1077 MB) + +PASS -- COMPILE 'hafsw_intel' [19:15, 17:14] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:21, 04:41](687 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:37, 03:55](1036 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:43, 07:23](727 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:25, 11:34](757 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:36, 12:39](781 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:16, 05:05](460 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 06:18](479 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:22, 02:24](366 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 06:57](439 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:02, 03:35](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:13, 03:17](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:16, 04:06](555 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:43, 01:20](396 MB) +PASS -- TEST 'gnv1_nested_intel' [09:34, 05:28](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:11, 12:01] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:14, 12:24](579 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:14, 16:36] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:19, 07:18](600 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:30, 07:19](778 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:13, 17:37] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:53, 05:33](777 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:12, 16:31] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:29, 05:59](719 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:20, 06:17](704 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:23, 20:09](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:13, 13:22] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:33, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:36, 01:44](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:29, 02:28](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:33, 02:31](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:26, 02:33](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:30, 02:36](764 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:31, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:31, 02:30](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:23, 06:04](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:16, 06:03](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:29, 02:33](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:33, 04:39](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:35, 04:43](2032 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 08:41] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:30, 05:49](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:14, 13:06] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:33, 02:45](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:15, 03:48] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:06, 02:06](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:06, 01:48](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:03, 01:03](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 15:16] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:03, 04:09](1916 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:11, 14:49] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:43, 04:45](1905 MB) + +PASS -- COMPILE 'atml_intel' [17:12, 15:45] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:04, 08:07](1879 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:00, 08:01](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:11, 03:46](1035 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:13, 12:00] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:49, 06:47](1919 MB) + +PASS -- COMPILE 'atmw_intel' [17:11, 15:27] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:22, 02:48](1888 MB) + +PASS -- COMPILE 'atmaero_intel' [16:11, 14:14] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:29, 06:54](3121 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 06:58](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:23, 07:06](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:11, 11:15] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:45, 18:25](4484 MB) SYNOPSIS: -Starting Date/Time: 20240827 16:33:06 -Ending Date/Time: 20240827 18:16:51 -Total Time: 01h:45m:09s +Starting Date/Time: 20240830 15:46:47 +Ending Date/Time: 20240830 17:31:54 +Total Time: 01h:46m:26s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index ceda2b7d30..742dd3d6ee 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,15 +1,15 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -4d4f175dce1d688311d329ad322abb16e29715cd +1d8f4c649b384af7bfb16a49544e0877ee14ae1b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) @@ -24,375 +24,375 @@ 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_391126 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240830 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2393941 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nems +* (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 12:44] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [38:24, 05:40](3309 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [54:00, 17:26](1971 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [32:11, 18:08](2135 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:10, 08:22](1240 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:00, 19:28](1874 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [53:47, 17:29](1969 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:01] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [49:09, 23:16](1910 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 12:44] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [37:26, 05:57](3326 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:26, 06:29](3361 MB) -PASS -- TEST 'cpld_restart_p8_intel' [29:24, 03:34](3266 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [39:28, 05:57](3370 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [27:22, 03:38](3281 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [34:21, 05:37](3636 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [34:21, 06:12](3325 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [37:26, 05:04](3213 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:28, 06:24](3342 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [48:15, 10:37](3535 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [25:48, 06:41](3630 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [12:38, 09:37](4347 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:07, 05:59](4382 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [37:25, 05:25](3299 MB) - -PASS -- COMPILE 's2sw_intel' [14:12, 12:08] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [31:15, 05:01](1994 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:22, 04:30](2050 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:12, 05:57] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [39:16, 08:33](3398 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:36] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [35:07, 05:55](2006 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:20] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:13, 04:53](2059 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 11:15] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [31:48, 09:11](3063 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [22:50, 02:46](3046 MB) -PASS -- TEST 'cpld_restart_c48_intel' [12:55, 01:37](2492 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:15, 16:54] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [35:06, 05:53](3336 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:14, 15:42] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [48:00, 17:39](2013 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:07, 08:28](1278 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:57, 20:03](1881 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:13, 05:33] ( 1558 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [01:04, 26:48](1958 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [30:18, 10:50] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [31:27, 03:21](709 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [30:44, 02:59](1603 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [29:46, 03:01](1602 MB) -PASS -- TEST 'control_latlon_intel' [30:38, 02:53](1601 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [29:45, 03:00](1599 MB) -PASS -- TEST 'control_c48_intel' [24:41, 07:38](1717 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [26:25, 06:34](856 MB) -PASS -- TEST 'control_c192_intel' [38:02, 11:12](1740 MB) -PASS -- TEST 'control_c384_intel' [38:05, 10:55](1967 MB) -PASS -- TEST 'control_c384gdas_intel' [35:54, 08:03](1376 MB) -PASS -- TEST 'control_stochy_intel' [27:24, 01:42](661 MB) -PASS -- TEST 'control_stochy_restart_intel' [09:28, 00:58](503 MB) -PASS -- TEST 'control_lndp_intel' [26:24, 01:35](663 MB) -PASS -- TEST 'control_iovr4_intel' [24:30, 02:29](658 MB) -PASS -- TEST 'control_iovr5_intel' [19:27, 02:34](654 MB) -PASS -- TEST 'control_p8_intel' [17:54, 03:14](1889 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [19:01, 03:06](1902 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [15:56, 03:04](1908 MB) -PASS -- TEST 'control_restart_p8_intel' [11:46, 01:45](1128 MB) -PASS -- TEST 'control_noqr_p8_intel' [16:51, 03:02](1882 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [11:49, 01:43](1165 MB) -PASS -- TEST 'control_decomp_p8_intel' [18:50, 03:10](1879 MB) -PASS -- TEST 'control_2threads_p8_intel' [16:49, 02:54](1967 MB) -PASS -- TEST 'control_p8_lndp_intel' [14:44, 05:24](1879 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:48, 04:10](1940 MB) -PASS -- TEST 'control_p8_mynn_intel' [16:52, 03:07](1896 MB) -PASS -- TEST 'merra2_thompson_intel' [13:51, 03:24](1893 MB) -PASS -- TEST 'regional_control_intel' [14:38, 05:21](1089 MB) -PASS -- TEST 'regional_restart_intel' [04:45, 02:49](1071 MB) -PASS -- TEST 'regional_decomp_intel' [15:37, 05:35](1078 MB) -PASS -- TEST 'regional_2threads_intel' [10:36, 03:23](1088 MB) -PASS -- TEST 'regional_noquilt_intel' [15:39, 05:16](1400 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [14:39, 05:42](1095 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:32, 05:17](1091 MB) -PASS -- TEST 'regional_wofs_intel' [15:37, 06:55](1910 MB) - -PASS -- COMPILE 'rrfs_intel' [29:18, 10:18] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [22:46, 07:52](1100 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [29:04, 04:09](1248 MB) -PASS -- TEST 'rap_decomp_intel' [22:46, 08:14](1036 MB) -PASS -- TEST 'rap_2threads_intel' [24:38, 07:21](1178 MB) -PASS -- TEST 'rap_restart_intel' [12:44, 04:05](1097 MB) -PASS -- TEST 'rap_sfcdiff_intel' [22:48, 07:47](1100 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:48, 08:12](1039 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [14:47, 05:53](1123 MB) -PASS -- TEST 'hrrr_control_intel' [12:40, 04:04](1043 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [14:33, 04:08](1030 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:36, 03:41](1101 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:08](1002 MB) -PASS -- TEST 'rrfs_v1beta_intel' [16:45, 07:48](1096 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [17:25, 09:22](1992 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:27, 09:16](2058 MB) - -PASS -- COMPILE 'csawmg_intel' [33:14, 09:58] -PASS -- TEST 'control_csawmg_intel' [07:41, 06:05](1022 MB) -PASS -- TEST 'control_ras_intel' [08:25, 03:17](738 MB) - -PASS -- COMPILE 'csawmg_gnu' [27:17, 04:02] -PASS -- TEST 'control_csawmg_gnu' [22:42, 08:34](743 MB) - -PASS -- COMPILE 'wam_intel' [33:19, 10:06] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:48, 11:20](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:12, 10:09] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:51, 02:45](1886 MB) -PASS -- TEST 'regional_control_faster_intel' [08:40, 04:52](1084 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [35:20, 07:23] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:49, 02:38](1627 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:42, 02:37](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:22, 03:13](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:47](834 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:33, 04:17](1142 MB) -PASS -- TEST 'control_ras_debug_intel' [04:20, 02:49](833 MB) -PASS -- TEST 'control_diag_debug_intel' [04:39, 02:59](1678 MB) -PASS -- TEST 'control_debug_p8_intel' [04:49, 02:58](1919 MB) -PASS -- TEST 'regional_debug_intel' [20:34, 17:18](1095 MB) -PASS -- TEST 'rap_control_debug_intel' [07:22, 05:10](1207 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:48](1214 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:20, 04:58](1220 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 05:05](1223 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 05:14](1212 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:07](1302 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:01](1214 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 05:07](1221 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:21, 05:01](1216 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 05:01](1219 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:56](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:58](1218 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:10](1213 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:54](1212 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 06:08](1217 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:26, 04:59](1216 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:38, 08:37](1230 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [33:19, 04:16] -PASS -- TEST 'control_csawmg_debug_gnu' [04:36, 02:15](724 MB) - -PASS -- COMPILE 'wam_debug_intel' [26:12, 04:58] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:44, 13:48](1673 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:12, 09:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 03:52](1131 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:37, 06:26](1057 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:34, 03:24](978 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:30, 06:08](1086 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:39, 03:10](960 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:35](943 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:51](1033 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:49](931 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:12, 09:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:50, 02:04](1198 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:37, 00:51](1113 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:13](1097 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:12, 10:07] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:37, 04:09](985 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [20:12, 04:39] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:59](1096 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:51](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [16:44, 15:04](1244 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 14:56](926 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:50, 08:21](1152 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 14:58](1302 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [16:11, 04:38] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:59](1142 MB) - -PASS -- COMPILE 'hafsw_intel' [28:12, 11:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:14, 05:11](724 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:27, 06:15](1102 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:20, 06:59](817 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:12, 13:44](984 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:23, 15:22](868 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 05:26](494 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:18, 06:51](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:39, 02:42](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:51, 07:13](476 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 03:41](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:46, 03:34](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 04:08](581 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:09](404 MB) -PASS -- TEST 'gnv1_nested_intel' [06:23, 04:00](1731 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [24:12, 05:02] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:48, 13:10](595 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [34:12, 11:05] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:40](656 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:58, 08:43](742 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [35:14, 11:16] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:24, 06:31](723 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:12, 10:47] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:12, 07:35](819 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 06:31](803 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:54, 16:26](1215 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [28:12, 06:47] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 03:03](1140 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:38](1114 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:50](1009 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:42](1034 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:59](1007 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:44](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:47](1164 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:33](1047 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:12, 06:12](1069 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:13, 06:07](1045 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:19, 02:42](1143 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:53](2451 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:00](2519 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [23:12, 03:27] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:21](1086 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [21:12, 06:31] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:42](1170 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [16:11, 01:15] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:43](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:22, 00:53](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:30](330 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [23:13, 10:45] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:03, 03:39](1991 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:11, 10:16] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 03:34](1966 MB) - -PASS -- COMPILE 'atml_intel' [21:12, 10:35] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:53, 04:21](1844 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:50, 04:14](1865 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:40, 02:22](1091 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:11, 05:21] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:52, 05:51](1898 MB) - -PASS -- COMPILE 'atmw_intel' [17:12, 10:09] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:44, 01:53](1913 MB) - -PASS -- COMPILE 'atmaero_intel' [15:12, 10:08] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:51, 04:06](3203 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:51, 04:52](3105 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:38, 04:57](3096 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:11, 04:31] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [10:11, 04:34] -PASS -- TEST 'control_c48_gnu' [13:40, 11:16](1512 MB) -PASS -- TEST 'control_stochy_gnu' [05:21, 03:21](492 MB) -PASS -- TEST 'control_ras_gnu' [06:20, 04:46](504 MB) -PASS -- TEST 'control_p8_gnu' [06:52, 04:49](1430 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:45, 04:38](1455 MB) -PASS -- TEST 'control_flake_gnu' [12:24, 10:22](502 MB) - -PASS -- COMPILE 'rrfs_gnu' [08:11, 04:10] -PASS -- TEST 'rap_control_gnu' [12:30, 10:54](840 MB) -PASS -- TEST 'rap_decomp_gnu' [13:31, 11:12](844 MB) -PASS -- TEST 'rap_2threads_gnu' [11:34, 09:55](922 MB) -PASS -- TEST 'rap_restart_gnu' [07:39, 05:35](578 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:36, 11:02](814 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:30, 11:09](841 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:40, 08:08](579 MB) -PASS -- TEST 'hrrr_control_gnu' [07:34, 05:36](842 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:34](789 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:30, 05:04](911 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 05:35](810 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:27, 02:53](565 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:24, 03:03](653 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:46, 10:39](807 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:12, 06:25] -PASS -- TEST 'control_diag_debug_gnu' [03:40, 01:37](1271 MB) -PASS -- TEST 'regional_debug_gnu' [14:36, 12:10](754 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:42](827 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:40](827 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:19, 02:37](825 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [05:21, 02:38](829 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:35, 02:49](910 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:21, 04:07](822 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:21, 02:35](823 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [05:21, 02:35](821 MB) -PASS -- TEST 'control_ras_debug_gnu' [04:20, 01:33](459 MB) -PASS -- TEST 'control_stochy_debug_gnu' [04:20, 01:45](453 MB) -PASS -- TEST 'control_debug_p8_gnu' [04:38, 01:48](1429 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:35](824 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [05:23, 02:55](828 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:38, 04:23](828 MB) - -PASS -- COMPILE 'wam_debug_gnu' [06:11, 02:26] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:09] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:37, 09:29](703 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:40, 04:59](707 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:29, 08:37](753 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:34, 04:33](742 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:32, 05:07](705 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:36, 07:03](556 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:25, 02:32](541 MB) -PASS -- TEST 'conus13km_control_gnu' [10:52, 03:11](873 MB) -PASS -- TEST 'conus13km_2threads_gnu' [08:42, 06:34](883 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:43, 01:49](565 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:10, 09:37] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:40, 05:45](724 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:39] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [09:23, 02:35](712 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [09:21, 02:29](711 MB) -PASS -- TEST 'conus13km_debug_gnu' [10:44, 06:56](894 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [10:41, 07:09](580 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:39, 07:52](895 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:37, 06:58](957 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:56] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:26, 02:35](733 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:31] - -PASS -- COMPILE 's2s_gnu' [17:11, 15:50] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:19, 07:20](1528 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:08] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:03] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:55, 19:32](1460 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:56] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:13] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:04](692 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 12:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:35, 05:50](3322 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:03, 17:25](1944 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:29, 18:14](2143 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:19, 08:22](1249 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:02, 19:36](1867 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:12, 16:48] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:47, 17:10](1935 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:12, 06:21] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:01, 23:19](1936 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 12:49] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:33, 06:02](3321 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:41, 06:03](3333 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:25, 03:48](3240 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:29, 06:07](3358 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:19, 03:46](3284 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:29, 06:12](3634 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:32, 06:04](3310 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:33, 04:58](3196 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:38, 06:12](3357 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:24, 10:30](3534 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:58, 06:33](3574 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:13, 09:26](4300 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:08, 05:59](4387 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:32, 05:33](3321 MB) + +PASS -- COMPILE 's2sw_intel' [14:12, 12:12] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:26, 05:10](1992 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:31, 04:32](2056 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:12, 06:09] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:09, 09:02](3365 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:12, 06:01] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:21, 05:55](2012 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:33] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:22](2046 MB) + +PASS -- COMPILE 's2s_intel' [13:13, 11:41] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:45, 09:19](3017 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:47, 02:41](3054 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:33](2485 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:13, 16:53] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:29, 06:17](3329 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:37] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:09, 17:36](2008 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 08:25](1265 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:00, 20:05](1917 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 06:05] ( 1558 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:16, 26:01](1968 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:31, 03:20](706 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:57, 02:58](1596 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:03, 03:07](1612 MB) +PASS -- TEST 'control_latlon_intel' [04:55, 02:56](1606 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:05, 02:59](1604 MB) +PASS -- TEST 'control_c48_intel' [09:59, 07:34](1735 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 08:16](856 MB) +PASS -- TEST 'control_c192_intel' [13:18, 10:45](1732 MB) +PASS -- TEST 'control_c384_intel' [14:18, 10:38](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [11:55, 07:58](1377 MB) +PASS -- TEST 'control_stochy_intel' [03:27, 01:56](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:00](506 MB) +PASS -- TEST 'control_lndp_intel' [03:27, 02:00](656 MB) +PASS -- TEST 'control_iovr4_intel' [04:30, 02:29](656 MB) +PASS -- TEST 'control_iovr5_intel' [04:31, 02:29](658 MB) +PASS -- TEST 'control_p8_intel' [06:10, 03:08](1895 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:15, 03:09](1888 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:07, 02:58](1895 MB) +PASS -- TEST 'control_restart_p8_intel' [03:47, 01:47](1128 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:09, 03:05](1892 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:58, 01:46](1168 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:51, 03:09](1875 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:49, 02:55](1961 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:44, 05:25](1893 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 04:06](1937 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:57, 03:34](1858 MB) +PASS -- TEST 'merra2_thompson_intel' [05:53, 03:27](1893 MB) +PASS -- TEST 'regional_control_intel' [07:41, 05:18](1110 MB) +PASS -- TEST 'regional_restart_intel' [04:41, 03:03](1085 MB) +PASS -- TEST 'regional_decomp_intel' [07:39, 05:39](1092 MB) +PASS -- TEST 'regional_2threads_intel' [05:43, 03:24](1087 MB) +PASS -- TEST 'regional_noquilt_intel' [07:43, 05:17](1390 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:18](1100 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:25](1097 MB) +PASS -- TEST 'regional_wofs_intel' [08:39, 06:59](1908 MB) + +PASS -- COMPILE 'rrfs_intel' [12:13, 10:16] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:43, 07:49](1105 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 04:10](1250 MB) +PASS -- TEST 'rap_decomp_intel' [10:41, 08:12](1036 MB) +PASS -- TEST 'rap_2threads_intel' [09:39, 07:54](1172 MB) +PASS -- TEST 'rap_restart_intel' [05:45, 04:06](1097 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:40, 07:48](1099 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:38, 08:12](1035 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:49, 05:57](1125 MB) +PASS -- TEST 'hrrr_control_intel' [05:40, 04:00](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:38, 04:07](1025 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:37, 03:42](1111 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:11](997 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:51, 07:42](1096 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:25](1987 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:33, 09:13](2046 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 09:55] +PASS -- TEST 'control_csawmg_intel' [08:38, 06:46](1020 MB) +PASS -- TEST 'control_ras_intel' [05:26, 03:22](742 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:12, 04:17] +PASS -- TEST 'control_csawmg_gnu' [10:41, 08:30](740 MB) + +PASS -- COMPILE 'wam_intel' [12:12, 10:14] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:48, 11:23](1650 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:12] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:51, 02:46](1884 MB) +PASS -- TEST 'regional_control_faster_intel' [07:43, 05:09](1066 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:33] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:40](1627 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:48, 02:39](1624 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:11](834 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:52](828 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:19](1136 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:53](839 MB) +PASS -- TEST 'control_diag_debug_intel' [04:44, 02:49](1681 MB) +PASS -- TEST 'control_debug_p8_intel' [04:42, 03:00](1921 MB) +PASS -- TEST 'regional_debug_intel' [19:38, 17:50](1103 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 04:59](1214 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:27, 05:05](1206 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 05:00](1211 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:01](1214 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:26, 06:46](1227 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:07](1296 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:26, 04:57](1217 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:04](1220 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:27, 05:08](1231 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:27, 05:06](1216 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:55](1214 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 05:10](1211 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 08:18](1212 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:27, 04:57](1215 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:26, 06:15](1219 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:27, 05:00](1218 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:48](1220 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 04:12] +PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:20](724 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:13, 04:39] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:50, 13:38](1684 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 09:48] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:05, 03:52](1130 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:30](1025 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:39, 03:31](991 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:34, 06:09](1087 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:10](962 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:30, 03:37](933 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:49, 04:52](1040 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 01:53](937 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:13, 09:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:55, 02:06](1194 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:44, 00:52](1111 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:13](1105 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 09:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:11](992 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:46] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:49](1092 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:54](1087 MB) +PASS -- TEST 'conus13km_debug_intel' [22:51, 20:25](1236 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:50](935 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:50, 08:28](1155 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 15:00](1308 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 04:45] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 05:04](1131 MB) + +PASS -- COMPILE 'hafsw_intel' [13:13, 11:45] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:17](723 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:41, 06:12](1098 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:33, 07:03](817 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:19, 13:52](846 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:40, 15:32](874 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:02, 05:34](488 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:26, 06:46](504 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:43, 02:40](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:30, 07:22](478 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 03:48](491 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:57, 03:39](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:54, 04:12](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:11](400 MB) +PASS -- TEST 'gnv1_nested_intel' [07:32, 04:20](1746 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:12, 05:13] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:00, 13:03](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:12, 11:15] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:08, 08:50](647 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:09, 08:59](740 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:13, 11:51] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:30, 06:32](726 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 10:56] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:32](817 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:14, 06:33](801 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:37](1216 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:41] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:41](1165 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:38](1117 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:41](1035 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:41](1032 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:42](1036 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:43](1164 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:47](1160 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:35](1039 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:25, 06:11](1084 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 06:29](1045 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:18, 03:09](1146 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 04:32](2494 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 03:59](2456 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:38] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:21](1073 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:27] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:42](1166 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:04] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:46](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:50](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:33](328 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:49] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:04, 03:40](1980 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:32] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:59, 03:34](1965 MB) + +PASS -- COMPILE 'atml_intel' [12:12, 10:57] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:04, 04:33](1845 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:00, 04:20](1861 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 02:25](1081 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 06:00] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:59, 05:48](1871 MB) + +PASS -- COMPILE 'atmw_intel' [12:12, 10:38] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:55](1905 MB) + +PASS -- COMPILE 'atmaero_intel' [12:12, 10:22] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:02, 04:09](3197 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:52](3105 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:53](3118 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:53] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:12, 04:33] +PASS -- TEST 'control_c48_gnu' [13:40, 11:17](1509 MB) +PASS -- TEST 'control_stochy_gnu' [05:24, 03:25](496 MB) +PASS -- TEST 'control_ras_gnu' [06:24, 04:42](504 MB) +PASS -- TEST 'control_p8_gnu' [06:55, 04:47](1451 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:52, 04:38](1466 MB) +PASS -- TEST 'control_flake_gnu' [12:29, 10:23](539 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:11] +PASS -- TEST 'rap_control_gnu' [12:34, 10:58](842 MB) +PASS -- TEST 'rap_decomp_gnu' [12:32, 11:10](809 MB) +PASS -- TEST 'rap_2threads_gnu' [11:37, 09:50](923 MB) +PASS -- TEST 'rap_restart_gnu' [07:45, 05:31](577 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:42, 10:45](814 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:37, 12:38](813 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:46, 08:03](579 MB) +PASS -- TEST 'hrrr_control_gnu' [07:34, 05:34](812 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:35, 05:36](827 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:38, 05:04](910 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:39, 05:36](844 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:30, 02:52](565 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:32, 02:48](656 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:46, 10:40](809 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:32] +PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:37](1273 MB) +PASS -- TEST 'regional_debug_gnu' [13:41, 11:46](755 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:41](823 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:26, 02:35](820 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [05:25, 03:21](826 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:24, 02:37](823 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:39, 02:56](905 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:28, 04:09](815 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:25, 02:41](823 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:36](820 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:25, 01:35](460 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:24, 01:46](452 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:42, 01:46](1440 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:24, 02:37](822 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:25, 02:51](825 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:40, 04:21](830 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:12, 02:25] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:10] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:39, 09:20](710 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:38, 04:57](709 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:33, 08:27](750 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:30, 04:30](747 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:32, 05:03](707 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:43, 06:57](555 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:31, 02:32](536 MB) +PASS -- TEST 'conus13km_control_gnu' [05:56, 03:09](873 MB) +PASS -- TEST 'conus13km_2threads_gnu' [08:48, 06:17](877 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:48, 01:52](565 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:46] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:41, 05:44](724 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 06:40] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:24, 02:31](715 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:25, 02:30](715 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:52, 07:01](893 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:48, 07:01](583 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:46, 07:48](892 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:45, 06:54](961 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:37] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:27, 02:35](738 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 16:31] + +PASS -- COMPILE 's2s_gnu' [17:12, 16:03] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:08, 06:53](1528 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:12] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:13, 16:21] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:04, 19:37](1460 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:14, 03:05] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 15:26] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:01](692 MB) SYNOPSIS: -Starting Date/Time: 20240827 21:24:12 -Ending Date/Time: 20240828 14:55:56 -Total Time: 17h:32m:02s +Starting Date/Time: 20240830 19:44:52 +Ending Date/Time: 20240830 21:25:52 +Total Time: 01h:41m:18s Compiles Completed: 57/57 Tests Completed: 243/243 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 3f7ae85b5c..4401fb7d35 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: -4d4f175dce1d688311d329ad322abb16e29715cd +481792ad8644aa9b8e70fbb3ecc0b5c05fd9a28d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,376 +35,376 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_60228 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240830 +COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1046366 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:10, 11:29] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:03, 08:22](2122 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:10, 16:25] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:04, 13:18](1986 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:17, 14:04](2290 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:22, 06:35](1306 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:03, 15:25](1919 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:10, 17:05] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:34, 13:01](1989 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:10, 06:14] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:03, 21:01](1979 MB) - -PASS -- COMPILE 's2swa_intel' [16:10, 11:29] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:53, 08:53](2179 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:06, 08:32](2165 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:14, 05:23](1967 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:56, 08:49](2199 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:12, 05:24](1740 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:54, 09:48](2538 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:49, 08:44](2162 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:57, 07:18](2079 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:05, 08:39](2178 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:49, 15:56](2981 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:03, 05:58](2919 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:26, 10:46](3836 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:33, 06:44](3630 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:54, 05:50](2132 MB) - -PASS -- COMPILE 's2sw_intel' [16:10, 10:54] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:49, 07:41](2028 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:59, 05:21](2086 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:10, 05:26] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:01, 08:22](2213 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:10, 05:14] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:58, 05:37](2052 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:10, 10:21] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:53, 05:10](2085 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 10:01] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:46, 08:13](3055 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:51, 03:19](3041 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:36, 01:26](2487 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:06] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:01, 07:30](2185 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:10, 16:50] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:54, 13:49](2040 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:57, 06:44](1392 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:53, 15:18](1956 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:57] ( 1558 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:57, 23:34](2014 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:21, 03:29](723 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:33, 03:08](1627 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:37, 03:17](1634 MB) -PASS -- TEST 'control_latlon_intel' [05:26, 03:06](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:33, 03:09](1609 MB) -PASS -- TEST 'control_c48_intel' [08:31, 07:04](1709 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:24, 05:52](838 MB) -PASS -- TEST 'control_c192_intel' [13:38, 12:04](1754 MB) -PASS -- TEST 'control_c384_intel' [15:22, 12:48](2001 MB) -PASS -- TEST 'control_c384gdas_intel' [12:51, 09:55](1508 MB) -PASS -- TEST 'control_stochy_intel' [03:22, 01:39](673 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:00](546 MB) -PASS -- TEST 'control_lndp_intel' [03:17, 01:35](677 MB) -PASS -- TEST 'control_iovr4_intel' [04:20, 02:42](668 MB) -PASS -- TEST 'control_iovr5_intel' [04:19, 02:42](682 MB) -PASS -- TEST 'control_p8_intel' [05:49, 03:18](1902 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:15](1905 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:56, 03:04](1904 MB) -PASS -- TEST 'control_restart_p8_intel' [04:40, 01:50](1156 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:50, 03:08](1890 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:44, 01:46](1222 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:44, 03:26](1890 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:38, 02:55](1979 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:29, 05:45](1894 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:48, 04:24](1975 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:50, 02:41](1911 MB) -PASS -- TEST 'merra2_thompson_intel' [05:51, 03:46](1914 MB) -PASS -- TEST 'regional_control_intel' [06:24, 04:47](1207 MB) -PASS -- TEST 'regional_restart_intel' [04:24, 02:48](1163 MB) -PASS -- TEST 'regional_decomp_intel' [07:21, 05:21](1176 MB) -PASS -- TEST 'regional_2threads_intel' [05:24, 03:25](1161 MB) -PASS -- TEST 'regional_noquilt_intel' [06:25, 04:42](1523 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:30, 05:13](1197 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:22, 04:55](1193 MB) -PASS -- TEST 'regional_wofs_intel' [07:23, 05:41](2087 MB) - -PASS -- COMPILE 'rrfs_intel' [10:11, 09:06] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:37, 06:41](1186 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:47, 03:27](1360 MB) -PASS -- TEST 'rap_decomp_intel' [08:37, 06:59](1140 MB) -PASS -- TEST 'rap_2threads_intel' [08:37, 06:14](1365 MB) -PASS -- TEST 'rap_restart_intel' [06:00, 03:24](1138 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:38, 06:39](1201 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:38, 07:01](1161 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:51, 05:01](1199 MB) -PASS -- TEST 'hrrr_control_intel' [05:40, 03:26](1083 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:40, 03:38](1049 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:40, 03:10](1115 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:32, 01:51](1015 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:54, 06:30](1181 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:20, 07:47](2017 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:28](2177 MB) - -PASS -- COMPILE 'csawmg_intel' [10:11, 08:09] -PASS -- TEST 'control_csawmg_intel' [08:24, 06:17](1057 MB) -PASS -- TEST 'control_ras_intel' [05:17, 02:57](828 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:10, 04:20] -PASS -- TEST 'control_csawmg_gnu' [09:31, 08:05](1065 MB) - -PASS -- COMPILE 'wam_intel' [10:10, 08:45] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:34, 09:58](1659 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 08:47] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:52, 02:22](1901 MB) -PASS -- TEST 'regional_control_faster_intel' [06:24, 04:15](1191 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 06:20] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:29, 02:27](1636 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:30, 02:21](1639 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:49](853 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:39](845 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:23, 03:47](1155 MB) -PASS -- TEST 'control_ras_debug_intel' [04:16, 02:51](856 MB) -PASS -- TEST 'control_diag_debug_intel' [04:32, 02:31](1707 MB) -PASS -- TEST 'control_debug_p8_intel' [05:32, 03:34](1937 MB) -PASS -- TEST 'regional_debug_intel' [18:25, 16:43](1157 MB) -PASS -- TEST 'rap_control_debug_intel' [07:19, 05:09](1235 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:35](1230 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:45](1232 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:44](1229 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:52](1236 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:24, 04:53](1307 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:43](1228 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 04:53](1229 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:17, 04:32](1237 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 04:36](1239 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:18, 04:46](1232 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:48](1230 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:17, 07:55](1237 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 04:55](1240 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:20, 05:54](1242 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:36](1247 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:48, 08:15](1234 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 03:53] -PASS -- TEST 'control_csawmg_debug_gnu' [07:29, 02:39](1053 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 03:43] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:47, 04:14](1221 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:33, 07:30](1188 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:51, 03:39](1053 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:47, 07:06](1273 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:01, 03:24](1041 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:49, 03:54](1005 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:52, 05:45](1152 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [16:21, 01:59](954 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:18] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:40, 02:09](1274 MB) -PASS -- TEST 'conus13km_2threads_intel' [15:40, 01:00](1189 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [16:33, 01:12](1137 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:34, 03:46](1072 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:26] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:16, 04:54](1114 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:17, 05:03](1108 MB) -PASS -- TEST 'conus13km_debug_intel' [19:29, 15:48](1356 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:35, 16:14](1003 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:33, 12:24](1245 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:33, 16:10](1430 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:35] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:18, 04:38](1161 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 10:15] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:08, 05:31](865 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:24, 04:55](1250 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:20, 06:36](932 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:06, 14:06](974 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:20, 15:27](974 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:52, 05:27](598 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:20, 06:58](612 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [14:42, 02:31](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:54, 07:34](548 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:43, 03:52](609 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:44, 03:42](606 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [17:50, 04:55](663 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:25, 01:18](448 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 03:41] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:45, 11:28](638 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 09:58] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [30:56, 16:17](755 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [31:59, 16:29](838 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:11, 09:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [25:23, 09:51](811 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:11, 09:48] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [22:14, 05:45](923 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [22:16, 05:46](900 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [32:44, 16:32](1344 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:10, 05:54] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [18:16, 02:14](1154 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:17, 01:24](1112 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [18:15, 02:10](1018 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [17:15, 02:12](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [16:16, 02:12](1023 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [15:15, 02:15](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [13:15, 02:16](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [13:15, 02:10](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:50, 05:01](1163 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:49, 04:54](1150 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [13:13, 02:12](1117 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:05](2390 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [12:15, 03:08](2399 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:11] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:17, 05:17](1082 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:03] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [12:15, 02:15](1128 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:06] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [10:26, 00:54](337 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [10:20, 00:49](577 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:22, 00:33](570 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:10, 09:20] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [13:45, 04:20](2032 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:39] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:52, 04:18](2000 MB) - -PASS -- COMPILE 'atml_intel' [11:10, 09:23] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [15:05, 06:47](1900 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:59, 06:54](1904 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:32, 03:13](1147 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 04:45] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:57, 06:07](1918 MB) - -PASS -- COMPILE 'atmw_intel' [11:11, 09:09] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:49, 02:40](1948 MB) - -PASS -- COMPILE 'atmaero_intel' [11:10, 08:52] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:53, 04:55](2029 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:44, 04:24](1808 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:40, 04:25](1816 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:23] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:30, 16:56](4579 MB) - -PASS -- COMPILE 'atm_gnu' [07:10, 05:21] -PASS -- TEST 'control_c48_gnu' [11:34, 09:28](1531 MB) -PASS -- TEST 'control_stochy_gnu' [04:18, 02:24](727 MB) -PASS -- TEST 'control_ras_gnu' [07:21, 04:00](729 MB) -PASS -- TEST 'control_p8_gnu' [08:48, 04:48](1722 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [08:37, 04:54](1727 MB) -PASS -- TEST 'control_flake_gnu' [07:19, 04:33](807 MB) - -PASS -- COMPILE 'rrfs_gnu' [07:10, 05:14] -PASS -- TEST 'rap_control_gnu' [11:32, 08:40](1082 MB) -PASS -- TEST 'rap_decomp_gnu' [11:32, 08:29](1084 MB) -PASS -- TEST 'rap_2threads_gnu' [10:45, 07:27](1114 MB) -PASS -- TEST 'rap_restart_gnu' [06:40, 04:29](887 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:46, 08:33](1081 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:33, 08:46](1080 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:38, 06:27](885 MB) -PASS -- TEST 'hrrr_control_gnu' [07:45, 04:17](1070 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 04:22](1136 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:34, 03:50](1034 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 04:07](1070 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:18, 02:13](887 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:19, 02:06](935 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [10:50, 07:50](1078 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:49] -PASS -- TEST 'control_diag_debug_gnu' [03:29, 01:16](1625 MB) -PASS -- TEST 'regional_debug_gnu' [08:25, 06:37](1114 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:16, 02:07](1099 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 02:08](1088 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:16, 02:04](1096 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:18, 02:07](1095 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:24, 02:11](1268 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:17, 03:32](1094 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 02:10](1097 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:17, 02:01](1093 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:11](725 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:21](723 MB) -PASS -- TEST 'control_debug_p8_gnu' [05:31, 02:28](1722 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:16, 02:01](1096 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:11](1103 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 03:21](1100 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:11] -PASS -- TEST 'control_wam_debug_gnu' [08:30, 06:01](1560 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [14:11, 10:31] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:30, 07:40](963 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:38, 04:06](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:42, 06:57](994 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:52, 03:26](889 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:35, 04:08](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:35, 05:48](864 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:18, 02:23](864 MB) -PASS -- TEST 'conus13km_control_gnu' [05:36, 02:43](1270 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:29, 01:10](1179 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:28, 01:35](938 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [20:11, 16:12] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:28, 05:27](991 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [19:10, 15:25] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:17, 02:05](976 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:17, 02:02](970 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:30, 05:47](1284 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:31, 06:00](973 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:25, 03:23](1194 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:25, 05:45](1352 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [18:10, 15:30] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:16, 02:10](1000 MB) - -PASS -- COMPILE 's2swa_gnu' [26:11, 23:31] - -PASS -- COMPILE 's2s_gnu' [23:11, 20:32] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:51, 06:34](2758 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [18:10, 15:19] - -PASS -- COMPILE 's2sw_pdlib_gnu' [25:11, 23:31] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [30:01, 26:55](3046 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [16:10, 14:52] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:47, 12:45](3055 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [24:10, 19:48] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:14, 02:26](772 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:10, 11:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:11, 08:33](2123 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:10, 17:03] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:13, 13:21](1990 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:12, 15:17](2316 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:56, 07:27](1307 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:15, 15:09](1925 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:10, 18:29] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:39, 13:05](1981 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 05:23] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:17, 21:29](1974 MB) + +PASS -- COMPILE 's2swa_intel' [13:10, 11:40] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:00, 08:43](2188 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:11, 08:23](2171 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:51, 05:17](1958 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:02, 08:21](2203 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:08, 05:44](1745 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:15, 10:25](2544 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:59, 08:42](2162 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:09, 07:34](2092 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:11, 08:23](2177 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [23:19, 16:22](2996 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:22, 06:35](2923 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:05, 10:36](3834 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:22, 06:32](3630 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:04, 06:11](2149 MB) + +PASS -- COMPILE 's2sw_intel' [13:10, 11:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:00, 07:51](2023 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:12, 04:50](2080 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:10, 06:47] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:56, 09:15](2203 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:10, 06:10] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:50, 06:29](2047 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:10, 10:12] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:57, 04:59](2080 MB) + +PASS -- COMPILE 's2s_intel' [11:11, 10:06] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:45, 08:02](3048 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 02:39](3038 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:41, 01:21](2499 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:10, 12:19] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:04, 07:23](2168 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:10, 17:56] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:00, 14:20](2042 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:27, 08:46](1402 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:13, 16:13](1951 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:39] ( 1558 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:01, 23:01](2017 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:10, 09:22] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:21, 03:36](714 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:31, 03:06](1617 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:35, 03:04](1628 MB) +PASS -- TEST 'control_latlon_intel' [04:26, 03:02](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:41, 03:04](1605 MB) +PASS -- TEST 'control_c48_intel' [08:32, 07:01](1707 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:32, 06:02](844 MB) +PASS -- TEST 'control_c192_intel' [14:49, 12:20](1746 MB) +PASS -- TEST 'control_c384_intel' [17:44, 13:02](2001 MB) +PASS -- TEST 'control_c384gdas_intel' [14:53, 10:10](1509 MB) +PASS -- TEST 'control_stochy_intel' [03:29, 01:43](668 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:50, 01:11](549 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:38](674 MB) +PASS -- TEST 'control_iovr4_intel' [05:23, 02:44](664 MB) +PASS -- TEST 'control_iovr5_intel' [05:21, 02:45](666 MB) +PASS -- TEST 'control_p8_intel' [07:55, 04:52](1889 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:51, 04:26](1904 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:49, 04:26](1915 MB) +PASS -- TEST 'control_restart_p8_intel' [04:41, 02:31](1161 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:41, 04:06](1899 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:42](1195 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:37, 04:57](1884 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:41, 04:02](1987 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:39, 07:20](1905 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:58, 05:49](1978 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:53, 04:09](1905 MB) +PASS -- TEST 'merra2_thompson_intel' [08:58, 04:50](1907 MB) +PASS -- TEST 'regional_control_intel' [10:26, 06:29](1192 MB) +PASS -- TEST 'regional_restart_intel' [04:28, 02:49](1168 MB) +PASS -- TEST 'regional_decomp_intel' [09:28, 06:25](1186 MB) +PASS -- TEST 'regional_2threads_intel' [06:28, 04:05](1164 MB) +PASS -- TEST 'regional_noquilt_intel' [07:55, 05:18](1517 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:32, 05:37](1194 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:34, 05:46](1205 MB) +PASS -- TEST 'regional_wofs_intel' [10:30, 05:44](2067 MB) + +PASS -- COMPILE 'rrfs_intel' [10:10, 08:46] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:41, 06:45](1203 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:50, 03:43](1363 MB) +PASS -- TEST 'rap_decomp_intel' [08:42, 06:57](1149 MB) +PASS -- TEST 'rap_2threads_intel' [08:41, 06:15](1367 MB) +PASS -- TEST 'rap_restart_intel' [08:07, 03:28](1127 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:40](1198 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:43, 06:56](1148 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:04, 05:05](1187 MB) +PASS -- TEST 'hrrr_control_intel' [07:41, 03:28](1096 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:53, 03:37](1048 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:41, 03:10](1110 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:30, 01:52](1035 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:32](1192 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 07:43](2007 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 07:36](2167 MB) + +PASS -- COMPILE 'csawmg_intel' [14:10, 08:48] +PASS -- TEST 'control_csawmg_intel' [08:30, 06:12](1045 MB) +PASS -- TEST 'control_ras_intel' [04:18, 02:53](824 MB) + +PASS -- COMPILE 'csawmg_gnu' [10:10, 04:41] +PASS -- TEST 'control_csawmg_gnu' [09:32, 07:59](1063 MB) + +PASS -- COMPILE 'wam_intel' [15:10, 09:01] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:36, 09:44](1668 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 08:31] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:52, 02:42](1903 MB) +PASS -- TEST 'regional_control_faster_intel' [06:27, 04:17](1190 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 06:02] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:30, 02:38](1636 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:32, 02:33](1640 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:54](860 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:41](842 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:26, 04:42](1162 MB) +PASS -- TEST 'control_ras_debug_intel' [04:18, 02:45](853 MB) +PASS -- TEST 'control_diag_debug_intel' [04:38, 02:29](1696 MB) +PASS -- TEST 'control_debug_p8_intel' [05:32, 03:38](1937 MB) +PASS -- TEST 'regional_debug_intel' [19:28, 17:36](1146 MB) +PASS -- TEST 'rap_control_debug_intel' [06:19, 04:54](1234 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:52](1236 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:55](1232 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:43](1223 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:18, 04:56](1229 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:25, 05:05](1308 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 05:02](1229 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:18, 05:03](1240 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:22, 04:46](1229 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 04:56](1224 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:47, 04:46](1225 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 04:57](1233 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:18, 08:02](1226 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 04:56](1221 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 06:09](1229 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:38](1228 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:57, 08:17](1234 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:05] +PASS -- TEST 'control_csawmg_debug_gnu' [04:34, 02:52](1055 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 03:45] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 08:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:49, 04:15](1225 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:46, 07:41](1180 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:44](1071 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:31, 07:12](1289 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:52, 04:11](1032 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:57, 04:07](999 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:56, 05:57](1141 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:21, 02:01](967 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:10, 07:53] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:55, 02:05](1294 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:26, 01:16](1192 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:28, 01:23](1137 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:10, 09:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:38, 04:00](1082 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:27] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:22, 05:16](1108 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:21, 05:08](1111 MB) +PASS -- TEST 'conus13km_debug_intel' [17:34, 15:34](1354 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:37, 16:10](1001 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:27, 12:58](1246 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:29, 16:02](1411 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:23] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:18, 04:49](1172 MB) + +PASS -- COMPILE 'hafsw_intel' [12:10, 10:25] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:14, 06:02](862 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 05:41](1255 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:49, 06:51](930 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:14, 14:29](974 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:18, 15:59](991 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:49, 05:31](596 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:42, 08:19](605 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:49](438 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:50, 09:53](547 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:53, 04:38](598 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:57, 04:29](609 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:14, 05:50](665 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:09](449 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 04:21] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:43, 11:34](632 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:10, 09:27] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:02, 15:46](757 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:58, 16:19](824 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 09:38] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:27, 10:21](822 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:10, 10:12] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:16, 05:54](917 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 05:56](907 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:47, 16:57](1343 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 06:16] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 02:13](1156 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:27, 01:32](1121 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:09](1016 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:10](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:13](1023 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 02:25](1149 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:20](1162 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:19](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:00, 05:11](1177 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:55, 05:11](1162 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:23](1152 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:20, 03:26](2394 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:18](2342 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 04:09] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:16](1083 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 06:24] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:17](1144 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 01:16] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:30, 02:00](330 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:28, 01:50](573 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:54](570 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:10, 09:00] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:17, 04:58](2027 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:45] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:10, 04:23](1984 MB) + +PASS -- COMPILE 'atml_intel' [12:10, 09:44] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:33, 07:41](1887 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:01, 08:45](1897 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:53, 05:13](1150 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 04:38] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:04, 06:46](1931 MB) + +PASS -- COMPILE 'atmw_intel' [11:11, 09:26] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:51, 02:51](1945 MB) + +PASS -- COMPILE 'atmaero_intel' [10:11, 08:35] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:52, 05:24](2018 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:32](1811 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:50, 04:29](1812 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:44] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:30, 16:56](4575 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:50] +PASS -- TEST 'control_c48_gnu' [11:36, 10:06](1530 MB) +PASS -- TEST 'control_stochy_gnu' [05:22, 02:43](725 MB) +PASS -- TEST 'control_ras_gnu' [06:26, 04:33](731 MB) +PASS -- TEST 'control_p8_gnu' [07:03, 04:39](1724 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:03, 04:54](1707 MB) +PASS -- TEST 'control_flake_gnu' [07:21, 05:38](806 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:10, 04:39] +PASS -- TEST 'rap_control_gnu' [10:40, 08:52](1085 MB) +PASS -- TEST 'rap_decomp_gnu' [10:37, 08:16](1084 MB) +PASS -- TEST 'rap_2threads_gnu' [10:03, 07:52](1115 MB) +PASS -- TEST 'rap_restart_gnu' [07:00, 04:16](889 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:49, 08:23](1081 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:37, 08:32](1080 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:56, 06:19](887 MB) +PASS -- TEST 'hrrr_control_gnu' [07:00, 04:09](1070 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:57, 04:28](1136 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:55, 04:03](1032 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:50, 04:19](1072 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:27, 02:07](888 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:26, 02:06](935 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [10:51, 08:09](1088 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 05:56] +PASS -- TEST 'control_diag_debug_gnu' [03:35, 01:30](1624 MB) +PASS -- TEST 'regional_debug_gnu' [09:27, 07:40](1118 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:18, 02:35](1096 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:30, 02:31](1090 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:28](1097 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:23, 02:38](1095 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:31, 03:04](1269 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:27, 03:37](1096 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:35](1098 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:54](1093 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:21, 01:37](727 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:39](722 MB) +PASS -- TEST 'control_debug_p8_gnu' [04:39, 02:53](1693 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:22, 02:20](1098 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:44](1102 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:49, 03:56](1100 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:47] +PASS -- TEST 'control_wam_debug_gnu' [07:32, 05:32](1562 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:28] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:50, 08:17](962 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:53, 03:56](949 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:51, 07:06](965 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:48, 03:35](871 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:48, 04:01](948 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:40, 05:48](864 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:22, 02:09](865 MB) +PASS -- TEST 'conus13km_control_gnu' [04:42, 02:31](1266 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:30, 01:14](1175 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:29, 01:36](933 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:11, 11:02] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:44, 04:26](987 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:11, 09:35] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:57](978 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:07](965 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:34, 05:41](1291 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:43, 06:19](976 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:30, 03:48](1195 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 05:51](1352 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 07:08] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:07](1005 MB) + +PASS -- COMPILE 's2swa_gnu' [19:10, 16:46] + +PASS -- COMPILE 's2s_gnu' [18:10, 16:43] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:10, 05:37](2731 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [10:10, 08:49] + +PASS -- COMPILE 's2sw_pdlib_gnu' [19:11, 17:57] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:02, 26:01](2909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:10, 08:42] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:45, 12:57](3055 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [19:10, 17:52] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:16, 02:20](767 MB) SYNOPSIS: -Starting Date/Time: 20240828 22:30:47 -Ending Date/Time: 20240829 00:34:18 -Total Time: 02h:04m:04s +Starting Date/Time: 20240830 11:28:44 +Ending Date/Time: 20240830 13:18:29 +Total Time: 01h:50m:25s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 8ace8bd225..8657a5917d 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -4d4f175dce1d688311d329ad322abb16e29715cd +1d8f4c649b384af7bfb16a49544e0877ee14ae1b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,254 +35,254 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3172495 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240830 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4150703 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [52:21, 42:33] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [44:28, 06:44](2020 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [59:22, 49:19] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [08:10, 20:40](1886 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:17, 22:18](2020 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [16:13, 10:00](1129 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [05:20, 23:44](1848 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [59:22, 49:40] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [08:58, 20:11](1890 MB) - -PASS -- COMPILE 's2swa_intel' [52:21, 42:44] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [45:21, 07:16](2062 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [52:45, 07:18](2054 MB) -PASS -- TEST 'cpld_restart_p8_intel' [14:20, 04:22](1720 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [53:29, 07:23](2081 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:16, 04:26](1737 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [37:13, 07:03](2316 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [48:18, 07:20](2056 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [28:25, 06:07](2013 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:35, 07:21](2052 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [54:30, 06:54](2035 MB) - -PASS -- COMPILE 's2sw_intel' [42:17, 32:52] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [30:28, 05:45](1914 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [31:39, 05:44](1976 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:16] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [33:29, 10:33](2096 MB) - -PASS -- COMPILE 's2sw_debug_intel' [26:13, 05:11] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [39:15, 07:16](1934 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [28:24, 36:27] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:28, 05:32](1985 MB) - -PASS -- COMPILE 's2s_intel' [21:24, 29:35] ( 1015 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:53, 11:59](3024 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:53, 03:27](3006 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:50, 01:57](2459 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:31, 33:10] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:37, 07:04](2058 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [33:25, 46:57] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:17, 20:45](1918 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:17, 10:35](1127 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:09, 23:55](1882 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [43:19, 05:57] ( 1558 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:24, 32:56](1937 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [42:14, 37:38] ( 1 warnings 1126 remarks ) -PASS -- TEST 'control_flake_intel' [06:35, 04:24](647 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:08, 03:47](1549 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:17, 04:02](1555 MB) -PASS -- TEST 'control_latlon_intel' [07:17, 03:45](1548 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:20, 03:54](1545 MB) -PASS -- TEST 'control_c48_intel' [15:11, 11:42](1705 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:36, 10:12](824 MB) -PASS -- TEST 'control_c192_intel' [17:22, 14:17](1678 MB) -PASS -- TEST 'control_c384_intel' [22:24, 17:59](1787 MB) -PASS -- TEST 'control_c384gdas_intel' [18:09, 13:31](1008 MB) -PASS -- TEST 'control_stochy_intel' [04:29, 02:11](610 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:26, 01:21](436 MB) -PASS -- TEST 'control_lndp_intel' [03:29, 02:06](605 MB) -PASS -- TEST 'control_iovr4_intel' [05:40, 03:17](598 MB) -PASS -- TEST 'control_iovr5_intel' [05:42, 03:18](596 MB) -PASS -- TEST 'control_p8_intel' [09:25, 04:01](1835 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:35, 04:25](1838 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:23, 03:57](1843 MB) -PASS -- TEST 'control_restart_p8_intel' [04:47, 02:18](1052 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:32, 03:52](1839 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:12](1074 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:18, 04:13](1835 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:15, 03:44](1924 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:10, 07:00](1826 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:22, 05:34](1897 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:25, 04:17](1840 MB) -PASS -- TEST 'merra2_thompson_intel' [12:19, 04:37](1843 MB) -PASS -- TEST 'regional_control_intel' [10:01, 07:12](1005 MB) -PASS -- TEST 'regional_restart_intel' [05:33, 03:48](1008 MB) -PASS -- TEST 'regional_decomp_intel' [15:01, 07:48](1006 MB) -PASS -- TEST 'regional_2threads_intel' [07:09, 04:29](1007 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:06, 07:08](1002 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [15:01, 07:19](1010 MB) - -PASS -- COMPILE 'rrfs_intel' [31:13, 30:03] ( 3 warnings 1102 remarks ) -PASS -- TEST 'rap_control_intel' [14:51, 10:19](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:13, 05:48](1170 MB) -PASS -- TEST 'rap_decomp_intel' [12:42, 10:47](992 MB) -PASS -- TEST 'rap_2threads_intel' [12:43, 09:43](1080 MB) -PASS -- TEST 'rap_restart_intel' [09:48, 05:24](986 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:53, 10:07](991 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:41, 10:43](986 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:52, 07:40](999 MB) -PASS -- TEST 'hrrr_control_intel' [07:53, 05:09](985 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:36, 05:20](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:33, 04:41](1059 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:30, 02:52](922 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:57, 09:59](990 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:27, 12:24](1941 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:29, 12:09](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [35:13, 33:59] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:38, 08:09](965 MB) -PASS -- TEST 'control_ras_intel' [06:26, 04:24](651 MB) - -PASS -- COMPILE 'wam_intel' [36:15, 34:39] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [16:43, 14:20](1609 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [38:15, 36:39] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:04, 03:38](1843 MB) -PASS -- TEST 'regional_control_faster_intel' [08:45, 06:31](1007 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 08:46] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:49, 03:26](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:54, 03:23](1580 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:29, 03:44](778 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:29, 03:22](778 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:43, 05:27](1092 MB) -PASS -- TEST 'control_ras_debug_intel' [06:29, 03:31](788 MB) -PASS -- TEST 'control_diag_debug_intel' [09:50, 03:29](1634 MB) -PASS -- TEST 'control_debug_p8_intel' [09:50, 03:44](1869 MB) -PASS -- TEST 'regional_debug_intel' [28:47, 22:10](1042 MB) -PASS -- TEST 'rap_control_debug_intel' [10:30, 06:12](1167 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:30, 05:58](1159 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:30, 06:03](1162 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [11:32, 06:13](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [12:26, 06:17](1168 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:38, 06:36](1255 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:29, 06:26](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:26, 06:25](1169 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:27, 06:21](1164 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:28, 06:18](1161 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:03](1169 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 06:11](1156 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:25, 10:05](1160 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 06:04](1162 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 07:32](1168 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:26, 06:11](1168 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:50, 10:46](1173 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:15] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:56, 16:37](1653 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:15, 30:35] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:05, 05:11](1051 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:32, 08:16](900 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:36, 04:22](874 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:46, 07:52](943 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:43, 04:00](917 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:36, 04:38](860 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:12](898 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:21](849 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:14, 31:55] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:52, 02:53](1101 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:35, 01:14](1047 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:37, 01:33](1021 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:14, 30:59] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:49, 05:29](911 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:16] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 06:02](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:27, 05:56](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [21:00, 18:45](1157 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:00, 18:44](867 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:51, 10:49](1101 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:52, 18:49](1226 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:03] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:09](1080 MB) - -PASS -- COMPILE 'hafsw_intel' [40:16, 38:35] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:18, 06:43](706 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:02](1061 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:35, 09:03](756 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [21:24, 15:52](786 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:37, 17:53](808 MB) -PASS -- TEST 'gnv1_nested_intel' [18:00, 06:26](1678 MB) - -PASS -- COMPILE 'hafs_all_intel' [37:14, 35:17] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:29, 08:28](760 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:30, 08:34](740 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:18] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:22, 03:37](1082 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:25, 02:13](1047 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:22, 03:38](928 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:23, 03:38](932 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:23, 03:38](936 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:23, 03:37](1069 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:23, 03:39](1068 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:22, 03:34](934 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:21, 07:45](895 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:23, 07:42](849 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:40](1077 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:06](2378 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 05:16](2363 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:19] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:21, 08:06](1021 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:04] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:34](1080 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:41] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:24](238 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:28, 01:08](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:41](262 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:14, 35:50] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:12, 04:46](1919 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:15, 35:15] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:12, 04:35](1902 MB) - -PASS -- COMPILE 'atml_intel' [38:17, 36:24] ( 8 warnings 1167 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:11, 05:51](1859 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:10, 05:50](1834 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:52, 03:23](1074 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:17] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [15:12, 07:21](1886 MB) - -PASS -- COMPILE 'atmw_intel' [39:15, 37:16] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:54, 02:20](1856 MB) - -PASS -- COMPILE 'atmaero_intel' [37:13, 35:02] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [13:02, 05:20](1935 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [14:07, 06:19](1725 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:54, 06:25](1737 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:17, 43:38] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:08, 06:57](2018 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:17, 49:14] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:05, 20:50](1893 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:11, 21:48](1994 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:10, 10:05](1119 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:01, 23:45](1859 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [52:17, 50:08] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:52, 20:15](1885 MB) + +PASS -- COMPILE 's2swa_intel' [45:17, 43:33] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:07, 07:31](2059 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:21, 07:28](2058 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:20, 04:19](1725 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:07, 07:37](2069 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:21, 04:23](1741 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:00, 07:10](2322 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:00, 07:31](2064 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:14, 06:21](2010 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:21, 07:30](2060 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:10, 07:05](2038 MB) + +PASS -- COMPILE 's2sw_intel' [42:16, 40:13] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:19, 05:48](1912 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:31, 05:32](1985 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:13] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:16, 10:28](2091 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:03] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:02, 07:18](1931 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [38:15, 36:32] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:14, 05:31](1969 MB) + +PASS -- COMPILE 's2s_intel' [38:16, 36:55] ( 1015 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:49, 12:00](3026 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:52, 03:25](3013 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:46, 01:56](2466 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:26, 32:49] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:40, 06:59](2055 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [48:18, 46:42] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:16, 20:52](1916 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:17, 10:01](1128 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:16, 24:05](1887 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:01] ( 1558 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:10, 32:56](1943 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:16, 37:44] ( 1 warnings 1126 remarks ) +PASS -- TEST 'control_flake_intel' [06:31, 04:26](647 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:06, 04:03](1545 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:08, 04:15](1550 MB) +PASS -- TEST 'control_latlon_intel' [06:03, 04:03](1547 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:11, 04:08](1548 MB) +PASS -- TEST 'control_c48_intel' [14:11, 11:58](1704 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:16](826 MB) +PASS -- TEST 'control_c192_intel' [17:25, 14:07](1670 MB) +PASS -- TEST 'control_c384_intel' [21:18, 17:56](1792 MB) +PASS -- TEST 'control_c384gdas_intel' [18:09, 13:17](1005 MB) +PASS -- TEST 'control_stochy_intel' [04:29, 02:16](602 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:15](433 MB) +PASS -- TEST 'control_lndp_intel' [03:29, 02:04](604 MB) +PASS -- TEST 'control_iovr4_intel' [05:33, 03:23](599 MB) +PASS -- TEST 'control_iovr5_intel' [05:33, 03:23](596 MB) +PASS -- TEST 'control_p8_intel' [07:22, 04:17](1834 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:30, 04:16](1839 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:12, 04:07](1848 MB) +PASS -- TEST 'control_restart_p8_intel' [04:50, 02:14](1052 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:16, 04:09](1823 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 02:09](1074 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:13, 04:22](1828 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:20, 03:58](1922 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:06, 07:14](1841 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:20, 05:27](1898 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:17, 04:19](1842 MB) +PASS -- TEST 'merra2_thompson_intel' [07:13, 04:39](1841 MB) +PASS -- TEST 'regional_control_intel' [10:01, 07:18](1005 MB) +PASS -- TEST 'regional_restart_intel' [05:38, 03:49](1005 MB) +PASS -- TEST 'regional_decomp_intel' [10:01, 07:47](1001 MB) +PASS -- TEST 'regional_2threads_intel' [07:01, 04:39](994 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:06, 07:12](1007 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:00, 07:12](1019 MB) + +PASS -- COMPILE 'rrfs_intel' [38:15, 36:56] ( 3 warnings 1102 remarks ) +PASS -- TEST 'rap_control_intel' [12:42, 10:12](992 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:11, 05:34](1180 MB) +PASS -- TEST 'rap_decomp_intel' [12:42, 10:48](993 MB) +PASS -- TEST 'rap_2threads_intel' [11:50, 09:41](1077 MB) +PASS -- TEST 'rap_restart_intel' [07:48, 05:13](989 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:45, 10:07](992 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:45, 10:44](982 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:47, 07:31](1000 MB) +PASS -- TEST 'hrrr_control_intel' [07:44, 05:15](989 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:43, 05:25](984 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:49, 04:47](1054 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:45](923 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:53, 10:06](990 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:31, 12:25](1935 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:32, 12:07](1939 MB) + +PASS -- COMPILE 'csawmg_intel' [36:18, 34:14] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:40, 08:06](963 MB) +PASS -- TEST 'control_ras_intel' [06:25, 04:21](670 MB) + +PASS -- COMPILE 'wam_intel' [36:15, 34:22] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [16:55, 14:22](1615 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [38:15, 36:37] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:52, 03:38](1834 MB) +PASS -- TEST 'regional_control_faster_intel' [08:38, 06:33](1007 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:08] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:44, 03:19](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:50, 03:16](1579 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:55](781 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:27, 03:32](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:42, 05:26](1093 MB) +PASS -- TEST 'control_ras_debug_intel' [05:27, 03:25](786 MB) +PASS -- TEST 'control_diag_debug_intel' [06:49, 03:20](1639 MB) +PASS -- TEST 'control_debug_p8_intel' [06:48, 03:46](1871 MB) +PASS -- TEST 'regional_debug_intel' [24:49, 22:00](1050 MB) +PASS -- TEST 'rap_control_debug_intel' [08:30, 06:18](1167 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:31, 06:08](1167 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:30, 06:14](1165 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:30, 06:14](1164 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:30, 06:14](1169 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:43, 06:31](1257 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:30, 06:24](1165 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:30, 06:23](1169 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:25, 06:09](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:27, 06:19](1168 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:25, 06:03](1172 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:24, 06:10](1170 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:02](1175 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 06:04](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 07:32](1170 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:09](1168 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:50, 10:44](1171 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:13] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:44, 16:39](1653 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:17, 30:35] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:09, 05:09](1048 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:40, 08:19](907 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:39, 04:19](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:46, 07:56](934 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 03:59](914 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:39, 04:36](861 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:43, 06:15](902 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:23](848 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:15, 31:53] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:48, 02:51](1105 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:38, 01:15](1051 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:34](1023 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:15, 31:01] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:47, 05:26](915 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:08] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:27, 06:04](1053 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 05:58](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [20:58, 18:43](1160 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:58, 18:48](872 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:45](1104 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:54, 18:48](1227 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:01] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 06:11](1088 MB) + +PASS -- COMPILE 'hafsw_intel' [40:15, 39:12] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:28, 06:48](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:40, 06:07](1068 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:41, 09:04](757 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:28, 16:05](788 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:47, 17:52](809 MB) +PASS -- TEST 'gnv1_nested_intel' [09:50, 06:24](1680 MB) + +PASS -- COMPILE 'hafs_all_intel' [37:16, 35:24] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:17, 08:29](761 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:20, 08:35](738 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:19] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:25, 03:35](1076 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:23](1046 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:25, 03:31](934 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:25, 03:34](933 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:34](930 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:36](1073 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:23, 03:22](1072 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:31](932 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:21, 07:42](897 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:22, 07:41](856 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:36](1078 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 05:04](2425 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:24, 05:25](2416 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 03:21] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:21, 08:02](1015 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:12, 08:15] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:15](1074 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:43] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:20](239 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:05](266 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:43](259 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:15, 35:43] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:12, 04:51](1914 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [36:15, 35:07] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:03, 04:36](1884 MB) + +PASS -- COMPILE 'atml_intel' [39:15, 37:52] ( 8 warnings 1167 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:17, 05:51](1867 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:16, 05:50](1863 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 03:14](1070 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:21] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:12, 07:16](1893 MB) + +PASS -- COMPILE 'atmw_intel' [38:16, 36:15] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:50, 02:19](1851 MB) + +PASS -- COMPILE 'atmaero_intel' [37:15, 35:16] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:59, 05:17](1943 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:58, 06:21](1712 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:47, 06:21](1725 MB) SYNOPSIS: -Starting Date/Time: 20240827 19:15:44 -Ending Date/Time: 20240828 00:24:36 -Total Time: 05h:09m:17s +Starting Date/Time: 20240830 19:45:39 +Ending Date/Time: 20240830 23:48:24 +Total Time: 04h:03m:13s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index b2db0f1c13..32dedc9cc3 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: -4d4f175dce1d688311d329ad322abb16e29715cd +b7fc09c740c82647c6dac1c3fd2ea36cbd07f8e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,285 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_135838 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240830 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1591166 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:11, 17:52] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:39, 14:26](2075 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:41] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:36, 18:04](1952 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:12, 18:56](2125 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 08:51](1208 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:35, 20:15](1870 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:11, 24:39] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:39, 17:41](1944 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:43] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:44, 27:33](1938 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 17:07] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:27, 14:15](2132 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:36, 14:22](2132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:43, 07:50](1807 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:27, 14:21](2147 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:43, 07:40](1710 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:09, 13:12](2422 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:27, 14:20](2129 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:26, 12:38](2037 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:36, 14:23](2132 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:25, 17:10](2732 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 09:00](2720 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:58, 13:09](3685 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:44, 07:04](3496 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:26, 05:58](2098 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 16:03] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:03, 13:43](1984 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:09, 04:49](2046 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:10, 09:30] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:14, 08:43](2165 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:10, 08:56] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:09, 06:16](2002 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:32] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:09, 04:46](2056 MB) - -PASS -- COMPILE 's2s_intel' [16:13, 15:03] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:08, 10:05](3048 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:07, 03:25](3031 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:50, 02:07](2489 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:46] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [20:31, 14:45](2133 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:04] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:37, 18:11](1995 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:23, 09:02](1231 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:13, 20:40](1908 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:56] ( 1558 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:10, 29:27](1958 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:25, 03:44](697 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:43, 03:10](1587 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:41, 03:10](1594 MB) -PASS -- TEST 'control_latlon_intel' [04:41, 03:09](1595 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:43, 03:11](1590 MB) -PASS -- TEST 'control_c48_intel' [11:48, 09:28](1711 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:39, 08:21](831 MB) -PASS -- TEST 'control_c192_intel' [13:52, 11:40](1721 MB) -PASS -- TEST 'control_c384_intel' [15:49, 12:44](1968 MB) -PASS -- TEST 'control_c384gdas_intel' [13:36, 09:41](1339 MB) -PASS -- TEST 'control_stochy_intel' [04:22, 01:49](651 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:46, 01:03](476 MB) -PASS -- TEST 'control_lndp_intel' [04:20, 01:44](650 MB) -PASS -- TEST 'control_iovr4_intel' [04:24, 02:41](647 MB) -PASS -- TEST 'control_iovr5_intel' [04:28, 02:42](647 MB) -PASS -- TEST 'control_p8_intel' [06:09, 03:27](1870 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:09, 03:30](1888 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:20, 03:21](1888 MB) -PASS -- TEST 'control_restart_p8_intel' [04:05, 02:00](1091 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:11, 03:25](1877 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:22, 02:01](1134 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:08, 03:29](1854 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:08, 03:35](1961 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:50, 05:52](1876 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:20, 04:58](1951 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:20, 03:30](1887 MB) -PASS -- TEST 'merra2_thompson_intel' [06:32, 03:52](1884 MB) -PASS -- TEST 'regional_control_intel' [08:39, 06:28](1084 MB) -PASS -- TEST 'regional_restart_intel' [05:36, 03:31](1078 MB) -PASS -- TEST 'regional_decomp_intel' [08:30, 06:51](1076 MB) -PASS -- TEST 'regional_2threads_intel' [06:28, 04:38](1065 MB) -PASS -- TEST 'regional_noquilt_intel' [08:44, 06:27](1377 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:36, 06:29](1063 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:36, 06:24](1080 MB) -PASS -- TEST 'regional_wofs_intel' [09:37, 07:50](1904 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 13:14] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:18, 08:23](1059 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:59, 05:08](1251 MB) -PASS -- TEST 'rap_decomp_intel' [11:03, 08:38](1029 MB) -PASS -- TEST 'rap_2threads_intel' [10:56, 08:25](1153 MB) -PASS -- TEST 'rap_restart_intel' [07:35, 04:21](1039 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:08, 08:19](1052 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:54, 08:34](1019 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:32, 06:14](1072 MB) -PASS -- TEST 'hrrr_control_intel' [06:57, 04:20](1029 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:55, 04:24](1021 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:16, 04:08](1088 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:20](941 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:18, 08:15](1045 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:31, 09:59](1980 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 09:43](2024 MB) - -PASS -- COMPILE 'csawmg_intel' [15:11, 13:14] -PASS -- TEST 'control_csawmg_intel' [08:34, 06:31](1015 MB) -PASS -- TEST 'control_ras_intel' [05:19, 03:28](716 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:43] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:43, 12:44](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:12, 12:48] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:22, 03:19](1866 MB) -PASS -- TEST 'regional_control_faster_intel' [08:35, 06:12](1072 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:36] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:51, 02:48](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:57, 02:40](1620 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:28, 03:09](819 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:26, 02:45](820 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:48, 04:25](1131 MB) -PASS -- TEST 'control_ras_debug_intel' [05:26, 02:45](824 MB) -PASS -- TEST 'control_diag_debug_intel' [05:52, 02:48](1670 MB) -PASS -- TEST 'control_debug_p8_intel' [05:54, 03:10](1907 MB) -PASS -- TEST 'regional_debug_intel' [20:55, 17:23](1092 MB) -PASS -- TEST 'rap_control_debug_intel' [08:28, 05:03](1202 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:29, 04:56](1195 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:29, 05:12](1203 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:58](1203 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:01](1209 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:08](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 04:58](1209 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:07](1202 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:05](1218 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:53](1198 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:53](1205 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:54](1208 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 07:56](1214 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 05:02](1207 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:21, 06:00](1212 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:00](1212 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:24](1210 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:10, 06:42] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:45, 13:27](1688 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:11, 13:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:57, 04:47](1131 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:15, 07:07](1000 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:26, 03:44](926 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:52, 07:13](1073 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:06, 03:37](945 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:05, 03:58](894 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:24, 05:21](982 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 02:02](880 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:11, 13:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:55, 02:41](1168 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:50, 01:15](1116 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:31](1070 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:11, 13:16] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 04:33](972 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 07:01] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:55](1086 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:45](1084 MB) -PASS -- TEST 'conus13km_debug_intel' [16:47, 14:37](1235 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:45, 14:29](938 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:51, 08:38](1173 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 14:56](1300 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 06:54] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:51](1129 MB) - -PASS -- COMPILE 'hafsw_intel' [17:11, 14:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:15, 06:02](739 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:28, 06:22](1114 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:23, 07:26](813 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [27:10, 24:31](846 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [32:18, 29:12](1024 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:03, 07:03](503 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:30, 08:20](501 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 03:26](371 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:33, 09:34](479 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:53, 04:40](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:56, 04:25](521 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:54, 05:40](578 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:30, 01:32](404 MB) -PASS -- TEST 'gnv1_nested_intel' [08:15, 04:18](1730 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:15] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:04, 13:25](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:11, 14:58] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:02, 12:50](639 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:06, 13:20](729 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:10] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:33, 08:29](719 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 13:41] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:17, 07:25](809 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:17, 07:26](795 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:29](1207 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:53] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 03:03](1157 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:54](1104 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:51](1005 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:56](1021 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:54](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:01](1144 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:59](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:54](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:12, 06:32](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 06:28](1005 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:59](1151 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:19](2451 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:22](2454 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:47] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:52](1076 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:45] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:56](1154 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:33] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 01:00](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:55](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](318 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 14:31] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:08, 04:06](1975 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:26] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:07, 03:59](1950 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 13:54] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:54](1868 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:30, 04:51](1851 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:51, 02:49](1067 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:10, 07:57] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:23, 05:47](1895 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 13:32] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:08](1904 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 13:09] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:14, 04:40](1993 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:12, 05:18](1769 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:01, 05:22](1780 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:40] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:59, 20:28](4562 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:19, 14:13](2091 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:12, 21:09] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:41, 17:59](1956 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:19, 18:54](2136 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 08:50](1199 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:40, 20:15](1874 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 22:22] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:41, 17:43](1943 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:10, 07:57] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:21, 27:31](1929 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 17:43] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:27, 14:13](2129 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:32, 14:14](2129 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:55, 07:53](1816 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:27, 14:44](2146 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:54, 07:53](1703 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:26, 13:12](2437 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:27, 14:10](2115 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:31, 12:18](2040 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:33, 14:15](2133 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:01, 16:42](2708 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:05, 08:54](2703 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:04, 11:37](3688 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:29, 07:12](3490 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:22, 05:53](2099 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 16:36] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:02, 13:27](1977 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:08, 04:44](2049 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:44] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:15, 08:39](2160 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:56] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:58, 06:18](2004 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:18] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:09, 04:36](2044 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 15:00] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:53, 09:58](3060 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:53, 03:29](3030 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:56, 02:13](2484 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:12] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:18, 14:28](2128 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:00] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:02, 18:13](1995 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 09:02](1246 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:18, 20:05](1912 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:10, 08:12] ( 1558 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:16, 29:27](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:41](698 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 03:11](1586 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:52, 03:14](1599 MB) +PASS -- TEST 'control_latlon_intel' [04:41, 03:06](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:14](1587 MB) +PASS -- TEST 'control_c48_intel' [11:53, 09:29](1704 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:32, 08:23](844 MB) +PASS -- TEST 'control_c192_intel' [13:55, 11:41](1723 MB) +PASS -- TEST 'control_c384_intel' [15:59, 13:00](1944 MB) +PASS -- TEST 'control_c384gdas_intel' [13:45, 09:42](1345 MB) +PASS -- TEST 'control_stochy_intel' [03:23, 01:50](647 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:40, 01:03](481 MB) +PASS -- TEST 'control_lndp_intel' [03:29, 01:45](652 MB) +PASS -- TEST 'control_iovr4_intel' [04:57, 02:41](649 MB) +PASS -- TEST 'control_iovr5_intel' [04:36, 02:40](644 MB) +PASS -- TEST 'control_p8_intel' [06:07, 04:00](1884 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:09, 03:43](1877 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 03:30](1893 MB) +PASS -- TEST 'control_restart_p8_intel' [04:14, 01:59](1098 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:14, 03:39](1875 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:22, 01:57](1126 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:13, 03:38](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:11, 03:39](1957 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:57, 06:02](1876 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:31, 04:59](1949 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:31, 03:32](1883 MB) +PASS -- TEST 'merra2_thompson_intel' [06:39, 03:56](1894 MB) +PASS -- TEST 'regional_control_intel' [08:40, 06:31](1079 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 03:28](1077 MB) +PASS -- TEST 'regional_decomp_intel' [09:00, 06:50](1067 MB) +PASS -- TEST 'regional_2threads_intel' [06:30, 04:36](1077 MB) +PASS -- TEST 'regional_noquilt_intel' [08:38, 06:25](1382 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 06:23](1087 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:39, 06:21](1085 MB) +PASS -- TEST 'regional_wofs_intel' [09:36, 07:49](1904 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:44] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:18, 08:26](1053 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 05:05](1250 MB) +PASS -- TEST 'rap_decomp_intel' [11:00, 08:40](1023 MB) +PASS -- TEST 'rap_2threads_intel' [10:55, 08:28](1153 MB) +PASS -- TEST 'rap_restart_intel' [07:35, 04:21](1045 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:25, 08:17](1050 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:13, 08:35](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:32, 06:13](1074 MB) +PASS -- TEST 'hrrr_control_intel' [07:02, 04:19](1028 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:02, 04:25](1013 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:20, 04:07](1089 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:42, 02:20](942 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:22, 08:15](1054 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 09:57](1979 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 09:43](2011 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:37] +PASS -- TEST 'control_csawmg_intel' [08:35, 06:31](1019 MB) +PASS -- TEST 'control_ras_intel' [05:23, 03:28](712 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:46] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:50, 12:44](1655 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:58] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:30, 03:17](1879 MB) +PASS -- TEST 'regional_control_faster_intel' [08:35, 06:13](1071 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:46] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:40, 02:52](1618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:39](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:04](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:45](815 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:26](1134 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:48](828 MB) +PASS -- TEST 'control_diag_debug_intel' [04:44, 02:50](1676 MB) +PASS -- TEST 'control_debug_p8_intel' [05:45, 03:10](1910 MB) +PASS -- TEST 'regional_debug_intel' [18:39, 16:56](1096 MB) +PASS -- TEST 'rap_control_debug_intel' [06:21, 05:05](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:53](1206 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:48](1205 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:32, 05:03](1208 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 05:00](1206 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:40](1280 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:29](1205 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 04:59](1211 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:03](1216 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:58](1208 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:47](1207 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:28, 04:59](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:02](1204 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:58](1195 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:56](1207 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:54](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:26, 08:36](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:11, 06:40] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:40, 13:40](1681 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 04:50](1132 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:15, 07:11](999 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:39, 03:44](924 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:55, 07:16](1069 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:12, 03:37](944 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:12, 03:53](902 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:34, 05:22](977 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [13:15, 02:02](878 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:53] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:55, 02:41](1168 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:50, 01:15](1117 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:56, 01:31](1070 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:41, 04:33](977 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:42] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:25, 04:57](1082 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:30, 04:49](1086 MB) +PASS -- TEST 'conus13km_debug_intel' [20:52, 14:40](1237 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:47, 14:40](942 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:44, 08:33](1168 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:44, 15:08](1303 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:13, 06:43] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:27, 04:55](1131 MB) + +PASS -- COMPILE 'hafsw_intel' [17:12, 15:33] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:18, 05:59](733 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:32, 06:32](1115 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:34, 07:42](816 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [27:15, 24:05](849 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:21, 28:25](870 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:06, 07:13](500 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:31, 08:24](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [10:56, 03:27](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:31, 09:43](474 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:58, 04:46](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:03, 04:33](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:01, 05:46](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:36, 01:33](404 MB) +PASS -- TEST 'gnv1_nested_intel' [13:19, 04:21](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:18] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:06, 13:03](588 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:12, 15:14] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:05, 12:38](653 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:02, 13:02](726 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:36, 08:44](710 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:12, 15:03] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [19:22, 07:35](814 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:15, 07:29](795 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [26:00, 16:27](1201 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:07] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [12:24, 03:00](1159 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:22, 01:52](1111 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:18, 02:51](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:20, 02:35](1009 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [10:19, 02:56](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:17, 02:58](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:19, 03:00](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:19, 02:51](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:11, 06:31](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:06, 06:28](1003 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:22, 02:57](1152 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:21, 04:20](2397 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [14:19, 04:25](2452 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:44] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [15:21, 06:29](1082 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:55] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [11:21, 02:58](1145 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [12:34, 01:04](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:26, 00:56](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:30, 00:35](322 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 13:31] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [15:10, 04:11](1980 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:10] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:59, 03:59](1947 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 14:30] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:40, 04:55](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [15:32, 04:51](1866 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 02:47](1062 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:12, 07:50] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [15:34, 05:48](1892 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:45] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [12:22, 02:10](1909 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 13:43] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [14:12, 04:33](1984 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [16:16, 05:17](1768 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:08, 05:23](1784 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:29] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [31:58, 20:13](4562 MB) SYNOPSIS: -Starting Date/Time: 20240828 22:30:01 -Ending Date/Time: 20240829 00:12:13 -Total Time: 01h:42m:40s +Starting Date/Time: 20240830 11:24:28 +Ending Date/Time: 20240830 13:22:21 +Total Time: 01h:58m:55s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index cb0b036c33..551e6f6ebf 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: -4d4f175dce1d688311d329ad322abb16e29715cd +b7fc09c740c82647c6dac1c3fd2ea36cbd07f8e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 30f1bca7c578d20f17ab4658b59ecb0859cc176d FV3 (remotes/origin/combo_213_218) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - cde7c1031eb35f44ec19dc1245cca6b971f1a4ca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5310-gcde7c103) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,239 +35,239 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_108392 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240830 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_200767 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:34, 11:11] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [03:33, 02:27](3100 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:35, 12:09] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [02:32, 02:48](1821 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [43:28, 02:30](1836 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [43:17, 03:12](980 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [02:33, 02:29](1800 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:35, 12:11] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [02:32, 02:08](1809 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:19] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [08:48, 03:07](1833 MB) - -PASS -- COMPILE 's2swa_intel' [12:34, 11:01] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [03:33, 02:25](3135 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [03:33, 02:49](3128 MB) -PASS -- TEST 'cpld_restart_p8_intel' [54:18, 02:38](3060 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [03:33, 02:19](3152 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [54:18, 02:34](3079 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [03:33, 02:02](3371 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [03:33, 02:25](3126 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [03:34, 02:37](3071 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [03:33, 02:48](3132 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [03:42, 05:25](4123 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [43:47, 05:06](4263 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [03:33, 02:47](3111 MB) - -PASS -- COMPILE 's2sw_intel' [12:34, 10:43] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [03:33, 01:50](1836 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [03:33, 02:56](1893 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:34, 10:47] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [03:33, 03:04](1892 MB) - -PASS -- COMPILE 's2s_intel' [12:34, 10:20] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [03:32, 01:59](2870 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:32, 02:29](2871 MB) -PASS -- TEST 'cpld_restart_c48_intel' [58:26, 02:22](2291 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:43, 15:18] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [59:24, 02:47](3133 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:35, 11:41] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [02:32, 01:58](1824 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:04, 02:22](1003 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [43:33, 02:05](1798 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:23, 05:09] ( 1539 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [01:24, 02:24](1853 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:22, 09:06] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [53:10, 01:53](569 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [53:10, 02:13](1473 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [53:10, 02:09](1468 MB) -PASS -- TEST 'control_latlon_intel' [53:10, 02:07](1470 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [53:10, 02:20](1467 MB) -PASS -- TEST 'control_c48_intel' [53:09, 01:53](1557 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [53:09, 02:24](693 MB) -PASS -- TEST 'control_c192_intel' [53:10, 01:57](1575 MB) -PASS -- TEST 'control_c384_intel' [53:14, 02:47](1858 MB) -PASS -- TEST 'control_c384gdas_intel' [53:14, 03:42](1062 MB) -PASS -- TEST 'control_stochy_intel' [53:10, 01:58](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [47:40, 02:05](330 MB) -PASS -- TEST 'control_lndp_intel' [53:10, 01:59](525 MB) -PASS -- TEST 'control_iovr4_intel' [53:10, 02:14](523 MB) -PASS -- TEST 'control_iovr5_intel' [53:10, 02:14](522 MB) -PASS -- TEST 'control_p8_intel' [53:10, 02:33](1762 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [53:10, 02:36](1761 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [50:00, 02:55](1764 MB) -PASS -- TEST 'control_restart_p8_intel' [45:46, 01:49](910 MB) -PASS -- TEST 'control_noqr_p8_intel' [47:40, 02:40](1759 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [41:33, 02:02](918 MB) -PASS -- TEST 'control_decomp_p8_intel' [47:40, 02:30](1752 MB) -PASS -- TEST 'control_2threads_p8_intel' [46:35, 01:44](1832 MB) -PASS -- TEST 'control_p8_lndp_intel' [46:35, 02:09](1755 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [46:24, 02:57](1812 MB) -PASS -- TEST 'control_p8_mynn_intel' [46:16, 03:03](1767 MB) -PASS -- TEST 'merra2_thompson_intel' [46:12, 02:50](1764 MB) -PASS -- TEST 'regional_control_intel' [46:08, 01:21](841 MB) -PASS -- TEST 'regional_restart_intel' [39:18, 01:22](840 MB) -PASS -- TEST 'regional_decomp_intel' [45:44, 01:56](847 MB) -PASS -- TEST 'regional_2threads_intel' [45:45, 01:53](902 MB) -PASS -- TEST 'regional_noquilt_intel' [45:43, 01:20](1168 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [45:35, 01:32](827 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [44:25, 02:11](842 MB) -PASS -- TEST 'regional_wofs_intel' [44:10, 01:32](1569 MB) - -PASS -- COMPILE 'rrfs_intel' [10:22, 08:32] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [43:15, 03:05](913 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [42:52, 02:02](1054 MB) -PASS -- TEST 'rap_decomp_intel' [41:33, 02:18](910 MB) -PASS -- TEST 'rap_2threads_intel' [41:33, 02:09](991 MB) -PASS -- TEST 'rap_restart_intel' [32:38, 03:15](777 MB) -PASS -- TEST 'rap_sfcdiff_intel' [41:27, 03:01](907 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [41:21, 02:39](909 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [31:00, 02:59](780 MB) -PASS -- TEST 'hrrr_control_intel' [40:20, 02:21](900 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [40:04, 02:04](904 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [39:41, 02:14](978 MB) -PASS -- TEST 'hrrr_control_restart_intel' [33:52, 01:59](730 MB) -PASS -- TEST 'rrfs_v1beta_intel' [39:32, 02:59](901 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [39:10, 01:44](1867 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [39:03, 02:06](1858 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 07:57] -PASS -- TEST 'control_csawmg_intel' [54:11, 02:09](865 MB) -PASS -- TEST 'control_ras_intel' [54:11, 01:20](559 MB) - -PASS -- COMPILE 'wam_intel' [09:21, 07:58] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [54:11, 02:03](1556 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:11] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [39:03, 03:02](1760 MB) -PASS -- TEST 'regional_control_faster_intel' [38:46, 01:22](836 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:25] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [38:43, 02:16](1497 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [38:38, 02:22](1495 MB) -PASS -- TEST 'control_stochy_debug_intel' [38:37, 01:43](705 MB) -PASS -- TEST 'control_lndp_debug_intel' [38:12, 02:03](702 MB) -PASS -- TEST 'control_csawmg_debug_intel' [38:02, 01:28](1005 MB) -PASS -- TEST 'control_ras_debug_intel' [37:23, 02:00](711 MB) -PASS -- TEST 'control_diag_debug_intel' [37:11, 02:17](1559 MB) -PASS -- TEST 'control_debug_p8_intel' [36:41, 01:51](1789 MB) -PASS -- TEST 'regional_debug_intel' [35:44, 01:20](885 MB) -PASS -- TEST 'rap_control_debug_intel' [35:32, 01:40](1083 MB) -PASS -- TEST 'hrrr_control_debug_intel' [34:37, 01:39](1080 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [33:52, 01:32](1081 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [33:46, 01:36](1078 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [33:11, 01:43](1087 MB) -PASS -- TEST 'rap_diag_debug_intel' [32:59, 01:40](1164 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [32:52, 01:40](1084 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [32:51, 01:37](1087 MB) -PASS -- TEST 'rap_lndp_debug_intel' [32:46, 01:39](1084 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [32:46, 01:42](1085 MB) -PASS -- TEST 'rap_noah_debug_intel' [32:34, 01:45](1077 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [32:33, 01:43](1080 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [32:06, 01:51](1077 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [31:55, 01:51](1081 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [31:31, 01:55](1086 MB) -PASS -- TEST 'rap_flake_debug_intel' [31:24, 01:39](1086 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [31:22, 02:52](1088 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:19, 04:24] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [56:12, 01:31](1594 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:49] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [31:11, 02:22](923 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [31:02, 02:38](790 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [31:00, 03:26](784 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [29:23, 02:14](842 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:07, 03:32](838 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:33, 02:39](780 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [22:16, 02:31](684 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [24:05, 01:21](665 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 07:54] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [28:20, 02:30](988 MB) -PASS -- TEST 'conus13km_2threads_intel' [23:03, 01:51](996 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [22:59, 01:44](866 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:55] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [28:01, 01:41](814 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:34] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [27:04, 02:12](957 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:20, 01:58](955 MB) -PASS -- TEST 'conus13km_debug_intel' [26:15, 02:08](1037 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:00, 01:50](710 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [25:41, 02:16](1044 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [25:21, 01:49](1109 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:22, 04:29] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [25:21, 01:50](991 MB) - -PASS -- COMPILE 'hafsw_intel' [12:28, 09:25] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [25:19, 03:04](600 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [25:18, 02:24](945 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:16, 02:53](636 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:10, 02:46](675 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:06, 02:18](690 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [25:04, 02:30](372 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [24:23, 03:10](392 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [24:09, 02:35](278 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [24:01, 03:29](363 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [23:07, 02:30](403 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [22:41, 01:46](407 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:21, 01:49](478 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [22:18, 01:29](414 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:22, 04:54] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [22:13, 02:24](519 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:28, 09:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:58, 01:46](521 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:29, 02:43](697 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:27, 09:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:14, 02:15](708 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:38, 08:34] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [20:37, 03:11](644 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:16, 03:09](625 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:13, 01:27](819 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:46, 09:56] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [19:14, 01:44](1825 MB) - -PASS -- COMPILE 'atml_intel' [11:37, 08:50] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:30, 05:19] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:29, 08:15] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [18:49, 02:21](3026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [18:46, 02:46](2905 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [18:43, 02:44](2918 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:23, 04:23] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:07, 02:58](4445 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:27, 11:08] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [44:01, 02:26](3105 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [43:02, 02:53](1806 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:01, 02:28](1828 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [23:48, 03:10](960 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:03, 02:23](1790 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [42:58, 02:09](1806 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:13] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [49:08, 03:15](1844 MB) + +PASS -- COMPILE 's2swa_intel' [13:29, 11:31] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [42:58, 02:35](3135 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [42:58, 02:50](3132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [33:44, 02:02](3059 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [42:58, 02:31](3151 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [33:44, 01:59](3079 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [42:58, 02:06](3371 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [42:58, 02:35](3126 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [42:59, 02:40](3076 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [42:58, 02:51](3134 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [43:07, 05:29](4122 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:12, 05:14](4266 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [42:58, 02:50](3110 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 10:55] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [44:00, 01:49](1825 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [44:00, 03:02](1899 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:14] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [44:01, 02:00](1890 MB) + +PASS -- COMPILE 's2s_intel' [12:26, 10:31] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [44:01, 01:58](2862 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [44:00, 02:27](2875 MB) +PASS -- TEST 'cpld_restart_c48_intel' [39:01, 02:06](2289 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 16:07] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [38:55, 02:52](3134 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:34] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [42:58, 02:01](1829 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:34, 02:32](1004 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:48, 02:40](1802 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:10] ( 1539 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:47, 02:16](1854 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:24, 08:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [33:38, 01:22](566 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [33:38, 01:27](1469 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [33:38, 02:26](1469 MB) +PASS -- TEST 'control_latlon_intel' [33:37, 01:21](1474 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [33:38, 02:31](1464 MB) +PASS -- TEST 'control_c48_intel' [33:36, 01:53](1559 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [33:37, 01:52](693 MB) +PASS -- TEST 'control_c192_intel' [33:38, 02:12](1574 MB) +PASS -- TEST 'control_c384_intel' [33:42, 02:56](1857 MB) +PASS -- TEST 'control_c384gdas_intel' [33:42, 02:47](1066 MB) +PASS -- TEST 'control_stochy_intel' [33:38, 01:27](523 MB) +PASS -- TEST 'control_stochy_restart_intel' [30:10, 02:04](329 MB) +PASS -- TEST 'control_lndp_intel' [33:38, 01:32](526 MB) +PASS -- TEST 'control_iovr4_intel' [33:38, 01:44](520 MB) +PASS -- TEST 'control_iovr5_intel' [33:35, 01:43](522 MB) +PASS -- TEST 'control_p8_intel' [33:26, 02:53](1756 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [33:25, 02:55](1760 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [30:10, 02:56](1763 MB) +PASS -- TEST 'control_restart_p8_intel' [27:00, 01:47](899 MB) +PASS -- TEST 'control_noqr_p8_intel' [29:33, 02:31](1752 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [23:34, 02:06](916 MB) +PASS -- TEST 'control_decomp_p8_intel' [29:07, 02:40](1762 MB) +PASS -- TEST 'control_2threads_p8_intel' [29:06, 02:03](1834 MB) +PASS -- TEST 'control_p8_lndp_intel' [29:04, 02:06](1755 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [28:56, 03:00](1814 MB) +PASS -- TEST 'control_p8_mynn_intel' [28:51, 02:44](1769 MB) +PASS -- TEST 'merra2_thompson_intel' [28:07, 02:41](1768 MB) +PASS -- TEST 'regional_control_intel' [27:45, 02:11](848 MB) +PASS -- TEST 'regional_restart_intel' [20:04, 01:30](839 MB) +PASS -- TEST 'regional_decomp_intel' [27:41, 01:56](830 MB) +PASS -- TEST 'regional_2threads_intel' [27:08, 01:55](899 MB) +PASS -- TEST 'regional_noquilt_intel' [27:07, 01:27](1166 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [26:58, 01:23](841 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [26:41, 01:12](841 MB) +PASS -- TEST 'regional_wofs_intel' [25:48, 01:32](1569 MB) + +PASS -- COMPILE 'rrfs_intel' [10:29, 08:29] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [25:48, 03:03](910 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [24:54, 02:07](1057 MB) +PASS -- TEST 'rap_decomp_intel' [24:36, 02:18](912 MB) +PASS -- TEST 'rap_2threads_intel' [22:53, 02:07](990 MB) +PASS -- TEST 'rap_restart_intel' [15:14, 02:09](778 MB) +PASS -- TEST 'rap_sfcdiff_intel' [22:52, 02:51](905 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:33, 02:22](911 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [12:28, 02:47](776 MB) +PASS -- TEST 'hrrr_control_intel' [22:06, 02:21](901 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [21:34, 02:47](900 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [21:29, 02:13](976 MB) +PASS -- TEST 'hrrr_control_restart_intel' [15:40, 02:04](734 MB) +PASS -- TEST 'rrfs_v1beta_intel' [21:26, 03:04](905 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [21:20, 01:39](1868 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [21:09, 02:06](1849 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 07:57] +PASS -- TEST 'control_csawmg_intel' [34:37, 01:30](860 MB) +PASS -- TEST 'control_ras_intel' [34:37, 01:54](559 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 07:51] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [34:36, 01:37](1565 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:29, 08:07] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [20:41, 03:02](1750 MB) +PASS -- TEST 'regional_control_faster_intel' [20:31, 01:23](836 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:26, 07:13] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [20:22, 02:14](1495 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [20:13, 02:24](1492 MB) +PASS -- TEST 'control_stochy_debug_intel' [20:05, 01:45](706 MB) +PASS -- TEST 'control_lndp_debug_intel' [20:04, 02:04](701 MB) +PASS -- TEST 'control_csawmg_debug_intel' [19:46, 01:25](1006 MB) +PASS -- TEST 'control_ras_debug_intel' [19:40, 02:00](709 MB) +PASS -- TEST 'control_diag_debug_intel' [19:07, 01:59](1553 MB) +PASS -- TEST 'control_debug_p8_intel' [18:50, 01:52](1789 MB) +PASS -- TEST 'regional_debug_intel' [17:44, 02:06](881 MB) +PASS -- TEST 'rap_control_debug_intel' [17:03, 01:35](1083 MB) +PASS -- TEST 'hrrr_control_debug_intel' [15:33, 01:47](1078 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [15:21, 01:41](1081 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [14:38, 01:38](1079 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:36, 01:41](1086 MB) +PASS -- TEST 'rap_diag_debug_intel' [14:36, 01:43](1166 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:35, 01:32](1088 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:34, 01:33](1085 MB) +PASS -- TEST 'rap_lndp_debug_intel' [14:26, 01:45](1083 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:14, 01:40](1086 MB) +PASS -- TEST 'rap_noah_debug_intel' [14:08, 01:44](1078 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [13:55, 01:46](1081 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:45, 01:30](1080 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [13:19, 01:46](1076 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [13:12, 01:50](1082 MB) +PASS -- TEST 'rap_flake_debug_intel' [13:09, 01:49](1084 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:05, 03:14](1087 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:21] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [36:38, 02:11](1584 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:26, 07:42] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:06, 02:19](925 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:28, 02:11](789 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:50, 03:21](785 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:00, 02:21](846 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:00, 03:22](830 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:47, 02:45](780 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:09, 02:20](683 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:58, 01:21](664 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 07:50] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [10:29, 02:13](991 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:31, 01:54](995 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:29, 01:45](865 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:25, 07:52] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:30, 02:21](812 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:31] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:55, 02:03](960 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:52, 02:02](958 MB) +PASS -- TEST 'conus13km_debug_intel' [07:51, 01:53](1037 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [07:09, 01:40](714 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:08, 02:15](1043 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [07:04, 01:50](1108 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:23, 04:19] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:04, 02:15](986 MB) + +PASS -- COMPILE 'hafsw_intel' [11:27, 09:19] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:53, 02:57](597 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:52, 01:28](949 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:45, 03:16](638 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [06:40, 02:39](671 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [06:24, 02:21](691 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:04, 02:17](380 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:50, 03:03](395 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:16, 02:58](280 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [04:46, 03:21](363 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:30, 02:39](404 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:30, 02:05](403 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:01, 02:35](478 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:53, 01:29](308 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:22, 04:50] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [03:15, 02:17](507 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:25, 09:08] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [03:04, 02:40](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [02:49, 02:39](706 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:12] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [02:21, 03:07](708 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:24, 08:31] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [01:46, 03:04](645 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [01:44, 03:05](622 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [01:22, 01:26](881 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 09:52] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [01:16, 02:28](1818 MB) + +PASS -- COMPILE 'atml_intel' [11:29, 09:28] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:25, 05:19] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:24, 08:10] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [00:19, 02:03](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [00:13, 02:37](2903 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [00:07, 02:36](2921 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:27, 04:22] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [59:00, 02:25](4441 MB) SYNOPSIS: -Starting Date/Time: 20240827 21:43:39 -Ending Date/Time: 20240827 23:09:49 -Total Time: 01h:26m:44s +Starting Date/Time: 20240830 13:03:15 +Ending Date/Time: 20240830 14:28:47 +Total Time: 01h:26m:03s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/parm/ufs.configure.s2s_esmf.IN b/tests/parm/ufs.configure.s2s_esmf.IN index 3161e4891f..999731d927 100644 --- a/tests/parm/ufs.configure.s2s_esmf.IN +++ b/tests/parm/ufs.configure.s2s_esmf.IN @@ -97,10 +97,20 @@ MED_attributes:: coupling_mode = @[CPLMODE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] - history_n_ice_inst = @[MED_history_n] - history_option_ice_inst = nhours - history_n_ocn_inst = @[MED_history_n] - history_option_ocn_inst = nhours + histaux_ice2med_file1_auxname = ice.1h.aux + histaux_ice2med_file1_doavg = .false. + histaux_ice2med_file1_enabled = .true. + histaux_ice2med_file1_flds = all + histaux_ice2med_file1_history_n = @[MED_history_n] + histaux_ice2med_file1_history_option = nhours + histaux_ice2med_file1_ntperfile = 9999 + histaux_ocn2med_file1_auxname = ocn.1h.aux + histaux_ocn2med_file1_doavg = .false. + histaux_ocn2med_file1_enabled = .true. + histaux_ocn2med_file1_flds = all + histaux_ocn2med_file1_history_n = @[MED_history_n] + histaux_ocn2med_file1_history_option = nhours + histaux_ocn2med_file1_ntperfile = 9999 :: ALLCOMP_attributes:: diff --git a/tests/rt.conf b/tests/rt.conf index 07fa091e1b..af678f72ca 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -125,11 +125,6 @@ RUN | regional_netcdf_parallel | - acorn RUN | regional_2dwrtdecomp | | | RUN | regional_wofs | - jet s4 | baseline | -COMPILE | ifi | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON | + acorn | fv3 | -RUN | regional_ifi_control | + acorn | baseline | -RUN | regional_ifi_decomp | + acorn | | -RUN | regional_ifi_2threads | + acorn | | - COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | RUN | rap_control | | baseline | RUN | regional_spp_sppt_shum_skeb | | baseline | diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..858052ae2c 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1 @@ +atm_ds2s_docn_dice intel diff --git a/tests/tests/regional_ifi_2threads b/tests/tests/regional_ifi_2threads deleted file mode 100644 index 8e1db314cd..0000000000 --- a/tests/tests/regional_ifi_2threads +++ /dev/null @@ -1,45 +0,0 @@ -############################################################################### -# -# FV3 regional threading test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional threading results with previous trunk version" - -export CNTL_DIR=regional_ifi_control - -export LIST_FILES="dynf000.nc \ - dynf006.nc \ - phyf000.nc \ - phyf006.nc \ - PRSLEV.GrbF00 \ - PRSLEV.GrbF06 \ - NATLEV.GrbF00 \ - NATLEV.GrbF06" - -export_fv3_v16 - -export FV3_RUN=regional_run.IN - -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. -export HYBEDMF=.false. -export WRITE_DOPOST=.true. -export POSTAPP='lam' - -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km -export INPUT_NML=regional.nml.IN -export MODEL_CONFIGURE=model_configure_regional.IN -export DIAG_TABLE=diag_table_lam -export FIELD_TABLE=field_table_regional - -export WLCLK=15 -export FHMAX=6 -export INPES=10 -export JNPES=11 -export atm_omp_num_threads=2 -export OUTPUT_FH="3 -1" -WRITE_GROUP=1 -WRTTASK_PER_GROUP=10 -NTILES=1 diff --git a/tests/tests/regional_ifi_control b/tests/tests/regional_ifi_control deleted file mode 100644 index 089d372a78..0000000000 --- a/tests/tests/regional_ifi_control +++ /dev/null @@ -1,45 +0,0 @@ -############################################################################### -# -# FV3 regional control with IFI (hi-res 3km, small domain) test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional control results with IFI against previous trunk version" - -export CNTL_DIR=regional_ifi_control - -export LIST_FILES="dynf000.nc \ - dynf006.nc \ - phyf000.nc \ - phyf006.nc \ - PRSLEV.GrbF00 \ - PRSLEV.GrbF06 \ - NATLEV.GrbF00 \ - NATLEV.GrbF06" - -export_fv3_v16 - -export FV3_RUN=regional_run.IN - -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. -export HYBEDMF=.false. -export RESTART_INTERVAL="3 -1" -export WRITE_DOPOST=.true. -export POSTAPP='lam' - -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km -export INPUT_NML=regional.nml.IN -export MODEL_CONFIGURE=model_configure_regional.IN -export DIAG_TABLE=diag_table_lam -export FIELD_TABLE=field_table_regional - -export WLCLK=15 -export FHMAX=6 -export INPES=10 -export JNPES=11 -export OUTPUT_FH="3 -1" -WRITE_GROUP=1 -WRTTASK_PER_GROUP=10 -NTILES=1 diff --git a/tests/tests/regional_ifi_decomp b/tests/tests/regional_ifi_decomp deleted file mode 100644 index 815587548a..0000000000 --- a/tests/tests/regional_ifi_decomp +++ /dev/null @@ -1,45 +0,0 @@ -############################################################################### -# -# FV3 regional + IFI with different MPI decomposition (hi-res 3km, small domain) test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional with IFI; different decomposition results with previous trunk version" - -export CNTL_DIR=regional_ifi_control - -export LIST_FILES="dynf000.nc \ - dynf006.nc \ - phyf000.nc \ - phyf006.nc \ - PRSLEV.GrbF00 \ - PRSLEV.GrbF06 \ - NATLEV.GrbF00 \ - NATLEV.GrbF06" - -export_fv3_v16 - -export FV3_RUN=regional_run.IN - -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. -export HYBEDMF=.false. -export RESTART_INTERVAL="0" -export WRITE_DOPOST=.true. -export POSTAPP='lam' - -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km -export INPUT_NML=regional.nml.IN -export MODEL_CONFIGURE=model_configure_regional.IN -export DIAG_TABLE=diag_table_lam -export FIELD_TABLE=field_table_regional - -export WLCLK=15 -export FHMAX=6 -export INPES=11 -export JNPES=10 -export OUTPUT_FH="3 -1" -WRITE_GROUP=1 -WRTTASK_PER_GROUP=10 -NTILES=1 From d6418b41ad32d634b40961dd368e82013b0d649c Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 3 Sep 2024 16:35:47 +0000 Subject: [PATCH 24/33] Move MPAS to ufs-community reporitory --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 64afb902eb..5dec7c2c49 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 64afb902eb2ae364bc6679d60253012898160188 +Subproject commit 5dec7c2c49225ec1ec368c39ed4d06dfdfa4c5fc From 7d0e826d74e60874274f5fb7a4e412dc4b3ba032 Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Tue, 3 Sep 2024 17:20:21 +0000 Subject: [PATCH 25/33] Revert unneeded change --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 5dec7c2c49..1b2c665998 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 5dec7c2c49225ec1ec368c39ed4d06dfdfa4c5fc +Subproject commit 1b2c6659987b04f7b823d17a416fd65fa59889ba From 6a4e09e94773ffa39ce7ab6a54a885efada91f21 Mon Sep 17 00:00:00 2001 From: jiandewang Date: Mon, 9 Sep 2024 09:10:21 -0400 Subject: [PATCH 26/33] update mom6 to its main repo. 20240824 commit (FMA) (#2412) *MOM6 - update MOM6 to its main repo. 20240824 updating (GFDL's FMA PR) --- MOM6-interface/MOM6 | 2 +- tests/bl_date.conf | 2 +- tests/ci/Jenkinsfile.combined | 10 +- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 166 ++-- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 516 ++++++------ tests/logs/RegressionTests_derecho.log | 546 ++++++------- tests/logs/RegressionTests_gaea.log | 548 ++++++------- tests/logs/RegressionTests_hera.log | 706 ++++++++--------- tests/logs/RegressionTests_hercules.log | 735 +++++++++--------- tests/logs/RegressionTests_jet.log | 486 ++++++------ tests/logs/RegressionTests_wcoss2.log | 527 +++++++------ tests/test_changes.list | 30 +- 14 files changed, 2237 insertions(+), 2129 deletions(-) diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 00f8ea2023..5e0c21f64f 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 00f8ea2023f5ed58f0605cea373094f65ee90f64 +Subproject commit 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 7a2bc33854..c4b77b6a55 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240830 +export BL_DATE=20240904 diff --git a/tests/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined index 18e67f1104..2f62ecfe24 100644 --- a/tests/ci/Jenkinsfile.combined +++ b/tests/ci/Jenkinsfile.combined @@ -343,12 +343,18 @@ pipeline { GIT_URL = 'https://github.com/ufs-community/ufs-weather-model.git' } stages { - stage('Run SonarQube Testing') { + stage('Launch SonarQube') { steps { script { + echo "BRANCH_NAME=${env.CHANGE_BRANCH}" + echo "FORK_NAME=${env.CHANGE_FORK}" + echo "CHANGE_URL=${env.CHANGE_URL}" + echo "CHANGE_ID=${env.CHANGE_ID}" build job: '/ufs-weather-model/ufs-wm-sonarqube', parameters: [ string(name: 'BRANCH_NAME', value: env.CHANGE_BRANCH ?: 'develop'), - string(name: 'FORK_NAME', value: env.CHANGE_FORK ?: '') + string(name: 'FORK_NAME', value: env.CHANGE_FORK ?: ''), + string(name: 'CHANGE_URL', value: env.CHANGE_URL ?: ''), + string(name: 'CHANGE_ID', value: env.CHANGE_ID ?: '') ], wait: false } } diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index fe7e7ef2e6..66336dba8c 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Aug 30 16:11:42 UTC 2024 +Thu Sep 5 22:25:10 UTC 2024 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_1541961/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/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 = 285.319725 - 0: The maximum resident set size (KB) = 1459076 + 0: The total amount of wall time = 288.390708 + 0: The maximum resident set size (KB) = 1444228 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_1541961/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/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 = 980.288173 - 0: The maximum resident set size (KB) = 1424524 + 0: The total amount of wall time = 991.170195 + 0: The maximum resident set size (KB) = 1442092 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_1541961/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/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 = 248.004317 - 0: The maximum resident set size (KB) = 1435996 + 0: The total amount of wall time = 259.478625 + 0: The maximum resident set size (KB) = 1412816 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_1541961/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/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 = 254.881553 - 0: The maximum resident set size (KB) = 1426068 + 0: The total amount of wall time = 269.710451 + 0: The maximum resident set size (KB) = 1422344 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_1541961/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/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 = 247.371317 - 0: The maximum resident set size (KB) = 1438120 + 0: The total amount of wall time = 260.906817 + 0: The maximum resident set size (KB) = 1412512 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_1541961/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/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 = 247.964958 - 0: The maximum resident set size (KB) = 1426916 + 0: The total amount of wall time = 259.986892 + 0: The maximum resident set size (KB) = 1423876 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_1541961/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/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 = 249.125554 - 0: The maximum resident set size (KB) = 1430064 + 0: The total amount of wall time = 263.854937 + 0: The maximum resident set size (KB) = 1422848 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Aug 30 17:24:37 UTC 2024 -Elapsed time: 01h:12m:55s. Have a nice day! +Thu Sep 5 23:39:10 UTC 2024 +Elapsed time: 01h:14m:01s. 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 4abdae7782..98bba839bf 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,79 +1,9 @@ -Fri Aug 30 15:02:11 UTC 2024 +Thu Sep 5 16:38:28 UTC 2024 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_199771/dbg_base_dbg_base -Checking test dbg_base results .... -Moving baseline dbg_base files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Moving RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 1313.770246 - 0: The maximum resident set size (KB) = 1554336 - -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_199771/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_189371/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +65,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 = 457.172265 - 0: The maximum resident set size (KB) = 1528760 + 0: The total amount of wall time = 411.035636 + 0: The maximum resident set size (KB) = 1532184 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_199771/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_189371/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +135,89 @@ 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 = 498.642653 - 0: The maximum resident set size (KB) = 1526632 + 0: The total amount of wall time = 403.644311 + 0: The maximum resident set size (KB) = 1531864 Test std_base PASS +FAILED TESTS: +Test dbg_base failed in run_test failed +OPERATION REQUIREMENT TEST FAILED +Thu Sep 5 19:21:40 UTC 2024 +Elapsed time: 02h:43m:12s. Have a nice day! +Fri Sep 6 00:11:18 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3212875/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 1373.432258 + 0: The maximum resident set size (KB) = 1537784 + +Test dbg_base PASS + OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Aug 30 16:11:42 UTC 2024 -Elapsed time: 01h:09m:32s. Have a nice day! +Fri Sep 6 00:39:24 UTC 2024 +Elapsed time: 00h:28m:07s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 79c4c09ce2..d20f6b1591 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Aug 30 12:30:13 UTC 2024 +Thu Sep 5 13:55:45 UTC 2024 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_37212/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2982289/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 = 1373.944509 - 0: The maximum resident set size (KB) = 776468 + 0: The total amount of wall time = 1390.806694 + 0: The maximum resident set size (KB) = 761164 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_37212/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2982289/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 = 2170.408116 - 0: The maximum resident set size (KB) = 721060 + 0: The total amount of wall time = 2552.962684 + 0: The maximum resident set size (KB) = 734772 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_37212/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2982289/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 = 2256.372781 - 0: The maximum resident set size (KB) = 731244 + 0: The total amount of wall time = 2288.297888 + 0: The maximum resident set size (KB) = 746724 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_37212/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2982289/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 = 2155.006152 - 0: The maximum resident set size (KB) = 742524 + 0: The total amount of wall time = 2342.966961 + 0: The maximum resident set size (KB) = 721088 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Aug 30 15:02:10 UTC 2024 -Elapsed time: 02h:31m:58s. Have a nice day! +Thu Sep 5 16:38:28 UTC 2024 +Elapsed time: 02h:42m:43s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index a94068e800..03da0ffd37 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: -b7fc09c740c82647c6dac1c3fd2ea36cbd07f8e8 +a78129ced4e805131daeb5617e71ca20902410ca Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (remotes/origin/HEAD) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,267 +35,267 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240830 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1960683 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2746491 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:26, 10:38] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [44:38, 02:40](3314 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:33, 16:09] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [39:32, 03:33](2103 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:18, 04:32](2095 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [16:24, 04:10](1250 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:33, 02:34](2195 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:33, 15:50] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [39:32, 01:48](2099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:48] ( 1524 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [49:44, 04:04](2150 MB) - -PASS -- COMPILE 's2swa_intel' [12:28, 10:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [44:36, 02:47](3323 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [44:36, 03:27](3339 MB) -PASS -- TEST 'cpld_restart_p8_intel' [34:30, 03:00](3259 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [44:36, 02:46](3339 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [34:30, 02:26](3280 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [44:36, 02:22](3622 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [44:36, 02:06](3334 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [44:37, 02:57](3434 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [44:36, 02:55](3323 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [44:36, 03:13](3252 MB) - -PASS -- COMPILE 's2sw_intel' [11:27, 09:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [45:38, 02:50](2024 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [45:38, 03:09](2021 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:27, 09:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [45:38, 03:16](2019 MB) - -PASS -- COMPILE 's2s_intel' [11:27, 09:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [45:37, 02:01](2890 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [45:36, 02:21](2897 MB) -PASS -- TEST 'cpld_restart_c48_intel' [40:05, 02:38](2312 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:32, 15:06] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [40:32, 02:56](3305 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:30, 15:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [39:34, 02:46](2106 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:49, 02:20](1256 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:27, 02:35](2179 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:32] ( 1559 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:23, 02:17](2218 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:24, 09:00] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [35:13, 01:49](652 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [35:13, 01:36](1548 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [35:13, 01:38](1552 MB) -PASS -- TEST 'control_latlon_intel' [35:13, 01:24](1554 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [35:13, 01:38](1553 MB) -PASS -- TEST 'control_c48_intel' [35:12, 02:03](1576 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [35:12, 01:59](715 MB) -PASS -- TEST 'control_c192_intel' [35:13, 02:31](1784 MB) -PASS -- TEST 'control_c384_intel' [35:17, 03:15](3085 MB) -PASS -- TEST 'control_c384gdas_intel' [35:17, 03:42](2319 MB) -PASS -- TEST 'control_stochy_intel' [35:13, 02:10](608 MB) -PASS -- TEST 'control_stochy_restart_intel' [16:20, 01:34](410 MB) -PASS -- TEST 'control_lndp_intel' [35:13, 01:23](603 MB) -PASS -- TEST 'control_iovr4_intel' [35:13, 01:37](605 MB) -PASS -- TEST 'control_iovr5_intel' [35:13, 01:32](605 MB) -PASS -- TEST 'control_p8_intel' [34:30, 03:13](1846 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [34:23, 03:14](1827 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [33:35, 02:58](1821 MB) -PASS -- TEST 'control_restart_p8_intel' [11:49, 03:35](973 MB) -PASS -- TEST 'control_noqr_p8_intel' [32:30, 02:24](1816 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [09:20, 02:10](1005 MB) -PASS -- TEST 'control_decomp_p8_intel' [30:56, 02:56](1819 MB) -PASS -- TEST 'control_2threads_p8_intel' [30:53, 03:04](1937 MB) -PASS -- TEST 'control_p8_lndp_intel' [28:34, 02:00](1846 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [27:27, 03:33](1897 MB) -PASS -- TEST 'control_p8_mynn_intel' [27:16, 03:33](1828 MB) -PASS -- TEST 'merra2_thompson_intel' [25:52, 04:15](1847 MB) -PASS -- TEST 'regional_control_intel' [23:45, 01:21](865 MB) -PASS -- TEST 'regional_restart_intel' [09:46, 01:11](864 MB) -PASS -- TEST 'regional_decomp_intel' [20:20, 01:22](864 MB) -PASS -- TEST 'regional_2threads_intel' [19:14, 01:59](1180 MB) -PASS -- TEST 'regional_noquilt_intel' [16:18, 01:17](1191 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [15:33, 02:09](860 MB) -PASS -- TEST 'regional_wofs_intel' [14:20, 01:57](1594 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:24] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [13:55, 03:27](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:55, 02:00](1661 MB) -PASS -- TEST 'rap_decomp_intel' [13:47, 02:58](991 MB) -PASS -- TEST 'rap_2threads_intel' [13:44, 03:27](1090 MB) -PASS -- TEST 'rap_restart_intel' [00:58, 03:39](831 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:47, 03:32](989 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:33, 03:14](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [00:03, 03:57](836 MB) -PASS -- TEST 'hrrr_control_intel' [11:25, 04:15](979 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [11:03, 03:07](984 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [11:04, 03:50](1211 MB) -PASS -- TEST 'hrrr_control_restart_intel' [01:39, 01:36](783 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:26, 03:05](982 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:59, 01:45](1945 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:57, 02:03](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [10:24, 08:17] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:57, 01:58](923 MB) -PASS -- TEST 'control_ras_intel' [08:45, 01:49](638 MB) - -PASS -- COMPILE 'wam_intel' [10:23, 08:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [07:52, 02:05](1633 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:24] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:20, 03:10](1814 MB) -PASS -- TEST 'regional_control_faster_intel' [06:53, 01:51](856 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:21, 07:10] ( 883 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:50, 02:06](1585 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:39, 01:55](1587 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:32, 02:09](796 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:26, 01:26](792 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:24, 01:35](1096 MB) -PASS -- TEST 'control_ras_debug_intel' [02:54, 02:07](802 MB) -PASS -- TEST 'control_diag_debug_intel' [01:53, 01:42](1646 MB) -PASS -- TEST 'control_debug_p8_intel' [01:43, 01:27](1869 MB) -PASS -- TEST 'regional_debug_intel' [00:57, 01:44](940 MB) -PASS -- TEST 'rap_control_debug_intel' [00:58, 02:08](1178 MB) -PASS -- TEST 'hrrr_control_debug_intel' [00:11, 01:43](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [59:53, 01:54](1179 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [58:57, 01:20](1174 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [58:55, 02:14](1177 MB) -PASS -- TEST 'rap_diag_debug_intel' [58:54, 01:47](1259 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [58:27, 02:03](1184 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:06, 01:51](1175 MB) -PASS -- TEST 'rap_lndp_debug_intel' [57:59, 01:50](1181 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [57:53, 01:50](1174 MB) -PASS -- TEST 'rap_noah_debug_intel' [57:20, 01:34](1169 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [57:18, 01:33](1170 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [56:55, 01:27](1170 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [56:34, 01:37](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [56:21, 01:39](1178 MB) -PASS -- TEST 'rap_flake_debug_intel' [55:52, 01:31](1175 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [55:54, 03:57](1186 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:23, 04:47] ( 838 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [55:52, 02:10](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:25, 08:09] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [55:35, 02:28](1527 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [54:41, 04:08](870 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [54:21, 04:14](863 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [52:36, 03:43](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [52:34, 04:03](1068 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [52:24, 03:40](861 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [42:09, 03:26](760 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [43:55, 01:20](748 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:26, 08:15] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [51:45, 01:59](1069 MB) -PASS -- TEST 'conus13km_2threads_intel' [46:33, 01:40](1398 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [45:58, 01:17](914 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:26, 08:14] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [51:44, 01:50](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:48] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [51:21, 01:42](1055 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [51:09, 02:02](1056 MB) -PASS -- TEST 'conus13km_debug_intel' [50:43, 02:01](1160 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [50:20, 02:06](842 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [50:09, 02:16](1471 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [49:52, 01:24](1230 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:44] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [49:47, 02:16](1077 MB) - -PASS -- COMPILE 'hafsw_intel' [11:25, 09:44] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [49:39, 03:04](1678 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:37, 01:29](2028 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [49:25, 02:30](1190 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [49:19, 02:37](1229 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:46, 02:47](1515 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [47:20, 02:35](918 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [45:18, 02:47](1204 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [45:16, 02:56](1096 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [44:54, 03:26](1996 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [44:44, 02:30](956 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [43:56, 02:26](953 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [43:51, 02:28](1544 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [42:45, 01:40](1127 MB) -PASS -- TEST 'gnv1_nested_intel' [42:34, 04:17](1896 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:23, 05:29] ( 1466 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [42:12, 01:56](1644 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:28, 09:19] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [41:58, 02:37](1591 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [39:14, 01:58](1763 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:27, 09:24] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [37:56, 02:21](1768 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:26, 08:52] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [37:48, 02:16](1184 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [35:38, 02:44](1172 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [33:59, 01:40](898 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:26, 09:17] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [31:30, 02:07](768 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [23:02, 01:59](757 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [31:24, 01:46](647 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [29:30, 01:40](648 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [29:01, 01:25](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [28:43, 01:19](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [26:35, 01:29](769 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [25:45, 01:21](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [24:53, 02:26](815 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [23:08, 02:38](795 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [22:40, 02:09](771 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [22:28, 01:23](2040 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [22:09, 01:58](2035 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:27, 09:12] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [21:55, 02:05](756 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 01:04] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [21:17, 01:43](610 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [20:35, 01:42](747 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [16:03, 02:06](747 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 09:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [20:01, 01:59](1974 MB) - -PASS -- COMPILE 'atml_intel' [11:25, 09:10] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [19:41, 03:13](2171 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [19:02, 03:55](2173 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:35, 02:01](1289 MB) - -PASS -- COMPILE 'atml_debug_intel' [48:03, 05:31] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [18:30, 03:37](2217 MB) - -PASS -- COMPILE 'atmw_intel' [57:13, 08:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [18:16, 03:37](1925 MB) - -PASS -- COMPILE 'atmaero_intel' [20:41, 08:36] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [03:06, 02:48](3216 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [03:06, 03:13](3000 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [03:06, 02:59](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:31, 04:56] ( 883 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [06:14, 02:42](4809 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:25, 10:23] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [57:34, 03:31](3309 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 16:19] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [51:28, 04:26](2090 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:17, 04:21](2111 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [29:15, 04:13](1207 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [51:29, 02:51](2169 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:31, 16:19] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [52:27, 02:01](2089 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:52] ( 1524 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [02:40, 03:50](2170 MB) + +PASS -- COMPILE 's2swa_intel' [12:26, 10:28] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [57:33, 02:33](3322 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [57:33, 03:28](3339 MB) +PASS -- TEST 'cpld_restart_p8_intel' [43:20, 02:15](3258 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [57:33, 02:29](3364 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [43:20, 03:00](3277 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [57:33, 02:39](3622 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [57:33, 02:22](3334 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [57:34, 02:38](3452 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [57:33, 03:07](3323 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [57:33, 03:09](3272 MB) + +PASS -- COMPILE 's2sw_intel' [11:26, 09:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [58:33, 02:52](2004 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:33, 03:17](2029 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:26, 09:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [58:33, 03:10](2039 MB) + +PASS -- COMPILE 's2s_intel' [12:25, 10:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [57:33, 01:59](2883 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [57:33, 02:28](2898 MB) +PASS -- TEST 'cpld_restart_c48_intel' [51:54, 02:48](2320 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:30, 14:36] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [53:29, 03:18](3341 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:31, 15:28] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:27, 02:19](2107 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [31:42, 02:20](1262 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:30, 02:32](2179 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:33] ( 1559 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [55:20, 02:18](2199 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:18] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [47:08, 01:22](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [47:08, 01:51](1547 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [47:08, 01:28](1550 MB) +PASS -- TEST 'control_latlon_intel' [45:26, 01:45](1554 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [45:18, 02:31](1551 MB) +PASS -- TEST 'control_c48_intel' [42:11, 01:54](1574 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [40:27, 01:46](715 MB) +PASS -- TEST 'control_c192_intel' [38:51, 02:28](1785 MB) +PASS -- TEST 'control_c384_intel' [37:34, 03:11](3082 MB) +PASS -- TEST 'control_c384gdas_intel' [35:29, 03:39](2304 MB) +PASS -- TEST 'control_stochy_intel' [33:37, 01:24](603 MB) +PASS -- TEST 'control_stochy_restart_intel' [24:00, 01:35](412 MB) +PASS -- TEST 'control_lndp_intel' [33:29, 01:33](603 MB) +PASS -- TEST 'control_iovr4_intel' [33:18, 02:01](599 MB) +PASS -- TEST 'control_iovr5_intel' [32:34, 01:34](606 MB) +PASS -- TEST 'control_p8_intel' [32:15, 02:47](1826 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [31:28, 02:32](1846 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [31:26, 03:45](1841 MB) +PASS -- TEST 'control_restart_p8_intel' [19:11, 02:51](973 MB) +PASS -- TEST 'control_noqr_p8_intel' [30:02, 03:33](1836 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [16:34, 03:02](1004 MB) +PASS -- TEST 'control_decomp_p8_intel' [29:55, 02:47](1834 MB) +PASS -- TEST 'control_2threads_p8_intel' [29:51, 02:59](1936 MB) +PASS -- TEST 'control_p8_lndp_intel' [29:33, 02:19](1826 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [29:30, 03:00](1898 MB) +PASS -- TEST 'control_p8_mynn_intel' [28:58, 02:46](1829 MB) +PASS -- TEST 'merra2_thompson_intel' [28:24, 04:15](1847 MB) +PASS -- TEST 'regional_control_intel' [27:58, 01:14](865 MB) +PASS -- TEST 'regional_restart_intel' [20:05, 01:23](861 MB) +PASS -- TEST 'regional_decomp_intel' [27:01, 02:13](864 MB) +PASS -- TEST 'regional_2threads_intel' [25:25, 01:27](1178 MB) +PASS -- TEST 'regional_noquilt_intel' [23:53, 01:35](1190 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [23:50, 01:46](860 MB) +PASS -- TEST 'regional_wofs_intel' [23:14, 01:51](1597 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:26] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [48:09, 03:58](988 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [48:10, 02:03](1660 MB) +PASS -- TEST 'rap_decomp_intel' [48:09, 04:06](991 MB) +PASS -- TEST 'rap_2threads_intel' [48:09, 02:43](1091 MB) +PASS -- TEST 'rap_restart_intel' [21:29, 03:44](832 MB) +PASS -- TEST 'rap_sfcdiff_intel' [48:09, 03:35](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [48:09, 03:18](986 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [21:38, 03:29](833 MB) +PASS -- TEST 'hrrr_control_intel' [48:09, 03:21](985 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [48:09, 03:23](984 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [48:10, 04:05](1215 MB) +PASS -- TEST 'hrrr_control_restart_intel' [20:54, 02:16](783 MB) +PASS -- TEST 'rrfs_v1beta_intel' [48:09, 03:53](981 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [48:09, 01:49](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [48:09, 01:42](1934 MB) + +PASS -- COMPILE 'csawmg_intel' [10:24, 08:14] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [47:10, 01:56](923 MB) +PASS -- TEST 'control_ras_intel' [47:10, 01:44](639 MB) + +PASS -- COMPILE 'wam_intel' [10:24, 08:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [47:09, 01:52](1636 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [19:15, 03:09](1833 MB) +PASS -- TEST 'regional_control_faster_intel' [19:17, 01:54](847 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 07:03] ( 883 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:05, 01:20](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:55, 02:30](1591 MB) +PASS -- TEST 'control_stochy_debug_intel' [18:26, 01:52](796 MB) +PASS -- TEST 'control_lndp_debug_intel' [16:53, 01:50](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [16:36, 01:42](1099 MB) +PASS -- TEST 'control_ras_debug_intel' [16:28, 01:18](807 MB) +PASS -- TEST 'control_diag_debug_intel' [16:09, 02:19](1653 MB) +PASS -- TEST 'control_debug_p8_intel' [16:08, 02:06](1885 MB) +PASS -- TEST 'regional_debug_intel' [15:35, 01:31](931 MB) +PASS -- TEST 'rap_control_debug_intel' [15:16, 01:19](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [15:01, 01:20](1170 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [14:20, 01:32](1176 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [14:10, 02:09](1176 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:30, 01:20](1176 MB) +PASS -- TEST 'rap_diag_debug_intel' [12:59, 02:30](1262 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:42, 02:07](1177 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:43, 02:06](1177 MB) +PASS -- TEST 'rap_lndp_debug_intel' [12:05, 01:49](1181 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:58, 01:45](1178 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:53, 01:53](1171 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [11:50, 02:13](1174 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:48, 02:07](1172 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:23, 01:39](1170 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:01, 01:38](1181 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:07, 02:15](1177 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:06, 04:03](1183 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:24, 04:51] ( 838 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:56, 02:15](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:27, 08:11] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:19, 02:07](1527 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:51, 03:22](870 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:17, 04:34](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:08, 02:46](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:52, 04:44](1069 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:44, 03:45](861 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [56:30, 03:41](760 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [56:56, 01:17](747 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:27, 08:11] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:35, 02:03](1066 MB) +PASS -- TEST 'conus13km_2threads_intel' [47:08, 02:09](1394 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [47:06, 01:32](910 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:25, 08:16] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:42, 01:54](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:49] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:18, 01:34](1055 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 01:40](1056 MB) +PASS -- TEST 'conus13km_debug_intel' [06:51, 02:08](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [06:46, 01:39](828 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [06:00, 01:42](1477 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:36, 01:57](1230 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:47] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:50, 02:03](1075 MB) + +PASS -- COMPILE 'hafsw_intel' [22:37, 09:30] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:18, 02:44](1676 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:13, 01:46](2028 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [03:34, 03:05](1196 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [03:26, 03:04](1231 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [03:22, 02:20](1382 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [03:09, 02:41](917 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:18, 03:03](1204 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [02:04, 02:20](1098 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [00:53, 03:41](1945 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:44, 02:21](956 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:31, 02:27](955 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [58:25, 01:55](1546 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [57:10, 02:03](1128 MB) +PASS -- TEST 'gnv1_nested_intel' [56:56, 04:32](1897 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [20:35, 05:23] ( 1466 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [56:33, 02:19](1641 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:40, 09:08] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [54:41, 01:49](1594 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [54:29, 02:07](1767 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [23:39, 09:12] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [54:01, 02:32](1763 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:34, 08:57] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [53:23, 02:36](1183 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [52:27, 03:15](1166 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [50:08, 01:26](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [39:57, 09:24] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [49:41, 02:00](756 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [44:16, 01:14](757 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [43:21, 01:59](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [42:31, 01:46](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [41:18, 01:25](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [40:59, 01:44](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [40:19, 02:11](769 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [40:18, 01:19](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [40:17, 02:20](816 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [39:28, 02:12](795 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [38:11, 02:06](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [37:58, 01:43](2036 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [36:25, 02:07](2035 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [38:54, 09:13] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [36:08, 01:20](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [32:48, 01:04] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [35:05, 01:42](609 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [34:40, 02:16](747 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [28:50, 01:26](751 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [45:00, 09:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [34:25, 01:52](1954 MB) + +PASS -- COMPILE 'atml_intel' [46:02, 09:11] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [33:18, 03:01](2171 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [32:57, 03:53](2171 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:31, 02:00](1324 MB) + +PASS -- COMPILE 'atml_debug_intel' [32:48, 05:29] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [32:29, 03:47](2216 MB) + +PASS -- COMPILE 'atmw_intel' [34:50, 08:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [32:14, 03:08](1935 MB) + +PASS -- COMPILE 'atmaero_intel' [34:49, 08:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [31:42, 02:51](3215 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [31:36, 03:07](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [31:26, 02:58](3008 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [32:49, 04:50] ( 883 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [30:50, 02:54](4801 MB) SYNOPSIS: -Starting Date/Time: 20240830 13:02:27 -Ending Date/Time: 20240830 15:21:36 -Total Time: 02h:19m:36s +Starting Date/Time: 20240905 17:49:41 +Ending Date/Time: 20240905 19:58:02 +Total Time: 02h:08m:47s Compiles Completed: 37/37 Tests Completed: 176/176 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index d93357ae91..39735c2292 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: -481792ad8644aa9b8e70fbb3ecc0b5c05fd9a28d +09b868ff72fac6a029564ad640cb24311ec74865 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,284 +35,284 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240830 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_8918 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_20365 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [27:34, 25:33] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:17, 06:04](3205 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [29:33, 27:12] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:12, 15:05](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:12, 16:33](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:53, 08:35](1073 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:10, 16:56](1879 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:33, 27:22] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:06, 14:56](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:23, 15:48] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:44, 23:25](1938 MB) - -PASS -- COMPILE 's2swa_intel' [27:34, 25:18] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:30, 06:45](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:45, 06:37](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:47, 04:34](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:30, 06:47](3252 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:47, 04:21](3179 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:08, 06:21](3735 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:09, 06:43](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [19:13, 05:49](3536 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:44, 06:42](3230 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [24:00, 10:15](3813 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [20:42, 07:25](3623 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [40:11, 11:21](4521 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [48:43, 08:30](4671 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [19:58, 06:24](3212 MB) - -PASS -- COMPILE 's2sw_intel' [25:31, 23:26] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [20:31, 05:23](1913 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:22, 05:18](1984 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:27, 15:53] ( 1453 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [14:49, 08:42](3303 MB) - -PASS -- COMPILE 's2sw_debug_intel' [17:23, 15:02] ( 1453 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:43, 06:15](1961 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [21:32, 19:23] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:24, 05:21](1975 MB) - -PASS -- COMPILE 's2s_intel' [21:32, 19:25] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:32, 07:06](2882 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:36, 03:13](2891 MB) -PASS -- TEST 'cpld_restart_c48_intel' [08:33, 02:08](2302 MB) - -PASS -- COMPILE 's2swa_faster_intel' [36:28, 27:38] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:21, 06:43](3232 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [36:28, 25:55] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:15, 15:13](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:15, 09:01](1086 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:40, 17:21](1897 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [25:26, 14:28] ( 1563 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:36, 24:24](1956 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [26:20, 16:28] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:03, 03:36](663 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:06, 02:34](1564 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:49, 02:37](1566 MB) -PASS -- TEST 'control_latlon_intel' [06:59, 02:33](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:57, 02:32](1566 MB) -PASS -- TEST 'control_c48_intel' [13:20, 06:13](1571 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:52, 05:28](713 MB) -PASS -- TEST 'control_c192_intel' [14:01, 09:01](1675 MB) -PASS -- TEST 'control_c384_intel' [22:28, 09:13](1954 MB) -PASS -- TEST 'control_c384gdas_intel' [24:55, 07:38](1175 MB) -PASS -- TEST 'control_stochy_intel' [04:10, 01:33](620 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:56, 01:00](432 MB) -PASS -- TEST 'control_lndp_intel' [03:53, 01:27](622 MB) -PASS -- TEST 'control_iovr4_intel' [06:02, 02:17](620 MB) -PASS -- TEST 'control_iovr5_intel' [05:03, 02:09](618 MB) -PASS -- TEST 'control_p8_intel' [09:09, 03:29](1856 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:21, 03:32](1851 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:16, 03:38](1857 MB) -PASS -- TEST 'control_restart_p8_intel' [07:03, 02:40](1001 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:08, 03:30](1846 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:08, 02:34](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:04, 03:29](1844 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:57, 03:17](1936 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:49, 05:19](1848 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:38, 04:14](1910 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:38, 03:32](1863 MB) -PASS -- TEST 'merra2_thompson_intel' [09:30, 03:44](1854 MB) -PASS -- TEST 'regional_control_intel' [09:48, 05:21](861 MB) -PASS -- TEST 'regional_restart_intel' [07:22, 03:39](862 MB) -PASS -- TEST 'regional_decomp_intel' [09:30, 05:39](856 MB) -PASS -- TEST 'regional_noquilt_intel' [08:21, 05:15](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:20, 05:20](854 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:18, 05:17](862 MB) -PASS -- TEST 'regional_wofs_intel' [09:09, 05:54](1590 MB) - -PASS -- COMPILE 'rrfs_intel' [23:20, 14:52] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:44, 06:19](1007 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:35, 03:58](1157 MB) -PASS -- TEST 'rap_decomp_intel' [10:41, 06:31](1011 MB) -PASS -- TEST 'rap_2threads_intel' [10:41, 05:54](1089 MB) -PASS -- TEST 'rap_restart_intel' [06:47, 03:22](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:38, 06:17](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:35, 06:32](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:45, 04:45](879 MB) -PASS -- TEST 'hrrr_control_intel' [07:35, 03:20](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:35, 03:25](998 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:35, 02:56](1076 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:51, 01:53](828 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:34, 06:11](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:42, 07:32](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:42, 07:17](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [20:23, 13:51] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [11:06, 06:52](957 MB) -PASS -- TEST 'control_ras_intel' [05:51, 03:02](654 MB) - -PASS -- COMPILE 'wam_intel' [21:18, 13:33] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:16, 10:32](1655 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:17, 14:02] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:36, 03:33](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [08:50, 05:07](861 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [27:28, 16:38] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:35, 02:47](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:41, 02:43](1605 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:49, 02:59](807 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:04, 02:41](810 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:43, 05:08](1113 MB) -PASS -- TEST 'control_ras_debug_intel' [05:52, 02:49](815 MB) -PASS -- TEST 'control_diag_debug_intel' [08:04, 02:51](1670 MB) -PASS -- TEST 'control_debug_p8_intel' [07:15, 03:47](1894 MB) -PASS -- TEST 'regional_debug_intel' [20:14, 16:53](921 MB) -PASS -- TEST 'rap_control_debug_intel' [07:56, 04:53](1187 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:58, 04:44](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:56, 04:56](1189 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:56, 04:47](1191 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:02, 04:53](1190 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:52, 05:10](1273 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:57, 05:05](1192 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:00, 05:01](1194 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:00, 05:02](1195 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:07, 05:01](1190 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:13, 04:53](1189 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:09, 04:56](1186 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:58, 07:44](1184 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:04, 04:55](1186 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:55, 05:51](1196 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:05, 04:53](1191 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:00, 08:26](1190 MB) - -PASS -- COMPILE 'wam_debug_intel' [21:17, 09:35] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:43, 12:26](1689 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:27, 13:33] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:23, 03:48](1016 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:49, 05:22](880 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:48, 02:55](874 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:47, 04:59](939 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:33, 02:32](928 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 03:08](872 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:32, 04:05](786 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:59, 01:40](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:27, 13:24] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:10, 02:10](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:15, 01:19](1070 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:02, 01:21](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:17, 13:42] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:42, 03:49](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [19:18, 09:54] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:00, 04:41](1069 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:00, 04:42](1069 MB) -PASS -- TEST 'conus13km_debug_intel' [19:57, 13:41](1148 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:42, 14:27](829 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:53, 08:13](1147 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:44, 13:53](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:23, 09:26] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:43, 04:51](1092 MB) - -PASS -- COMPILE 'hafsw_intel' [28:28, 21:07] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:06, 05:11](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:20, 06:07](1052 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:43, 06:56](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:23, 11:27](775 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:18, 12:37](805 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:30, 04:55](463 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:03, 06:03](482 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:26, 02:35](388 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:46, 06:47](451 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:30, 03:37](549 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:06, 03:23](502 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:33, 04:19](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:45, 01:27](422 MB) -PASS -- TEST 'gnv1_nested_intel' [10:27, 04:52](1714 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [16:26, 11:20] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:51, 12:35](617 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:29, 20:36] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:05, 07:26](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:02, 07:34](680 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [24:31, 22:18] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:30, 05:36](668 MB) - -PASS -- COMPILE 'hafs_all_intel' [21:25, 19:04] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:58, 06:09](738 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:59, 06:08](724 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:44, 16:22](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:27, 11:30] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:42, 02:38](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:59, 01:41](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:40, 02:29](646 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:40, 02:29](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:39, 02:33](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:42, 02:38](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:52, 02:38](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:51, 02:30](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:27, 05:57](698 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:51, 05:57](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:30, 02:34](754 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:10, 04:10](2035 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:07, 04:12](1970 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:24, 08:40] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:29, 05:21](752 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:23, 11:35] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:54, 02:36](767 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:19, 04:08] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:57, 01:44](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:41, 01:33](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:47, 01:03](453 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:22, 16:40] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:06, 04:25](1907 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [18:22, 15:45] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:42, 04:19](1895 MB) - -PASS -- COMPILE 'atml_intel' [20:23, 18:00] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:11, 09:32](1895 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [14:06, 09:31](1888 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [27:46, 05:40](1038 MB) - -PASS -- COMPILE 'atml_debug_intel' [16:22, 13:24] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:18, 06:50](1925 MB) - -PASS -- COMPILE 'atmw_intel' [18:24, 16:46] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:57, 02:45](1872 MB) - -PASS -- COMPILE 'atmaero_intel' [17:24, 15:53] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:47, 04:57](3125 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:41, 04:30](3004 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:07, 04:41](3013 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:17, 11:18] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [32:35, 23:02](4553 MB) +PASS -- COMPILE 's2swa_32bit_intel' [25:53, 25:13] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:43, 06:15](3205 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [34:01, 27:17] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:38, 15:04](1916 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:10, 16:33](1945 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [17:11, 08:36](1072 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:31, 17:12](1874 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [33:04, 27:10] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:06, 14:49](1910 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:54, 15:10] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:26, 23:23](1940 MB) + +PASS -- COMPILE 's2swa_intel' [33:04, 24:24] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:26, 06:52](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:39, 06:50](3218 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:01, 04:30](3150 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:39, 06:58](3255 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [16:53, 04:29](3177 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:58, 06:23](3730 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:31, 06:41](3216 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:46, 05:48](3537 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:21, 06:59](3229 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [23:35, 10:17](3819 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [18:23, 07:17](3624 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [54:07, 11:25](4516 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [40:08, 08:29](4669 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:25, 06:29](3216 MB) + +PASS -- COMPILE 's2sw_intel' [31:58, 23:18] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:10, 05:12](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:23, 05:22](1983 MB) + +PASS -- COMPILE 's2swa_debug_intel' [24:04, 15:16] ( 1453 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:33, 08:43](3302 MB) + +PASS -- COMPILE 's2sw_debug_intel' [25:57, 14:29] ( 1453 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:17, 06:22](1964 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [31:59, 19:43] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:24, 05:28](1992 MB) + +PASS -- COMPILE 's2s_intel' [31:05, 19:20] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:35, 07:13](2879 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:37, 02:59](2893 MB) +PASS -- TEST 'cpld_restart_c48_intel' [10:05, 02:22](2300 MB) + +PASS -- COMPILE 's2swa_faster_intel' [30:22, 28:21] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:21, 06:43](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [28:26, 25:37] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:14, 15:07](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:38, 08:48](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:16, 17:11](1895 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [18:23, 14:15] ( 1563 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:38, 24:34](1955 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [20:18, 16:21] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:01, 03:29](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:07, 02:36](1560 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:28, 02:39](1561 MB) +PASS -- TEST 'control_latlon_intel' [10:10, 02:29](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:08, 02:35](1569 MB) +PASS -- TEST 'control_c48_intel' [30:17, 06:11](1572 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [28:02, 05:21](709 MB) +PASS -- TEST 'control_c192_intel' [20:33, 08:54](1674 MB) +PASS -- TEST 'control_c384_intel' [22:49, 09:08](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [28:11, 07:35](1180 MB) +PASS -- TEST 'control_stochy_intel' [06:02, 01:32](622 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:51, 00:56](433 MB) +PASS -- TEST 'control_lndp_intel' [04:52, 01:28](621 MB) +PASS -- TEST 'control_iovr4_intel' [06:02, 02:12](620 MB) +PASS -- TEST 'control_iovr5_intel' [04:56, 02:28](619 MB) +PASS -- TEST 'control_p8_intel' [08:33, 03:37](1848 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:33, 03:17](1852 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:56, 03:33](1853 MB) +PASS -- TEST 'control_restart_p8_intel' [08:47, 02:26](1002 MB) +PASS -- TEST 'control_noqr_p8_intel' [13:27, 03:24](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:46, 02:19](1012 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:38, 03:32](1853 MB) +PASS -- TEST 'control_2threads_p8_intel' [12:42, 03:29](1925 MB) +PASS -- TEST 'control_p8_lndp_intel' [14:43, 05:27](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:49, 04:21](1909 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:39, 03:23](1861 MB) +PASS -- TEST 'merra2_thompson_intel' [12:07, 03:43](1864 MB) +PASS -- TEST 'regional_control_intel' [08:01, 05:21](854 MB) +PASS -- TEST 'regional_restart_intel' [11:02, 03:20](856 MB) +PASS -- TEST 'regional_decomp_intel' [09:13, 05:44](866 MB) +PASS -- TEST 'regional_noquilt_intel' [12:05, 05:15](1180 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:09, 05:19](860 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:15, 05:16](855 MB) +PASS -- TEST 'regional_wofs_intel' [10:08, 05:46](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [17:23, 14:52] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:23, 06:17](1004 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:32, 03:55](1145 MB) +PASS -- TEST 'rap_decomp_intel' [11:46, 06:31](1010 MB) +PASS -- TEST 'rap_2threads_intel' [09:34, 05:50](1088 MB) +PASS -- TEST 'rap_restart_intel' [06:39, 03:21](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:37, 06:13](1001 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:47, 06:30](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 04:42](878 MB) +PASS -- TEST 'hrrr_control_intel' [06:47, 03:21](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:39, 03:27](996 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:35, 02:55](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:04, 01:53](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:44, 06:10](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:06, 07:33](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:04, 07:19](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [16:21, 13:57] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:38, 06:56](960 MB) +PASS -- TEST 'control_ras_intel' [05:52, 03:02](657 MB) + +PASS -- COMPILE 'wam_intel' [15:18, 13:06] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:42, 10:26](1643 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:22, 14:02] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:07, 03:23](1853 MB) +PASS -- TEST 'regional_control_faster_intel' [08:05, 05:17](861 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [19:18, 16:28] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:30, 02:42](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:34, 02:38](1605 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:00, 03:01](810 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:56, 02:41](810 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:46, 04:53](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [06:01, 02:52](815 MB) +PASS -- TEST 'control_diag_debug_intel' [08:01, 02:44](1665 MB) +PASS -- TEST 'control_debug_p8_intel' [06:23, 03:32](1905 MB) +PASS -- TEST 'regional_debug_intel' [20:23, 16:46](922 MB) +PASS -- TEST 'rap_control_debug_intel' [07:53, 04:47](1190 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:58, 04:52](1188 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:50, 04:57](1193 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:51, 04:58](1191 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:04, 04:52](1191 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:42, 05:07](1273 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:05, 05:00](1188 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:01, 05:00](1192 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:03, 04:51](1198 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:54, 04:53](1191 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:55, 04:48](1185 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:50, 04:51](1191 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:47, 07:44](1184 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:48, 04:49](1187 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:54, 05:37](1196 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:59, 04:55](1190 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:50, 08:26](1189 MB) + +PASS -- COMPILE 'wam_debug_intel' [26:26, 09:17] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:18, 12:34](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:20, 13:26] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:50, 03:50](1022 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:35, 05:16](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:33, 02:51](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:21, 04:53](937 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:32, 02:34](925 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:26, 03:01](871 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:23, 04:02](785 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:56, 01:39](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:22, 12:43] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:04, 02:08](1072 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:46, 01:09](1073 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:49, 01:15](961 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [35:25, 13:12] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:33, 03:46](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [31:24, 09:40] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:55, 04:45](1066 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:01, 04:39](1063 MB) +PASS -- TEST 'conus13km_debug_intel' [19:31, 13:54](1147 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:34, 13:47](830 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:58, 08:08](1144 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:09, 13:50](1213 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [30:28, 09:22] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:50, 04:50](1095 MB) + +PASS -- COMPILE 'hafsw_intel' [42:26, 20:38] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:14, 04:56](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:22, 05:51](1052 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:35, 06:53](750 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:01, 11:19](776 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:37, 12:27](794 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:30, 04:52](467 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:03, 06:02](481 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:32, 02:32](388 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:20, 06:32](455 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:20, 03:30](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:46, 03:18](504 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:44, 04:09](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:44, 01:28](421 MB) +PASS -- TEST 'gnv1_nested_intel' [11:24, 04:43](1709 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [32:22, 11:03] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:26, 12:26](619 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [37:30, 19:18] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:08, 07:28](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:38, 07:31](680 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [39:33, 21:04] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:14, 05:33](670 MB) + +PASS -- COMPILE 'hafs_all_intel' [29:21, 18:30] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:11, 06:01](740 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:30, 06:04](726 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:48, 16:27](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:16, 11:13] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:49, 02:33](767 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:06, 01:37](757 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:51, 02:24](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:52, 02:29](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:51, 02:32](651 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:00, 02:35](756 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:52, 02:36](770 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:49, 02:27](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:49, 05:58](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [16:48, 05:53](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:30, 02:35](766 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:57, 04:10](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:51, 04:08](2034 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:15, 07:48] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:51, 05:15](739 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:20, 10:32] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [12:46, 02:35](767 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 03:31] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:32, 01:36](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:32, 01:31](457 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:35, 01:00](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:23, 15:44] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [12:15, 04:18](1908 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:22, 14:42] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:40, 04:06](1903 MB) + +PASS -- COMPILE 'atml_intel' [18:17, 16:38] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:54, 09:55](1883 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [15:25, 09:07](1891 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:34, 04:54](1036 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:20, 12:34] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:07, 06:47](1926 MB) + +PASS -- COMPILE 'atmw_intel' [18:21, 15:26] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:02, 02:31](1875 MB) + +PASS -- COMPILE 'atmaero_intel' [33:24, 15:42] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:11, 04:49](3130 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:09, 04:27](3002 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:34, 04:33](3014 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [29:27, 10:38] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:42, 22:55](4541 MB) SYNOPSIS: -Starting Date/Time: 20240830 10:29:50 -Ending Date/Time: 20240830 12:50:29 -Total Time: 02h:22m:31s +Starting Date/Time: 20240906 11:12:54 +Ending Date/Time: 20240906 15:44:31 +Total Time: 04h:33m:46s Compiles Completed: 41/41 Tests Completed: 184/184 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 87b6c184fe..8da1543c16 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -1d8f4c649b384af7bfb16a49544e0877ee14ae1b +a78129ced4e805131daeb5617e71ca20902410ca Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,285 +35,285 @@ 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-20240830 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_5209 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_242863 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:11, 19:39] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:35, 07:18](3204 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 23:31] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:50, 14:36](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:48, 14:34](1925 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:44, 07:14](1071 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:32, 14:49](1892 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:12, 23:08] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:54, 13:27](1906 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:11, 14:21] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:33, 24:43](1939 MB) - -PASS -- COMPILE 's2swa_intel' [21:11, 19:48] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:22, 08:19](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:33, 07:56](3223 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:38, 05:48](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [22:31, 08:09](3246 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:50, 05:49](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:20, 06:58](3466 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:38, 08:18](3223 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:20, 07:39](3167 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:05, 08:06](3224 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [26:37, 10:08](3444 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:40, 06:52](3608 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:56, 10:33](4208 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:09, 06:37](4364 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:49, 08:17](3211 MB) - -PASS -- COMPILE 's2sw_intel' [19:11, 18:00] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:37, 04:50](1930 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:36, 05:21](1995 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:11, 14:20] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:39, 09:53](3281 MB) - -PASS -- COMPILE 's2sw_debug_intel' [15:14, 13:21] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:27, 06:08](1948 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:11, 16:47] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:51, 05:17](1993 MB) - -PASS -- COMPILE 's2s_intel' [18:11, 16:44] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:20, 06:30](2870 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:29, 01:59](2882 MB) -PASS -- TEST 'cpld_restart_c48_intel' [14:26, 01:12](2292 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:12, 20:15] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:01, 08:14](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 21:36] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:48, 15:09](1930 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:50, 07:30](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:57, 17:58](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 14:58] ( 1558 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:36, 26:39](1945 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:28] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:54, 04:14](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:36, 03:41](1559 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:30, 03:31](1571 MB) -PASS -- TEST 'control_latlon_intel' [10:20, 03:30](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:36, 03:42](1567 MB) -PASS -- TEST 'control_c48_intel' [13:44, 06:39](1568 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:16, 05:47](698 MB) -PASS -- TEST 'control_c192_intel' [17:29, 10:24](1665 MB) -PASS -- TEST 'control_c384_intel' [25:53, 18:40](1938 MB) -PASS -- TEST 'control_c384gdas_intel' [22:42, 14:28](1157 MB) -PASS -- TEST 'control_stochy_intel' [04:49, 02:16](620 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:34, 01:00](425 MB) -PASS -- TEST 'control_lndp_intel' [06:54, 01:53](619 MB) -PASS -- TEST 'control_iovr4_intel' [06:54, 02:37](618 MB) -PASS -- TEST 'control_iovr5_intel' [06:55, 02:35](619 MB) -PASS -- TEST 'control_p8_intel' [10:47, 03:36](1857 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:07, 03:39](1861 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:46, 03:34](1865 MB) -PASS -- TEST 'control_restart_p8_intel' [04:14, 01:45](1003 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:15, 03:37](1850 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 01:45](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:07, 03:53](1855 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:05, 02:54](1929 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:46, 05:28](1862 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:18, 04:28](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:20, 03:43](1861 MB) -PASS -- TEST 'merra2_thompson_intel' [06:20, 03:49](1855 MB) -PASS -- TEST 'regional_control_intel' [06:41, 04:41](857 MB) -PASS -- TEST 'regional_restart_intel' [04:45, 02:29](853 MB) -PASS -- TEST 'regional_decomp_intel' [06:40, 04:58](859 MB) -PASS -- TEST 'regional_2threads_intel' [04:43, 02:51](988 MB) -PASS -- TEST 'regional_noquilt_intel' [06:40, 04:40](1177 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 04:42](850 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:35, 04:39](850 MB) -PASS -- TEST 'regional_wofs_intel' [08:43, 06:09](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [16:11, 14:29] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:13, 07:07](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:09, 03:43](1148 MB) -PASS -- TEST 'rap_decomp_intel' [10:07, 07:07](1005 MB) -PASS -- TEST 'rap_2threads_intel' [09:10, 06:12](1086 MB) -PASS -- TEST 'rap_restart_intel' [07:14, 03:40](871 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:12, 06:51](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:02, 07:13](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:04, 04:54](871 MB) -PASS -- TEST 'hrrr_control_intel' [06:15, 03:47](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:06, 04:11](997 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:05, 03:07](1073 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:45, 02:07](827 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:07, 07:05](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:34, 08:32](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:32, 08:16](1946 MB) - -PASS -- COMPILE 'csawmg_intel' [15:14, 13:28] -PASS -- TEST 'control_csawmg_intel' [08:43, 06:50](958 MB) -PASS -- TEST 'control_ras_intel' [05:38, 03:28](653 MB) - -PASS -- COMPILE 'wam_intel' [15:13, 13:13] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:22, 12:12](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:13, 13:48] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:15, 03:14](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [06:44, 04:43](846 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 14:25] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:06, 02:55](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:06, 03:10](1596 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:35, 03:14](797 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:53](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:28](1099 MB) -PASS -- TEST 'control_ras_debug_intel' [04:26, 02:52](804 MB) -PASS -- TEST 'control_diag_debug_intel' [05:58, 03:04](1659 MB) -PASS -- TEST 'control_debug_p8_intel' [06:46, 03:32](1889 MB) -PASS -- TEST 'regional_debug_intel' [18:42, 16:22](890 MB) -PASS -- TEST 'rap_control_debug_intel' [07:37, 05:01](1176 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:32, 05:05](1172 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:33, 05:05](1179 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:32, 05:10](1178 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:30, 05:12](1175 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:13](1260 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:32, 05:13](1175 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 05:08](1175 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:32, 05:11](1179 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:32, 05:04](1175 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:39, 04:58](1172 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:34, 05:04](1175 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:32, 07:54](1174 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:32, 05:07](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:31, 05:54](1182 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:30, 05:12](1178 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:05, 08:40](1181 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:12, 10:49] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:07, 13:49](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:13, 13:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:13, 03:32](1013 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:08, 06:04](888 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:56, 03:37](878 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:00, 05:22](938 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:07, 02:45](924 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:00, 03:40](878 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:17, 04:07](776 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 02:02](760 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 14:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:28, 02:33](1084 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:58, 01:02](1062 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:00, 01:23](962 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:11, 13:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:09, 04:22](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 10:55] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:36, 04:55](1052 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 04:49](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [17:26, 14:39](1133 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:24, 14:56](805 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:13, 08:10](1113 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:09, 14:21](1198 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:11, 10:48] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 05:07](1077 MB) - -PASS -- COMPILE 'hafsw_intel' [19:15, 17:14] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:21, 04:41](687 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:37, 03:55](1036 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:43, 07:23](727 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:25, 11:34](757 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:36, 12:39](781 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:16, 05:05](460 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 06:18](479 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:22, 02:24](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 06:57](439 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:02, 03:35](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:13, 03:17](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:16, 04:06](555 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:43, 01:20](396 MB) -PASS -- TEST 'gnv1_nested_intel' [09:34, 05:28](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:11, 12:01] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:14, 12:24](579 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:14, 16:36] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:19, 07:18](600 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:30, 07:19](778 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:13, 17:37] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:53, 05:33](777 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:12, 16:31] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:29, 05:59](719 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:20, 06:17](704 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:23, 20:09](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:13, 13:22] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:33, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:36, 01:44](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:29, 02:28](647 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:33, 02:31](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:26, 02:33](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:30, 02:36](764 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:31, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:31, 02:30](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:23, 06:04](696 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:16, 06:03](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:29, 02:33](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:33, 04:39](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:35, 04:43](2032 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 08:41] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:30, 05:49](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:14, 13:06] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:33, 02:45](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:15, 03:48] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:06, 02:06](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:06, 01:48](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:03, 01:03](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 15:16] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:03, 04:09](1916 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:11, 14:49] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:43, 04:45](1905 MB) - -PASS -- COMPILE 'atml_intel' [17:12, 15:45] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:04, 08:07](1879 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:00, 08:01](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:11, 03:46](1035 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:13, 12:00] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:49, 06:47](1919 MB) - -PASS -- COMPILE 'atmw_intel' [17:11, 15:27] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:22, 02:48](1888 MB) - -PASS -- COMPILE 'atmaero_intel' [16:11, 14:14] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:29, 06:54](3121 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 06:58](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:23, 07:06](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:11, 11:15] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:45, 18:25](4484 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:11, 20:21] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:09, 07:28](3203 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:13, 23:36] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:33, 14:13](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:22, 14:37](1927 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:22, 07:02](1071 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:27, 14:56](1891 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:13, 23:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:55, 13:13](1907 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:11, 14:28] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:26, 25:22](1939 MB) + +PASS -- COMPILE 's2swa_intel' [21:11, 19:16] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:07, 07:45](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:22, 07:53](3223 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:47, 05:04](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:07, 07:59](3249 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:47, 05:07](3172 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:08, 06:36](3467 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:00, 07:45](3224 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:08, 06:47](3166 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:21, 08:00](3224 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:35, 09:45](3445 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:40, 06:32](3605 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:56, 10:18](4205 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:59, 06:22](4358 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:05, 07:50](3212 MB) + +PASS -- COMPILE 's2sw_intel' [21:11, 19:29] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:13, 04:54](1931 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:19, 05:04](1994 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:13, 15:36] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:30, 09:50](3281 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:11, 13:51] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:50, 06:00](1948 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:11, 17:37] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:40, 05:19](1992 MB) + +PASS -- COMPILE 's2s_intel' [19:11, 17:05] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:15, 06:30](2871 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:13, 01:57](2882 MB) +PASS -- TEST 'cpld_restart_c48_intel' [14:23, 01:11](2292 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:15, 20:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:42, 08:06](3224 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:12, 22:19] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:29, 15:14](1929 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:21, 07:50](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:23, 17:01](1904 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 13:20] ( 1558 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:25, 28:14](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:10, 14:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:47, 03:58](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:29, 03:37](1559 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:24, 03:42](1570 MB) +PASS -- TEST 'control_latlon_intel' [12:18, 03:11](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:23, 03:40](1568 MB) +PASS -- TEST 'control_c48_intel' [15:35, 06:31](1566 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:20, 05:43](699 MB) +PASS -- TEST 'control_c192_intel' [19:34, 10:22](1666 MB) +PASS -- TEST 'control_c384_intel' [28:49, 18:40](1938 MB) +PASS -- TEST 'control_c384gdas_intel' [24:30, 14:25](1153 MB) +PASS -- TEST 'control_stochy_intel' [05:49, 02:17](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:30, 01:20](426 MB) +PASS -- TEST 'control_lndp_intel' [07:50, 02:11](619 MB) +PASS -- TEST 'control_iovr4_intel' [09:56, 03:03](618 MB) +PASS -- TEST 'control_iovr5_intel' [09:52, 02:46](618 MB) +PASS -- TEST 'control_p8_intel' [12:41, 03:18](1861 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [14:00, 03:43](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:44, 03:16](1854 MB) +PASS -- TEST 'control_restart_p8_intel' [06:04, 02:05](996 MB) +PASS -- TEST 'control_noqr_p8_intel' [11:45, 03:37](1853 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:59, 02:03](1006 MB) +PASS -- TEST 'control_decomp_p8_intel' [11:45, 03:25](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:00, 02:53](1929 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:48, 05:37](1861 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:08, 04:22](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:15, 03:46](1861 MB) +PASS -- TEST 'merra2_thompson_intel' [08:05, 03:47](1853 MB) +PASS -- TEST 'regional_control_intel' [06:37, 04:39](849 MB) +PASS -- TEST 'regional_restart_intel' [06:41, 02:34](854 MB) +PASS -- TEST 'regional_decomp_intel' [08:35, 04:48](852 MB) +PASS -- TEST 'regional_2threads_intel' [06:35, 02:46](992 MB) +PASS -- TEST 'regional_noquilt_intel' [06:47, 04:28](1179 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:50, 04:37](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 04:51](851 MB) +PASS -- TEST 'regional_wofs_intel' [08:39, 06:07](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [16:10, 13:55] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:05, 07:11](1003 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:08, 03:52](1147 MB) +PASS -- TEST 'rap_decomp_intel' [11:56, 07:29](1004 MB) +PASS -- TEST 'rap_2threads_intel' [10:08, 06:08](1084 MB) +PASS -- TEST 'rap_restart_intel' [05:54, 03:29](871 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:56, 07:12](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:59, 07:09](1004 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:04, 04:53](871 MB) +PASS -- TEST 'hrrr_control_intel' [05:56, 03:50](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 03:55](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:01, 03:03](1074 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:33, 01:55](827 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:56, 06:48](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 08:14](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 07:58](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [15:11, 13:02] +PASS -- TEST 'control_csawmg_intel' [09:38, 06:37](958 MB) +PASS -- TEST 'control_ras_intel' [05:25, 03:18](653 MB) + +PASS -- COMPILE 'wam_intel' [15:11, 13:29] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:03, 12:12](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:17, 13:14] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:04, 03:13](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [06:39, 04:41](846 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:12, 14:35] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:49, 03:07](1588 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 03:05](1596 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:19](797 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:31, 03:00](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:17](1099 MB) +PASS -- TEST 'control_ras_debug_intel' [04:29, 02:57](804 MB) +PASS -- TEST 'control_diag_debug_intel' [04:44, 02:52](1659 MB) +PASS -- TEST 'control_debug_p8_intel' [05:40, 03:09](1883 MB) +PASS -- TEST 'regional_debug_intel' [18:34, 16:52](899 MB) +PASS -- TEST 'rap_control_debug_intel' [06:30, 04:56](1175 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:30, 05:05](1172 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 04:58](1179 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:29, 05:06](1179 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:34, 04:59](1176 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:21](1260 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 05:04](1175 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 05:05](1176 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:32, 05:07](1179 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:33, 05:11](1176 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:30, 04:52](1177 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 05:09](1175 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:31, 07:49](1174 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:31, 05:06](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:46](1182 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:27, 04:58](1178 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:00, 08:21](1181 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:14, 10:23] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:57, 13:36](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 12:48] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:04, 03:30](1014 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:59, 06:03](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:57, 03:32](879 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:56, 05:12](935 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:00, 02:40](926 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:53, 03:32](878 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:54, 04:33](776 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:34, 01:46](760 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 12:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:59, 02:29](1084 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:56, 00:55](1065 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:57, 01:32](961 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 13:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:01, 04:27](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 10:19] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:30, 05:04](1052 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:30, 04:50](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [18:12, 14:24](1133 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:08, 14:21](805 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:00, 08:24](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:01, 14:34](1198 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:13, 10:20] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:29, 05:08](1078 MB) + +PASS -- COMPILE 'hafsw_intel' [19:11, 17:03] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:11, 04:49](690 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 03:55](1033 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:28, 07:25](725 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:16, 11:22](759 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:24, 12:28](778 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:12, 05:05](459 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:30, 06:12](479 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:11, 02:26](366 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:37, 06:51](440 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:55, 03:34](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:09, 03:15](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:05, 04:03](557 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:34, 01:15](396 MB) +PASS -- TEST 'gnv1_nested_intel' [12:58, 05:05](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:12, 12:06] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:26, 12:36](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:11, 16:22] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:10, 07:05](601 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:12, 07:16](779 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:13, 16:50] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:34, 05:24](776 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:17, 15:23] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:16, 05:51](719 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:16, 06:06](703 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:12, 20:08](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:26] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:28, 02:33](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 01:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 02:24](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:27, 02:28](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:27, 02:32](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:27, 02:34](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:26, 02:33](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:26, 02:25](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:02, 06:04](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:01, 05:53](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:33](751 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 04:34](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:31](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:14, 08:17] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:27, 05:24](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 12:35] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:25, 02:35](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:27] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:50, 01:35](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:43, 01:08](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:42, 00:48](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 14:19] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:18, 04:01](1917 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:15, 04:01](1897 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 13:48] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:48, 06:48](1880 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:39, 07:01](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 03:35](1036 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:11, 10:23] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:29, 06:23](1919 MB) + +PASS -- COMPILE 'atmw_intel' [15:13, 13:52] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:04, 02:10](1888 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 13:07] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:10, 06:03](3121 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:07, 07:09](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:06, 06:39](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:14, 09:44] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:19, 18:23](4449 MB) SYNOPSIS: -Starting Date/Time: 20240830 15:46:47 -Ending Date/Time: 20240830 17:31:54 -Total Time: 01h:46m:26s +Starting Date/Time: 20240905 02:47:02 +Ending Date/Time: 20240905 04:36:54 +Total Time: 01h:50m:41s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 742dd3d6ee..f9fb19a0a6 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,18 +1,18 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -1d8f4c649b384af7bfb16a49544e0877ee14ae1b +8fb13929a4f74a9181c8d3f619893aaf6e507bc5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -24,375 +24,375 @@ 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240830 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2393941 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_439415 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 12:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:35, 05:50](3322 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:03, 17:25](1944 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:29, 18:14](2143 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:19, 08:22](1249 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:02, 19:36](1867 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:12, 16:48] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:47, 17:10](1935 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:12, 06:21] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:01, 23:19](1936 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 12:49] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:33, 06:02](3321 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:41, 06:03](3333 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:25, 03:48](3240 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:29, 06:07](3358 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:19, 03:46](3284 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:29, 06:12](3634 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:32, 06:04](3310 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:33, 04:58](3196 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:38, 06:12](3357 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:24, 10:30](3534 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:58, 06:33](3574 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:13, 09:26](4300 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:08, 05:59](4387 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:32, 05:33](3321 MB) - -PASS -- COMPILE 's2sw_intel' [14:12, 12:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:26, 05:10](1992 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:31, 04:32](2056 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:12, 06:09] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:09, 09:02](3365 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:12, 06:01] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:21, 05:55](2012 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:33] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:22](2046 MB) - -PASS -- COMPILE 's2s_intel' [13:13, 11:41] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:45, 09:19](3017 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:47, 02:41](3054 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:33](2485 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:13, 16:53] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:29, 06:17](3329 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:37] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:09, 17:36](2008 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 08:25](1265 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:00, 20:05](1917 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 06:05] ( 1558 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:16, 26:01](1968 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:31, 03:20](706 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:57, 02:58](1596 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:03, 03:07](1612 MB) -PASS -- TEST 'control_latlon_intel' [04:55, 02:56](1606 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:05, 02:59](1604 MB) -PASS -- TEST 'control_c48_intel' [09:59, 07:34](1735 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 08:16](856 MB) -PASS -- TEST 'control_c192_intel' [13:18, 10:45](1732 MB) -PASS -- TEST 'control_c384_intel' [14:18, 10:38](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [11:55, 07:58](1377 MB) -PASS -- TEST 'control_stochy_intel' [03:27, 01:56](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:00](506 MB) -PASS -- TEST 'control_lndp_intel' [03:27, 02:00](656 MB) -PASS -- TEST 'control_iovr4_intel' [04:30, 02:29](656 MB) -PASS -- TEST 'control_iovr5_intel' [04:31, 02:29](658 MB) -PASS -- TEST 'control_p8_intel' [06:10, 03:08](1895 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:15, 03:09](1888 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:07, 02:58](1895 MB) -PASS -- TEST 'control_restart_p8_intel' [03:47, 01:47](1128 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:09, 03:05](1892 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:58, 01:46](1168 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:51, 03:09](1875 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:49, 02:55](1961 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:44, 05:25](1893 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 04:06](1937 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:57, 03:34](1858 MB) -PASS -- TEST 'merra2_thompson_intel' [05:53, 03:27](1893 MB) -PASS -- TEST 'regional_control_intel' [07:41, 05:18](1110 MB) -PASS -- TEST 'regional_restart_intel' [04:41, 03:03](1085 MB) -PASS -- TEST 'regional_decomp_intel' [07:39, 05:39](1092 MB) -PASS -- TEST 'regional_2threads_intel' [05:43, 03:24](1087 MB) -PASS -- TEST 'regional_noquilt_intel' [07:43, 05:17](1390 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:18](1100 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:25](1097 MB) -PASS -- TEST 'regional_wofs_intel' [08:39, 06:59](1908 MB) - -PASS -- COMPILE 'rrfs_intel' [12:13, 10:16] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:43, 07:49](1105 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 04:10](1250 MB) -PASS -- TEST 'rap_decomp_intel' [10:41, 08:12](1036 MB) -PASS -- TEST 'rap_2threads_intel' [09:39, 07:54](1172 MB) -PASS -- TEST 'rap_restart_intel' [05:45, 04:06](1097 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:40, 07:48](1099 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:38, 08:12](1035 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:49, 05:57](1125 MB) -PASS -- TEST 'hrrr_control_intel' [05:40, 04:00](1042 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:38, 04:07](1025 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:37, 03:42](1111 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:11](997 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:51, 07:42](1096 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:25](1987 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:33, 09:13](2046 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 09:55] -PASS -- TEST 'control_csawmg_intel' [08:38, 06:46](1020 MB) -PASS -- TEST 'control_ras_intel' [05:26, 03:22](742 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:12, 04:17] -PASS -- TEST 'control_csawmg_gnu' [10:41, 08:30](740 MB) - -PASS -- COMPILE 'wam_intel' [12:12, 10:14] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:48, 11:23](1650 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:12] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:51, 02:46](1884 MB) -PASS -- TEST 'regional_control_faster_intel' [07:43, 05:09](1066 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:33] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:40](1627 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:48, 02:39](1624 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:11](834 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:52](828 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:19](1136 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 02:53](839 MB) -PASS -- TEST 'control_diag_debug_intel' [04:44, 02:49](1681 MB) -PASS -- TEST 'control_debug_p8_intel' [04:42, 03:00](1921 MB) -PASS -- TEST 'regional_debug_intel' [19:38, 17:50](1103 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 04:59](1214 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:27, 05:05](1206 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 05:00](1211 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:01](1214 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:26, 06:46](1227 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:07](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:26, 04:57](1217 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:04](1220 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:27, 05:08](1231 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:27, 05:06](1216 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:55](1214 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 05:10](1211 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 08:18](1212 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:27, 04:57](1215 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:26, 06:15](1219 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:27, 05:00](1218 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:48](1220 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 04:12] -PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:20](724 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:13, 04:39] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:50, 13:38](1684 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 09:48] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:05, 03:52](1130 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:30](1025 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:39, 03:31](991 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:34, 06:09](1087 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:10](962 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:30, 03:37](933 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:49, 04:52](1040 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 01:53](937 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:13, 09:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:55, 02:06](1194 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:44, 00:52](1111 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:13](1105 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 09:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:11](992 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:46] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:49](1092 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:54](1087 MB) -PASS -- TEST 'conus13km_debug_intel' [22:51, 20:25](1236 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:50](935 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:50, 08:28](1155 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 15:00](1308 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 04:45] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 05:04](1131 MB) - -PASS -- COMPILE 'hafsw_intel' [13:13, 11:45] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:17](723 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:41, 06:12](1098 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:33, 07:03](817 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:19, 13:52](846 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:40, 15:32](874 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:02, 05:34](488 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:26, 06:46](504 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:43, 02:40](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:30, 07:22](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 03:48](491 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:57, 03:39](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:54, 04:12](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:11](400 MB) -PASS -- TEST 'gnv1_nested_intel' [07:32, 04:20](1746 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:12, 05:13] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:00, 13:03](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:12, 11:15] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:08, 08:50](647 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:09, 08:59](740 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:13, 11:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:30, 06:32](726 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 10:56] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:32](817 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:14, 06:33](801 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:37](1216 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:41] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:41](1165 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:38](1117 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:41](1035 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:41](1032 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:42](1036 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:43](1164 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:47](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:35](1039 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:25, 06:11](1084 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 06:29](1045 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:18, 03:09](1146 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 04:32](2494 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 03:59](2456 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:38] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:21](1073 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:27] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:42](1166 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:04] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:46](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:50](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:33](328 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:49] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:04, 03:40](1980 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:32] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:59, 03:34](1965 MB) - -PASS -- COMPILE 'atml_intel' [12:12, 10:57] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:04, 04:33](1845 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:00, 04:20](1861 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 02:25](1081 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 06:00] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:59, 05:48](1871 MB) - -PASS -- COMPILE 'atmw_intel' [12:12, 10:38] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:55](1905 MB) - -PASS -- COMPILE 'atmaero_intel' [12:12, 10:22] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:02, 04:09](3197 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:52](3105 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:53](3118 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:53] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:12, 04:33] -PASS -- TEST 'control_c48_gnu' [13:40, 11:17](1509 MB) -PASS -- TEST 'control_stochy_gnu' [05:24, 03:25](496 MB) -PASS -- TEST 'control_ras_gnu' [06:24, 04:42](504 MB) -PASS -- TEST 'control_p8_gnu' [06:55, 04:47](1451 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:52, 04:38](1466 MB) -PASS -- TEST 'control_flake_gnu' [12:29, 10:23](539 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:11] -PASS -- TEST 'rap_control_gnu' [12:34, 10:58](842 MB) -PASS -- TEST 'rap_decomp_gnu' [12:32, 11:10](809 MB) -PASS -- TEST 'rap_2threads_gnu' [11:37, 09:50](923 MB) -PASS -- TEST 'rap_restart_gnu' [07:45, 05:31](577 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:42, 10:45](814 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:37, 12:38](813 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:46, 08:03](579 MB) -PASS -- TEST 'hrrr_control_gnu' [07:34, 05:34](812 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:35, 05:36](827 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:38, 05:04](910 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:39, 05:36](844 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:30, 02:52](565 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:32, 02:48](656 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:46, 10:40](809 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:32] -PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:37](1273 MB) -PASS -- TEST 'regional_debug_gnu' [13:41, 11:46](755 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:41](823 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:26, 02:35](820 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [05:25, 03:21](826 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:24, 02:37](823 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:39, 02:56](905 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:28, 04:09](815 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:25, 02:41](823 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:36](820 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:25, 01:35](460 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:24, 01:46](452 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:42, 01:46](1440 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:24, 02:37](822 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:25, 02:51](825 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:40, 04:21](830 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:12, 02:25] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:10] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:39, 09:20](710 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:38, 04:57](709 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:33, 08:27](750 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:30, 04:30](747 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:32, 05:03](707 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:43, 06:57](555 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:31, 02:32](536 MB) -PASS -- TEST 'conus13km_control_gnu' [05:56, 03:09](873 MB) -PASS -- TEST 'conus13km_2threads_gnu' [08:48, 06:17](877 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:48, 01:52](565 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:12, 18:48] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:08, 07:25](3304 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:12, 17:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:00, 17:54](1936 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:21, 18:45](2141 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:35](1237 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 19:52](1855 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:12, 16:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:48, 17:24](1967 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:13, 12:55] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:03, 26:07](1930 MB) + +PASS -- COMPILE 's2swa_intel' [23:12, 19:56] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:23, 06:15](3360 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:32, 06:58](3329 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:25, 03:58](3264 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:19, 06:38](3342 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:40, 03:42](3284 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:16, 08:44](3651 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:16, 06:33](3332 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:23, 05:43](3201 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:34, 07:26](3322 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:16, 11:30](3543 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:04, 06:56](3623 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:31, 10:48](4309 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:52, 06:35](4393 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:22, 06:04](3331 MB) + +PASS -- COMPILE 's2sw_intel' [21:12, 19:27] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:16, 05:42](1984 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:15, 05:15](2058 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 06:51] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:07, 09:01](3399 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:12, 05:56] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:07, 06:20](2011 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [21:14, 18:40] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:48](2054 MB) + +PASS -- COMPILE 's2s_intel' [20:12, 17:49] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:55, 10:09](3053 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 03:22](3043 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:51, 02:00](2477 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:54] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:17, 06:07](3343 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:54] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:10, 18:28](2000 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 08:41](1262 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:09, 20:36](1923 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:46] ( 1558 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:03, 26:34](1945 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:26, 04:11](702 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:48, 03:22](1589 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:51, 03:24](1599 MB) +PASS -- TEST 'control_latlon_intel' [05:44, 03:20](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:51, 03:21](1602 MB) +PASS -- TEST 'control_c48_intel' [09:50, 07:40](1727 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:33](859 MB) +PASS -- TEST 'control_c192_intel' [14:04, 11:11](1747 MB) +PASS -- TEST 'control_c384_intel' [15:07, 11:42](1961 MB) +PASS -- TEST 'control_c384gdas_intel' [13:50, 09:03](1372 MB) +PASS -- TEST 'control_stochy_intel' [03:25, 01:53](651 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:06](512 MB) +PASS -- TEST 'control_lndp_intel' [03:26, 01:42](654 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:48](657 MB) +PASS -- TEST 'control_iovr5_intel' [05:23, 03:22](658 MB) +PASS -- TEST 'control_p8_intel' [05:55, 03:23](1861 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:02, 03:21](1894 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:58, 03:10](1896 MB) +PASS -- TEST 'control_restart_p8_intel' [03:46, 01:49](1104 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:54, 03:14](1869 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:59, 01:42](1142 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:49, 03:17](1852 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:49, 02:58](1982 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:37](1887 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:51, 04:08](1952 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:52, 03:13](1907 MB) +PASS -- TEST 'merra2_thompson_intel' [05:51, 03:28](1895 MB) +PASS -- TEST 'regional_control_intel' [07:37, 05:29](1088 MB) +PASS -- TEST 'regional_restart_intel' [04:37, 02:59](1087 MB) +PASS -- TEST 'regional_decomp_intel' [07:34, 05:59](1088 MB) +PASS -- TEST 'regional_2threads_intel' [05:34, 03:37](1080 MB) +PASS -- TEST 'regional_noquilt_intel' [07:41, 05:23](1394 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:41, 05:22](1097 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:30](1086 MB) +PASS -- TEST 'regional_wofs_intel' [08:35, 06:58](1905 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:14] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:45, 08:00](1108 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:19, 04:16](1250 MB) +PASS -- TEST 'rap_decomp_intel' [10:37, 08:33](1045 MB) +PASS -- TEST 'rap_2threads_intel' [09:33, 07:34](1169 MB) +PASS -- TEST 'rap_restart_intel' [06:53, 04:14](1089 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:40, 08:00](1095 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:39, 08:15](1037 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:51, 06:25](1121 MB) +PASS -- TEST 'hrrr_control_intel' [06:46, 04:04](1038 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:37, 04:16](1033 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 03:45](1104 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:15](998 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:43, 08:12](1089 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:35](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:14](2069 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:50] +PASS -- TEST 'control_csawmg_intel' [08:39, 06:18](1020 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:24](734 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:24] +PASS -- TEST 'control_csawmg_gnu' [11:37, 09:36](755 MB) + +PASS -- COMPILE 'wam_intel' [13:12, 11:27] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:51, 11:34](1678 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 11:17] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:58, 02:47](1878 MB) +PASS -- TEST 'regional_control_faster_intel' [06:38, 05:04](1080 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:52] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:44, 02:45](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:39](1626 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:19](819 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:48](832 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:38](1135 MB) +PASS -- TEST 'control_ras_debug_intel' [05:24, 03:10](838 MB) +PASS -- TEST 'control_diag_debug_intel' [04:48, 02:56](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [05:42, 03:14](1919 MB) +PASS -- TEST 'regional_debug_intel' [20:40, 18:20](1096 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 04:59](1222 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:55](1209 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 05:14](1217 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 05:02](1215 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 05:01](1218 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:42, 05:18](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:33](1211 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:07](1216 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:25, 05:11](1216 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:13](1218 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:58](1216 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 05:45](1207 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:21](1206 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 05:07](1205 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:23, 06:44](1210 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:25, 05:00](1219 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:44, 08:42](1220 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:12, 07:23] +PASS -- TEST 'control_csawmg_debug_gnu' [04:35, 02:21](725 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:12, 06:10] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:47, 13:43](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 04:31](1119 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:41, 07:01](1066 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:32](982 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 06:36](1082 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:26](967 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 04:03](936 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:41, 05:17](1036 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:55](932 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:00, 02:21](1193 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:01](1116 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:17](1102 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:25](982 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:11] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 05:01](1097 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 05:06](1087 MB) +PASS -- TEST 'conus13km_debug_intel' [16:56, 15:00](1236 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 14:56](923 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:47, 08:44](1165 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:45, 16:51](1278 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:57] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 05:06](1140 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 12:31] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:25, 05:21](725 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 07:05](1106 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:32, 07:26](848 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:18, 15:06](836 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:31, 16:12](872 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:12, 07:00](493 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:28, 07:42](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 02:54](370 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:31, 08:40](471 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:54, 05:01](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:56, 04:46](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:53, 05:34](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:19](401 MB) +PASS -- TEST 'gnv1_nested_intel' [07:36, 04:31](1753 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:10, 05:46] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:51, 13:20](596 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 12:05] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:02, 09:42](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:08, 09:37](700 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:55] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:37, 07:00](726 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 11:02] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:19, 07:34](810 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:19, 07:21](797 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:06, 16:53](1217 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:44] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:46](1171 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:41](1113 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:42](1033 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:56](1028 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:50](1024 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:46](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:41](1166 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:33](1033 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:31, 06:20](1074 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 06:36](1059 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:49](1170 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:22, 03:53](2503 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 03:59](2485 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:28] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:21, 06:24](1097 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:44] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:42](1159 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:24] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:51](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:54](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:35](321 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:40] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:10, 03:58](1963 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:22] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:00, 03:51](1957 MB) + +PASS -- COMPILE 'atml_intel' [13:12, 11:15] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:09, 04:39](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:01, 04:39](1868 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:29, 02:23](1096 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:49] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:57, 06:05](1885 MB) + +PASS -- COMPILE 'atmw_intel' [12:12, 10:53] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 02:00](1913 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 11:07] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:58, 04:21](3204 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:59](3095 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 04:59](3109 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:55] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:13, 04:32] +PASS -- TEST 'control_c48_gnu' [13:39, 11:18](1511 MB) +PASS -- TEST 'control_stochy_gnu' [05:21, 03:27](497 MB) +PASS -- TEST 'control_ras_gnu' [06:22, 04:52](502 MB) +PASS -- TEST 'control_p8_gnu' [06:56, 04:52](1454 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:51, 04:47](1457 MB) +PASS -- TEST 'control_flake_gnu' [12:24, 10:40](539 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:12, 04:36] +PASS -- TEST 'rap_control_gnu' [12:39, 11:02](813 MB) +PASS -- TEST 'rap_decomp_gnu' [14:34, 12:48](811 MB) +PASS -- TEST 'rap_2threads_gnu' [13:33, 11:57](924 MB) +PASS -- TEST 'rap_restart_gnu' [07:43, 05:33](579 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [14:34, 12:28](818 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 11:49](842 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:48, 08:11](582 MB) +PASS -- TEST 'hrrr_control_gnu' [07:41, 05:41](818 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:45, 05:42](801 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:44, 05:06](915 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:48, 05:54](847 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:47, 03:09](566 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:51, 02:56](659 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:45, 10:44](809 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:39] +PASS -- TEST 'control_diag_debug_gnu' [03:44, 01:34](1275 MB) +PASS -- TEST 'regional_debug_gnu' [15:36, 13:38](761 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:38](830 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:25, 02:37](823 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:37](827 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:47](826 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:14, 02:52](910 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:24, 04:45](855 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:28, 02:40](825 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:30, 02:45](819 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:33](460 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:24, 01:42](452 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:43, 01:50](1426 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:26, 02:52](827 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [05:21, 03:30](826 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:37, 04:58](832 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:41] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:09] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:29, 10:51](709 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:39, 05:44](706 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:37, 08:57](752 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:38, 05:47](743 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:32, 06:22](707 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [11:40, 07:22](556 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [09:28, 02:39](540 MB) +PASS -- TEST 'conus13km_control_gnu' [06:57, 03:56](876 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:44, 05:50](878 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [09:45, 02:00](558 MB) PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:46] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:41, 05:44](724 MB) +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:41, 06:05](732 MB) -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 06:40] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:24, 02:31](715 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:25, 02:30](715 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:52, 07:01](893 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:48, 07:01](583 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:46, 07:48](892 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:45, 06:54](961 MB) +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 06:43] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:25, 03:13](716 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:25, 03:38](717 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:54, 07:15](885 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [11:50, 07:35](573 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:45, 08:06](898 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:46, 07:01](959 MB) -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:37] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:27, 02:35](738 MB) +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:49] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [07:25, 02:37](736 MB) -PASS -- COMPILE 's2swa_gnu' [18:12, 16:31] +PASS -- COMPILE 's2swa_gnu' [18:12, 16:49] PASS -- COMPILE 's2s_gnu' [17:12, 16:03] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:08, 06:53](1528 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:08, 06:53](1519 MB) -PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:12] +PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:31] -PASS -- COMPILE 's2sw_pdlib_gnu' [18:13, 16:21] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:04, 19:37](1460 MB) +PASS -- COMPILE 's2sw_pdlib_gnu' [17:13, 15:58] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [30:00, 25:19](1461 MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:14, 03:05] +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:12, 03:21] -PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 15:26] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:01](692 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:32] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:00](691 MB) SYNOPSIS: -Starting Date/Time: 20240830 19:44:52 -Ending Date/Time: 20240830 21:25:52 -Total Time: 01h:41m:18s +Starting Date/Time: 20240905 16:15:04 +Ending Date/Time: 20240905 18:13:40 +Total Time: 01h:59m:34s Compiles Completed: 57/57 Tests Completed: 243/243 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 4401fb7d35..5b0445a2c8 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: -481792ad8644aa9b8e70fbb3ecc0b5c05fd9a28d +4dee8d49d4f976f5af7b0fe91cab060c7814eac0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,376 +35,375 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240830 -COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1046366 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1802002 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [13:10, 11:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:11, 08:33](2123 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:10, 17:03] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:13, 13:21](1990 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:12, 15:17](2316 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:56, 07:27](1307 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:15, 15:09](1925 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:10, 18:29] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:39, 13:05](1981 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 05:23] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:17, 21:29](1974 MB) - -PASS -- COMPILE 's2swa_intel' [13:10, 11:40] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:00, 08:43](2188 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:11, 08:23](2171 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:51, 05:17](1958 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:02, 08:21](2203 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:08, 05:44](1745 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:15, 10:25](2544 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:59, 08:42](2162 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:09, 07:34](2092 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:11, 08:23](2177 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [23:19, 16:22](2996 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:22, 06:35](2923 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:05, 10:36](3834 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:22, 06:32](3630 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:04, 06:11](2149 MB) - -PASS -- COMPILE 's2sw_intel' [13:10, 11:37] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:00, 07:51](2023 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:12, 04:50](2080 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:10, 06:47] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:56, 09:15](2203 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:10, 06:10] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:50, 06:29](2047 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:10, 10:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:57, 04:59](2080 MB) - -PASS -- COMPILE 's2s_intel' [11:11, 10:06] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:45, 08:02](3048 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 02:39](3038 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:41, 01:21](2499 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:10, 12:19] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:04, 07:23](2168 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:10, 17:56] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:00, 14:20](2042 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:27, 08:46](1402 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:13, 16:13](1951 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:39] ( 1558 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:01, 23:01](2017 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:10, 09:22] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:21, 03:36](714 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:31, 03:06](1617 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:35, 03:04](1628 MB) -PASS -- TEST 'control_latlon_intel' [04:26, 03:02](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:41, 03:04](1605 MB) -PASS -- TEST 'control_c48_intel' [08:32, 07:01](1707 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:32, 06:02](844 MB) -PASS -- TEST 'control_c192_intel' [14:49, 12:20](1746 MB) -PASS -- TEST 'control_c384_intel' [17:44, 13:02](2001 MB) -PASS -- TEST 'control_c384gdas_intel' [14:53, 10:10](1509 MB) -PASS -- TEST 'control_stochy_intel' [03:29, 01:43](668 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:50, 01:11](549 MB) -PASS -- TEST 'control_lndp_intel' [03:21, 01:38](674 MB) -PASS -- TEST 'control_iovr4_intel' [05:23, 02:44](664 MB) -PASS -- TEST 'control_iovr5_intel' [05:21, 02:45](666 MB) -PASS -- TEST 'control_p8_intel' [07:55, 04:52](1889 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:51, 04:26](1904 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:49, 04:26](1915 MB) -PASS -- TEST 'control_restart_p8_intel' [04:41, 02:31](1161 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:41, 04:06](1899 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:42](1195 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:37, 04:57](1884 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:41, 04:02](1987 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:39, 07:20](1905 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:58, 05:49](1978 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:53, 04:09](1905 MB) -PASS -- TEST 'merra2_thompson_intel' [08:58, 04:50](1907 MB) -PASS -- TEST 'regional_control_intel' [10:26, 06:29](1192 MB) -PASS -- TEST 'regional_restart_intel' [04:28, 02:49](1168 MB) -PASS -- TEST 'regional_decomp_intel' [09:28, 06:25](1186 MB) -PASS -- TEST 'regional_2threads_intel' [06:28, 04:05](1164 MB) -PASS -- TEST 'regional_noquilt_intel' [07:55, 05:18](1517 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:32, 05:37](1194 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:34, 05:46](1205 MB) -PASS -- TEST 'regional_wofs_intel' [10:30, 05:44](2067 MB) - -PASS -- COMPILE 'rrfs_intel' [10:10, 08:46] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:41, 06:45](1203 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:50, 03:43](1363 MB) -PASS -- TEST 'rap_decomp_intel' [08:42, 06:57](1149 MB) -PASS -- TEST 'rap_2threads_intel' [08:41, 06:15](1367 MB) -PASS -- TEST 'rap_restart_intel' [08:07, 03:28](1127 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:40](1198 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:43, 06:56](1148 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:04, 05:05](1187 MB) -PASS -- TEST 'hrrr_control_intel' [07:41, 03:28](1096 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:53, 03:37](1048 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:41, 03:10](1110 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:30, 01:52](1035 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:32](1192 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 07:43](2007 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 07:36](2167 MB) - -PASS -- COMPILE 'csawmg_intel' [14:10, 08:48] -PASS -- TEST 'control_csawmg_intel' [08:30, 06:12](1045 MB) -PASS -- TEST 'control_ras_intel' [04:18, 02:53](824 MB) - -PASS -- COMPILE 'csawmg_gnu' [10:10, 04:41] -PASS -- TEST 'control_csawmg_gnu' [09:32, 07:59](1063 MB) - -PASS -- COMPILE 'wam_intel' [15:10, 09:01] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:36, 09:44](1668 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 08:31] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:52, 02:42](1903 MB) -PASS -- TEST 'regional_control_faster_intel' [06:27, 04:17](1190 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 06:02] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:30, 02:38](1636 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:32, 02:33](1640 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:54](860 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:41](842 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:26, 04:42](1162 MB) -PASS -- TEST 'control_ras_debug_intel' [04:18, 02:45](853 MB) -PASS -- TEST 'control_diag_debug_intel' [04:38, 02:29](1696 MB) -PASS -- TEST 'control_debug_p8_intel' [05:32, 03:38](1937 MB) -PASS -- TEST 'regional_debug_intel' [19:28, 17:36](1146 MB) -PASS -- TEST 'rap_control_debug_intel' [06:19, 04:54](1234 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:52](1236 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:55](1232 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:43](1223 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:18, 04:56](1229 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:25, 05:05](1308 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 05:02](1229 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:18, 05:03](1240 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:22, 04:46](1229 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 04:56](1224 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:47, 04:46](1225 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 04:57](1233 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:18, 08:02](1226 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 04:56](1221 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 06:09](1229 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:38](1228 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:57, 08:17](1234 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:05] -PASS -- TEST 'control_csawmg_debug_gnu' [04:34, 02:52](1055 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 03:45] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 08:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:49, 04:15](1225 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:46, 07:41](1180 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:44](1071 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:31, 07:12](1289 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:52, 04:11](1032 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:57, 04:07](999 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:56, 05:57](1141 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:21, 02:01](967 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:10, 07:53] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:55, 02:05](1294 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:26, 01:16](1192 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:28, 01:23](1137 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:10, 09:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:38, 04:00](1082 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:27] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:22, 05:16](1108 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:21, 05:08](1111 MB) -PASS -- TEST 'conus13km_debug_intel' [17:34, 15:34](1354 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:37, 16:10](1001 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:27, 12:58](1246 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:29, 16:02](1411 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:23] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:18, 04:49](1172 MB) - -PASS -- COMPILE 'hafsw_intel' [12:10, 10:25] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:14, 06:02](862 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 05:41](1255 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:49, 06:51](930 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:14, 14:29](974 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:18, 15:59](991 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:49, 05:31](596 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:42, 08:19](605 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:49](438 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:50, 09:53](547 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:53, 04:38](598 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:57, 04:29](609 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:14, 05:50](665 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:09](449 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 04:21] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:43, 11:34](632 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:10, 09:27] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:02, 15:46](757 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:58, 16:19](824 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 09:38] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:27, 10:21](822 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:10, 10:12] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:16, 05:54](917 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 05:56](907 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:47, 16:57](1343 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 06:16] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 02:13](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:27, 01:32](1121 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:09](1016 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:10](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:13](1023 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 02:25](1149 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:20](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:19](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:00, 05:11](1177 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:55, 05:11](1162 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:23](1152 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:20, 03:26](2394 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:18](2342 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 04:09] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:16](1083 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 06:24] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:17](1144 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 01:16] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:30, 02:00](330 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:28, 01:50](573 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:54](570 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:10, 09:00] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:17, 04:58](2027 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:45] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:10, 04:23](1984 MB) - -PASS -- COMPILE 'atml_intel' [12:10, 09:44] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:33, 07:41](1887 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:01, 08:45](1897 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:53, 05:13](1150 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 04:38] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:04, 06:46](1931 MB) - -PASS -- COMPILE 'atmw_intel' [11:11, 09:26] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:51, 02:51](1945 MB) - -PASS -- COMPILE 'atmaero_intel' [10:11, 08:35] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:52, 05:24](2018 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:32](1811 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:50, 04:29](1812 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:44] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:30, 16:56](4575 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:50] -PASS -- TEST 'control_c48_gnu' [11:36, 10:06](1530 MB) -PASS -- TEST 'control_stochy_gnu' [05:22, 02:43](725 MB) -PASS -- TEST 'control_ras_gnu' [06:26, 04:33](731 MB) -PASS -- TEST 'control_p8_gnu' [07:03, 04:39](1724 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:03, 04:54](1707 MB) -PASS -- TEST 'control_flake_gnu' [07:21, 05:38](806 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 04:39] -PASS -- TEST 'rap_control_gnu' [10:40, 08:52](1085 MB) -PASS -- TEST 'rap_decomp_gnu' [10:37, 08:16](1084 MB) -PASS -- TEST 'rap_2threads_gnu' [10:03, 07:52](1115 MB) -PASS -- TEST 'rap_restart_gnu' [07:00, 04:16](889 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:49, 08:23](1081 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:37, 08:32](1080 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:56, 06:19](887 MB) -PASS -- TEST 'hrrr_control_gnu' [07:00, 04:09](1070 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:57, 04:28](1136 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:55, 04:03](1032 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:50, 04:19](1072 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:27, 02:07](888 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:26, 02:06](935 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [10:51, 08:09](1088 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 05:56] -PASS -- TEST 'control_diag_debug_gnu' [03:35, 01:30](1624 MB) -PASS -- TEST 'regional_debug_gnu' [09:27, 07:40](1118 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:18, 02:35](1096 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:30, 02:31](1090 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:28](1097 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:23, 02:38](1095 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:31, 03:04](1269 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:27, 03:37](1096 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:35](1098 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:54](1093 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:21, 01:37](727 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:39](722 MB) -PASS -- TEST 'control_debug_p8_gnu' [04:39, 02:53](1693 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:22, 02:20](1098 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:44](1102 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:49, 03:56](1100 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:47] -PASS -- TEST 'control_wam_debug_gnu' [07:32, 05:32](1562 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:28] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:50, 08:17](962 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:53, 03:56](949 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:51, 07:06](965 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:48, 03:35](871 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:48, 04:01](948 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:40, 05:48](864 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:22, 02:09](865 MB) -PASS -- TEST 'conus13km_control_gnu' [04:42, 02:31](1266 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:30, 01:14](1175 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:29, 01:36](933 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:11, 11:02] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:44, 04:26](987 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:11, 09:35] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:57](978 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:07](965 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:34, 05:41](1291 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:43, 06:19](976 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:30, 03:48](1195 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 05:51](1352 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 07:08] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:07](1005 MB) - -PASS -- COMPILE 's2swa_gnu' [19:10, 16:46] - -PASS -- COMPILE 's2s_gnu' [18:10, 16:43] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:10, 05:37](2731 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [10:10, 08:49] - -PASS -- COMPILE 's2sw_pdlib_gnu' [19:11, 17:57] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:02, 26:01](2909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:10, 08:42] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:45, 12:57](3055 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [19:10, 17:52] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:16, 02:20](767 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [11:01, 11:01] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:24, 07:39](2123 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 17:06] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:11, 13:26](2002 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:01, 14:08](2318 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:26, 06:34](1303 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:48, 15:02](1915 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:59, 15:59] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:34, 13:11](1991 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 05:18] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:58, 22:02](1976 MB) + +PASS -- COMPILE 's2swa_intel' [11:00, 11:00] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:25, 07:37](2184 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:31, 07:51](2178 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:02, 04:22](1953 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:27, 07:50](2198 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:21, 04:24](1733 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:23, 08:52](2545 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:21, 07:42](2162 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:13, 06:40](2083 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:12, 07:38](2180 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:55, 15:31](2974 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:05, 05:54](2921 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:43, 09:47](3809 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:11, 06:09](3632 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:41, 05:09](2154 MB) + +PASS -- COMPILE 's2sw_intel' [10:30, 10:29] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:46, 07:15](2024 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:57, 04:11](2103 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:51, 05:51] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:16, 08:27](2212 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:33, 05:33] ( 1448 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:38, 05:59](2039 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:57, 09:57] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:44, 04:02](2085 MB) + +PASS -- COMPILE 's2s_intel' [09:53, 09:53] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:23, 06:56](3064 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:28, 02:00](3015 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:39, 01:09](2493 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:57, 11:57] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:16, 07:32](2178 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:07, 16:07] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:38, 13:52](2049 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:43, 06:48](1393 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:23, 15:58](1967 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 04:16] ( 1558 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:06, 22:35](2013 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:44, 11:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:50, 03:38](724 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:30, 03:07](1616 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:39, 03:14](1617 MB) +PASS -- TEST 'control_latlon_intel' [03:38, 03:03](1612 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:42, 03:14](1613 MB) +PASS -- TEST 'control_c48_intel' [07:30, 07:03](1699 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:11, 05:59](847 MB) +PASS -- TEST 'control_c192_intel' [12:37, 12:10](1764 MB) +PASS -- TEST 'control_c384_intel' [13:56, 12:46](1998 MB) +PASS -- TEST 'control_c384gdas_intel' [11:30, 09:55](1507 MB) +PASS -- TEST 'control_stochy_intel' [01:52, 01:46](675 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:21, 01:09](547 MB) +PASS -- TEST 'control_lndp_intel' [01:56, 01:46](665 MB) +PASS -- TEST 'control_iovr4_intel' [03:02, 02:46](667 MB) +PASS -- TEST 'control_iovr5_intel' [02:46, 02:37](668 MB) +PASS -- TEST 'control_p8_intel' [03:56, 03:18](1912 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:01, 03:17](1894 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 03:13](1910 MB) +PASS -- TEST 'control_restart_p8_intel' [02:21, 01:51](1167 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:52, 03:13](1895 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:16, 01:45](1220 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:02, 03:23](1894 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:36, 02:58](1988 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:58, 05:39](1898 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:59, 04:24](1974 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:22, 02:42](1904 MB) +PASS -- TEST 'merra2_thompson_intel' [04:30, 03:47](1915 MB) +PASS -- TEST 'regional_control_intel' [05:09, 04:50](1196 MB) +PASS -- TEST 'regional_restart_intel' [03:06, 02:53](1170 MB) +PASS -- TEST 'regional_decomp_intel' [05:40, 05:26](1178 MB) +PASS -- TEST 'regional_2threads_intel' [03:30, 03:15](1156 MB) +PASS -- TEST 'regional_noquilt_intel' [04:55, 04:41](1520 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:06, 04:48](1198 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:09, 04:55](1198 MB) +PASS -- TEST 'regional_wofs_intel' [06:11, 05:52](2100 MB) + +PASS -- COMPILE 'rrfs_intel' [08:32, 08:32] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:20, 06:43](1213 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:07, 03:27](1344 MB) +PASS -- TEST 'rap_decomp_intel' [07:27, 06:53](1116 MB) +PASS -- TEST 'rap_2threads_intel' [06:52, 06:17](1358 MB) +PASS -- TEST 'rap_restart_intel' [04:16, 03:30](1136 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:19, 06:43](1223 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:33, 06:59](1157 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:50, 05:03](1215 MB) +PASS -- TEST 'hrrr_control_intel' [04:11, 03:29](1068 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:14, 03:39](1042 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:49, 04:04](1106 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:13, 01:52](1022 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:14, 06:29](1215 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:59, 07:42](2005 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:40, 07:31](2180 MB) + +PASS -- COMPILE 'csawmg_intel' [08:16, 08:16] +PASS -- TEST 'control_csawmg_intel' [05:53, 05:36](1046 MB) +PASS -- TEST 'control_ras_intel' [03:06, 02:56](854 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:03, 04:03] +PASS -- TEST 'control_csawmg_gnu' [07:56, 07:34](1070 MB) + +PASS -- COMPILE 'wam_intel' [08:52, 08:51] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:32, 10:14](1669 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:59, 08:59] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:02, 02:25](1885 MB) +PASS -- TEST 'regional_control_faster_intel' [04:31, 04:16](1190 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:26, 06:26] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:52, 02:33](1629 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:53, 02:31](1639 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:00, 02:49](844 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:42, 02:31](850 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:12, 04:59](1155 MB) +PASS -- TEST 'control_ras_debug_intel' [02:42, 02:35](856 MB) +PASS -- TEST 'control_diag_debug_intel' [02:54, 02:36](1697 MB) +PASS -- TEST 'control_debug_p8_intel' [03:50, 03:25](1942 MB) +PASS -- TEST 'regional_debug_intel' [16:57, 16:36](1172 MB) +PASS -- TEST 'rap_control_debug_intel' [04:51, 04:39](1239 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:50, 04:36](1228 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:07, 04:53](1229 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:45, 04:35](1232 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:44, 04:37](1236 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:20, 05:01](1318 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:53, 04:46](1226 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:54, 04:48](1228 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:56, 04:36](1240 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:49, 04:40](1228 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:05, 04:54](1229 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:56, 04:48](1231 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:31, 08:24](1245 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:54, 04:46](1231 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:04, 05:57](1237 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:08, 04:49](1238 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:55, 08:37](1246 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:23, 04:23] +PASS -- TEST 'control_csawmg_debug_gnu' [03:08, 02:47](1048 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:05, 04:04] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:15, 08:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:40, 04:00](1217 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 07:17](1189 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:17, 03:32](1036 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 07:08](1284 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:06, 03:18](1037 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:34, 03:53](992 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:24, 05:47](1127 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:05, 01:58](996 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:28, 08:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:29, 02:03](1299 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:18, 00:56](1190 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:46, 01:13](1144 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:28, 10:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:11, 03:46](1085 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:42, 03:40] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:04, 04:57](1117 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 05:11](1115 MB) +PASS -- TEST 'conus13km_debug_intel' [16:16, 15:50](1362 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:25, 16:00](1008 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:04, 12:10](1256 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:56](1410 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:56, 03:55] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:12, 04:35](1159 MB) + +PASS -- COMPILE 'hafsw_intel' [09:51, 09:51] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:50, 05:42](862 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:47, 05:13](1252 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:33, 06:25](921 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 14:10](962 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:59, 15:53](996 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:05, 05:22](591 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:55, 06:52](607 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:03, 02:35](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:57, 07:45](547 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:41, 04:08](608 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:10, 03:36](603 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 05:19](666 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:40, 01:24](446 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:25, 04:25] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:28, 12:41](643 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:40, 09:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:25, 16:25](724 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:35, 16:40](794 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:53, 10:53] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:20, 10:03](822 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:01, 10:01] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:07, 07:09](917 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:14, 06:15](895 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:45, 17:08](1332 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:05, 06:05] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:20, 02:14](1155 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:21, 01:17](1096 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:10](1025 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:16, 02:11](1017 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:16, 02:10](1010 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:15, 02:12](1136 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:18, 02:10](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:19, 02:13](1010 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:09, 05:33](1177 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:30, 04:56](1156 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:10, 03:00](1142 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:08, 03:03](2454 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:09](2392 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:16, 04:16] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:37, 05:31](1084 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:40, 05:40] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:01, 02:56](1141 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:23, 01:23] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:19, 01:02](339 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:16, 01:04](571 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:48, 00:52](573 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:11, 09:11] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:13, 03:31](2019 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:31, 09:31] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:14, 03:19](1986 MB) + +PASS -- COMPILE 'atml_intel' [09:19, 09:19] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 06:33](1894 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:54, 08:01](1904 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 03:26](1124 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:20, 05:20] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:51, 06:55](1927 MB) + +PASS -- COMPILE 'atmw_intel' [09:25, 09:25] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:32, 01:44](1929 MB) + +PASS -- COMPILE 'atmaero_intel' [09:18, 09:18] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:21, 04:35](2026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:10, 04:25](1797 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:05, 04:30](1820 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:51, 03:51] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:21, 17:09](4618 MB) + +PASS -- COMPILE 'atm_gnu' [04:09, 04:09] +PASS -- TEST 'control_c48_gnu' [10:05, 09:38](1510 MB) +PASS -- TEST 'control_stochy_gnu' [02:45, 02:33](723 MB) +PASS -- TEST 'control_ras_gnu' [04:16, 04:02](729 MB) +PASS -- TEST 'control_p8_gnu' [04:56, 04:05](1721 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:20, 03:47](1727 MB) +PASS -- TEST 'control_flake_gnu' [04:52, 04:42](812 MB) + +PASS -- COMPILE 'rrfs_gnu' [09:08, 09:08] +PASS -- TEST 'rap_control_gnu' [09:04, 08:27](1081 MB) +PASS -- TEST 'rap_decomp_gnu' [09:01, 08:20](1084 MB) +PASS -- TEST 'rap_2threads_gnu' [08:01, 07:20](1136 MB) +PASS -- TEST 'rap_restart_gnu' [04:56, 04:10](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:06, 08:29](1084 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:36, 08:59](1081 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:33, 06:01](886 MB) +PASS -- TEST 'hrrr_control_gnu' [04:49, 04:10](1068 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:40, 04:07](1132 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:45, 04:00](1041 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:21, 04:27](1068 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:40, 02:17](885 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:39, 02:17](934 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:47, 08:02](1076 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:31, 11:31] +PASS -- TEST 'control_diag_debug_gnu' [01:35, 01:13](1623 MB) +PASS -- TEST 'regional_debug_gnu' [07:18, 07:00](1137 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:05](1096 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:11, 01:58](1088 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:25, 02:06](1100 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:11, 02:01](1093 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:27, 02:08](1269 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:20, 03:12](1097 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:08, 01:58](1097 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:05, 01:57](1091 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:24, 01:15](727 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:27, 01:20](724 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:47, 01:24](1715 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:09, 02:02](1094 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:08](1098 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:05, 03:30](1100 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:53, 02:53] +PASS -- TEST 'control_wam_debug_gnu' [05:49, 05:28](1567 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:48, 04:43] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:50, 08:09](961 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:57, 04:07](953 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:42, 07:03](966 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:25, 03:38](896 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:44, 03:59](946 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:21, 05:44](861 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:39, 02:17](860 MB) +PASS -- TEST 'conus13km_control_gnu' [03:12, 02:45](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:23, 01:04](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:48, 01:29](935 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:11, 09:11] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:42, 05:15](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:14, 06:14] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:02, 01:56](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:15, 02:02](973 MB) +PASS -- TEST 'conus13km_debug_gnu' [05:49, 05:30](1284 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:11, 05:48](960 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [03:37, 03:22](1193 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:11, 05:47](1353 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 07:10] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 02:03](1007 MB) + +PASS -- COMPILE 's2swa_gnu' [17:22, 17:21] + +PASS -- COMPILE 's2s_gnu' [16:17, 16:16] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:09, 05:20](3124 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:09, 04:09] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:59, 15:59] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:31, 25:49](3069 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:22, 04:22] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:54, 12:57](2926 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:47, 15:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:36, 02:29](769 MB) SYNOPSIS: -Starting Date/Time: 20240830 11:28:44 -Ending Date/Time: 20240830 13:18:29 -Total Time: 01h:50m:25s +Starting Date/Time: 20240904 10:36:24 +Ending Date/Time: 20240904 14:40:25 +Total Time: 04h:05m:00s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 8657a5917d..889708db55 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -1d8f4c649b384af7bfb16a49544e0877ee14ae1b +8fb13929a4f74a9181c8d3f619893aaf6e507bc5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,254 +35,254 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240830 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4150703 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2076954 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [45:17, 43:38] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:08, 06:57](2018 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:17, 49:14] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:05, 20:50](1893 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:11, 21:48](1994 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:10, 10:05](1119 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:01, 23:45](1859 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [52:17, 50:08] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:52, 20:15](1885 MB) - -PASS -- COMPILE 's2swa_intel' [45:17, 43:33] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:07, 07:31](2059 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:21, 07:28](2058 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:20, 04:19](1725 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:07, 07:37](2069 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:21, 04:23](1741 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:00, 07:10](2322 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:00, 07:31](2064 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:14, 06:21](2010 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:21, 07:30](2060 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:10, 07:05](2038 MB) - -PASS -- COMPILE 's2sw_intel' [42:16, 40:13] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:19, 05:48](1912 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:31, 05:32](1985 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:13] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:16, 10:28](2091 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:03] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:02, 07:18](1931 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [38:15, 36:32] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:14, 05:31](1969 MB) - -PASS -- COMPILE 's2s_intel' [38:16, 36:55] ( 1015 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:49, 12:00](3026 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:52, 03:25](3013 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:46, 01:56](2466 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:26, 32:49] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:40, 06:59](2055 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:18, 46:42] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:16, 20:52](1916 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:17, 10:01](1128 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:16, 24:05](1887 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:01] ( 1558 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:10, 32:56](1943 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:16, 37:44] ( 1 warnings 1126 remarks ) -PASS -- TEST 'control_flake_intel' [06:31, 04:26](647 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:06, 04:03](1545 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:08, 04:15](1550 MB) -PASS -- TEST 'control_latlon_intel' [06:03, 04:03](1547 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:11, 04:08](1548 MB) -PASS -- TEST 'control_c48_intel' [14:11, 11:58](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:16](826 MB) -PASS -- TEST 'control_c192_intel' [17:25, 14:07](1670 MB) -PASS -- TEST 'control_c384_intel' [21:18, 17:56](1792 MB) -PASS -- TEST 'control_c384gdas_intel' [18:09, 13:17](1005 MB) -PASS -- TEST 'control_stochy_intel' [04:29, 02:16](602 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:15](433 MB) -PASS -- TEST 'control_lndp_intel' [03:29, 02:04](604 MB) -PASS -- TEST 'control_iovr4_intel' [05:33, 03:23](599 MB) -PASS -- TEST 'control_iovr5_intel' [05:33, 03:23](596 MB) -PASS -- TEST 'control_p8_intel' [07:22, 04:17](1834 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:30, 04:16](1839 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:12, 04:07](1848 MB) -PASS -- TEST 'control_restart_p8_intel' [04:50, 02:14](1052 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:16, 04:09](1823 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 02:09](1074 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:13, 04:22](1828 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:20, 03:58](1922 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:06, 07:14](1841 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:20, 05:27](1898 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:17, 04:19](1842 MB) -PASS -- TEST 'merra2_thompson_intel' [07:13, 04:39](1841 MB) -PASS -- TEST 'regional_control_intel' [10:01, 07:18](1005 MB) -PASS -- TEST 'regional_restart_intel' [05:38, 03:49](1005 MB) -PASS -- TEST 'regional_decomp_intel' [10:01, 07:47](1001 MB) -PASS -- TEST 'regional_2threads_intel' [07:01, 04:39](994 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:06, 07:12](1007 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:00, 07:12](1019 MB) - -PASS -- COMPILE 'rrfs_intel' [38:15, 36:56] ( 3 warnings 1102 remarks ) -PASS -- TEST 'rap_control_intel' [12:42, 10:12](992 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:11, 05:34](1180 MB) -PASS -- TEST 'rap_decomp_intel' [12:42, 10:48](993 MB) -PASS -- TEST 'rap_2threads_intel' [11:50, 09:41](1077 MB) -PASS -- TEST 'rap_restart_intel' [07:48, 05:13](989 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:45, 10:07](992 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:45, 10:44](982 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:47, 07:31](1000 MB) -PASS -- TEST 'hrrr_control_intel' [07:44, 05:15](989 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:43, 05:25](984 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:49, 04:47](1054 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:45](923 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:53, 10:06](990 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:31, 12:25](1935 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:32, 12:07](1939 MB) - -PASS -- COMPILE 'csawmg_intel' [36:18, 34:14] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:40, 08:06](963 MB) -PASS -- TEST 'control_ras_intel' [06:25, 04:21](670 MB) - -PASS -- COMPILE 'wam_intel' [36:15, 34:22] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [16:55, 14:22](1615 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [38:15, 36:37] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:52, 03:38](1834 MB) -PASS -- TEST 'regional_control_faster_intel' [08:38, 06:33](1007 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:08] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:44, 03:19](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:50, 03:16](1579 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:55](781 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:27, 03:32](782 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:42, 05:26](1093 MB) -PASS -- TEST 'control_ras_debug_intel' [05:27, 03:25](786 MB) -PASS -- TEST 'control_diag_debug_intel' [06:49, 03:20](1639 MB) -PASS -- TEST 'control_debug_p8_intel' [06:48, 03:46](1871 MB) -PASS -- TEST 'regional_debug_intel' [24:49, 22:00](1050 MB) -PASS -- TEST 'rap_control_debug_intel' [08:30, 06:18](1167 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:31, 06:08](1167 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:30, 06:14](1165 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:30, 06:14](1164 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:30, 06:14](1169 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:43, 06:31](1257 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:30, 06:24](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:30, 06:23](1169 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:25, 06:09](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:27, 06:19](1168 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:25, 06:03](1172 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:24, 06:10](1170 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:02](1175 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 06:04](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 07:32](1170 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:09](1168 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:50, 10:44](1171 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:13] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:44, 16:39](1653 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:17, 30:35] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:09, 05:09](1048 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:40, 08:19](907 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:39, 04:19](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:46, 07:56](934 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 03:59](914 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:39, 04:36](861 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:43, 06:15](902 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:23](848 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:15, 31:53] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:48, 02:51](1105 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:38, 01:15](1051 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:34](1023 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:15, 31:01] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:47, 05:26](915 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:08] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:27, 06:04](1053 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 05:58](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [20:58, 18:43](1160 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:58, 18:48](872 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:45](1104 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:54, 18:48](1227 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:01] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 06:11](1088 MB) - -PASS -- COMPILE 'hafsw_intel' [40:15, 39:12] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:28, 06:48](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:40, 06:07](1068 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:41, 09:04](757 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:28, 16:05](788 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:47, 17:52](809 MB) -PASS -- TEST 'gnv1_nested_intel' [09:50, 06:24](1680 MB) - -PASS -- COMPILE 'hafs_all_intel' [37:16, 35:24] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:17, 08:29](761 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:20, 08:35](738 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:19] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:25, 03:35](1076 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:23](1046 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:25, 03:31](934 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:25, 03:34](933 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:34](930 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:36](1073 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:23, 03:22](1072 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:31](932 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:21, 07:42](897 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:22, 07:41](856 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:36](1078 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 05:04](2425 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:24, 05:25](2416 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 03:21] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:21, 08:02](1015 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:12, 08:15] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:15](1074 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:43] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:20](239 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:05](266 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:43](259 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:15, 35:43] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:12, 04:51](1914 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [36:15, 35:07] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:03, 04:36](1884 MB) - -PASS -- COMPILE 'atml_intel' [39:15, 37:52] ( 8 warnings 1167 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:17, 05:51](1867 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:16, 05:50](1863 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 03:14](1070 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:21] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:12, 07:16](1893 MB) - -PASS -- COMPILE 'atmw_intel' [38:16, 36:15] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:50, 02:19](1851 MB) - -PASS -- COMPILE 'atmaero_intel' [37:15, 35:16] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:59, 05:17](1943 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:58, 06:21](1712 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:47, 06:21](1725 MB) +PASS -- COMPILE 's2swa_32bit_intel' [50:35, 42:05] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:11, 07:06](2002 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [56:36, 48:30] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:08, 21:00](1910 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [43:20, 22:25](2017 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [30:13, 09:48](1126 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:24, 24:03](1857 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:36, 47:44] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [27:51, 20:47](1881 MB) + +PASS -- COMPILE 's2swa_intel' [50:35, 42:08] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:11, 07:34](2060 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:25, 07:37](2057 MB) +PASS -- TEST 'cpld_restart_p8_intel' [24:25, 04:19](1716 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:11, 07:40](2074 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [24:26, 04:24](1734 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:11, 07:18](2318 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:11, 07:42](2059 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [20:11, 06:27](2003 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:17, 07:36](2060 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [20:10, 07:14](2041 MB) + +PASS -- COMPILE 's2sw_intel' [48:33, 40:54] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [21:07, 06:06](1907 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:21, 05:49](1973 MB) + +PASS -- COMPILE 's2swa_debug_intel' [21:15, 07:50] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [31:17, 10:30](2092 MB) + +PASS -- COMPILE 's2sw_debug_intel' [19:13, 07:43] ( 1448 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [28:01, 07:22](1945 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [48:18, 36:34] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [18:13, 05:53](1983 MB) + +PASS -- COMPILE 's2s_intel' [43:18, 37:05] ( 1015 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [24:04, 12:14](3016 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [14:53, 03:41](3014 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:57, 01:59](2461 MB) + +PASS -- COMPILE 's2swa_faster_intel' [39:24, 33:20] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [26:44, 07:12](2066 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [07:20, 47:03] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:28, 20:51](1911 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [38:25, 10:07](1132 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [48:07, 24:02](1888 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [26:13, 06:04] ( 1558 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:19, 33:03](1938 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [52:15, 37:48] ( 1 warnings 1126 remarks ) +PASS -- TEST 'control_flake_intel' [42:33, 04:40](650 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [41:48, 04:03](1544 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [41:51, 04:25](1554 MB) +PASS -- TEST 'control_latlon_intel' [41:45, 04:06](1548 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:56, 04:10](1549 MB) +PASS -- TEST 'control_c48_intel' [50:00, 12:07](1701 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [48:45, 10:32](828 MB) +PASS -- TEST 'control_c192_intel' [52:14, 14:19](1667 MB) +PASS -- TEST 'control_c384_intel' [57:06, 18:09](1798 MB) +PASS -- TEST 'control_c384gdas_intel' [52:51, 13:31](1006 MB) +PASS -- TEST 'control_stochy_intel' [22:28, 02:08](610 MB) +PASS -- TEST 'control_stochy_restart_intel' [19:29, 01:16](434 MB) +PASS -- TEST 'control_lndp_intel' [40:32, 02:19](604 MB) +PASS -- TEST 'control_iovr4_intel' [18:30, 03:28](601 MB) +PASS -- TEST 'control_iovr5_intel' [23:31, 03:16](598 MB) +PASS -- TEST 'control_p8_intel' [42:06, 04:18](1841 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [23:05, 04:12](1833 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [22:55, 04:12](1841 MB) +PASS -- TEST 'control_restart_p8_intel' [30:50, 02:12](1061 MB) +PASS -- TEST 'control_noqr_p8_intel' [22:01, 04:06](1830 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [26:03, 02:16](1072 MB) +PASS -- TEST 'control_decomp_p8_intel' [24:55, 04:01](1829 MB) +PASS -- TEST 'control_2threads_p8_intel' [23:58, 03:42](1914 MB) +PASS -- TEST 'control_p8_lndp_intel' [42:51, 07:00](1836 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [47:05, 05:22](1890 MB) +PASS -- TEST 'control_p8_mynn_intel' [45:08, 04:06](1840 MB) +PASS -- TEST 'merra2_thompson_intel' [45:04, 04:31](1840 MB) +PASS -- TEST 'regional_control_intel' [33:47, 07:05](1012 MB) +PASS -- TEST 'regional_restart_intel' [20:37, 03:51](1009 MB) +PASS -- TEST 'regional_decomp_intel' [32:45, 07:29](1001 MB) +PASS -- TEST 'regional_2threads_intel' [29:44, 04:29](1008 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [32:51, 07:10](1006 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [30:40, 07:09](1004 MB) + +PASS -- COMPILE 'rrfs_intel' [48:19, 37:13] ( 3 warnings 1102 remarks ) +PASS -- TEST 'rap_control_intel' [26:43, 10:15](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:08, 05:43](1178 MB) +PASS -- TEST 'rap_decomp_intel' [26:43, 10:46](992 MB) +PASS -- TEST 'rap_2threads_intel' [25:47, 09:49](1077 MB) +PASS -- TEST 'rap_restart_intel' [30:00, 05:19](993 MB) +PASS -- TEST 'rap_sfcdiff_intel' [25:47, 10:12](994 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [26:43, 10:49](990 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [31:47, 07:37](993 MB) +PASS -- TEST 'hrrr_control_intel' [20:50, 05:16](990 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [21:47, 05:28](985 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [20:50, 04:54](1048 MB) +PASS -- TEST 'hrrr_control_restart_intel' [26:36, 02:52](922 MB) +PASS -- TEST 'rrfs_v1beta_intel' [25:55, 10:10](991 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [28:34, 12:36](1945 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:34, 12:13](1943 MB) + +PASS -- COMPILE 'csawmg_intel' [45:19, 34:10] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [26:50, 08:22](961 MB) +PASS -- TEST 'control_ras_intel' [23:35, 04:35](663 MB) + +PASS -- COMPILE 'wam_intel' [51:15, 34:33] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [39:55, 14:21](1634 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [55:18, 36:18] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [25:56, 03:37](1834 MB) +PASS -- TEST 'regional_control_faster_intel' [27:45, 06:37](1002 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [24:14, 08:28] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:47, 03:21](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [26:50, 03:22](1575 MB) +PASS -- TEST 'control_stochy_debug_intel' [31:24, 03:45](781 MB) +PASS -- TEST 'control_lndp_debug_intel' [31:25, 03:26](779 MB) +PASS -- TEST 'control_csawmg_debug_intel' [32:40, 05:26](1094 MB) +PASS -- TEST 'control_ras_debug_intel' [28:29, 03:26](791 MB) +PASS -- TEST 'control_diag_debug_intel' [28:48, 03:22](1635 MB) +PASS -- TEST 'control_debug_p8_intel' [28:46, 03:44](1876 MB) +PASS -- TEST 'regional_debug_intel' [43:46, 22:06](1037 MB) +PASS -- TEST 'rap_control_debug_intel' [26:32, 06:08](1162 MB) +PASS -- TEST 'hrrr_control_debug_intel' [24:30, 05:58](1164 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [23:26, 06:05](1166 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [22:27, 06:08](1166 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [21:26, 06:07](1169 MB) +PASS -- TEST 'rap_diag_debug_intel' [22:36, 06:24](1250 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:29, 06:15](1167 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [16:29, 06:15](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [15:25, 06:09](1171 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:27, 06:05](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [16:26, 06:14](1173 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [17:28, 06:08](1168 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:28, 10:01](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [16:26, 06:05](1159 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [17:31, 07:28](1170 MB) +PASS -- TEST 'rap_flake_debug_intel' [16:26, 06:09](1168 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:47, 10:41](1171 MB) + +PASS -- COMPILE 'wam_debug_intel' [25:12, 05:12] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [29:57, 16:35](1662 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [01:19, 30:43] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:04, 05:13](1045 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:41, 08:11](908 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [17:36, 04:18](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:41, 07:51](949 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [16:45, 03:59](911 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [17:40, 04:34](860 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:48, 06:19](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:30, 02:29](853 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [59:22, 31:46] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [29:53, 02:54](1103 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:54, 01:19](1055 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:52, 01:36](1017 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [57:18, 31:11] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [32:55, 05:34](915 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [30:20, 05:19] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [18:32, 06:03](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [17:24, 05:55](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [29:03, 18:51](1160 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [35:45, 18:43](883 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [27:42, 10:44](1062 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [48:47, 18:53](1225 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [29:14, 05:08] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [35:30, 06:17](1089 MB) + +PASS -- COMPILE 'hafsw_intel' [50:19, 39:17] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:14, 06:44](706 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:12](1070 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:34, 09:05](758 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:22, 16:05](915 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:37, 18:19](793 MB) +PASS -- TEST 'gnv1_nested_intel' [09:45, 06:21](1679 MB) + +PASS -- COMPILE 'hafs_all_intel' [46:16, 35:47] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:24, 08:31](761 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:27, 08:36](743 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:12, 08:23] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [18:26, 03:40](1075 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [08:24, 02:14](1030 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [18:25, 03:31](933 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [18:26, 03:37](934 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [18:26, 03:35](932 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [18:25, 03:40](1068 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:26, 03:41](1081 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [18:26, 03:34](936 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [23:22, 07:46](896 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [23:18, 07:40](848 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [18:22, 03:42](1071 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [19:26, 05:03](2371 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [20:25, 05:14](2374 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 03:20] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [26:28, 08:12](1025 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [35:18, 08:30] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:35](1075 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [19:13, 01:55] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:21](239 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 01:06](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:26, 00:49](261 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [51:14, 35:59] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [23:20, 04:44](1910 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:15, 34:55] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [21:02, 04:32](1903 MB) + +PASS -- COMPILE 'atml_intel' [39:14, 37:05] ( 8 warnings 1167 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [26:10, 05:50](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [26:12, 05:52](1871 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [21:55, 03:15](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:18] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:12, 07:18](1895 MB) + +PASS -- COMPILE 'atmw_intel' [38:16, 37:05] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:55, 02:22](1862 MB) + +PASS -- COMPILE 'atmaero_intel' [37:15, 35:09] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [22:08, 05:11](1935 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [23:05, 06:14](1721 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [22:53, 06:21](1730 MB) SYNOPSIS: -Starting Date/Time: 20240830 19:45:39 -Ending Date/Time: 20240830 23:48:24 -Total Time: 04h:03m:13s +Starting Date/Time: 20240905 16:13:47 +Ending Date/Time: 20240906 00:08:01 +Total Time: 07h:54m:39s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 551e6f6ebf..640843a9a8 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: -b7fc09c740c82647c6dac1c3fd2ea36cbd07f8e8 +fec503e13e8d4b6708283f074b01445a68e50f43 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,241 +35,308 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240830 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_200767 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_100506 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:27, 11:08] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [44:01, 02:26](3105 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [43:02, 02:53](1806 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:01, 02:28](1828 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [23:48, 03:10](960 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:03, 02:23](1790 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [42:58, 02:09](1806 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:13] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [49:08, 03:15](1844 MB) - -PASS -- COMPILE 's2swa_intel' [13:29, 11:31] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [42:58, 02:35](3135 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [42:58, 02:50](3132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [33:44, 02:02](3059 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [42:58, 02:31](3151 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [33:44, 01:59](3079 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [42:58, 02:06](3371 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [42:58, 02:35](3126 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [42:59, 02:40](3076 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [42:58, 02:51](3134 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [43:07, 05:29](4122 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:12, 05:14](4266 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [42:58, 02:50](3110 MB) - -PASS -- COMPILE 's2sw_intel' [12:28, 10:55] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [44:00, 01:49](1825 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [44:00, 03:02](1899 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:14] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [44:01, 02:00](1890 MB) - -PASS -- COMPILE 's2s_intel' [12:26, 10:31] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [44:01, 01:58](2862 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [44:00, 02:27](2875 MB) -PASS -- TEST 'cpld_restart_c48_intel' [39:01, 02:06](2289 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 16:07] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [38:55, 02:52](3134 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:34] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [42:58, 02:01](1829 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:34, 02:32](1004 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:48, 02:40](1802 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:10] ( 1539 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:47, 02:16](1854 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:24, 08:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [33:38, 01:22](566 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [33:38, 01:27](1469 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [33:38, 02:26](1469 MB) -PASS -- TEST 'control_latlon_intel' [33:37, 01:21](1474 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [33:38, 02:31](1464 MB) -PASS -- TEST 'control_c48_intel' [33:36, 01:53](1559 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [33:37, 01:52](693 MB) -PASS -- TEST 'control_c192_intel' [33:38, 02:12](1574 MB) -PASS -- TEST 'control_c384_intel' [33:42, 02:56](1857 MB) -PASS -- TEST 'control_c384gdas_intel' [33:42, 02:47](1066 MB) -PASS -- TEST 'control_stochy_intel' [33:38, 01:27](523 MB) -PASS -- TEST 'control_stochy_restart_intel' [30:10, 02:04](329 MB) -PASS -- TEST 'control_lndp_intel' [33:38, 01:32](526 MB) -PASS -- TEST 'control_iovr4_intel' [33:38, 01:44](520 MB) -PASS -- TEST 'control_iovr5_intel' [33:35, 01:43](522 MB) -PASS -- TEST 'control_p8_intel' [33:26, 02:53](1756 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [33:25, 02:55](1760 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [30:10, 02:56](1763 MB) -PASS -- TEST 'control_restart_p8_intel' [27:00, 01:47](899 MB) -PASS -- TEST 'control_noqr_p8_intel' [29:33, 02:31](1752 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [23:34, 02:06](916 MB) -PASS -- TEST 'control_decomp_p8_intel' [29:07, 02:40](1762 MB) -PASS -- TEST 'control_2threads_p8_intel' [29:06, 02:03](1834 MB) -PASS -- TEST 'control_p8_lndp_intel' [29:04, 02:06](1755 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [28:56, 03:00](1814 MB) -PASS -- TEST 'control_p8_mynn_intel' [28:51, 02:44](1769 MB) -PASS -- TEST 'merra2_thompson_intel' [28:07, 02:41](1768 MB) -PASS -- TEST 'regional_control_intel' [27:45, 02:11](848 MB) -PASS -- TEST 'regional_restart_intel' [20:04, 01:30](839 MB) -PASS -- TEST 'regional_decomp_intel' [27:41, 01:56](830 MB) -PASS -- TEST 'regional_2threads_intel' [27:08, 01:55](899 MB) -PASS -- TEST 'regional_noquilt_intel' [27:07, 01:27](1166 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [26:58, 01:23](841 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [26:41, 01:12](841 MB) -PASS -- TEST 'regional_wofs_intel' [25:48, 01:32](1569 MB) - -PASS -- COMPILE 'rrfs_intel' [10:29, 08:29] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [25:48, 03:03](910 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [24:54, 02:07](1057 MB) -PASS -- TEST 'rap_decomp_intel' [24:36, 02:18](912 MB) -PASS -- TEST 'rap_2threads_intel' [22:53, 02:07](990 MB) -PASS -- TEST 'rap_restart_intel' [15:14, 02:09](778 MB) -PASS -- TEST 'rap_sfcdiff_intel' [22:52, 02:51](905 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:33, 02:22](911 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [12:28, 02:47](776 MB) -PASS -- TEST 'hrrr_control_intel' [22:06, 02:21](901 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [21:34, 02:47](900 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [21:29, 02:13](976 MB) -PASS -- TEST 'hrrr_control_restart_intel' [15:40, 02:04](734 MB) -PASS -- TEST 'rrfs_v1beta_intel' [21:26, 03:04](905 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [21:20, 01:39](1868 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [21:09, 02:06](1849 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 07:57] -PASS -- TEST 'control_csawmg_intel' [34:37, 01:30](860 MB) -PASS -- TEST 'control_ras_intel' [34:37, 01:54](559 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 07:51] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [34:36, 01:37](1565 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:29, 08:07] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [20:41, 03:02](1750 MB) -PASS -- TEST 'regional_control_faster_intel' [20:31, 01:23](836 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:26, 07:13] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [20:22, 02:14](1495 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [20:13, 02:24](1492 MB) -PASS -- TEST 'control_stochy_debug_intel' [20:05, 01:45](706 MB) -PASS -- TEST 'control_lndp_debug_intel' [20:04, 02:04](701 MB) -PASS -- TEST 'control_csawmg_debug_intel' [19:46, 01:25](1006 MB) -PASS -- TEST 'control_ras_debug_intel' [19:40, 02:00](709 MB) -PASS -- TEST 'control_diag_debug_intel' [19:07, 01:59](1553 MB) -PASS -- TEST 'control_debug_p8_intel' [18:50, 01:52](1789 MB) -PASS -- TEST 'regional_debug_intel' [17:44, 02:06](881 MB) -PASS -- TEST 'rap_control_debug_intel' [17:03, 01:35](1083 MB) -PASS -- TEST 'hrrr_control_debug_intel' [15:33, 01:47](1078 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [15:21, 01:41](1081 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [14:38, 01:38](1079 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:36, 01:41](1086 MB) -PASS -- TEST 'rap_diag_debug_intel' [14:36, 01:43](1166 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:35, 01:32](1088 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:34, 01:33](1085 MB) -PASS -- TEST 'rap_lndp_debug_intel' [14:26, 01:45](1083 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:14, 01:40](1086 MB) -PASS -- TEST 'rap_noah_debug_intel' [14:08, 01:44](1078 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:55, 01:46](1081 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:45, 01:30](1080 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [13:19, 01:46](1076 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [13:12, 01:50](1082 MB) -PASS -- TEST 'rap_flake_debug_intel' [13:09, 01:49](1084 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:05, 03:14](1087 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:21] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [36:38, 02:11](1584 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:26, 07:42] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:06, 02:19](925 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:28, 02:11](789 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:50, 03:21](785 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:00, 02:21](846 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:00, 03:22](830 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:47, 02:45](780 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:09, 02:20](683 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:58, 01:21](664 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 07:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [10:29, 02:13](991 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:31, 01:54](995 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:29, 01:45](865 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:25, 07:52] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:30, 02:21](812 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:31] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:55, 02:03](960 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:52, 02:02](958 MB) -PASS -- TEST 'conus13km_debug_intel' [07:51, 01:53](1037 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [07:09, 01:40](714 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:08, 02:15](1043 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [07:04, 01:50](1108 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:23, 04:19] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:04, 02:15](986 MB) - -PASS -- COMPILE 'hafsw_intel' [11:27, 09:19] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:53, 02:57](597 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:52, 01:28](949 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:45, 03:16](638 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [06:40, 02:39](671 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [06:24, 02:21](691 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:04, 02:17](380 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:50, 03:03](395 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:16, 02:58](280 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [04:46, 03:21](363 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:30, 02:39](404 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:30, 02:05](403 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:01, 02:35](478 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:53, 01:29](308 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:22, 04:50] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [03:15, 02:17](507 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:25, 09:08] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [03:04, 02:40](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [02:49, 02:39](706 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:12] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [02:21, 03:07](708 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:24, 08:31] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [01:46, 03:04](645 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [01:44, 03:05](622 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [01:22, 01:26](881 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 09:52] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [01:16, 02:28](1818 MB) - -PASS -- COMPILE 'atml_intel' [11:29, 09:28] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:25, 05:19] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:24, 08:10] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [00:19, 02:03](3025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [00:13, 02:37](2903 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [00:07, 02:36](2921 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:27, 04:22] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [59:00, 02:25](4441 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:27] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:29, 02:21](3099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:29, 12:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [36:29, 02:50](1812 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:22, 02:25](1827 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [17:11, 03:08](956 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [36:30, 02:37](1794 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:46] ( 1 warnings 8 remarks ) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_sfs_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:15] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [42:37, 02:39](1842 MB) + +PASS -- COMPILE 's2swa_intel' [12:27, 11:09] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [37:31, 02:31](3133 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:31, 02:45](3134 MB) +PASS -- TEST 'cpld_restart_p8_intel' [28:17, 02:04](3057 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [37:31, 02:27](3151 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [28:17, 02:44](3079 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [37:31, 02:02](3368 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [37:31, 02:31](3120 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [37:32, 02:35](3071 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:31, 02:43](3137 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [37:40, 05:04](4124 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:07, 05:55](4262 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [37:31, 02:47](3110 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 10:44] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [37:30, 01:50](1827 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [37:30, 01:59](1900 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:16] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [37:31, 02:01](1889 MB) + +PASS -- COMPILE 's2s_intel' [12:28, 10:27] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [37:29, 01:58](2868 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [37:29, 02:29](2874 MB) +PASS -- TEST 'cpld_restart_c48_intel' [32:26, 02:05](2288 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:35, 16:37] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [31:23, 02:52](3127 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:43] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:29, 02:10](1825 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:56, 02:38](987 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:33, 02:41](1802 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:04] ( 1539 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:18, 02:13](1848 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [27:07, 01:24](570 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [27:07, 01:30](1475 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:07, 02:24](1478 MB) +PASS -- TEST 'control_latlon_intel' [27:07, 01:20](1479 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:07, 02:27](1475 MB) +PASS -- TEST 'control_c48_intel' [27:06, 01:53](1559 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [27:06, 01:42](695 MB) +PASS -- TEST 'control_c192_intel' [27:07, 02:12](1576 MB) +PASS -- TEST 'control_c384_intel' [27:11, 03:01](1850 MB) +PASS -- TEST 'control_c384gdas_intel' [27:11, 03:44](1064 MB) +PASS -- TEST 'control_stochy_intel' [27:07, 01:26](524 MB) +PASS -- TEST 'control_stochy_restart_intel' [23:42, 02:02](328 MB) +PASS -- TEST 'control_lndp_intel' [27:07, 01:34](525 MB) +PASS -- TEST 'control_iovr4_intel' [27:07, 01:44](520 MB) +PASS -- TEST 'control_iovr5_intel' [27:07, 01:42](520 MB) +PASS -- TEST 'control_p8_intel' [27:07, 02:53](1750 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [27:07, 02:50](1759 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [27:07, 02:54](1759 MB) +PASS -- TEST 'control_restart_p8_intel' [20:41, 01:45](908 MB) +PASS -- TEST 'control_noqr_p8_intel' [23:38, 02:55](1746 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [16:32, 02:00](917 MB) +PASS -- TEST 'control_decomp_p8_intel' [22:38, 02:31](1756 MB) +PASS -- TEST 'control_2threads_p8_intel' [22:38, 02:48](1839 MB) +PASS -- TEST 'control_p8_lndp_intel' [22:30, 02:03](1756 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [22:22, 02:55](1813 MB) +PASS -- TEST 'control_p8_mynn_intel' [22:19, 02:50](1766 MB) +PASS -- TEST 'merra2_thompson_intel' [22:01, 02:48](1761 MB) +PASS -- TEST 'regional_control_intel' [21:42, 02:13](840 MB) +PASS -- TEST 'regional_restart_intel' [13:59, 01:22](839 MB) +PASS -- TEST 'regional_decomp_intel' [21:33, 01:59](844 MB) +PASS -- TEST 'regional_2threads_intel' [21:15, 01:54](899 MB) +PASS -- TEST 'regional_noquilt_intel' [21:08, 01:20](1172 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [20:58, 01:26](852 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [20:39, 02:11](841 MB) +PASS -- TEST 'regional_wofs_intel' [20:39, 01:32](1570 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:25] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [20:15, 02:59](911 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [19:25, 02:03](1053 MB) +PASS -- TEST 'rap_decomp_intel' [19:17, 02:18](909 MB) +PASS -- TEST 'rap_2threads_intel' [18:06, 02:12](990 MB) +PASS -- TEST 'rap_restart_intel' [09:45, 02:05](777 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:32, 03:05](906 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:55, 02:21](910 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:02, 02:40](778 MB) +PASS -- TEST 'hrrr_control_intel' [15:38, 02:22](900 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [15:23, 02:52](902 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [15:16, 02:19](980 MB) +PASS -- TEST 'hrrr_control_restart_intel' [09:14, 02:05](733 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:01, 03:02](900 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:44, 01:39](1867 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:31, 02:01](1856 MB) + +PASS -- COMPILE 'csawmg_intel' [09:24, 07:49] +PASS -- TEST 'control_csawmg_intel' [28:05, 01:30](861 MB) +PASS -- TEST 'control_ras_intel' [28:05, 01:58](557 MB) + +PASS -- COMPILE 'wam_intel' [09:24, 07:53] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [28:05, 01:29](1561 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:12] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [14:27, 03:05](1756 MB) +PASS -- TEST 'regional_control_faster_intel' [14:08, 01:22](842 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:21] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [14:08, 02:18](1488 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [13:59, 02:25](1498 MB) +PASS -- TEST 'control_stochy_debug_intel' [13:55, 01:48](703 MB) +PASS -- TEST 'control_lndp_debug_intel' [13:45, 02:03](705 MB) +PASS -- TEST 'control_csawmg_debug_intel' [13:13, 01:28](1006 MB) +PASS -- TEST 'control_ras_debug_intel' [12:59, 02:04](710 MB) +PASS -- TEST 'control_diag_debug_intel' [12:20, 02:07](1553 MB) +PASS -- TEST 'control_debug_p8_intel' [12:17, 01:51](1783 MB) +PASS -- TEST 'regional_debug_intel' [12:05, 01:13](883 MB) +PASS -- TEST 'rap_control_debug_intel' [11:57, 01:38](1085 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:25, 01:48](1078 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:14, 01:39](1080 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:14, 01:39](1083 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:57, 02:35](1086 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:25, 02:20](1164 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 02:29](1085 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 02:33](1087 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:17, 02:28](1080 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:11, 02:27](1086 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:53, 03:21](1081 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:41, 03:09](1080 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:32, 01:29](1082 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 02:58](1081 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 01:57](1083 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:34, 02:00](1082 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [06:31, 02:57](1088 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 04:29] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [30:09, 02:08](1586 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:51] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:29, 03:16](918 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:54, 02:58](785 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:17, 03:52](784 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:44, 02:13](846 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:31, 03:24](832 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:27, 02:53](780 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [56:46, 02:31](681 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [57:57, 01:21](665 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:25, 07:50] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:06, 03:06](989 MB) +PASS -- TEST 'conus13km_2threads_intel' [58:11, 01:54](994 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [58:05, 01:42](864 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:57] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [03:53, 02:15](810 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:29] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [03:23, 01:56](960 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [01:49, 01:28](955 MB) +PASS -- TEST 'conus13km_debug_intel' [01:43, 01:53](1037 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [01:43, 01:47](711 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [59:53, 02:11](1046 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [59:47, 01:40](1110 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:20] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [59:47, 01:55](986 MB) + +PASS -- COMPILE 'hafsw_intel' [11:26, 09:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [59:50, 02:56](604 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [59:49, 01:46](947 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [59:48, 02:37](637 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [59:46, 02:27](671 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [58:50, 02:34](694 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [58:49, 02:07](380 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [58:47, 03:15](387 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [58:46, 02:41](280 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [58:35, 03:26](365 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [57:58, 01:44](403 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [57:58, 02:07](408 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [57:40, 01:44](478 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [57:27, 01:31](316 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:53] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:20, 02:17](507 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:24, 09:07] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:04, 01:49](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [56:49, 02:36](702 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:24, 09:06] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [55:53, 02:07](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:24, 08:40] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [54:53, 03:07](640 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:50, 03:02](628 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [54:27, 01:20](821 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:28, 10:04] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [54:26, 02:36](1822 MB) + +PASS -- COMPILE 'atml_intel' [10:24, 09:02] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:20, 05:19] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [09:28, 08:12] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [54:25, 02:16](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [53:54, 02:42](2905 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [53:53, 02:36](2917 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:19, 04:23] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [52:42, 01:45](4443 MB) SYNOPSIS: -Starting Date/Time: 20240830 13:03:15 -Ending Date/Time: 20240830 14:28:47 -Total Time: 01h:26m:03s +Starting Date/Time: 20240905 17:09:45 +Ending Date/Time: 20240905 18:34:06 +Total Time: 01h:24m:50s Compiles Completed: 33/33 -Tests Completed: 156/156 +Tests Completed: 155/156 +Failed Tests: +* TEST cpld_control_sfs_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/jiandewang/ufs-weather-model/tests/logs/log_wcoss2/run_cpld_control_sfs_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF WCOSS2 REGRESSION TESTING LOG==== +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +fec503e13e8d4b6708283f074b01445a68e50f43 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) + e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240904 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_68121 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-c) - CREATE NEW BASELINES +* (-n) - RUN SINGLE TEST: cpld_control_sfs +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:35, 12:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:08, 01:46](1806 MB) + +SYNOPSIS: +Starting Date/Time: 20240905 20:25:17 +Ending Date/Time: 20240905 20:59:08 +Total Time: 00h:34m:06s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/test_changes.list b/tests/test_changes.list index 858052ae2c..a2ab4baa0f 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1 +1,29 @@ -atm_ds2s_docn_dice intel +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel From 706219146401bec7a29e7384eb1a642392ca47fe Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Fri, 13 Sep 2024 10:08:21 -0400 Subject: [PATCH 27/33] Update damping and time step parameters (#2363) * UFSWM - Update default parameter values for damping based off of work done for GW --- tests/bl_date.conf | 2 +- tests/default_vars.sh | 156 +++- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 166 ++-- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 512 +++++------ tests/logs/RegressionTests_derecho.log | 544 ++++++------ tests/logs/RegressionTests_gaea.log | 627 ++++++++------ tests/logs/RegressionTests_hera.log | 796 +++++++++-------- tests/logs/RegressionTests_hercules.log | 801 ++++++++++-------- tests/logs/RegressionTests_jet.log | 559 ++++++------ tests/logs/RegressionTests_orion.log | 616 ++++++++------ tests/logs/RegressionTests_wcoss2.log | 525 +++++------- tests/parm/global_control.nml.IN | 12 +- tests/rt.conf | 24 +- tests/test_changes.list | 34 +- tests/tests/control_2threads_p8 | 19 +- tests/tests/control_CubedSphereGrid | 5 +- tests/tests/control_CubedSphereGrid_debug | 5 +- tests/tests/control_CubedSphereGrid_parallel | 5 +- tests/tests/control_c192 | 6 +- tests/tests/control_c384 | 6 +- tests/tests/control_c48 | 9 +- tests/tests/control_debug_p8 | 19 +- tests/tests/control_decomp_p8 | 19 +- tests/tests/control_latlon | 5 +- tests/tests/control_noqr_p8 | 19 +- tests/tests/control_p8 | 19 +- tests/tests/control_p8_lndp | 19 +- tests/tests/control_p8_mynn | 1 + tests/tests/control_p8_ugwpv1 | 20 +- tests/tests/control_restart_noqr_p8 | 19 +- tests/tests/control_restart_p8 | 19 +- tests/tests/control_wrtGauss_netcdf_parallel | 5 +- .../control_wrtGauss_netcdf_parallel_debug | 5 +- tests/tests/cpld_2threads_p8 | 11 +- tests/tests/cpld_bmark_p8 | 13 +- tests/tests/cpld_control_c48 | 7 +- tests/tests/cpld_control_ciceC_p8 | 11 +- tests/tests/cpld_control_gfsv17 | 24 +- tests/tests/cpld_control_gfsv17_iau | 21 +- tests/tests/cpld_control_noaero_p8 | 9 +- tests/tests/cpld_control_nowave_noaero_p8 | 9 +- tests/tests/cpld_control_p8 | 11 +- tests/tests/cpld_control_p8.v2.sfc | 11 +- tests/tests/cpld_control_p8_faster | 7 + tests/tests/cpld_control_p8_mixedmode | 11 +- tests/tests/cpld_control_pdlib_p8 | 11 +- tests/tests/cpld_control_qr_p8 | 11 +- tests/tests/cpld_control_sfs | 24 +- tests/tests/cpld_debug_gfsv17 | 25 +- tests/tests/cpld_debug_noaero_p8 | 5 + tests/tests/cpld_debug_p8 | 7 + tests/tests/cpld_debug_pdlib_p8 | 5 + tests/tests/cpld_decomp_p8 | 11 +- tests/tests/cpld_mpi_gfsv17 | 25 +- tests/tests/cpld_mpi_p8 | 11 +- tests/tests/cpld_mpi_pdlib_p8 | 11 +- tests/tests/cpld_restart_bmark_p8 | 13 +- tests/tests/cpld_restart_gfsv17 | 24 +- tests/tests/cpld_restart_p8 | 11 +- tests/tests/cpld_restart_pdlib_p8 | 11 +- tests/tests/cpld_restart_qr_p8 | 11 +- 63 files changed, 3164 insertions(+), 2887 deletions(-) diff --git a/tests/bl_date.conf b/tests/bl_date.conf index c4b77b6a55..a84c0c0cb8 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240904 +export BL_DATE=20240909 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 18bd2e1e11..66f3e281a1 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -538,6 +538,14 @@ export IMO=384 export JMO=190 export WRITE_NSFLIP=.true. +# New damping coefficients made the following +# dynamic based on resolution +export N_SPLIT=5 +export K_SPLIT=2 +export TAU=0.0 +export RF_CUTOFF=10. +export FV_SG_ADJ=450 + export DZ_MIN=6 export MIN_SEAICE=0.15 export FRAC_GRID=.true. @@ -639,6 +647,7 @@ export KNOB_UGWP_NDX4LH=1 export KNOB_UGWP_VERSION=0 export KNOB_UGWP_PALAUNCH=500.e2 export KNOB_UGWP_NSLOPE=1 +export KNOB_UGWP_TAUAMP=3.0e-3 export DO_UGWP_V0_NST_ONLY=.false. # resolution dependent settings @@ -751,7 +760,6 @@ export FSICS=0 # Dynamical core export FV_CORE_TAU=0. -export RF_CUTOFF=10.0 export FAST_TAU_W_SEC=0.2 export DRY_MASS=98320.0 @@ -891,23 +899,137 @@ export FNAISC="'IMS-NIC.blended.ice.monthly.clim.grb'" # Add section for tiled grid namelist export_tiled() { -export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" -export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" -export FNALBC="'${ATMRES}.snowfree_albedo.tileX.nc'" -export FNALBC2="'${ATMRES}.facsf.tileX.nc'" -export FNTG3C="'${ATMRES}.substrate_temperature.tileX.nc'" -export FNVEGC="'${ATMRES}.vegetation_greenness.tileX.nc'" -export FNVETC="'${ATMRES}.vegetation_type.tileX.nc'" -export FNSOTC="'${ATMRES}.soil_type.tileX.nc'" -export FNSOCC="'${ATMRES}.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'${ATMRES}.vegetation_greenness.tileX.nc'" -export FNVMXC="'${ATMRES}.vegetation_greenness.tileX.nc'" -export FNSLPC="'${ATMRES}.slope_type.tileX.nc'" -export FNABSC="'${ATMRES}.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." + export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" + export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" + export FNALBC="'${ATMRES}.snowfree_albedo.tileX.nc'" + export FNALBC2="'${ATMRES}.facsf.tileX.nc'" + export FNTG3C="'${ATMRES}.substrate_temperature.tileX.nc'" + export FNVEGC="'${ATMRES}.vegetation_greenness.tileX.nc'" + export FNVETC="'${ATMRES}.vegetation_type.tileX.nc'" + export FNSOTC="'${ATMRES}.soil_type.tileX.nc'" + export FNSOCC="'${ATMRES}.soil_color.tileX.nc'" + export FNSMCC=${FNSMCC_control} + export FNMSKH=${FNMSKH_control} + export FNVMNC="'${ATMRES}.vegetation_greenness.tileX.nc'" + export FNVMXC="'${ATMRES}.vegetation_greenness.tileX.nc'" + export FNSLPC="'${ATMRES}.slope_type.tileX.nc'" + export FNABSC="'${ATMRES}.maximum_snow_albedo.tileX.nc'" + export LANDICE=".false." +} + +export_ugwpv1() { + export DO_UGWP_V1=.true. + export DO_UGWP_V0=.false. + export GWD_OPT=2 + export KNOB_UGWP_VERSION=1 + export KNOB_UGWP_NSLOPE=1 + export DO_GSL_DRAG_LS_BL=.true. + export DO_GSL_DRAG_SS=.true. + export DO_GSL_DRAG_TOFD=.true. + export DO_UGWP_V1_OROG_ONLY=.false. + export DO_UGWP_V0_NST_ONLY=.false. + export LDIAG_UGWP=.false. + export KNOB_UGWP_DOKDIS=2 + export KNOB_UGWP_NDX4LH=4 + + # Add updated damping and timestep variables + case "${ATMRES}" in + "C48") + export DT_ATMOS=720 + export XR_CNVCLD=.false. + export CDMBGWD="0.071,2.1,1.0,1.0" + export CDMBGWD_GSL="40.0,1.77,1.0,1.0" + export KNOB_UGWP_TAUAMP=6.0e-3 + export K_SPLIT=1 + export N_SPLIT=4 + export TAU=10.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=3600 + ;; + "C96") + export DT_ATMOS=720 + export XR_CNVCLD=.false. + export CDMBGWD="0.14,1.8,1.0,1.0" + export CDMBGWD_GSL="20.0,2.5,1.0,1.0" + export KNOB_UGWP_TAUAMP=3.0e-3 + export K_SPLIT=1 + export N_SPLIT=4 + export TAU=8.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=1800 + ;; + "C192") + export DT_ATMOS=600 + export XR_CNVCLD=.true. + export CDMBGWD="0.23,1.5,1.0,1.0" + export CDMBGWD_GSL="5.0,5.0,1.0,1.0" + export KNOB_UGWP_TAUAMP=1.5e-3 + export K_SPLIT=2 + export N_SPLIT=5 + export TAU=6.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=1800 + ;; + "C384") + export DT_ATMOS=300 + export XR_CNVCLD=.true. + export CDMBGWD="1.1,0.72,1.0,1.0" + export CDMBGWD_GSL="5.0,5.0,1.0,1.0" + export KNOB_UGWP_TAUAMP=0.8e-3 + export K_SPLIT=2 + export N_SPLIT=4 + export TAU=4.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=900 + ;; + "C768") + export DT_ATMOS=150 + export XR_CNVCLD=.true. + export CDMBGWD="4.0,0.15,1.0,1.0" + export CDMBGWD_GSL="2.5,7.5,1.0,1.0" + export KNOB_UGWP_TAUAMP=0.5e-3 + export K_SPLIT=2 + export N_SPLIT=4 + export TAU=3.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=450 + ;; + "C1152") + export DT_ATMOS=150 + export XR_CNVCLD=.true. + export CDMBGWD="4.0,0.10,1.0,1.0" + export CDMBGWD_GSL="1.67,8.8,1.0,1.0" + export KNOB_UGWP_TAUAMP=0.35e-3 + export K_SPLIT=2 + export N_SPLIT=6 + export TAU=2.5 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=450 + ;; + "C3072") + export DT_ATMOS=90 + export XR_CNVCLD=.true. + export CDMBGWD="4.0,0.05,1.0,1.0" + export CDMBGWD_GSL="0.625,14.1,1.0,1.0" + export KNOB_UGWP_TAUAMP=0.13e-3 + export K_SPLIT=4 + export N_SPLIT=5 + export TAU=0.5 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=300 + ;; + *) + echo Invalid model resolution: "${ATMRES}". Please update specified variable ATMRES. + exit 1 + ;; + esac + + if [[ ${DO_GSL_DRAG_SS} = .true. ]]; then export CDMBGWD=${CDMBGWD_GSL}; fi + if [[ ${SEDI_SEMI} = .true. ]]; then export DT_ATMOS=$((DT_ATMOS/2)); fi + export DT_INNER=${DT_ATMOS} + } + # Defaults for the CICE6 model namelist, mx100 export_cice6() { diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 66336dba8c..e33433c2b4 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu Sep 5 22:25:10 UTC 2024 +Mon Sep 9 23:10:23 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/bit_base_bit_base +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_664740/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 = 288.390708 - 0: The maximum resident set size (KB) = 1444228 + 0: The total amount of wall time = 301.063864 + 0: The maximum resident set size (KB) = 1450936 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/dbg_base_dbg_base +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_664740/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 = 991.170195 - 0: The maximum resident set size (KB) = 1442092 + 0: The total amount of wall time = 1003.768135 + 0: The maximum resident set size (KB) = 1432920 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/dcp_dcp +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_664740/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 = 259.478625 - 0: The maximum resident set size (KB) = 1412816 + 0: The total amount of wall time = 272.986390 + 0: The maximum resident set size (KB) = 1418504 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/mpi_mpi +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_664740/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 = 269.710451 - 0: The maximum resident set size (KB) = 1422344 + 0: The total amount of wall time = 271.716758 + 0: The maximum resident set size (KB) = 1429720 Test mpi PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/rst_rst +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_664740/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 = 260.906817 - 0: The maximum resident set size (KB) = 1412512 + 0: The total amount of wall time = 271.525308 + 0: The maximum resident set size (KB) = 1430068 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/std_base_std_base +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_664740/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 = 259.986892 - 0: The maximum resident set size (KB) = 1423876 + 0: The total amount of wall time = 270.165754 + 0: The maximum resident set size (KB) = 1429764 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/thr_thr +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_664740/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 = 263.854937 - 0: The maximum resident set size (KB) = 1422848 + 0: The total amount of wall time = 270.519887 + 0: The maximum resident set size (KB) = 1441764 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Sep 5 23:39:10 UTC 2024 -Elapsed time: 01h:14m:01s. Have a nice day! +Tue Sep 10 00:41:38 UTC 2024 +Elapsed time: 01h:31m:15s. 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 98bba839bf..d95256847e 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,79 @@ -Thu Sep 5 16:38:28 UTC 2024 +Mon Sep 9 21:29:33 UTC 2024 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_268951/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 2492.069029 + 0: The maximum resident set size (KB) = 1537788 + +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_189371/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268951/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -65,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 = 411.035636 - 0: The maximum resident set size (KB) = 1532184 + 0: The total amount of wall time = 654.617351 + 0: The maximum resident set size (KB) = 1509560 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_189371/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268951/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -135,89 +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 = 403.644311 - 0: The maximum resident set size (KB) = 1531864 + 0: The total amount of wall time = 760.383664 + 0: The maximum resident set size (KB) = 1533208 Test std_base PASS -FAILED TESTS: -Test dbg_base failed in run_test failed -OPERATION REQUIREMENT TEST FAILED -Thu Sep 5 19:21:40 UTC 2024 -Elapsed time: 02h:43m:12s. Have a nice day! -Fri Sep 6 00:11:18 UTC 2024 -Start Operation Requirement Test - - -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3212875/dbg_base_dbg_base -Checking test dbg_base results .... -Moving baseline dbg_base files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Moving RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 1373.432258 - 0: The maximum resident set size (KB) = 1537784 - -Test dbg_base PASS - OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Sep 6 00:39:24 UTC 2024 -Elapsed time: 00h:28m:07s. Have a nice day! +Mon Sep 9 23:10:23 UTC 2024 +Elapsed time: 01h:40m:51s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index d20f6b1591..1f286e8dc1 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Sep 5 13:55:45 UTC 2024 +Mon Sep 9 18:57:45 UTC 2024 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_2982289/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2601361/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 = 1390.806694 - 0: The maximum resident set size (KB) = 761164 + 0: The total amount of wall time = 1354.752756 + 0: The maximum resident set size (KB) = 769596 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_2982289/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2601361/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 = 2552.962684 - 0: The maximum resident set size (KB) = 734772 + 0: The total amount of wall time = 2166.948131 + 0: The maximum resident set size (KB) = 719548 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_2982289/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2601361/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 = 2288.297888 - 0: The maximum resident set size (KB) = 746724 + 0: The total amount of wall time = 2166.204837 + 0: The maximum resident set size (KB) = 732444 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_2982289/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2601361/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 = 2342.966961 - 0: The maximum resident set size (KB) = 721088 + 0: The total amount of wall time = 2262.073130 + 0: The maximum resident set size (KB) = 734244 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Sep 5 16:38:28 UTC 2024 -Elapsed time: 02h:42m:43s. Have a nice day! +Mon Sep 9 21:29:32 UTC 2024 +Elapsed time: 02h:31m:47s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 03da0ffd37..786d4b74e8 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: -a78129ced4e805131daeb5617e71ca20902410ca +17749118ba0dfcca7c2cac513d497ea37521edc8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,267 +35,267 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2746491 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_528239 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:25, 10:23] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [57:34, 03:31](3309 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 16:19] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [51:28, 04:26](2090 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:17, 04:21](2111 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [29:15, 04:13](1207 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [51:29, 02:51](2169 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:31, 16:19] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [52:27, 02:01](2089 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:52] ( 1524 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [02:40, 03:50](2170 MB) - -PASS -- COMPILE 's2swa_intel' [12:26, 10:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [57:33, 02:33](3322 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [57:33, 03:28](3339 MB) -PASS -- TEST 'cpld_restart_p8_intel' [43:20, 02:15](3258 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [57:33, 02:29](3364 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [43:20, 03:00](3277 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [57:33, 02:39](3622 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [57:33, 02:22](3334 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [57:34, 02:38](3452 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [57:33, 03:07](3323 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [57:33, 03:09](3272 MB) - -PASS -- COMPILE 's2sw_intel' [11:26, 09:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [58:33, 02:52](2004 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:33, 03:17](2029 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:26, 09:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [58:33, 03:10](2039 MB) - -PASS -- COMPILE 's2s_intel' [12:25, 10:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [57:33, 01:59](2883 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [57:33, 02:28](2898 MB) -PASS -- TEST 'cpld_restart_c48_intel' [51:54, 02:48](2320 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:30, 14:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [53:29, 03:18](3341 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:31, 15:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:27, 02:19](2107 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [31:42, 02:20](1262 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:30, 02:32](2179 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:33] ( 1559 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [55:20, 02:18](2199 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:18] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [47:08, 01:22](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [47:08, 01:51](1547 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [47:08, 01:28](1550 MB) -PASS -- TEST 'control_latlon_intel' [45:26, 01:45](1554 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [45:18, 02:31](1551 MB) -PASS -- TEST 'control_c48_intel' [42:11, 01:54](1574 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [40:27, 01:46](715 MB) -PASS -- TEST 'control_c192_intel' [38:51, 02:28](1785 MB) -PASS -- TEST 'control_c384_intel' [37:34, 03:11](3082 MB) -PASS -- TEST 'control_c384gdas_intel' [35:29, 03:39](2304 MB) -PASS -- TEST 'control_stochy_intel' [33:37, 01:24](603 MB) -PASS -- TEST 'control_stochy_restart_intel' [24:00, 01:35](412 MB) -PASS -- TEST 'control_lndp_intel' [33:29, 01:33](603 MB) -PASS -- TEST 'control_iovr4_intel' [33:18, 02:01](599 MB) -PASS -- TEST 'control_iovr5_intel' [32:34, 01:34](606 MB) -PASS -- TEST 'control_p8_intel' [32:15, 02:47](1826 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [31:28, 02:32](1846 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [31:26, 03:45](1841 MB) -PASS -- TEST 'control_restart_p8_intel' [19:11, 02:51](973 MB) -PASS -- TEST 'control_noqr_p8_intel' [30:02, 03:33](1836 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [16:34, 03:02](1004 MB) -PASS -- TEST 'control_decomp_p8_intel' [29:55, 02:47](1834 MB) -PASS -- TEST 'control_2threads_p8_intel' [29:51, 02:59](1936 MB) -PASS -- TEST 'control_p8_lndp_intel' [29:33, 02:19](1826 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [29:30, 03:00](1898 MB) -PASS -- TEST 'control_p8_mynn_intel' [28:58, 02:46](1829 MB) -PASS -- TEST 'merra2_thompson_intel' [28:24, 04:15](1847 MB) -PASS -- TEST 'regional_control_intel' [27:58, 01:14](865 MB) -PASS -- TEST 'regional_restart_intel' [20:05, 01:23](861 MB) -PASS -- TEST 'regional_decomp_intel' [27:01, 02:13](864 MB) -PASS -- TEST 'regional_2threads_intel' [25:25, 01:27](1178 MB) -PASS -- TEST 'regional_noquilt_intel' [23:53, 01:35](1190 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [23:50, 01:46](860 MB) -PASS -- TEST 'regional_wofs_intel' [23:14, 01:51](1597 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:26] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [48:09, 03:58](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [48:10, 02:03](1660 MB) -PASS -- TEST 'rap_decomp_intel' [48:09, 04:06](991 MB) -PASS -- TEST 'rap_2threads_intel' [48:09, 02:43](1091 MB) -PASS -- TEST 'rap_restart_intel' [21:29, 03:44](832 MB) -PASS -- TEST 'rap_sfcdiff_intel' [48:09, 03:35](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [48:09, 03:18](986 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [21:38, 03:29](833 MB) -PASS -- TEST 'hrrr_control_intel' [48:09, 03:21](985 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [48:09, 03:23](984 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [48:10, 04:05](1215 MB) -PASS -- TEST 'hrrr_control_restart_intel' [20:54, 02:16](783 MB) -PASS -- TEST 'rrfs_v1beta_intel' [48:09, 03:53](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [48:09, 01:49](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [48:09, 01:42](1934 MB) - -PASS -- COMPILE 'csawmg_intel' [10:24, 08:14] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [47:10, 01:56](923 MB) -PASS -- TEST 'control_ras_intel' [47:10, 01:44](639 MB) - -PASS -- COMPILE 'wam_intel' [10:24, 08:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [47:09, 01:52](1636 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [19:15, 03:09](1833 MB) -PASS -- TEST 'regional_control_faster_intel' [19:17, 01:54](847 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 07:03] ( 883 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:05, 01:20](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:55, 02:30](1591 MB) -PASS -- TEST 'control_stochy_debug_intel' [18:26, 01:52](796 MB) -PASS -- TEST 'control_lndp_debug_intel' [16:53, 01:50](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [16:36, 01:42](1099 MB) -PASS -- TEST 'control_ras_debug_intel' [16:28, 01:18](807 MB) -PASS -- TEST 'control_diag_debug_intel' [16:09, 02:19](1653 MB) -PASS -- TEST 'control_debug_p8_intel' [16:08, 02:06](1885 MB) -PASS -- TEST 'regional_debug_intel' [15:35, 01:31](931 MB) -PASS -- TEST 'rap_control_debug_intel' [15:16, 01:19](1177 MB) -PASS -- TEST 'hrrr_control_debug_intel' [15:01, 01:20](1170 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [14:20, 01:32](1176 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [14:10, 02:09](1176 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:30, 01:20](1176 MB) -PASS -- TEST 'rap_diag_debug_intel' [12:59, 02:30](1262 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:42, 02:07](1177 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:43, 02:06](1177 MB) -PASS -- TEST 'rap_lndp_debug_intel' [12:05, 01:49](1181 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:58, 01:45](1178 MB) -PASS -- TEST 'rap_noah_debug_intel' [11:53, 01:53](1171 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [11:50, 02:13](1174 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:48, 02:07](1172 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [11:23, 01:39](1170 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:01, 01:38](1181 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:07, 02:15](1177 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:06, 04:03](1183 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:24, 04:51] ( 838 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:56, 02:15](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:27, 08:11] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:19, 02:07](1527 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:51, 03:22](870 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:17, 04:34](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:08, 02:46](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:52, 04:44](1069 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:44, 03:45](861 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [56:30, 03:41](760 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [56:56, 01:17](747 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:27, 08:11] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:35, 02:03](1066 MB) -PASS -- TEST 'conus13km_2threads_intel' [47:08, 02:09](1394 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [47:06, 01:32](910 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:25, 08:16] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:42, 01:54](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:49] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:18, 01:34](1055 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 01:40](1056 MB) -PASS -- TEST 'conus13km_debug_intel' [06:51, 02:08](1139 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [06:46, 01:39](828 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [06:00, 01:42](1477 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:36, 01:57](1230 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:47] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:50, 02:03](1075 MB) - -PASS -- COMPILE 'hafsw_intel' [22:37, 09:30] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:18, 02:44](1676 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:13, 01:46](2028 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [03:34, 03:05](1196 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [03:26, 03:04](1231 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [03:22, 02:20](1382 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [03:09, 02:41](917 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:18, 03:03](1204 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [02:04, 02:20](1098 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [00:53, 03:41](1945 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:44, 02:21](956 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:31, 02:27](955 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [58:25, 01:55](1546 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [57:10, 02:03](1128 MB) -PASS -- TEST 'gnv1_nested_intel' [56:56, 04:32](1897 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [20:35, 05:23] ( 1466 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [56:33, 02:19](1641 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:40, 09:08] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [54:41, 01:49](1594 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [54:29, 02:07](1767 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [23:39, 09:12] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [54:01, 02:32](1763 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:34, 08:57] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [53:23, 02:36](1183 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [52:27, 03:15](1166 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [50:08, 01:26](898 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [39:57, 09:24] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [49:41, 02:00](756 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [44:16, 01:14](757 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [43:21, 01:59](649 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [42:31, 01:46](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [41:18, 01:25](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [40:59, 01:44](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [40:19, 02:11](769 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [40:18, 01:19](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [40:17, 02:20](816 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [39:28, 02:12](795 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [38:11, 02:06](756 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [37:58, 01:43](2036 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [36:25, 02:07](2035 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [38:54, 09:13] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [36:08, 01:20](769 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [32:48, 01:04] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [35:05, 01:42](609 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [34:40, 02:16](747 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [28:50, 01:26](751 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [45:00, 09:52] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [34:25, 01:52](1954 MB) - -PASS -- COMPILE 'atml_intel' [46:02, 09:11] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [33:18, 03:01](2171 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [32:57, 03:53](2171 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:31, 02:00](1324 MB) - -PASS -- COMPILE 'atml_debug_intel' [32:48, 05:29] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [32:29, 03:47](2216 MB) - -PASS -- COMPILE 'atmw_intel' [34:50, 08:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [32:14, 03:08](1935 MB) - -PASS -- COMPILE 'atmaero_intel' [34:49, 08:36] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [31:42, 02:51](3215 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [31:36, 03:07](3000 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [31:26, 02:58](3008 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [32:49, 04:50] ( 883 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [30:50, 02:54](4801 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:23, 10:06] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [42:29, 02:57](3360 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:15] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [36:23, 03:41](2173 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:11, 03:30](2176 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:11, 04:05](1324 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [36:24, 02:44](2275 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:34, 17:37] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [34:19, 02:07](2159 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:20] ( 1524 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [46:33, 04:16](2244 MB) + +PASS -- COMPILE 's2swa_intel' [12:26, 10:22] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [41:27, 02:43](3391 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:27, 03:24](3389 MB) +PASS -- TEST 'cpld_restart_p8_intel' [29:46, 02:58](3305 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [41:27, 02:38](3411 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [29:46, 02:15](3325 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [41:27, 02:20](3694 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [41:27, 02:42](3386 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [41:28, 02:23](3516 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:27, 03:05](3390 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [41:27, 02:19](3294 MB) + +PASS -- COMPILE 's2sw_intel' [11:25, 09:34] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [42:28, 02:11](2079 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:28, 03:18](2083 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:27, 12:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [40:26, 02:29](2092 MB) + +PASS -- COMPILE 's2s_intel' [11:23, 09:27] ( 2 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [42:28, 02:24](2890 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [42:28, 01:54](2898 MB) +PASS -- TEST 'cpld_restart_c48_intel' [38:00, 02:32](2312 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:29, 15:01] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [37:23, 02:36](3400 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:33, 16:41] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:20, 02:02](2167 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:37, 02:49](1342 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:32, 02:15](2273 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:22] ( 1524 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:44, 02:04](2283 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:35] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [31:25, 01:45](711 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [30:53, 01:58](1604 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [30:27, 01:34](1622 MB) +PASS -- TEST 'control_latlon_intel' [29:49, 01:46](1616 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [29:31, 02:07](1608 MB) +PASS -- TEST 'control_c48_intel' [27:17, 02:26](1590 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [27:15, 02:18](712 MB) +PASS -- TEST 'control_c192_intel' [25:49, 01:34](1842 MB) +PASS -- TEST 'control_c384_intel' [24:15, 03:24](3263 MB) +PASS -- TEST 'control_c384gdas_intel' [23:19, 03:16](2445 MB) +PASS -- TEST 'control_stochy_intel' [21:24, 01:38](666 MB) +PASS -- TEST 'control_stochy_restart_intel' [10:47, 01:29](469 MB) +PASS -- TEST 'control_lndp_intel' [19:35, 02:00](668 MB) +PASS -- TEST 'control_iovr4_intel' [18:34, 02:00](667 MB) +PASS -- TEST 'control_iovr5_intel' [18:31, 01:53](667 MB) +PASS -- TEST 'control_p8_intel' [17:25, 03:28](1908 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [17:24, 02:58](1898 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [17:23, 02:51](1910 MB) +PASS -- TEST 'control_restart_p8_intel' [04:59, 03:27](1054 MB) +PASS -- TEST 'control_noqr_p8_intel' [17:22, 02:23](1901 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:04, 02:32](1063 MB) +PASS -- TEST 'control_decomp_p8_intel' [16:10, 02:08](1902 MB) +PASS -- TEST 'control_2threads_p8_intel' [16:08, 03:45](1985 MB) +PASS -- TEST 'control_p8_lndp_intel' [14:42, 01:30](1891 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:47, 03:45](1960 MB) +PASS -- TEST 'control_p8_mynn_intel' [13:43, 03:15](1911 MB) +PASS -- TEST 'merra2_thompson_intel' [13:16, 03:50](1901 MB) +PASS -- TEST 'regional_control_intel' [12:46, 02:00](861 MB) +PASS -- TEST 'regional_restart_intel' [02:53, 01:36](861 MB) +PASS -- TEST 'regional_decomp_intel' [12:12, 01:26](864 MB) +PASS -- TEST 'regional_2threads_intel' [12:11, 01:22](1241 MB) +PASS -- TEST 'regional_noquilt_intel' [10:00, 01:27](1190 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:55, 01:40](867 MB) +PASS -- TEST 'regional_wofs_intel' [08:25, 01:32](1592 MB) + +PASS -- COMPILE 'rrfs_intel' [09:23, 08:12] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [33:05, 02:55](1054 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:06, 02:13](1749 MB) +PASS -- TEST 'rap_decomp_intel' [33:05, 03:06](1049 MB) +PASS -- TEST 'rap_2threads_intel' [33:05, 04:01](1137 MB) +PASS -- TEST 'rap_restart_intel' [08:26, 03:04](861 MB) +PASS -- TEST 'rap_sfcdiff_intel' [33:05, 03:57](1053 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [33:05, 03:03](1045 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:52, 03:05](861 MB) +PASS -- TEST 'hrrr_control_intel' [33:05, 02:20](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [33:05, 03:19](1042 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [33:06, 04:04](1269 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:51, 02:12](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [33:05, 03:31](1042 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [33:05, 02:15](2007 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [32:29, 01:32](1995 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 07:47] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [32:16, 01:25](1007 MB) +PASS -- TEST 'control_ras_intel' [04:56, 01:48](702 MB) + +PASS -- COMPILE 'wam_intel' [09:24, 07:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [04:54, 01:27](1703 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:31, 08:05] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:54, 02:52](1897 MB) +PASS -- TEST 'regional_control_faster_intel' [04:32, 02:07](860 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:28, 06:51] ( 883 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:13, 01:41](1658 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:42, 02:28](1653 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:33, 01:34](858 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:22, 02:02](858 MB) +PASS -- TEST 'control_csawmg_debug_intel' [02:22, 02:09](1158 MB) +PASS -- TEST 'control_ras_debug_intel' [02:13, 02:03](862 MB) +PASS -- TEST 'control_diag_debug_intel' [01:25, 02:17](1718 MB) +PASS -- TEST 'control_debug_p8_intel' [00:40, 02:11](1952 MB) +PASS -- TEST 'regional_debug_intel' [59:52, 01:38](920 MB) +PASS -- TEST 'rap_control_debug_intel' [00:17, 01:29](1237 MB) +PASS -- TEST 'hrrr_control_debug_intel' [59:59, 01:58](1232 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [59:23, 02:17](1235 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [59:18, 01:20](1232 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [58:44, 01:42](1236 MB) +PASS -- TEST 'rap_diag_debug_intel' [58:34, 01:59](1318 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [58:30, 01:20](1237 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:25, 02:09](1239 MB) +PASS -- TEST 'rap_lndp_debug_intel' [58:21, 02:10](1240 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [58:07, 02:10](1239 MB) +PASS -- TEST 'rap_noah_debug_intel' [57:38, 01:19](1233 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [57:16, 01:47](1234 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [57:04, 02:02](1235 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [57:03, 02:04](1231 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [57:00, 02:15](1239 MB) +PASS -- TEST 'rap_flake_debug_intel' [56:51, 02:03](1240 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [56:32, 03:47](1241 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:26, 04:24] ( 838 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [55:50, 02:03](1738 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:38, 07:48] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [55:30, 01:53](1614 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [55:02, 02:57](927 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [54:52, 04:13](925 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [54:37, 03:11](988 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [54:30, 04:34](1127 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [53:47, 04:01](923 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [42:15, 03:54](819 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [43:29, 01:23](803 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:39, 07:49] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [53:25, 02:18](1129 MB) +PASS -- TEST 'conus13km_2threads_intel' [46:13, 01:56](1474 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [45:26, 01:15](953 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:38, 07:53] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [52:46, 02:35](956 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [24:40, 04:23] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [52:44, 01:44](1113 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [51:44, 01:35](1114 MB) +PASS -- TEST 'conus13km_debug_intel' [51:22, 01:48](1210 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [51:13, 01:47](864 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [50:49, 02:02](1542 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [50:43, 01:19](1278 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [37:55, 04:20] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [49:47, 02:04](1135 MB) + +PASS -- COMPILE 'hafsw_intel' [41:57, 09:03] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [49:54, 02:37](1814 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:08, 01:29](2163 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [48:53, 02:20](1278 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [48:46, 02:35](1317 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:34, 02:51](1479 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [48:32, 02:14](1010 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [48:14, 02:33](1324 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [47:44, 02:05](1204 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [47:44, 03:32](2130 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [45:14, 02:14](1047 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [44:23, 02:37](1047 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [43:53, 02:28](1683 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [43:31, 02:04](1232 MB) +PASS -- TEST 'gnv1_nested_intel' [43:11, 04:33](1973 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [36:55, 04:39] ( 1466 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [42:27, 02:16](1727 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [49:07, 08:49] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [36:51, 02:41](1723 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [36:51, 02:12](1902 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [49:06, 08:56] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [35:17, 02:26](1896 MB) + +PASS -- COMPILE 'hafs_all_intel' [49:03, 08:33] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [33:51, 03:09](1268 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [33:51, 02:29](1256 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [33:49, 02:08](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [41:56, 09:01] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [29:46, 02:03](772 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [17:13, 02:08](761 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [29:46, 02:01](652 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [29:46, 02:09](650 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [29:46, 01:40](650 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:13, 02:11](772 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [28:55, 01:34](771 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [27:31, 01:52](658 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [24:26, 02:22](868 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [24:22, 01:51](852 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [24:21, 01:48](772 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [24:07, 01:53](2038 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [23:52, 01:27](2038 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [41:58, 08:46] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [23:09, 01:18](772 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [34:49, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [35:52, 01:24](671 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [35:52, 01:57](816 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [23:04, 02:07](818 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [40:57, 09:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:19, 01:55](2024 MB) + +PASS -- COMPILE 'atml_intel' [27:42, 08:42] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [21:50, 03:52](2274 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [21:35, 02:59](2260 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [11:09, 01:30](1412 MB) + +PASS -- COMPILE 'atml_debug_intel' [26:42, 05:00] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [21:11, 03:30](2301 MB) + +PASS -- COMPILE 'atmw_intel' [29:44, 08:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:23, 03:19](1999 MB) + +PASS -- COMPILE 'atmaero_intel' [16:31, 08:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [20:17, 03:01](3285 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [20:17, 03:15](3055 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [20:02, 02:38](3067 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [25:39, 04:25] ( 883 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [10:12, 02:45](4849 MB) SYNOPSIS: -Starting Date/Time: 20240905 17:49:41 -Ending Date/Time: 20240905 19:58:02 -Total Time: 02h:08m:47s +Starting Date/Time: 20240912 20:05:48 +Ending Date/Time: 20240912 22:17:39 +Total Time: 02h:12m:18s Compiles Completed: 37/37 Tests Completed: 176/176 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 39735c2292..cca2f3ec7d 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: -09b868ff72fac6a029564ad640cb24311ec74865 +533e855dac5381cf818b39179344afcacd8f9d47 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,284 +35,284 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_20365 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_47350 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [25:53, 25:13] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:43, 06:15](3205 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [34:01, 27:17] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:38, 15:04](1916 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:10, 16:33](1945 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:11, 08:36](1072 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:31, 17:12](1874 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [33:04, 27:10] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:06, 14:49](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:54, 15:10] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:26, 23:23](1940 MB) - -PASS -- COMPILE 's2swa_intel' [33:04, 24:24] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:26, 06:52](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:39, 06:50](3218 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:01, 04:30](3150 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:39, 06:58](3255 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:53, 04:29](3177 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:58, 06:23](3730 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:31, 06:41](3216 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:46, 05:48](3537 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:21, 06:59](3229 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [23:35, 10:17](3819 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [18:23, 07:17](3624 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [54:07, 11:25](4516 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [40:08, 08:29](4669 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:25, 06:29](3216 MB) - -PASS -- COMPILE 's2sw_intel' [31:58, 23:18] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:10, 05:12](1920 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:23, 05:22](1983 MB) - -PASS -- COMPILE 's2swa_debug_intel' [24:04, 15:16] ( 1453 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:33, 08:43](3302 MB) - -PASS -- COMPILE 's2sw_debug_intel' [25:57, 14:29] ( 1453 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:17, 06:22](1964 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [31:59, 19:43] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:24, 05:28](1992 MB) - -PASS -- COMPILE 's2s_intel' [31:05, 19:20] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:35, 07:13](2879 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:37, 02:59](2893 MB) -PASS -- TEST 'cpld_restart_c48_intel' [10:05, 02:22](2300 MB) - -PASS -- COMPILE 's2swa_faster_intel' [30:22, 28:21] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:21, 06:43](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [28:26, 25:37] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:14, 15:07](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:38, 08:48](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:16, 17:11](1895 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [18:23, 14:15] ( 1563 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:38, 24:34](1955 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [20:18, 16:21] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:01, 03:29](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:07, 02:36](1560 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:28, 02:39](1561 MB) -PASS -- TEST 'control_latlon_intel' [10:10, 02:29](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:08, 02:35](1569 MB) -PASS -- TEST 'control_c48_intel' [30:17, 06:11](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [28:02, 05:21](709 MB) -PASS -- TEST 'control_c192_intel' [20:33, 08:54](1674 MB) -PASS -- TEST 'control_c384_intel' [22:49, 09:08](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [28:11, 07:35](1180 MB) -PASS -- TEST 'control_stochy_intel' [06:02, 01:32](622 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:51, 00:56](433 MB) -PASS -- TEST 'control_lndp_intel' [04:52, 01:28](621 MB) -PASS -- TEST 'control_iovr4_intel' [06:02, 02:12](620 MB) -PASS -- TEST 'control_iovr5_intel' [04:56, 02:28](619 MB) -PASS -- TEST 'control_p8_intel' [08:33, 03:37](1848 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:33, 03:17](1852 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:56, 03:33](1853 MB) -PASS -- TEST 'control_restart_p8_intel' [08:47, 02:26](1002 MB) -PASS -- TEST 'control_noqr_p8_intel' [13:27, 03:24](1844 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:46, 02:19](1012 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:38, 03:32](1853 MB) -PASS -- TEST 'control_2threads_p8_intel' [12:42, 03:29](1925 MB) -PASS -- TEST 'control_p8_lndp_intel' [14:43, 05:27](1851 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:49, 04:21](1909 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:39, 03:23](1861 MB) -PASS -- TEST 'merra2_thompson_intel' [12:07, 03:43](1864 MB) -PASS -- TEST 'regional_control_intel' [08:01, 05:21](854 MB) -PASS -- TEST 'regional_restart_intel' [11:02, 03:20](856 MB) -PASS -- TEST 'regional_decomp_intel' [09:13, 05:44](866 MB) -PASS -- TEST 'regional_noquilt_intel' [12:05, 05:15](1180 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:09, 05:19](860 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:15, 05:16](855 MB) -PASS -- TEST 'regional_wofs_intel' [10:08, 05:46](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [17:23, 14:52] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:23, 06:17](1004 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:32, 03:55](1145 MB) -PASS -- TEST 'rap_decomp_intel' [11:46, 06:31](1010 MB) -PASS -- TEST 'rap_2threads_intel' [09:34, 05:50](1088 MB) -PASS -- TEST 'rap_restart_intel' [06:39, 03:21](878 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:37, 06:13](1001 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:47, 06:30](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 04:42](878 MB) -PASS -- TEST 'hrrr_control_intel' [06:47, 03:21](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:39, 03:27](996 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:35, 02:55](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:04, 01:53](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:44, 06:10](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:06, 07:33](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:04, 07:19](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [16:21, 13:57] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:38, 06:56](960 MB) -PASS -- TEST 'control_ras_intel' [05:52, 03:02](657 MB) - -PASS -- COMPILE 'wam_intel' [15:18, 13:06] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:42, 10:26](1643 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:22, 14:02] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:07, 03:23](1853 MB) -PASS -- TEST 'regional_control_faster_intel' [08:05, 05:17](861 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [19:18, 16:28] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:30, 02:42](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:34, 02:38](1605 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:00, 03:01](810 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:56, 02:41](810 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:46, 04:53](1112 MB) -PASS -- TEST 'control_ras_debug_intel' [06:01, 02:52](815 MB) -PASS -- TEST 'control_diag_debug_intel' [08:01, 02:44](1665 MB) -PASS -- TEST 'control_debug_p8_intel' [06:23, 03:32](1905 MB) -PASS -- TEST 'regional_debug_intel' [20:23, 16:46](922 MB) -PASS -- TEST 'rap_control_debug_intel' [07:53, 04:47](1190 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:58, 04:52](1188 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:50, 04:57](1193 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:51, 04:58](1191 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:04, 04:52](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:42, 05:07](1273 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:05, 05:00](1188 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:01, 05:00](1192 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:03, 04:51](1198 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:54, 04:53](1191 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:55, 04:48](1185 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:50, 04:51](1191 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:47, 07:44](1184 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:48, 04:49](1187 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:54, 05:37](1196 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:59, 04:55](1190 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:50, 08:26](1189 MB) - -PASS -- COMPILE 'wam_debug_intel' [26:26, 09:17] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:18, 12:34](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:20, 13:26] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:50, 03:50](1022 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:35, 05:16](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:33, 02:51](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:21, 04:53](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:32, 02:34](925 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:26, 03:01](871 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:23, 04:02](785 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:56, 01:39](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:22, 12:43] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:04, 02:08](1072 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:46, 01:09](1073 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:49, 01:15](961 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [35:25, 13:12] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:33, 03:46](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [31:24, 09:40] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:55, 04:45](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:01, 04:39](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [19:31, 13:54](1147 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:34, 13:47](830 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:58, 08:08](1144 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:09, 13:50](1213 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [30:28, 09:22] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:50, 04:50](1095 MB) - -PASS -- COMPILE 'hafsw_intel' [42:26, 20:38] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:14, 04:56](702 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:22, 05:51](1052 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:35, 06:53](750 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:01, 11:19](776 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:37, 12:27](794 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:30, 04:52](467 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:03, 06:02](481 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:32, 02:32](388 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:20, 06:32](455 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:20, 03:30](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:46, 03:18](504 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:44, 04:09](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:44, 01:28](421 MB) -PASS -- TEST 'gnv1_nested_intel' [11:24, 04:43](1709 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [32:22, 11:03] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:26, 12:26](619 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [37:30, 19:18] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:08, 07:28](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:38, 07:31](680 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [39:33, 21:04] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:14, 05:33](670 MB) - -PASS -- COMPILE 'hafs_all_intel' [29:21, 18:30] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:11, 06:01](740 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:30, 06:04](726 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:48, 16:27](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:16, 11:13] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:49, 02:33](767 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:06, 01:37](757 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:51, 02:24](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:52, 02:29](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:51, 02:32](651 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:00, 02:35](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:52, 02:36](770 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:49, 02:27](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:49, 05:58](696 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [16:48, 05:53](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:30, 02:35](766 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:57, 04:10](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:51, 04:08](2034 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:15, 07:48] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:51, 05:15](739 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:20, 10:32] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [12:46, 02:35](767 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 03:31] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:32, 01:36](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:32, 01:31](457 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:35, 01:00](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:23, 15:44] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [12:15, 04:18](1908 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:22, 14:42] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:40, 04:06](1903 MB) - -PASS -- COMPILE 'atml_intel' [18:17, 16:38] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:54, 09:55](1883 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [15:25, 09:07](1891 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:34, 04:54](1036 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:20, 12:34] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:07, 06:47](1926 MB) - -PASS -- COMPILE 'atmw_intel' [18:21, 15:26] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:02, 02:31](1875 MB) - -PASS -- COMPILE 'atmaero_intel' [33:24, 15:42] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:11, 04:49](3130 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:09, 04:27](3002 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:34, 04:33](3014 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [29:27, 10:38] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:42, 22:55](4541 MB) +PASS -- COMPILE 's2swa_32bit_intel' [26:22, 24:08] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:26, 06:52](3197 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:29, 25:57] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:31, 15:09](1910 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:06, 16:23](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:56, 08:19](1063 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:29, 17:04](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [28:29, 25:47] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:59, 14:44](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:20, 14:19] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:46, 24:11](1939 MB) + +PASS -- COMPILE 's2swa_intel' [26:30, 23:36] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:32, 08:33](3222 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:58, 08:39](3223 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:48, 05:17](3150 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:21, 08:35](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:54, 05:12](3175 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:02, 07:55](3744 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:46, 08:17](3214 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:04, 07:04](3533 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:54, 08:45](3228 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [27:04, 10:11](3817 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:46, 07:06](3616 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [41:50, 10:30](4515 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:03, 07:19](4666 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:36, 06:04](3213 MB) + +PASS -- COMPILE 's2sw_intel' [23:25, 21:13] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:02, 05:59](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:14, 08:24](1986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:24, 13:54] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:34, 13:26](3306 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:23, 13:10] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:21, 09:05](1947 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [20:29, 18:05] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:26, 05:03](1987 MB) + +PASS -- COMPILE 's2s_intel' [21:25, 18:18] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:27, 06:04](2880 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:29, 02:48](2891 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:39, 02:04](2306 MB) + +PASS -- COMPILE 's2swa_faster_intel' [28:28, 25:54] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:49, 08:24](3233 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [26:18, 23:44] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:01, 15:11](1924 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:27, 08:32](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:08, 16:55](1890 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:16, 13:00] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:04, 24:40](1949 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:21, 15:20] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:48, 03:32](665 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:25, 02:53](1563 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:43, 02:51](1568 MB) +PASS -- TEST 'control_latlon_intel' [07:24, 02:47](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:25, 02:47](1566 MB) +PASS -- TEST 'control_c48_intel' [48:40, 09:18](1587 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [43:50, 05:17](709 MB) +PASS -- TEST 'control_c192_intel' [15:34, 10:06](1695 MB) +PASS -- TEST 'control_c384_intel' [22:46, 11:33](1973 MB) +PASS -- TEST 'control_c384gdas_intel' [21:50, 07:24](1174 MB) +PASS -- TEST 'control_stochy_intel' [06:02, 01:30](623 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:53, 00:53](437 MB) +PASS -- TEST 'control_lndp_intel' [06:01, 01:29](621 MB) +PASS -- TEST 'control_iovr4_intel' [06:08, 02:11](619 MB) +PASS -- TEST 'control_iovr5_intel' [06:07, 02:10](621 MB) +PASS -- TEST 'control_p8_intel' [07:46, 03:47](1851 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:46, 03:28](1849 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:04, 03:59](1856 MB) +PASS -- TEST 'control_restart_p8_intel' [09:46, 02:39](1002 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:41, 03:50](1848 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:40, 02:33](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:43, 03:49](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:45, 03:48](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:29, 06:14](1862 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:47, 04:15](1904 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:59, 03:35](1863 MB) +PASS -- TEST 'merra2_thompson_intel' [12:48, 03:48](1856 MB) +PASS -- TEST 'regional_control_intel' [09:09, 05:22](860 MB) +PASS -- TEST 'regional_restart_intel' [26:07, 03:15](860 MB) +PASS -- TEST 'regional_decomp_intel' [10:06, 05:25](860 MB) +PASS -- TEST 'regional_noquilt_intel' [36:11, 04:58](1183 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:04, 05:08](854 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [33:00, 05:04](859 MB) +PASS -- TEST 'regional_wofs_intel' [34:08, 05:47](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [16:23, 13:53] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:34, 06:11](1007 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:34, 03:54](1158 MB) +PASS -- TEST 'rap_decomp_intel' [10:23, 06:29](1006 MB) +PASS -- TEST 'rap_2threads_intel' [09:31, 05:47](1093 MB) +PASS -- TEST 'rap_restart_intel' [08:24, 03:18](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:13, 06:08](1001 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:26, 06:28](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:27, 04:40](879 MB) +PASS -- TEST 'hrrr_control_intel' [06:27, 03:16](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:27, 03:21](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [17:29, 02:50](1074 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:01, 01:50](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:23, 06:03](998 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:53, 07:30](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:45, 07:13](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [16:24, 12:45] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [12:10, 06:37](959 MB) +PASS -- TEST 'control_ras_intel' [07:40, 02:54](656 MB) + +PASS -- COMPILE 'wam_intel' [15:16, 12:30] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [18:23, 10:23](1652 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:18, 13:05] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:45, 03:10](1853 MB) +PASS -- TEST 'regional_control_faster_intel' [22:09, 05:06](858 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [26:23, 15:56] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:12, 02:15](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:10, 02:11](1605 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:44, 02:57](809 MB) +PASS -- TEST 'control_lndp_debug_intel' [09:44, 02:38](808 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:15, 04:43](1115 MB) +PASS -- TEST 'control_ras_debug_intel' [06:36, 02:42](815 MB) +PASS -- TEST 'control_diag_debug_intel' [07:04, 02:41](1667 MB) +PASS -- TEST 'control_debug_p8_intel' [05:59, 03:02](1902 MB) +PASS -- TEST 'regional_debug_intel' [26:59, 16:37](917 MB) +PASS -- TEST 'rap_control_debug_intel' [07:45, 04:46](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:39, 04:39](1184 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:33, 04:43](1193 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:50, 04:48](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:42, 04:45](1193 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:37, 04:59](1271 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:40, 04:58](1187 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:46, 04:53](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:43, 04:49](1195 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:40, 04:47](1189 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:41, 04:46](1186 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:36, 04:53](1190 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:50, 07:33](1189 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:36, 04:49](1185 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:47, 05:33](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:42, 04:55](1188 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:36, 08:07](1191 MB) + +PASS -- COMPILE 'wam_debug_intel' [24:22, 08:07] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:07, 12:19](1683 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [25:22, 12:15] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:54, 03:43](1020 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:16, 05:12](877 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:25, 02:50](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:24, 04:51](936 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:14, 02:30](930 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:15, 02:58](874 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:27, 03:59](787 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:49, 01:35](770 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:23, 12:05] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:00, 01:59](1073 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:05, 01:10](1073 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [14:14, 01:12](961 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:22, 12:21] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:17, 03:40](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [45:29, 08:10] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:41, 04:42](1071 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:53, 04:29](1063 MB) +PASS -- TEST 'conus13km_debug_intel' [26:14, 13:49](1147 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:13, 13:47](829 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:57, 07:59](1144 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:05, 13:44](1213 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [43:30, 07:53] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:46, 04:45](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [53:31, 18:32] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:37, 04:53](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:41, 05:32](1055 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:57, 06:41](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:52, 11:17](774 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:10, 12:25](799 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:35, 04:47](463 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:48, 05:54](481 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [19:18, 02:34](387 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:37, 06:29](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [20:27, 03:35](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:25, 03:17](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:36, 04:11](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:43, 01:26](422 MB) +PASS -- TEST 'gnv1_nested_intel' [22:11, 04:37](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [43:29, 09:31] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:47, 12:26](618 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [51:26, 18:11] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:44, 07:27](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:11, 07:30](679 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [43:21, 19:34] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:29, 05:34](671 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:19, 16:40] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:59, 05:55](741 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:56, 05:55](726 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:25, 16:15](897 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [29:18, 09:14] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [14:36, 02:33](768 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [49:31, 01:42](744 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [20:39, 02:25](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:32, 02:32](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:27, 02:31](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [16:43, 02:33](768 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:57, 02:35](767 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:22, 02:25](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:41, 05:50](697 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:03, 05:48](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [15:30, 02:33](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:36, 04:06](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [16:01, 04:03](2035 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [25:17, 06:42] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:39, 05:14](750 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [28:18, 09:12] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:20, 02:34](755 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [18:07, 03:58] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:52, 01:43](679 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:50, 01:35](457 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:39, 01:00](679 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [29:20, 16:26] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:38, 04:20](1912 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [28:24, 15:00] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:34, 04:23](1895 MB) + +PASS -- COMPILE 'atml_intel' [30:19, 17:01] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:11, 08:51](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [14:13, 08:44](1878 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:34, 04:47](1034 MB) + +PASS -- COMPILE 'atml_debug_intel' [26:18, 13:28] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:20, 06:59](1932 MB) + +PASS -- COMPILE 'atmw_intel' [29:16, 16:08] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:06, 02:51](1872 MB) + +PASS -- COMPILE 'atmaero_intel' [23:11, 15:03] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [13:17, 04:53](3127 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:18, 04:30](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:44, 04:45](3014 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [17:23, 10:44] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [30:57, 23:04](4543 MB) SYNOPSIS: -Starting Date/Time: 20240906 11:12:54 -Ending Date/Time: 20240906 15:44:31 -Total Time: 04h:33m:46s +Starting Date/Time: 20240912 08:28:20 +Ending Date/Time: 20240912 21:54:28 +Total Time: 13h:28m:09s Compiles Completed: 41/41 Tests Completed: 184/184 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 8da1543c16..67162950d9 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a78129ced4e805131daeb5617e71ca20902410ca +c64ccb4c80d1f8c91039650319784bf96c81a676 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,287 +35,366 @@ 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-20240904 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_242863 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_86017 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:11, 20:21] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:09, 07:28](3203 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:13, 23:36] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:33, 14:13](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:22, 14:37](1927 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:22, 07:02](1071 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:27, 14:56](1891 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:13, 23:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:55, 13:13](1907 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:11, 14:28] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:26, 25:22](1939 MB) - -PASS -- COMPILE 's2swa_intel' [21:11, 19:16] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:07, 07:45](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:22, 07:53](3223 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:47, 05:04](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:07, 07:59](3249 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:47, 05:07](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:08, 06:36](3467 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:00, 07:45](3224 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:08, 06:47](3166 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:21, 08:00](3224 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:35, 09:45](3445 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [15:40, 06:32](3605 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:56, 10:18](4205 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:59, 06:22](4358 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:05, 07:50](3212 MB) - -PASS -- COMPILE 's2sw_intel' [21:11, 19:29] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:13, 04:54](1931 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:19, 05:04](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:13, 15:36] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:30, 09:50](3281 MB) - -PASS -- COMPILE 's2sw_debug_intel' [15:11, 13:51] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:50, 06:00](1948 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:11, 17:37] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:40, 05:19](1992 MB) - -PASS -- COMPILE 's2s_intel' [19:11, 17:05] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:15, 06:30](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:13, 01:57](2882 MB) -PASS -- TEST 'cpld_restart_c48_intel' [14:23, 01:11](2292 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:15, 20:02] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:42, 08:06](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:12, 22:19] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:29, 15:14](1929 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:21, 07:50](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:23, 17:01](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 13:20] ( 1558 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:25, 28:14](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:10, 14:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:47, 03:58](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:29, 03:37](1559 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:24, 03:42](1570 MB) -PASS -- TEST 'control_latlon_intel' [12:18, 03:11](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:23, 03:40](1568 MB) -PASS -- TEST 'control_c48_intel' [15:35, 06:31](1566 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:20, 05:43](699 MB) -PASS -- TEST 'control_c192_intel' [19:34, 10:22](1666 MB) -PASS -- TEST 'control_c384_intel' [28:49, 18:40](1938 MB) -PASS -- TEST 'control_c384gdas_intel' [24:30, 14:25](1153 MB) -PASS -- TEST 'control_stochy_intel' [05:49, 02:17](619 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:30, 01:20](426 MB) -PASS -- TEST 'control_lndp_intel' [07:50, 02:11](619 MB) -PASS -- TEST 'control_iovr4_intel' [09:56, 03:03](618 MB) -PASS -- TEST 'control_iovr5_intel' [09:52, 02:46](618 MB) -PASS -- TEST 'control_p8_intel' [12:41, 03:18](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [14:00, 03:43](1861 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [12:44, 03:16](1854 MB) -PASS -- TEST 'control_restart_p8_intel' [06:04, 02:05](996 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:45, 03:37](1853 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:59, 02:03](1006 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:45, 03:25](1854 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:00, 02:53](1929 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:48, 05:37](1861 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:08, 04:22](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:15, 03:46](1861 MB) -PASS -- TEST 'merra2_thompson_intel' [08:05, 03:47](1853 MB) -PASS -- TEST 'regional_control_intel' [06:37, 04:39](849 MB) -PASS -- TEST 'regional_restart_intel' [06:41, 02:34](854 MB) -PASS -- TEST 'regional_decomp_intel' [08:35, 04:48](852 MB) -PASS -- TEST 'regional_2threads_intel' [06:35, 02:46](992 MB) -PASS -- TEST 'regional_noquilt_intel' [06:47, 04:28](1179 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:50, 04:37](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 04:51](851 MB) -PASS -- TEST 'regional_wofs_intel' [08:39, 06:07](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [16:10, 13:55] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:05, 07:11](1003 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:08, 03:52](1147 MB) -PASS -- TEST 'rap_decomp_intel' [11:56, 07:29](1004 MB) -PASS -- TEST 'rap_2threads_intel' [10:08, 06:08](1084 MB) -PASS -- TEST 'rap_restart_intel' [05:54, 03:29](871 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:56, 07:12](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:59, 07:09](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:04, 04:53](871 MB) -PASS -- TEST 'hrrr_control_intel' [05:56, 03:50](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 03:55](997 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:01, 03:03](1074 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:33, 01:55](827 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:56, 06:48](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 08:14](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 07:58](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [15:11, 13:02] -PASS -- TEST 'control_csawmg_intel' [09:38, 06:37](958 MB) -PASS -- TEST 'control_ras_intel' [05:25, 03:18](653 MB) - -PASS -- COMPILE 'wam_intel' [15:11, 13:29] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:03, 12:12](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:17, 13:14] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:04, 03:13](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [06:39, 04:41](846 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:12, 14:35] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:49, 03:07](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 03:05](1596 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:19](797 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:31, 03:00](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:17](1099 MB) -PASS -- TEST 'control_ras_debug_intel' [04:29, 02:57](804 MB) -PASS -- TEST 'control_diag_debug_intel' [04:44, 02:52](1659 MB) -PASS -- TEST 'control_debug_p8_intel' [05:40, 03:09](1883 MB) -PASS -- TEST 'regional_debug_intel' [18:34, 16:52](899 MB) -PASS -- TEST 'rap_control_debug_intel' [06:30, 04:56](1175 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:30, 05:05](1172 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 04:58](1179 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:29, 05:06](1179 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:34, 04:59](1176 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:21](1260 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 05:04](1175 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 05:05](1176 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:32, 05:07](1179 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:33, 05:11](1176 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:30, 04:52](1177 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 05:09](1175 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:31, 07:49](1174 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:31, 05:06](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:46](1182 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:27, 04:58](1178 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:00, 08:21](1181 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:14, 10:23] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:57, 13:36](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 12:48] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:04, 03:30](1014 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:59, 06:03](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:57, 03:32](879 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:56, 05:12](935 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:00, 02:40](926 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:53, 03:32](878 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:54, 04:33](776 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:34, 01:46](760 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 12:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:59, 02:29](1084 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:56, 00:55](1065 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:57, 01:32](961 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 13:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:01, 04:27](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 10:19] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:30, 05:04](1052 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:30, 04:50](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [18:12, 14:24](1133 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:08, 14:21](805 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:00, 08:24](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:01, 14:34](1198 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:13, 10:20] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:29, 05:08](1078 MB) - -PASS -- COMPILE 'hafsw_intel' [19:11, 17:03] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:11, 04:49](690 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 03:55](1033 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:28, 07:25](725 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:16, 11:22](759 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:24, 12:28](778 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:12, 05:05](459 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:30, 06:12](479 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:11, 02:26](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:37, 06:51](440 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:55, 03:34](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:09, 03:15](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:05, 04:03](557 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:34, 01:15](396 MB) -PASS -- TEST 'gnv1_nested_intel' [12:58, 05:05](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:12, 12:06] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:26, 12:36](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:11, 16:22] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:10, 07:05](601 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:12, 07:16](779 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:13, 16:50] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:34, 05:24](776 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:17, 15:23] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:16, 05:51](719 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:16, 06:06](703 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:12, 20:08](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:26] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:28, 02:33](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 01:34](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 02:24](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:27, 02:28](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:27, 02:32](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:27, 02:34](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:26, 02:33](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:26, 02:25](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:02, 06:04](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:01, 05:53](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:33](751 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 04:34](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:31](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:14, 08:17] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:27, 05:24](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 12:35] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:25, 02:35](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:27] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:50, 01:35](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:43, 01:08](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:42, 00:48](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 14:19] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:18, 04:01](1917 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:24] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:15, 04:01](1897 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 13:48] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:48, 06:48](1880 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:39, 07:01](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 03:35](1036 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:11, 10:23] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:29, 06:23](1919 MB) - -PASS -- COMPILE 'atmw_intel' [15:13, 13:52] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:04, 02:10](1888 MB) - -PASS -- COMPILE 'atmaero_intel' [15:11, 13:07] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:10, 06:03](3121 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:07, 07:09](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:06, 06:39](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:14, 09:44] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:19, 18:23](4449 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:13, 18:01] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:00, 08:01](3200 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:23, 14:11](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 14:30](1934 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:23, 15:06](1890 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:31] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:47, 13:52](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:11, 12:52] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:22, 25:57](1940 MB) + +PASS -- COMPILE 's2swa_intel' [19:13, 17:52] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:01, 09:50](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:58, 09:58](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [22:26, 06:21](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:57, 10:00](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [19:26, 05:58](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:51, 08:19](3470 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:53, 09:45](3224 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:52, 08:31](3171 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:02, 09:51](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:35, 09:42](3446 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:08, 06:28](3605 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:07, 09:15](4210 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:52, 07:45](3213 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 16:49] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:19, 06:02](1928 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:19, 08:29](1995 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:11, 12:22] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:46, 14:15](3282 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:11, 12:27] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:20, 09:04](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:01] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:18, 05:12](1991 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 15:24] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:06, 05:30](2874 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:05, 01:55](2882 MB) +PASS -- TEST 'cpld_restart_c48_intel' [08:06, 01:09](2293 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:11, 19:34] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:29, 09:47](3225 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 21:06] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:45, 15:27](1924 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [09:58, 17:43](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:11, 12:34] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:15, 27:06](1949 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [12:44, 03:55](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [14:29, 03:48](1562 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:21, 03:53](1575 MB) +PASS -- TEST 'control_latlon_intel' [15:18, 03:37](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:31, 03:40](1565 MB) +PASS -- TEST 'control_c48_intel' [21:38, 09:50](1578 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [16:10, 05:45](699 MB) +PASS -- TEST 'control_c192_intel' [23:33, 11:22](1686 MB) +PASS -- TEST 'control_c384_intel' [39:38, 23:21](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [30:25, 14:25](1154 MB) +PASS -- TEST 'control_stochy_intel' [12:44, 02:04](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:28, 01:00](426 MB) +PASS -- TEST 'control_lndp_intel' [12:44, 02:05](619 MB) +PASS -- TEST 'control_iovr4_intel' [12:45, 02:45](618 MB) +PASS -- TEST 'control_iovr5_intel' [11:47, 02:49](618 MB) +PASS -- TEST 'control_p8_intel' [17:40, 04:02](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [16:56, 03:23](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [17:13, 03:54](1860 MB) +PASS -- TEST 'control_restart_p8_intel' [07:02, 02:28](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [19:03, 03:58](1855 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:58, 02:44](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [20:02, 03:51](1847 MB) +PASS -- TEST 'control_2threads_p8_intel' [18:00, 03:13](1941 MB) +PASS -- TEST 'control_p8_lndp_intel' [20:49, 06:33](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:54, 04:31](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:09, 03:24](1860 MB) +PASS -- TEST 'merra2_thompson_intel' [09:07, 03:35](1867 MB) +PASS -- TEST 'regional_control_intel' [06:37, 04:40](850 MB) +PASS -- TEST 'regional_restart_intel' [06:34, 03:13](854 MB) +PASS -- TEST 'regional_decomp_intel' [09:34, 04:55](859 MB) +PASS -- TEST 'regional_2threads_intel' [08:35, 02:55](995 MB) +PASS -- TEST 'regional_noquilt_intel' [09:37, 04:34](1181 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:41, 04:40](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:37, 04:38](852 MB) +PASS -- TEST 'regional_wofs_intel' [09:37, 06:17](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 13:17] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:01, 06:48](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:06, 03:48](1147 MB) +PASS -- TEST 'rap_decomp_intel' [10:58, 07:52](1004 MB) +PASS -- TEST 'rap_2threads_intel' [09:01, 06:43](1081 MB) +PASS -- TEST 'rap_restart_intel' [06:06, 03:38](872 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:45, 07:33](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:44, 07:37](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [51:00, 05:07](871 MB) +PASS -- TEST 'hrrr_control_intel' [07:03, 04:23](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:58, 03:53](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:00, 03:04](1070 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:08, 01:54](827 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:56, 06:47](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 08:29](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:32, 08:09](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [15:11, 13:33] +PASS -- TEST 'control_csawmg_intel' [10:43, 06:39](958 MB) +PASS -- TEST 'control_ras_intel' [06:25, 03:21](653 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:27] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:03, 12:02](1656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 12:58] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:50, 03:11](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [07:40, 04:33](829 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:11, 13:10] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:48, 02:40](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:43, 02:42](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:07](794 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:30, 02:55](793 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:39, 04:20](1095 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:57](801 MB) +PASS -- TEST 'control_diag_debug_intel' [04:57, 02:55](1655 MB) +PASS -- TEST 'control_debug_p8_intel' [05:40, 03:03](1891 MB) +PASS -- TEST 'regional_debug_intel' [19:34, 16:59](899 MB) +PASS -- TEST 'rap_control_debug_intel' [11:32, 04:59](1173 MB) +PASS -- TEST 'hrrr_control_debug_intel' [14:29, 05:01](1169 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [14:28, 05:11](1176 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [14:31, 05:16](1176 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:30, 05:11](1173 MB) +PASS -- TEST 'rap_diag_debug_intel' [47:42, 05:16](1258 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [46:32, 05:07](1173 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [46:32, 05:09](1173 MB) +PASS -- TEST 'rap_lndp_debug_intel' [46:16, 05:07](1176 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [45:32, 05:02](1173 MB) +PASS -- TEST 'rap_noah_debug_intel' [45:37, 04:58](1169 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [46:36, 05:08](1173 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [53:33, 08:04](1169 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [50:30, 05:02](1172 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [51:36, 05:56](1179 MB) +PASS -- TEST 'rap_flake_debug_intel' [55:30, 05:06](1175 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [01:02, 08:27](1180 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:12, 09:24] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [09:14, 13:25](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:13, 03:30](1012 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [59:00, 05:50](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:02, 03:20](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:03, 05:14](935 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:01, 02:44](927 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:56, 03:53](878 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [22:55, 04:26](775 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:34, 01:58](760 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:12, 12:37] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:20, 02:23](1084 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:54, 00:53](1065 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:56, 01:20](962 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:59] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:05, 04:31](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:13, 09:41] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 05:11](1052 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:37, 04:57](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [16:11, 14:32](1133 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:06, 14:31](805 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [06:56, 08:00](1116 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:05, 14:27](1198 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 09:41] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [34:29, 05:01](1077 MB) + +PASS -- COMPILE 'hafsw_intel' [18:12, 16:16] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [34:14, 04:37](690 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:42, 03:54](1034 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:28, 07:19](725 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [40:20, 11:32](761 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:27, 12:33](779 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:11, 05:00](464 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [32:27, 06:17](479 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [28:06, 02:30](366 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [33:26, 06:54](430 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [25:48, 03:32](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:00, 03:20](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [18:03, 04:01](555 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:38, 01:13](396 MB) +PASS -- TEST 'gnv1_nested_intel' [15:54, 05:03](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:11, 11:12] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:58, 12:21](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 15:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:07, 07:12](603 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:18, 07:09](779 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:15, 16:13] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:21, 05:25](775 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:11, 15:15] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:10, 05:55](719 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:18, 06:07](705 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:16, 20:07](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:59] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:28, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:28, 01:34](741 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:27](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 02:26](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:23, 02:27](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 02:33](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 02:34](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 02:25](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:03, 05:59](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:00, 05:59](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:30, 04:39](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:28, 04:41](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 07:54] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:28, 05:24](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 12:22] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:32](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:12, 03:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:50, 01:42](317 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:46, 01:16](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:46, 00:51](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:15, 15:35] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:24, 04:03](1916 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:13, 13:54] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:18, 04:00](1904 MB) + +PASS -- COMPILE 'atml_intel' [17:12, 15:33] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:36, 07:06](1880 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:40, 07:11](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 03:33](1035 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:11, 12:18] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:31, 06:12](1919 MB) + +PASS -- COMPILE 'atmw_intel' [17:11, 15:54] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:02, 02:38](1888 MB) + +PASS -- COMPILE 'atmaero_intel' [16:11, 14:31] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:11, 06:37](3121 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:12, 06:35](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:04, 06:51](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:11, 10:28] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:29, 18:16](4484 MB) SYNOPSIS: -Starting Date/Time: 20240905 02:47:02 -Ending Date/Time: 20240905 04:36:54 -Total Time: 01h:50m:41s +Starting Date/Time: 20240909 23:36:06 +Ending Date/Time: 20240910 02:33:17 +Total Time: 02h:57m:58s Compiles Completed: 41/41 -Tests Completed: 185/185 +Tests Completed: 182/185 +Failed Tests: +* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2363/ufs-weather-model/tests/logs/log_gaea/run_cpld_restart_gfsv17_intel.log +* TEST cpld_restart_bmark_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2363/ufs-weather-model/tests/logs/log_gaea/run_cpld_restart_bmark_p8_intel.log +* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2363/ufs-weather-model/tests/logs/log_gaea/run_cpld_restart_pdlib_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF GAEA REGRESSION TESTING LOG==== +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +94d3c1110e119e311d76266bdc79a376f12d856e + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_183925 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:34] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [29:22, 13:46](1909 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:30, 07:08](1063 MB) + +PASS -- COMPILE 's2swa_intel' [20:11, 18:07] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_bmark_p8_intel' [31:34, 09:18](4206 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [10:57, 05:57](4364 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 20:55] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:18, 15:08](1925 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 07:21](1090 MB) + +SYNOPSIS: +Starting Date/Time: 20240911 17:40:18 +Ending Date/Time: 20240911 18:44:42 +Total Time: 01h:04m:43s +Compiles Completed: 3/3 +Tests Completed: 6/6 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index f9fb19a0a6..6e961e3796 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -8fb13929a4f74a9181c8d3f619893aaf6e507bc5 +c64ccb4c80d1f8c91039650319784bf96c81a676 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -12,7 +12,7 @@ Submodule hashes used in testing: 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -24,377 +24,445 @@ 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: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_439415 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3529378 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:12, 18:48] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:08, 07:25](3304 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:12, 17:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:00, 17:54](1936 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:21, 18:45](2141 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:35](1237 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 19:52](1855 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:12, 16:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:48, 17:24](1967 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:13, 12:55] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:03, 26:07](1930 MB) - -PASS -- COMPILE 's2swa_intel' [23:12, 19:56] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:23, 06:15](3360 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:32, 06:58](3329 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:25, 03:58](3264 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:19, 06:38](3342 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:40, 03:42](3284 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:16, 08:44](3651 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:16, 06:33](3332 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:23, 05:43](3201 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:34, 07:26](3322 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:16, 11:30](3543 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:04, 06:56](3623 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:31, 10:48](4309 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:52, 06:35](4393 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:22, 06:04](3331 MB) - -PASS -- COMPILE 's2sw_intel' [21:12, 19:27] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:16, 05:42](1984 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:15, 05:15](2058 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 06:51] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:07, 09:01](3399 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:12, 05:56] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:07, 06:20](2011 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [21:14, 18:40] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:48](2054 MB) - -PASS -- COMPILE 's2s_intel' [20:12, 17:49] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:55, 10:09](3053 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 03:22](3043 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:51, 02:00](2477 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:54] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:17, 06:07](3343 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:54] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:10, 18:28](2000 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 08:41](1262 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:09, 20:36](1923 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:46] ( 1558 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:03, 26:34](1945 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:26, 04:11](702 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:48, 03:22](1589 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:51, 03:24](1599 MB) -PASS -- TEST 'control_latlon_intel' [05:44, 03:20](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:51, 03:21](1602 MB) -PASS -- TEST 'control_c48_intel' [09:50, 07:40](1727 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:33](859 MB) -PASS -- TEST 'control_c192_intel' [14:04, 11:11](1747 MB) -PASS -- TEST 'control_c384_intel' [15:07, 11:42](1961 MB) -PASS -- TEST 'control_c384gdas_intel' [13:50, 09:03](1372 MB) -PASS -- TEST 'control_stochy_intel' [03:25, 01:53](651 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:06](512 MB) -PASS -- TEST 'control_lndp_intel' [03:26, 01:42](654 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:48](657 MB) -PASS -- TEST 'control_iovr5_intel' [05:23, 03:22](658 MB) -PASS -- TEST 'control_p8_intel' [05:55, 03:23](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:02, 03:21](1894 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:58, 03:10](1896 MB) -PASS -- TEST 'control_restart_p8_intel' [03:46, 01:49](1104 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:54, 03:14](1869 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:59, 01:42](1142 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:49, 03:17](1852 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:49, 02:58](1982 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:37](1887 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:51, 04:08](1952 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:52, 03:13](1907 MB) -PASS -- TEST 'merra2_thompson_intel' [05:51, 03:28](1895 MB) -PASS -- TEST 'regional_control_intel' [07:37, 05:29](1088 MB) -PASS -- TEST 'regional_restart_intel' [04:37, 02:59](1087 MB) -PASS -- TEST 'regional_decomp_intel' [07:34, 05:59](1088 MB) -PASS -- TEST 'regional_2threads_intel' [05:34, 03:37](1080 MB) -PASS -- TEST 'regional_noquilt_intel' [07:41, 05:23](1394 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:41, 05:22](1097 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:30](1086 MB) -PASS -- TEST 'regional_wofs_intel' [08:35, 06:58](1905 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:14] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:45, 08:00](1108 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:19, 04:16](1250 MB) -PASS -- TEST 'rap_decomp_intel' [10:37, 08:33](1045 MB) -PASS -- TEST 'rap_2threads_intel' [09:33, 07:34](1169 MB) -PASS -- TEST 'rap_restart_intel' [06:53, 04:14](1089 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:40, 08:00](1095 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:39, 08:15](1037 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:51, 06:25](1121 MB) -PASS -- TEST 'hrrr_control_intel' [06:46, 04:04](1038 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:37, 04:16](1033 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 03:45](1104 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:15](998 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:43, 08:12](1089 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:35](1967 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:14](2069 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:50] -PASS -- TEST 'control_csawmg_intel' [08:39, 06:18](1020 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:24](734 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:11, 04:24] -PASS -- TEST 'control_csawmg_gnu' [11:37, 09:36](755 MB) - -PASS -- COMPILE 'wam_intel' [13:12, 11:27] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:51, 11:34](1678 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 11:17] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:58, 02:47](1878 MB) -PASS -- TEST 'regional_control_faster_intel' [06:38, 05:04](1080 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:52] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:44, 02:45](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:39](1626 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:19](819 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:48](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:38](1135 MB) -PASS -- TEST 'control_ras_debug_intel' [05:24, 03:10](838 MB) -PASS -- TEST 'control_diag_debug_intel' [04:48, 02:56](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [05:42, 03:14](1919 MB) -PASS -- TEST 'regional_debug_intel' [20:40, 18:20](1096 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 04:59](1222 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:55](1209 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 05:14](1217 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 05:02](1215 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 05:01](1218 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:42, 05:18](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:33](1211 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:07](1216 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:25, 05:11](1216 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:13](1218 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:58](1216 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 05:45](1207 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:21](1206 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 05:07](1205 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:23, 06:44](1210 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:25, 05:00](1219 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:44, 08:42](1220 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:12, 07:23] -PASS -- TEST 'control_csawmg_debug_gnu' [04:35, 02:21](725 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:12, 06:10] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:47, 13:43](1685 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 04:31](1119 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:41, 07:01](1066 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:32](982 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 06:36](1082 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:26](967 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 04:03](936 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:41, 05:17](1036 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:55](932 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:00, 02:21](1193 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:01](1116 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:17](1102 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:25](982 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:11] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 05:01](1097 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 05:06](1087 MB) -PASS -- TEST 'conus13km_debug_intel' [16:56, 15:00](1236 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 14:56](923 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:47, 08:44](1165 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:45, 16:51](1278 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:57] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 05:06](1140 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 12:31] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:25, 05:21](725 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 07:05](1106 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:32, 07:26](848 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:18, 15:06](836 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:31, 16:12](872 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:12, 07:00](493 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:28, 07:42](501 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 02:54](370 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:31, 08:40](471 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:54, 05:01](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:56, 04:46](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:53, 05:34](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:19](401 MB) -PASS -- TEST 'gnv1_nested_intel' [07:36, 04:31](1753 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:10, 05:46] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:51, 13:20](596 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 12:05] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:02, 09:42](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:08, 09:37](700 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:55] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:37, 07:00](726 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:02] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:19, 07:34](810 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:19, 07:21](797 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:06, 16:53](1217 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:44] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:46](1171 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:41](1113 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:42](1033 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:56](1028 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:50](1024 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:46](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:41](1166 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:33](1033 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:31, 06:20](1074 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 06:36](1059 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:49](1170 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:22, 03:53](2503 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 03:59](2485 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:28] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:21, 06:24](1097 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:44] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:42](1159 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:24] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:51](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:54](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:35](321 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:40] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:10, 03:58](1963 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:22] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:00, 03:51](1957 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 11:15] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:09, 04:39](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:01, 04:39](1868 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:29, 02:23](1096 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:49] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:57, 06:05](1885 MB) - -PASS -- COMPILE 'atmw_intel' [12:12, 10:53] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 02:00](1913 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 11:07] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:58, 04:21](3204 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:59](3095 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 04:59](3109 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:55] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:13, 04:32] -PASS -- TEST 'control_c48_gnu' [13:39, 11:18](1511 MB) -PASS -- TEST 'control_stochy_gnu' [05:21, 03:27](497 MB) -PASS -- TEST 'control_ras_gnu' [06:22, 04:52](502 MB) -PASS -- TEST 'control_p8_gnu' [06:56, 04:52](1454 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:51, 04:47](1457 MB) -PASS -- TEST 'control_flake_gnu' [12:24, 10:40](539 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:12, 04:36] -PASS -- TEST 'rap_control_gnu' [12:39, 11:02](813 MB) -PASS -- TEST 'rap_decomp_gnu' [14:34, 12:48](811 MB) -PASS -- TEST 'rap_2threads_gnu' [13:33, 11:57](924 MB) -PASS -- TEST 'rap_restart_gnu' [07:43, 05:33](579 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [14:34, 12:28](818 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 11:49](842 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:48, 08:11](582 MB) -PASS -- TEST 'hrrr_control_gnu' [07:41, 05:41](818 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:45, 05:42](801 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:44, 05:06](915 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:48, 05:54](847 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:47, 03:09](566 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:51, 02:56](659 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:45, 10:44](809 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:39] -PASS -- TEST 'control_diag_debug_gnu' [03:44, 01:34](1275 MB) -PASS -- TEST 'regional_debug_gnu' [15:36, 13:38](761 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:38](830 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:25, 02:37](823 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:37](827 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:47](826 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:14, 02:52](910 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:24, 04:45](855 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:28, 02:40](825 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:30, 02:45](819 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:33](460 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:24, 01:42](452 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:43, 01:50](1426 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:26, 02:52](827 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [05:21, 03:30](826 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:37, 04:58](832 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:41] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:09] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:29, 10:51](709 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:39, 05:44](706 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:37, 08:57](752 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:38, 05:47](743 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:32, 06:22](707 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [11:40, 07:22](556 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [09:28, 02:39](540 MB) -PASS -- TEST 'conus13km_control_gnu' [06:57, 03:56](876 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:44, 05:50](878 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [09:45, 02:00](558 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:46] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:41, 06:05](732 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 06:43] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:25, 03:13](716 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:25, 03:38](717 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:54, 07:15](885 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [11:50, 07:35](573 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:45, 08:06](898 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:46, 07:01](959 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:49] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [07:25, 02:37](736 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 16:49] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:03] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:08, 06:53](1519 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:31] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:13, 15:58] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [30:00, 25:19](1461 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:12, 03:21] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:32] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:00](691 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:12, 12:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:12, 06:19](3327 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:12, 16:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:00, 17:35](1990 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:09, 18:16](2167 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:57, 19:43](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:14, 16:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:45, 17:12](1964 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:14, 06:02] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:11, 23:49](1889 MB) + +PASS -- COMPILE 's2swa_intel' [15:12, 12:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:13, 07:44](3335 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:22, 07:29](3368 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:15, 04:16](3268 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:14, 07:39](3364 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:14, 04:21](3285 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:10, 07:09](3640 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:14, 07:40](3364 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:07, 06:15](3233 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:22, 07:33](3366 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:18, 10:15](3542 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:36, 06:20](3632 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:32, 08:37](4309 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:09, 05:47](3338 MB) + +PASS -- COMPILE 's2sw_intel' [14:14, 12:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:53, 05:38](1985 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:59, 07:17](2058 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:13, 05:51] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:14, 13:08](3376 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:13, 05:41] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:06, 09:14](2019 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:14, 11:13] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:59, 04:19](2014 MB) + +PASS -- COMPILE 's2s_intel' [13:14, 11:24] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:40, 07:50](3041 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:41, 02:39](3031 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:38, 01:33](2477 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:13, 16:41] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:13, 07:14](3343 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 15:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:59, 17:42](2020 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:54, 20:05](1926 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:36] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:10, 26:15](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:20, 03:19](711 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:36, 03:12](1599 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:41, 03:19](1593 MB) +PASS -- TEST 'control_latlon_intel' [05:36, 03:10](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:43, 03:13](1595 MB) +PASS -- TEST 'control_c48_intel' [13:41, 11:31](1724 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:30](845 MB) +PASS -- TEST 'control_c192_intel' [13:51, 11:52](1756 MB) +PASS -- TEST 'control_c384_intel' [16:48, 13:24](1987 MB) +PASS -- TEST 'control_c384gdas_intel' [15:37, 08:11](1375 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:37](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:26, 00:59](507 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:32](660 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:28](651 MB) +PASS -- TEST 'control_iovr5_intel' [04:23, 02:28](657 MB) +PASS -- TEST 'control_p8_intel' [05:58, 03:39](1882 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:54, 03:04](1894 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 03:35](1876 MB) +PASS -- TEST 'control_restart_p8_intel' [04:44, 02:02](1127 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:50, 03:38](1872 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:50, 02:00](1167 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:48, 03:41](1868 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:48, 03:32](1960 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:43, 06:34](1894 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:54, 04:08](1951 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:06](1899 MB) +PASS -- TEST 'merra2_thompson_intel' [05:50, 03:25](1895 MB) +PASS -- TEST 'regional_control_intel' [07:36, 05:28](1092 MB) +PASS -- TEST 'regional_restart_intel' [04:34, 02:52](1083 MB) +PASS -- TEST 'regional_decomp_intel' [07:34, 05:41](1090 MB) +PASS -- TEST 'regional_2threads_intel' [05:33, 03:25](1092 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 05:16](1389 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:37, 05:16](1100 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 05:21](1089 MB) +PASS -- TEST 'regional_wofs_intel' [08:33, 06:49](1916 MB) + +PASS -- COMPILE 'rrfs_intel' [11:13, 10:05] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:41, 07:47](1115 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:01, 04:06](1248 MB) +PASS -- TEST 'rap_decomp_intel' [10:42, 08:14](1040 MB) +PASS -- TEST 'rap_2threads_intel' [09:43, 07:21](1175 MB) +PASS -- TEST 'rap_restart_intel' [06:44, 04:03](1104 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:45, 07:46](1100 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:45, 08:11](1038 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:42, 05:52](1134 MB) +PASS -- TEST 'hrrr_control_intel' [06:38, 03:59](1043 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:38, 04:08](1032 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:38, 03:39](1101 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:29, 02:10](1002 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:50, 07:43](1095 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:20](1993 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 09:07](2065 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 09:48] +PASS -- TEST 'control_csawmg_intel' [07:36, 06:08](1017 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:18](743 MB) + +PASS -- COMPILE 'csawmg_gnu' [07:12, 04:14] +PASS -- TEST 'control_csawmg_gnu' [12:41, 08:31](741 MB) + +PASS -- COMPILE 'wam_intel' [12:12, 09:51] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:47, 11:08](1670 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 10:09] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:51, 02:46](1886 MB) +PASS -- TEST 'regional_control_faster_intel' [06:33, 04:58](1086 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:12, 07:38] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:35, 02:14](1616 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:17](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:03](832 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:51](829 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:36, 04:22](1145 MB) +PASS -- TEST 'control_ras_debug_intel' [04:25, 02:49](839 MB) +PASS -- TEST 'control_diag_debug_intel' [04:46, 02:43](1688 MB) +PASS -- TEST 'control_debug_p8_intel' [04:41, 02:39](1915 MB) +PASS -- TEST 'regional_debug_intel' [19:38, 17:39](1113 MB) +PASS -- TEST 'rap_control_debug_intel' [07:23, 05:01](1218 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:58](1210 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 05:04](1213 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:57](1217 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 05:07](1222 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:19](1297 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 05:08](1219 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 05:05](1219 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:06](1224 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:07](1215 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:25, 04:58](1217 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:22, 05:04](1217 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:19](1215 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 05:04](1215 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 06:17](1227 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:21, 05:01](1217 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:41, 08:45](1218 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [11:12, 04:17] +PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:21](732 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:12, 04:42] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:47, 13:44](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 09:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:04, 03:57](1119 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:32](1051 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 03:22](987 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 06:07](1093 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:09](961 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:38](918 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:38, 04:54](1038 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:50](928 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:12, 09:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:54, 02:07](1194 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:44, 00:55](1111 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:13](1096 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 09:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:09](982 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:37] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:03](1092 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:49](1100 MB) +PASS -- TEST 'conus13km_debug_intel' [16:53, 14:55](1243 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:49, 15:27](942 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 08:24](1160 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 15:17](1300 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:39] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:56](1140 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 11:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:18, 04:59](722 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:00](1094 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:20, 06:57](810 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:16, 13:49](858 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:28, 15:36](877 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:57, 05:30](493 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:18, 06:40](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:40](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:11, 07:14](481 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:45](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:30](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:04](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:11](403 MB) +PASS -- TEST 'gnv1_nested_intel' [06:32, 03:59](1742 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:12, 04:57] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:50, 13:07](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:12, 11:01] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:01, 08:51](671 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:05, 08:58](743 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:24] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:33, 06:30](725 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 10:38] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:16, 06:32](815 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:14, 06:39](801 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:09](1219 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:24] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:42](1158 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:39](1111 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:32](1046 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:38](1033 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:37](1040 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:41](1184 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:41](1176 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:38](1047 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:22, 06:43](1065 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:17, 06:27](1044 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:40](1156 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:50](2515 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:57](2529 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:27] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:15](1071 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 06:25] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:46](1161 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:12] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:45](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:50](330 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:24, 00:31](326 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:36] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:58, 03:40](1986 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:20] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:53, 03:38](1952 MB) + +PASS -- COMPILE 'atml_intel' [12:16, 10:50] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:59, 04:17](1865 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:58, 04:19](1864 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:44, 02:20](1084 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 05:44] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:57, 05:45](1888 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:19] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:47, 01:51](1916 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:22] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:55, 04:08](3196 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:53, 04:54](3111 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:43, 04:58](3114 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:35] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:31] +PASS -- TEST 'control_c48_gnu' [11:39, 09:12](1510 MB) +PASS -- TEST 'control_stochy_gnu' [06:22, 03:23](492 MB) +PASS -- TEST 'control_ras_gnu' [07:22, 04:50](505 MB) +PASS -- TEST 'control_p8_gnu' [08:53, 05:06](1446 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:50, 04:59](1455 MB) +PASS -- TEST 'control_flake_gnu' [13:26, 10:19](540 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:11] +PASS -- TEST 'rap_control_gnu' [13:31, 10:42](812 MB) +PASS -- TEST 'rap_decomp_gnu' [13:30, 11:00](816 MB) +PASS -- TEST 'rap_2threads_gnu' [12:36, 09:53](920 MB) +PASS -- TEST 'rap_restart_gnu' [07:43, 05:35](578 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 10:50](817 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:12](811 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:47, 08:01](580 MB) +PASS -- TEST 'hrrr_control_gnu' [08:31, 05:35](815 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:37, 05:34](832 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:35, 04:59](914 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:34](809 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:26, 02:53](568 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 02:51](654 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:43, 10:35](814 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:33] +PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:40](1273 MB) +PASS -- TEST 'regional_debug_gnu' [12:37, 10:58](755 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:43](827 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:33](822 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:21, 02:37](826 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:21, 02:37](830 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:52](908 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 04:07](818 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:21, 02:39](823 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:36](818 MB) +PASS -- TEST 'control_ras_debug_gnu' [04:21, 01:36](461 MB) +PASS -- TEST 'control_stochy_debug_gnu' [04:21, 01:45](452 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:32](1441 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:37](823 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [05:22, 02:51](827 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:38, 04:25](828 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:25] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:09] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:31, 09:31](709 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:32, 05:01](709 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:40, 08:37](753 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:29, 04:28](745 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:29, 05:05](702 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:38, 07:02](553 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:27, 02:32](537 MB) +PASS -- TEST 'conus13km_control_gnu' [05:53, 03:10](874 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:45, 05:34](882 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:43, 01:49](571 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:30] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:40, 05:46](731 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:38] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:23, 02:34](716 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:22, 02:31](712 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:50, 06:57](895 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:43, 07:05](585 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 07:46](898 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:43, 07:06](962 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:36] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:22, 02:43](737 MB) + +PASS -- COMPILE 's2swa_gnu' [18:14, 16:30] + +PASS -- COMPILE 's2s_gnu' [17:14, 16:03] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:06, 10:57](1543 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:11] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:14, 16:10] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:59, 23:19](1460 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 02:58] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:14, 15:26] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:01](695 MB) SYNOPSIS: -Starting Date/Time: 20240905 16:15:04 -Ending Date/Time: 20240905 18:13:40 -Total Time: 01h:59m:34s +Starting Date/Time: 20240910 03:30:29 +Ending Date/Time: 20240910 05:22:15 +Total Time: 01h:52m:07s Compiles Completed: 57/57 -Tests Completed: 243/243 +Tests Completed: 240/243 +Failed Tests: +* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2363/ufs-weather-model/tests/logs/log_hera/run_cpld_restart_gfsv17_intel.log +* TEST cpld_restart_bmark_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2363/ufs-weather-model/tests/logs/log_hera/run_cpld_restart_bmark_p8_intel.log +* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2363/ufs-weather-model/tests/logs/log_hera/run_cpld_restart_pdlib_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +94d3c1110e119e311d76266bdc79a376f12d856e + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1118900 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:05, 17:33](1972 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:23, 08:22](1274 MB) + +PASS -- COMPILE 's2swa_intel' [15:12, 13:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_bmark_p8_intel' [17:56, 08:53](4348 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:49, 05:41](4391 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 16:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:08, 17:40](2043 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:13, 08:21](1272 MB) + +SYNOPSIS: +Starting Date/Time: 20240911 20:51:33 +Ending Date/Time: 20240911 21:43:55 +Total Time: 00h:52m:32s +Compiles Completed: 3/3 +Tests Completed: 6/6 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 5b0445a2c8..e28a662a50 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: -4dee8d49d4f976f5af7b0fe91cab060c7814eac0 +94d3c1110e119e311d76266bdc79a376f12d856e Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,377 +35,444 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1802002 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_573739 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [11:01, 11:01] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:24, 07:39](2123 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 17:06] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:11, 13:26](2002 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:01, 14:08](2318 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:26, 06:34](1303 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:48, 15:02](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:59, 15:59] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:34, 13:11](1991 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 05:18] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:58, 22:02](1976 MB) - -PASS -- COMPILE 's2swa_intel' [11:00, 11:00] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:25, 07:37](2184 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:31, 07:51](2178 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:02, 04:22](1953 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:27, 07:50](2198 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:21, 04:24](1733 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:23, 08:52](2545 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:21, 07:42](2162 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:13, 06:40](2083 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:12, 07:38](2180 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:55, 15:31](2974 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:05, 05:54](2921 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:43, 09:47](3809 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:11, 06:09](3632 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:41, 05:09](2154 MB) - -PASS -- COMPILE 's2sw_intel' [10:30, 10:29] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:46, 07:15](2024 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:57, 04:11](2103 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:51, 05:51] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:16, 08:27](2212 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:33, 05:33] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:38, 05:59](2039 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:57, 09:57] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:44, 04:02](2085 MB) - -PASS -- COMPILE 's2s_intel' [09:53, 09:53] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:23, 06:56](3064 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:28, 02:00](3015 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:39, 01:09](2493 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:57, 11:57] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:16, 07:32](2178 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:07, 16:07] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:38, 13:52](2049 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:43, 06:48](1393 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:23, 15:58](1967 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 04:16] ( 1558 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:06, 22:35](2013 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:44, 11:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:50, 03:38](724 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:30, 03:07](1616 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:39, 03:14](1617 MB) -PASS -- TEST 'control_latlon_intel' [03:38, 03:03](1612 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:42, 03:14](1613 MB) -PASS -- TEST 'control_c48_intel' [07:30, 07:03](1699 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:11, 05:59](847 MB) -PASS -- TEST 'control_c192_intel' [12:37, 12:10](1764 MB) -PASS -- TEST 'control_c384_intel' [13:56, 12:46](1998 MB) -PASS -- TEST 'control_c384gdas_intel' [11:30, 09:55](1507 MB) -PASS -- TEST 'control_stochy_intel' [01:52, 01:46](675 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:21, 01:09](547 MB) -PASS -- TEST 'control_lndp_intel' [01:56, 01:46](665 MB) -PASS -- TEST 'control_iovr4_intel' [03:02, 02:46](667 MB) -PASS -- TEST 'control_iovr5_intel' [02:46, 02:37](668 MB) -PASS -- TEST 'control_p8_intel' [03:56, 03:18](1912 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:01, 03:17](1894 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 03:13](1910 MB) -PASS -- TEST 'control_restart_p8_intel' [02:21, 01:51](1167 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:52, 03:13](1895 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:16, 01:45](1220 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:02, 03:23](1894 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:36, 02:58](1988 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:58, 05:39](1898 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:59, 04:24](1974 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:22, 02:42](1904 MB) -PASS -- TEST 'merra2_thompson_intel' [04:30, 03:47](1915 MB) -PASS -- TEST 'regional_control_intel' [05:09, 04:50](1196 MB) -PASS -- TEST 'regional_restart_intel' [03:06, 02:53](1170 MB) -PASS -- TEST 'regional_decomp_intel' [05:40, 05:26](1178 MB) -PASS -- TEST 'regional_2threads_intel' [03:30, 03:15](1156 MB) -PASS -- TEST 'regional_noquilt_intel' [04:55, 04:41](1520 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:06, 04:48](1198 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:09, 04:55](1198 MB) -PASS -- TEST 'regional_wofs_intel' [06:11, 05:52](2100 MB) - -PASS -- COMPILE 'rrfs_intel' [08:32, 08:32] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:20, 06:43](1213 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:07, 03:27](1344 MB) -PASS -- TEST 'rap_decomp_intel' [07:27, 06:53](1116 MB) -PASS -- TEST 'rap_2threads_intel' [06:52, 06:17](1358 MB) -PASS -- TEST 'rap_restart_intel' [04:16, 03:30](1136 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:19, 06:43](1223 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:33, 06:59](1157 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:50, 05:03](1215 MB) -PASS -- TEST 'hrrr_control_intel' [04:11, 03:29](1068 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:14, 03:39](1042 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:49, 04:04](1106 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:13, 01:52](1022 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:14, 06:29](1215 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:59, 07:42](2005 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:40, 07:31](2180 MB) - -PASS -- COMPILE 'csawmg_intel' [08:16, 08:16] -PASS -- TEST 'control_csawmg_intel' [05:53, 05:36](1046 MB) -PASS -- TEST 'control_ras_intel' [03:06, 02:56](854 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:03, 04:03] -PASS -- TEST 'control_csawmg_gnu' [07:56, 07:34](1070 MB) - -PASS -- COMPILE 'wam_intel' [08:52, 08:51] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:32, 10:14](1669 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:59, 08:59] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:02, 02:25](1885 MB) -PASS -- TEST 'regional_control_faster_intel' [04:31, 04:16](1190 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:26, 06:26] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:52, 02:33](1629 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:53, 02:31](1639 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:00, 02:49](844 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:42, 02:31](850 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:12, 04:59](1155 MB) -PASS -- TEST 'control_ras_debug_intel' [02:42, 02:35](856 MB) -PASS -- TEST 'control_diag_debug_intel' [02:54, 02:36](1697 MB) -PASS -- TEST 'control_debug_p8_intel' [03:50, 03:25](1942 MB) -PASS -- TEST 'regional_debug_intel' [16:57, 16:36](1172 MB) -PASS -- TEST 'rap_control_debug_intel' [04:51, 04:39](1239 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:50, 04:36](1228 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:07, 04:53](1229 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:45, 04:35](1232 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:44, 04:37](1236 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:20, 05:01](1318 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:53, 04:46](1226 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:54, 04:48](1228 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:56, 04:36](1240 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:49, 04:40](1228 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:05, 04:54](1229 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:56, 04:48](1231 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:31, 08:24](1245 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:54, 04:46](1231 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:04, 05:57](1237 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:08, 04:49](1238 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:55, 08:37](1246 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:23, 04:23] -PASS -- TEST 'control_csawmg_debug_gnu' [03:08, 02:47](1048 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:05, 04:04] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:15, 08:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:40, 04:00](1217 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 07:17](1189 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:17, 03:32](1036 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 07:08](1284 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:06, 03:18](1037 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:34, 03:53](992 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:24, 05:47](1127 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:05, 01:58](996 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:28, 08:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:29, 02:03](1299 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:18, 00:56](1190 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:46, 01:13](1144 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:28, 10:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:11, 03:46](1085 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:42, 03:40] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:04, 04:57](1117 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 05:11](1115 MB) -PASS -- TEST 'conus13km_debug_intel' [16:16, 15:50](1362 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:25, 16:00](1008 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:04, 12:10](1256 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:56](1410 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:56, 03:55] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:12, 04:35](1159 MB) - -PASS -- COMPILE 'hafsw_intel' [09:51, 09:51] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:50, 05:42](862 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:47, 05:13](1252 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:33, 06:25](921 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 14:10](962 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:59, 15:53](996 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:05, 05:22](591 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:55, 06:52](607 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:03, 02:35](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:57, 07:45](547 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:41, 04:08](608 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:10, 03:36](603 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 05:19](666 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:40, 01:24](446 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:25, 04:25] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:28, 12:41](643 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:40, 09:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:25, 16:25](724 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:35, 16:40](794 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:53, 10:53] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:20, 10:03](822 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:01, 10:01] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:07, 07:09](917 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:14, 06:15](895 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:45, 17:08](1332 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:05, 06:05] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:20, 02:14](1155 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:21, 01:17](1096 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:10](1025 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:16, 02:11](1017 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:16, 02:10](1010 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:15, 02:12](1136 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:18, 02:10](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:19, 02:13](1010 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:09, 05:33](1177 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:30, 04:56](1156 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:10, 03:00](1142 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:08, 03:03](2454 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:09](2392 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:16, 04:16] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:37, 05:31](1084 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:40, 05:40] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:01, 02:56](1141 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:23, 01:23] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:19, 01:02](339 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:16, 01:04](571 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:48, 00:52](573 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:11, 09:11] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:13, 03:31](2019 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:31, 09:31] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:14, 03:19](1986 MB) - -PASS -- COMPILE 'atml_intel' [09:19, 09:19] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 06:33](1894 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:54, 08:01](1904 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 03:26](1124 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:20, 05:20] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:51, 06:55](1927 MB) - -PASS -- COMPILE 'atmw_intel' [09:25, 09:25] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:32, 01:44](1929 MB) - -PASS -- COMPILE 'atmaero_intel' [09:18, 09:18] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:21, 04:35](2026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:10, 04:25](1797 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:05, 04:30](1820 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:51, 03:51] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:21, 17:09](4618 MB) - -PASS -- COMPILE 'atm_gnu' [04:09, 04:09] -PASS -- TEST 'control_c48_gnu' [10:05, 09:38](1510 MB) -PASS -- TEST 'control_stochy_gnu' [02:45, 02:33](723 MB) -PASS -- TEST 'control_ras_gnu' [04:16, 04:02](729 MB) -PASS -- TEST 'control_p8_gnu' [04:56, 04:05](1721 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:20, 03:47](1727 MB) -PASS -- TEST 'control_flake_gnu' [04:52, 04:42](812 MB) - -PASS -- COMPILE 'rrfs_gnu' [09:08, 09:08] -PASS -- TEST 'rap_control_gnu' [09:04, 08:27](1081 MB) -PASS -- TEST 'rap_decomp_gnu' [09:01, 08:20](1084 MB) -PASS -- TEST 'rap_2threads_gnu' [08:01, 07:20](1136 MB) -PASS -- TEST 'rap_restart_gnu' [04:56, 04:10](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:06, 08:29](1084 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:36, 08:59](1081 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:33, 06:01](886 MB) -PASS -- TEST 'hrrr_control_gnu' [04:49, 04:10](1068 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:40, 04:07](1132 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:45, 04:00](1041 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:21, 04:27](1068 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:40, 02:17](885 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:39, 02:17](934 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:47, 08:02](1076 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:31, 11:31] -PASS -- TEST 'control_diag_debug_gnu' [01:35, 01:13](1623 MB) -PASS -- TEST 'regional_debug_gnu' [07:18, 07:00](1137 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:05](1096 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:11, 01:58](1088 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:25, 02:06](1100 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:11, 02:01](1093 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:27, 02:08](1269 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:20, 03:12](1097 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:08, 01:58](1097 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:05, 01:57](1091 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:24, 01:15](727 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:27, 01:20](724 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:47, 01:24](1715 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:09, 02:02](1094 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:08](1098 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:05, 03:30](1100 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:53, 02:53] -PASS -- TEST 'control_wam_debug_gnu' [05:49, 05:28](1567 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:48, 04:43] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:50, 08:09](961 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:57, 04:07](953 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:42, 07:03](966 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:25, 03:38](896 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:44, 03:59](946 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:21, 05:44](861 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:39, 02:17](860 MB) -PASS -- TEST 'conus13km_control_gnu' [03:12, 02:45](1269 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:23, 01:04](1176 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:48, 01:29](935 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:11, 09:11] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:42, 05:15](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:14, 06:14] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:02, 01:56](976 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:15, 02:02](973 MB) -PASS -- TEST 'conus13km_debug_gnu' [05:49, 05:30](1284 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:11, 05:48](960 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [03:37, 03:22](1193 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:11, 05:47](1353 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 07:10] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 02:03](1007 MB) - -PASS -- COMPILE 's2swa_gnu' [17:22, 17:21] - -PASS -- COMPILE 's2s_gnu' [16:17, 16:16] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:09, 05:20](3124 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:09, 04:09] - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:59, 15:59] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:31, 25:49](3069 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:22, 04:22] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:54, 12:57](2926 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:47, 15:46] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:36, 02:29](769 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [15:11, 13:39] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:15, 07:39](2156 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:12, 20:28] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:43, 13:19](1993 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:57, 15:23](2297 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:01, 07:19](1356 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:40, 16:29](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:01, 13:04](1989 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:40] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:43, 21:44](1986 MB) + +PASS -- COMPILE 's2swa_intel' [15:11, 13:56] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:27, 08:21](2221 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:16, 08:02](2214 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:18, 04:27](1975 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:07, 08:01](2230 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:03, 04:35](1746 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:12, 09:38](2554 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:59, 07:57](2206 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:15, 06:48](2110 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:29, 08:13](2208 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:19, 15:15](2988 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [19:41, 06:38](2933 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:02, 09:35](3840 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:29, 06:40](3652 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:14, 05:16](2159 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 13:09] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:03, 07:23](2026 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:14, 06:51](2081 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:40] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:17, 12:18](2240 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:17] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:07, 07:42](2041 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 12:26] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:09, 04:03](2082 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 12:37] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:44, 05:56](3037 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 02:11](3041 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:55, 01:15](2476 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:11, 11:16] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:38, 07:40](2218 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:04] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:10, 13:47](2078 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:47, 06:56](1409 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:07] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:12, 23:51](2024 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:31](718 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:40, 03:39](1605 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:43](1611 MB) +PASS -- TEST 'control_latlon_intel' [05:36, 03:33](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:43, 04:01](1602 MB) +PASS -- TEST 'control_c48_intel' [12:49, 10:30](1711 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:56, 05:57](839 MB) +PASS -- TEST 'control_c192_intel' [15:55, 13:41](1757 MB) +PASS -- TEST 'control_c384_intel' [19:51, 17:02](2012 MB) +PASS -- TEST 'control_c384gdas_intel' [13:22, 09:49](1498 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:48](668 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:36, 01:03](550 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:47](666 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:32](660 MB) +PASS -- TEST 'control_iovr5_intel' [04:23, 02:40](678 MB) +PASS -- TEST 'control_p8_intel' [07:15, 04:19](1892 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:42, 03:13](1908 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:45, 03:57](1890 MB) +PASS -- TEST 'control_restart_p8_intel' [12:10, 03:37](1166 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:12, 04:02](1883 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [11:10, 03:07](1220 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:06, 04:25](1876 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:44, 03:38](1967 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:21, 07:40](1896 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:48, 05:26](1971 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:33, 03:44](1909 MB) +PASS -- TEST 'merra2_thompson_intel' [13:41, 04:52](1909 MB) +PASS -- TEST 'regional_control_intel' [09:01, 06:03](1204 MB) +PASS -- TEST 'regional_restart_intel' [08:33, 03:25](1170 MB) +PASS -- TEST 'regional_decomp_intel' [09:56, 07:05](1175 MB) +PASS -- TEST 'regional_2threads_intel' [06:57, 03:53](1152 MB) +PASS -- TEST 'regional_noquilt_intel' [15:37, 05:59](1525 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [14:57, 06:11](1201 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [14:50, 06:09](1193 MB) +PASS -- TEST 'regional_wofs_intel' [14:39, 05:47](2098 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 09:20] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [15:04, 06:47](1193 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:00, 03:45](1358 MB) +PASS -- TEST 'rap_decomp_intel' [17:07, 06:58](1142 MB) +PASS -- TEST 'rap_2threads_intel' [09:28, 06:17](1365 MB) +PASS -- TEST 'rap_restart_intel' [06:11, 03:30](1126 MB) +PASS -- TEST 'rap_sfcdiff_intel' [18:23, 06:47](1199 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:26, 07:18](1142 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:13, 05:02](1197 MB) +PASS -- TEST 'hrrr_control_intel' [11:52, 03:29](1058 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:55, 03:35](1044 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:02, 03:13](1119 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:35, 01:52](1016 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:04, 06:36](1205 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:39, 07:47](2007 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:13, 07:32](2227 MB) + +PASS -- COMPILE 'csawmg_intel' [10:11, 08:18] +PASS -- TEST 'control_csawmg_intel' [10:50, 06:26](1052 MB) +PASS -- TEST 'control_ras_intel' [05:21, 02:55](841 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:10, 04:09] +PASS -- TEST 'control_csawmg_gnu' [09:45, 07:38](1084 MB) + +PASS -- COMPILE 'wam_intel' [10:10, 08:25] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:47, 10:03](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 09:21] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:14, 02:47](1895 MB) +PASS -- TEST 'regional_control_faster_intel' [06:47, 04:19](1198 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 06:05] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:44, 02:13](1615 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:43, 02:07](1622 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:42, 02:56](838 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:57, 02:37](840 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:33, 04:53](1151 MB) +PASS -- TEST 'control_ras_debug_intel' [05:47, 02:27](857 MB) +PASS -- TEST 'control_diag_debug_intel' [05:59, 02:32](1696 MB) +PASS -- TEST 'control_debug_p8_intel' [06:43, 03:17](1917 MB) +PASS -- TEST 'regional_debug_intel' [19:41, 16:58](1142 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 04:31](1236 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:28, 04:50](1221 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 04:24](1223 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:50](1232 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:33, 04:29](1229 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:35, 04:48](1312 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:11, 04:44](1220 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:30, 04:36](1231 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:46, 04:42](1240 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:34, 04:23](1236 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:34, 04:35](1222 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:51, 04:46](1227 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:47, 07:36](1242 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:33, 04:41](1234 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 05:30](1226 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:40](1233 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:12, 08:00](1229 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:48] +PASS -- TEST 'control_csawmg_debug_gnu' [03:40, 02:04](1052 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 03:52] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:38, 08:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 04:01](1227 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:59, 07:21](1177 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:19, 03:41](1045 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:58, 06:59](1286 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:56, 03:25](1038 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:49, 03:58](998 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:08, 05:29](1134 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:27, 01:53](975 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:37, 08:29] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:58, 02:11](1277 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:48, 00:52](1185 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:40, 01:19](1141 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:37, 08:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:53, 03:53](1077 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:52] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 04:45](1110 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:55](1111 MB) +PASS -- TEST 'conus13km_debug_intel' [16:49, 14:48](1326 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:47, 16:06](991 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:43, 11:34](1243 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:42, 15:46](1429 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:58] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 04:17](1163 MB) + +PASS -- COMPILE 'hafsw_intel' [11:38, 09:54] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:13, 05:24](861 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:30, 05:09](1238 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:21](938 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:11, 13:47](961 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:20, 15:41](982 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:01, 05:38](597 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:24, 07:01](605 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:54, 02:37](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:14, 07:37](546 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:44, 04:02](603 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:55, 03:48](607 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:58, 04:55](658 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:28, 01:11](447 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:37, 04:20] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:54, 11:25](619 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:44] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:25, 16:19](748 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:13, 17:05](841 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:37, 10:00] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:49, 09:48](823 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:28, 09:21] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:20, 05:47](912 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:14, 05:51](887 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:59, 16:34](1341 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:27, 05:33] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:18, 02:11](1147 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:23](1094 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:18, 02:07](1025 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:21, 02:09](1017 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:17, 02:10](1024 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:16, 02:12](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 02:13](1166 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:16, 02:08](1016 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:06, 04:56](1179 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:00, 04:54](1159 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:10](1148 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:20, 03:12](2445 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:08](2453 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:25, 03:23] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 05:18](1074 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 05:24] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:11](1166 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 00:47] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:00](333 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 00:49](578 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:34](574 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 09:22] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:07, 04:25](2026 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 09:06] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:55, 04:18](1997 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 09:55] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:11, 05:51](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:11, 05:51](1901 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 02:58](1138 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:11, 04:32] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:14, 06:33](1910 MB) + +PASS -- COMPILE 'atmw_intel' [14:14, 09:58] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:02, 01:44](1937 MB) + +PASS -- COMPILE 'atmaero_intel' [14:14, 09:00] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:58, 03:48](2041 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:52, 04:26](1804 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:25](1812 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:10, 04:03] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:46, 16:46](4609 MB) + +PASS -- COMPILE 'atm_gnu' [09:11, 04:34] +PASS -- TEST 'control_c48_gnu' [09:48, 07:50](1533 MB) +PASS -- TEST 'control_stochy_gnu' [04:27, 02:27](725 MB) +PASS -- TEST 'control_ras_gnu' [05:24, 03:58](730 MB) +PASS -- TEST 'control_p8_gnu' [07:02, 04:26](1728 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:01](1756 MB) +PASS -- TEST 'control_flake_gnu' [06:22, 04:46](813 MB) + +PASS -- COMPILE 'rrfs_gnu' [07:10, 03:53] +PASS -- TEST 'rap_control_gnu' [10:57, 08:42](1087 MB) +PASS -- TEST 'rap_decomp_gnu' [10:50, 08:32](1087 MB) +PASS -- TEST 'rap_2threads_gnu' [09:56, 07:23](1140 MB) +PASS -- TEST 'rap_restart_gnu' [07:15, 04:22](887 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:51, 08:46](1084 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:47, 08:16](1085 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:05, 06:12](887 MB) +PASS -- TEST 'hrrr_control_gnu' [06:57, 04:29](1071 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:51, 04:18](1141 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:01, 03:46](1035 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:58, 04:12](1073 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 02:21](887 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:29, 02:09](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [10:02, 07:59](1081 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:13, 06:23] +PASS -- TEST 'control_diag_debug_gnu' [03:40, 01:12](1624 MB) +PASS -- TEST 'regional_debug_gnu' [08:37, 06:34](1134 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:26, 02:10](1093 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:26, 01:58](1088 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:20, 02:09](1093 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:25, 02:15](1095 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:30, 02:17](1268 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:12](1095 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:09](1093 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:11](1091 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:11](726 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:27](725 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:26](1698 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:26, 02:05](1096 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:12](1098 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:01, 03:30](1099 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:56] +PASS -- TEST 'control_wam_debug_gnu' [07:45, 05:37](1559 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [10:12, 07:39] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:03, 07:42](960 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:47, 04:16](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:58, 06:56](968 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:08, 03:44](889 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:50, 04:09](949 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:12, 05:55](864 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 02:06](862 MB) +PASS -- TEST 'conus13km_control_gnu' [04:48, 02:36](1268 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:42, 01:14](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:41, 01:31](933 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:12, 12:13] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:48, 05:10](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:12, 10:37] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 02:07](977 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:26, 02:05](972 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:53, 05:29](1287 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:53, 05:44](961 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:41, 03:39](1196 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:44, 05:35](1355 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:12, 10:41] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:24, 02:03](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [24:13, 21:27] + +PASS -- COMPILE 's2s_gnu' [20:13, 18:08] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:31, 08:55](2752 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:15, 04:06] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 17:02] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:08, 25:52](2903 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [08:12, 07:01] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:07, 12:11](3035 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [19:11, 17:25] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 02:26](768 MB) SYNOPSIS: -Starting Date/Time: 20240904 10:36:24 -Ending Date/Time: 20240904 14:40:25 -Total Time: 04h:05m:00s +Starting Date/Time: 20240911 22:58:14 +Ending Date/Time: 20240912 00:56:44 +Total Time: 01h:59m:27s Compiles Completed: 57/57 -Tests Completed: 244/244 +Tests Completed: 243/244 +Failed Tests: +* TEST cpld_mpi_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2363/tests/logs/log_hercules/run_cpld_mpi_pdlib_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERCULES REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +17749118ba0dfcca7c2cac513d497ea37521edc8 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1831882 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf + +PASS -- COMPILE 's2sw_pdlib_intel' [18:10, 16:50] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:40, 13:53](2083 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:40, 16:23](1997 MB) + +SYNOPSIS: +Starting Date/Time: 20240912 11:50:27 +Ending Date/Time: 20240912 12:47:58 +Total Time: 00h:57m:55s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 889708db55..701553ee6c 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -8fb13929a4f74a9181c8d3f619893aaf6e507bc5 +51a07c1585abc6f5dea12812f8f72a50ba92183a Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,256 +35,329 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2076954 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1523996 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [50:35, 42:05] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:11, 07:06](2002 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [56:36, 48:30] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:08, 21:00](1910 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [43:20, 22:25](2017 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [30:13, 09:48](1126 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:24, 24:03](1857 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:36, 47:44] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [27:51, 20:47](1881 MB) - -PASS -- COMPILE 's2swa_intel' [50:35, 42:08] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:11, 07:34](2060 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:25, 07:37](2057 MB) -PASS -- TEST 'cpld_restart_p8_intel' [24:25, 04:19](1716 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:11, 07:40](2074 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [24:26, 04:24](1734 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:11, 07:18](2318 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:11, 07:42](2059 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [20:11, 06:27](2003 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:17, 07:36](2060 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [20:10, 07:14](2041 MB) - -PASS -- COMPILE 's2sw_intel' [48:33, 40:54] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [21:07, 06:06](1907 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:21, 05:49](1973 MB) - -PASS -- COMPILE 's2swa_debug_intel' [21:15, 07:50] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [31:17, 10:30](2092 MB) - -PASS -- COMPILE 's2sw_debug_intel' [19:13, 07:43] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [28:01, 07:22](1945 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [48:18, 36:34] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [18:13, 05:53](1983 MB) - -PASS -- COMPILE 's2s_intel' [43:18, 37:05] ( 1015 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [24:04, 12:14](3016 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [14:53, 03:41](3014 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:57, 01:59](2461 MB) - -PASS -- COMPILE 's2swa_faster_intel' [39:24, 33:20] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [26:44, 07:12](2066 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [07:20, 47:03] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:28, 20:51](1911 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [38:25, 10:07](1132 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [48:07, 24:02](1888 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [26:13, 06:04] ( 1558 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:19, 33:03](1938 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [52:15, 37:48] ( 1 warnings 1126 remarks ) -PASS -- TEST 'control_flake_intel' [42:33, 04:40](650 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [41:48, 04:03](1544 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [41:51, 04:25](1554 MB) -PASS -- TEST 'control_latlon_intel' [41:45, 04:06](1548 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:56, 04:10](1549 MB) -PASS -- TEST 'control_c48_intel' [50:00, 12:07](1701 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [48:45, 10:32](828 MB) -PASS -- TEST 'control_c192_intel' [52:14, 14:19](1667 MB) -PASS -- TEST 'control_c384_intel' [57:06, 18:09](1798 MB) -PASS -- TEST 'control_c384gdas_intel' [52:51, 13:31](1006 MB) -PASS -- TEST 'control_stochy_intel' [22:28, 02:08](610 MB) -PASS -- TEST 'control_stochy_restart_intel' [19:29, 01:16](434 MB) -PASS -- TEST 'control_lndp_intel' [40:32, 02:19](604 MB) -PASS -- TEST 'control_iovr4_intel' [18:30, 03:28](601 MB) -PASS -- TEST 'control_iovr5_intel' [23:31, 03:16](598 MB) -PASS -- TEST 'control_p8_intel' [42:06, 04:18](1841 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [23:05, 04:12](1833 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [22:55, 04:12](1841 MB) -PASS -- TEST 'control_restart_p8_intel' [30:50, 02:12](1061 MB) -PASS -- TEST 'control_noqr_p8_intel' [22:01, 04:06](1830 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [26:03, 02:16](1072 MB) -PASS -- TEST 'control_decomp_p8_intel' [24:55, 04:01](1829 MB) -PASS -- TEST 'control_2threads_p8_intel' [23:58, 03:42](1914 MB) -PASS -- TEST 'control_p8_lndp_intel' [42:51, 07:00](1836 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [47:05, 05:22](1890 MB) -PASS -- TEST 'control_p8_mynn_intel' [45:08, 04:06](1840 MB) -PASS -- TEST 'merra2_thompson_intel' [45:04, 04:31](1840 MB) -PASS -- TEST 'regional_control_intel' [33:47, 07:05](1012 MB) -PASS -- TEST 'regional_restart_intel' [20:37, 03:51](1009 MB) -PASS -- TEST 'regional_decomp_intel' [32:45, 07:29](1001 MB) -PASS -- TEST 'regional_2threads_intel' [29:44, 04:29](1008 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [32:51, 07:10](1006 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [30:40, 07:09](1004 MB) - -PASS -- COMPILE 'rrfs_intel' [48:19, 37:13] ( 3 warnings 1102 remarks ) -PASS -- TEST 'rap_control_intel' [26:43, 10:15](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:08, 05:43](1178 MB) -PASS -- TEST 'rap_decomp_intel' [26:43, 10:46](992 MB) -PASS -- TEST 'rap_2threads_intel' [25:47, 09:49](1077 MB) -PASS -- TEST 'rap_restart_intel' [30:00, 05:19](993 MB) -PASS -- TEST 'rap_sfcdiff_intel' [25:47, 10:12](994 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [26:43, 10:49](990 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [31:47, 07:37](993 MB) -PASS -- TEST 'hrrr_control_intel' [20:50, 05:16](990 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [21:47, 05:28](985 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [20:50, 04:54](1048 MB) -PASS -- TEST 'hrrr_control_restart_intel' [26:36, 02:52](922 MB) -PASS -- TEST 'rrfs_v1beta_intel' [25:55, 10:10](991 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [28:34, 12:36](1945 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:34, 12:13](1943 MB) - -PASS -- COMPILE 'csawmg_intel' [45:19, 34:10] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [26:50, 08:22](961 MB) -PASS -- TEST 'control_ras_intel' [23:35, 04:35](663 MB) - -PASS -- COMPILE 'wam_intel' [51:15, 34:33] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [39:55, 14:21](1634 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [55:18, 36:18] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [25:56, 03:37](1834 MB) -PASS -- TEST 'regional_control_faster_intel' [27:45, 06:37](1002 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [24:14, 08:28] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:47, 03:21](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [26:50, 03:22](1575 MB) -PASS -- TEST 'control_stochy_debug_intel' [31:24, 03:45](781 MB) -PASS -- TEST 'control_lndp_debug_intel' [31:25, 03:26](779 MB) -PASS -- TEST 'control_csawmg_debug_intel' [32:40, 05:26](1094 MB) -PASS -- TEST 'control_ras_debug_intel' [28:29, 03:26](791 MB) -PASS -- TEST 'control_diag_debug_intel' [28:48, 03:22](1635 MB) -PASS -- TEST 'control_debug_p8_intel' [28:46, 03:44](1876 MB) -PASS -- TEST 'regional_debug_intel' [43:46, 22:06](1037 MB) -PASS -- TEST 'rap_control_debug_intel' [26:32, 06:08](1162 MB) -PASS -- TEST 'hrrr_control_debug_intel' [24:30, 05:58](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [23:26, 06:05](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [22:27, 06:08](1166 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [21:26, 06:07](1169 MB) -PASS -- TEST 'rap_diag_debug_intel' [22:36, 06:24](1250 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:29, 06:15](1167 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [16:29, 06:15](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [15:25, 06:09](1171 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:27, 06:05](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [16:26, 06:14](1173 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [17:28, 06:08](1168 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:28, 10:01](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [16:26, 06:05](1159 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [17:31, 07:28](1170 MB) -PASS -- TEST 'rap_flake_debug_intel' [16:26, 06:09](1168 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:47, 10:41](1171 MB) - -PASS -- COMPILE 'wam_debug_intel' [25:12, 05:12] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [29:57, 16:35](1662 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [01:19, 30:43] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:04, 05:13](1045 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:41, 08:11](908 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [17:36, 04:18](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:41, 07:51](949 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [16:45, 03:59](911 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [17:40, 04:34](860 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:48, 06:19](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:30, 02:29](853 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [59:22, 31:46] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [29:53, 02:54](1103 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:54, 01:19](1055 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:52, 01:36](1017 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [57:18, 31:11] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [32:55, 05:34](915 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [30:20, 05:19] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [18:32, 06:03](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [17:24, 05:55](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [29:03, 18:51](1160 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [35:45, 18:43](883 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [27:42, 10:44](1062 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [48:47, 18:53](1225 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [29:14, 05:08] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [35:30, 06:17](1089 MB) - -PASS -- COMPILE 'hafsw_intel' [50:19, 39:17] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:14, 06:44](706 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:12](1070 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:34, 09:05](758 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:22, 16:05](915 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:37, 18:19](793 MB) -PASS -- TEST 'gnv1_nested_intel' [09:45, 06:21](1679 MB) - -PASS -- COMPILE 'hafs_all_intel' [46:16, 35:47] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:24, 08:31](761 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:27, 08:36](743 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:12, 08:23] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [18:26, 03:40](1075 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [08:24, 02:14](1030 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [18:25, 03:31](933 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [18:26, 03:37](934 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [18:26, 03:35](932 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [18:25, 03:40](1068 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:26, 03:41](1081 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [18:26, 03:34](936 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [23:22, 07:46](896 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [23:18, 07:40](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [18:22, 03:42](1071 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [19:26, 05:03](2371 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [20:25, 05:14](2374 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 03:20] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [26:28, 08:12](1025 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [35:18, 08:30] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:35](1075 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [19:13, 01:55] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:21](239 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 01:06](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:26, 00:49](261 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [51:14, 35:59] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [23:20, 04:44](1910 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:15, 34:55] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [21:02, 04:32](1903 MB) - -PASS -- COMPILE 'atml_intel' [39:14, 37:05] ( 8 warnings 1167 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [26:10, 05:50](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [26:12, 05:52](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [21:55, 03:15](1075 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:18] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:12, 07:18](1895 MB) - -PASS -- COMPILE 'atmw_intel' [38:16, 37:05] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:55, 02:22](1862 MB) - -PASS -- COMPILE 'atmaero_intel' [37:15, 35:09] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [22:08, 05:11](1935 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [23:05, 06:14](1721 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [22:53, 06:21](1730 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:49, 42:15] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [53:59, 08:19](2026 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:51, 49:18] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:12, 20:44](1888 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:47, 22:20](2020 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [02:56, 24:07](1865 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:51, 49:16] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:53, 20:24](1885 MB) + +PASS -- COMPILE 's2swa_intel' [17:49, 42:17] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [55:56, 09:55](2072 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [56:07, 09:58](2078 MB) +PASS -- TEST 'cpld_restart_p8_intel' [30:24, 05:37](1725 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [55:56, 09:55](2090 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [30:24, 05:40](1741 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [55:52, 09:25](2326 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [55:53, 10:06](2068 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [55:07, 08:23](2017 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [56:10, 09:51](2066 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [53:01, 07:09](2046 MB) + +PASS -- COMPILE 's2sw_intel' [15:48, 40:04] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [56:03, 07:35](1911 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:07, 09:36](1979 MB) + +PASS -- COMPILE 's2swa_debug_intel' [53:39, 05:38] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [45:25, 16:39](2097 MB) + +PASS -- COMPILE 's2sw_debug_intel' [03:53, 06:01] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [27:56, 11:24](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [42:01, 36:30] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [43:45, 05:40](1980 MB) + +PASS -- COMPILE 's2s_intel' [35:00, 37:05] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [48:15, 10:28](3012 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [41:16, 03:35](3020 MB) +PASS -- TEST 'cpld_restart_c48_intel' [35:55, 01:57](2462 MB) + +PASS -- COMPILE 's2swa_faster_intel' [31:12, 32:55] ( 1 warnings 1615 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [51:52, 09:23](2074 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:01, 49:19] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:00, 21:28](1908 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:20, 24:01](1899 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [21:36, 06:04] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:08, 33:20](1941 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:33, 37:20] ( 1 warnings 1126 remarks ) +PASS -- TEST 'control_flake_intel' [37:42, 04:21](648 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [23:38, 04:14](1537 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [39:17, 04:22](1538 MB) +PASS -- TEST 'control_latlon_intel' [37:09, 04:12](1543 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:45, 04:22](1540 MB) +PASS -- TEST 'control_c48_intel' [54:24, 18:07](1700 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [46:52, 10:12](822 MB) +PASS -- TEST 'control_c192_intel' [34:48, 15:54](1688 MB) +PASS -- TEST 'control_c384_intel' [42:44, 23:01](1816 MB) +PASS -- TEST 'control_c384gdas_intel' [52:46, 13:46](994 MB) +PASS -- TEST 'control_stochy_intel' [34:42, 02:09](609 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:43, 01:46](437 MB) +PASS -- TEST 'control_lndp_intel' [34:42, 02:01](605 MB) +PASS -- TEST 'control_iovr4_intel' [35:44, 03:16](602 MB) +PASS -- TEST 'control_iovr5_intel' [36:44, 03:18](597 MB) +PASS -- TEST 'control_p8_intel' [23:59, 04:50](1821 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [41:56, 04:22](1838 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:24, 04:39](1829 MB) +PASS -- TEST 'control_restart_p8_intel' [16:45, 03:05](1061 MB) +PASS -- TEST 'control_noqr_p8_intel' [23:58, 04:41](1825 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [15:48, 03:02](1077 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:25, 04:49](1828 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:01, 04:29](1907 MB) +PASS -- TEST 'control_p8_lndp_intel' [15:14, 08:38](1829 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [24:53, 05:18](1907 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:04, 04:01](1847 MB) +PASS -- TEST 'merra2_thompson_intel' [37:23, 04:20](1841 MB) +PASS -- TEST 'regional_control_intel' [43:12, 07:04](1011 MB) +PASS -- TEST 'regional_restart_intel' [57:52, 04:17](1012 MB) +PASS -- TEST 'regional_decomp_intel' [07:43, 07:28](1003 MB) +PASS -- TEST 'regional_2threads_intel' [58:38, 04:19](999 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [38:26, 07:11](1004 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [37:28, 07:10](1015 MB) + +PASS -- COMPILE 'rrfs_intel' [14:33, 36:40] ( 3 warnings 1102 remarks ) +PASS -- TEST 'rap_control_intel' [12:01, 10:33](998 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:11, 06:05](1174 MB) +PASS -- TEST 'rap_decomp_intel' [11:51, 11:18](989 MB) +PASS -- TEST 'rap_2threads_intel' [10:03, 10:06](1074 MB) +PASS -- TEST 'rap_restart_intel' [17:49, 05:25](993 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:46, 10:32](998 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:58, 11:06](990 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [20:47, 07:38](1004 MB) +PASS -- TEST 'hrrr_control_intel' [01:59, 05:41](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [55:51, 05:46](979 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [47:58, 05:13](1053 MB) +PASS -- TEST 'hrrr_control_restart_intel' [08:29, 02:53](919 MB) +PASS -- TEST 'rrfs_v1beta_intel' [23:54, 10:20](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [26:24, 12:55](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:21, 12:29](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [15:23, 34:07] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [43:43, 08:05](965 MB) +PASS -- TEST 'control_ras_intel' [07:30, 04:19](669 MB) + +PASS -- COMPILE 'wam_intel' [06:06, 34:46] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [16:41, 14:40](1627 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:03, 36:22] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [58:41, 04:03](1833 MB) +PASS -- TEST 'regional_control_faster_intel' [39:30, 07:02](997 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [44:01, 08:25] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:28, 03:12](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [30:27, 03:12](1578 MB) +PASS -- TEST 'control_stochy_debug_intel' [31:48, 04:12](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [30:44, 03:53](785 MB) +PASS -- TEST 'control_csawmg_debug_intel' [30:56, 05:54](1093 MB) +PASS -- TEST 'control_ras_debug_intel' [28:44, 04:01](788 MB) +PASS -- TEST 'control_diag_debug_intel' [28:03, 03:51](1647 MB) +PASS -- TEST 'control_debug_p8_intel' [26:02, 03:42](1859 MB) +PASS -- TEST 'regional_debug_intel' [23:58, 22:07](1028 MB) +PASS -- TEST 'rap_control_debug_intel' [14:31, 06:17](1170 MB) +PASS -- TEST 'hrrr_control_debug_intel' [14:33, 06:09](1160 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [13:28, 06:08](1167 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [14:24, 06:14](1165 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:28, 06:17](1167 MB) +PASS -- TEST 'rap_diag_debug_intel' [13:34, 06:32](1255 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:26, 06:21](1173 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:24, 06:24](1169 MB) +PASS -- TEST 'rap_lndp_debug_intel' [13:27, 06:19](1174 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:23, 06:21](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:24, 06:08](1163 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:25, 06:15](1175 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:29, 10:08](1166 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:25, 06:13](1159 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [13:30, 07:23](1146 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:28, 06:03](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [26:51, 10:51](1172 MB) + +PASS -- COMPILE 'wam_debug_intel' [42:00, 05:11] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [29:58, 16:47](1649 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [25:42, 24:54] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [18:06, 05:17](1043 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [20:42, 08:24](904 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:44, 04:30](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:45, 08:02](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:40, 04:13](908 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:36, 04:43](860 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:46, 06:06](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:30, 02:17](851 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:11, 32:21] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [12:59, 02:44](1102 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:46, 01:32](1043 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [09:46, 01:48](1020 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [26:16, 31:43] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:49, 05:24](915 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [59:08, 05:48] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [14:28, 06:13](1052 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:29, 06:05](1046 MB) +PASS -- TEST 'conus13km_debug_intel' [25:03, 18:54](1159 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:51, 18:56](863 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:41, 10:58](1103 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:41, 18:54](1231 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [33:03, 05:41] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:27, 06:21](1082 MB) + +PASS -- COMPILE 'hafsw_intel' [39:30, 40:16] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [12:18, 06:43](705 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:35, 06:16](1061 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [22:34, 09:10](756 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [29:30, 16:09](792 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:41, 17:57](806 MB) +PASS -- TEST 'gnv1_nested_intel' [19:48, 06:41](1681 MB) + +PASS -- COMPILE 'hafs_all_intel' [42:17, 35:47] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [15:14, 08:26](759 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:17, 08:32](738 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:12, 08:20] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [10:25, 03:33](1076 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:27, 02:11](1033 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [11:26, 03:29](940 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:25, 03:33](931 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:25, 03:32](935 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:25, 03:36](1075 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:25, 03:35](1093 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:25, 03:31](931 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:18, 07:46](906 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:19, 07:37](850 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [10:23, 03:35](1088 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 05:02](2359 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:22, 05:06](2375 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 03:26] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:22, 08:14](1025 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:15] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:22, 03:53](1074 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [12:11, 01:48] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [10:36, 01:23](237 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [10:28, 01:14](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:31, 00:38](263 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [45:20, 35:50] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [32:35, 04:53](1911 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [48:19, 35:33] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [21:22, 04:38](1893 MB) + +PASS -- COMPILE 'atml_intel' [49:19, 36:41] ( 8 warnings 1167 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [21:23, 05:36](1865 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [20:24, 05:34](1871 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [38:13, 03:13](1063 MB) + +PASS -- COMPILE 'atml_debug_intel' [16:12, 06:36] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:15, 07:20](1886 MB) + +PASS -- COMPILE 'atmw_intel' [42:16, 36:12] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:11, 02:18](1862 MB) + +PASS -- COMPILE 'atmaero_intel' [20:32, 35:23] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:11, 05:15](1920 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:07, 06:19](1719 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:54, 06:20](1729 MB) SYNOPSIS: -Starting Date/Time: 20240905 16:13:47 -Ending Date/Time: 20240906 00:08:01 -Total Time: 07h:54m:39s +Starting Date/Time: 20240910 17:19:14 +Ending Date/Time: 20240911 20:44:48 +Total Time: 03h:26m:11s Compiles Completed: 36/36 -Tests Completed: 164/164 +Tests Completed: 162/164 +Failed Tests: +* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2363/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_gfsv17_intel.log +* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2363/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_pdlib_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +0ada1565625de2db2c9a41a044a14577648e4991 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1358374 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [57:32, 50:44] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [03:21, 20:46](1892 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [48:00, 11:21](1126 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [54:32, 46:52] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [05:37, 20:55](1897 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [48:46, 10:35](1142 MB) + +SYNOPSIS: +Starting Date/Time: 20240912 06:38:11 +Ending Date/Time: 20240912 12:28:22 +Total Time: 05h:50m:38s +Compiles Completed: 2/2 +Tests Completed: 4/4 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 32dedc9cc3..2251322092 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: -b7fc09c740c82647c6dac1c3fd2ea36cbd07f8e8 +0ada1565625de2db2c9a41a044a14577648e4991 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,287 +35,353 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240830 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1591166 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1933739 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:19, 14:13](2091 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:12, 21:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:41, 17:59](1956 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:19, 18:54](2136 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 08:50](1199 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:40, 20:15](1874 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 22:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:41, 17:43](1943 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:10, 07:57] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:21, 27:31](1929 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 17:43] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:27, 14:13](2129 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:32, 14:14](2129 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:55, 07:53](1816 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:27, 14:44](2146 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:54, 07:53](1703 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:26, 13:12](2437 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:27, 14:10](2115 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:31, 12:18](2040 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:33, 14:15](2133 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:01, 16:42](2708 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:05, 08:54](2703 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:04, 11:37](3688 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:29, 07:12](3490 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:22, 05:53](2099 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 16:36] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:02, 13:27](1977 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:08, 04:44](2049 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:44] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:15, 08:39](2160 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:56] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:58, 06:18](2004 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:18] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:09, 04:36](2044 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 15:00] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:53, 09:58](3060 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:53, 03:29](3030 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:56, 02:13](2484 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:12] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:18, 14:28](2128 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:00] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:02, 18:13](1995 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 09:02](1246 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:18, 20:05](1912 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:10, 08:12] ( 1558 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:16, 29:27](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:23, 03:41](698 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 03:11](1586 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:52, 03:14](1599 MB) -PASS -- TEST 'control_latlon_intel' [04:41, 03:06](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:14](1587 MB) -PASS -- TEST 'control_c48_intel' [11:53, 09:29](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:32, 08:23](844 MB) -PASS -- TEST 'control_c192_intel' [13:55, 11:41](1723 MB) -PASS -- TEST 'control_c384_intel' [15:59, 13:00](1944 MB) -PASS -- TEST 'control_c384gdas_intel' [13:45, 09:42](1345 MB) -PASS -- TEST 'control_stochy_intel' [03:23, 01:50](647 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:40, 01:03](481 MB) -PASS -- TEST 'control_lndp_intel' [03:29, 01:45](652 MB) -PASS -- TEST 'control_iovr4_intel' [04:57, 02:41](649 MB) -PASS -- TEST 'control_iovr5_intel' [04:36, 02:40](644 MB) -PASS -- TEST 'control_p8_intel' [06:07, 04:00](1884 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:09, 03:43](1877 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 03:30](1893 MB) -PASS -- TEST 'control_restart_p8_intel' [04:14, 01:59](1098 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:14, 03:39](1875 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:22, 01:57](1126 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:13, 03:38](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:11, 03:39](1957 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:57, 06:02](1876 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:31, 04:59](1949 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:31, 03:32](1883 MB) -PASS -- TEST 'merra2_thompson_intel' [06:39, 03:56](1894 MB) -PASS -- TEST 'regional_control_intel' [08:40, 06:31](1079 MB) -PASS -- TEST 'regional_restart_intel' [05:40, 03:28](1077 MB) -PASS -- TEST 'regional_decomp_intel' [09:00, 06:50](1067 MB) -PASS -- TEST 'regional_2threads_intel' [06:30, 04:36](1077 MB) -PASS -- TEST 'regional_noquilt_intel' [08:38, 06:25](1382 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 06:23](1087 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:39, 06:21](1085 MB) -PASS -- TEST 'regional_wofs_intel' [09:36, 07:49](1904 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 12:44] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:18, 08:26](1053 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 05:05](1250 MB) -PASS -- TEST 'rap_decomp_intel' [11:00, 08:40](1023 MB) -PASS -- TEST 'rap_2threads_intel' [10:55, 08:28](1153 MB) -PASS -- TEST 'rap_restart_intel' [07:35, 04:21](1045 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:25, 08:17](1050 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:13, 08:35](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:32, 06:13](1074 MB) -PASS -- TEST 'hrrr_control_intel' [07:02, 04:19](1028 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:02, 04:25](1013 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:20, 04:07](1089 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:42, 02:20](942 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:22, 08:15](1054 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 09:57](1979 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 09:43](2011 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:37] -PASS -- TEST 'control_csawmg_intel' [08:35, 06:31](1019 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:28](712 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:46] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:50, 12:44](1655 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:58] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:30, 03:17](1879 MB) -PASS -- TEST 'regional_control_faster_intel' [08:35, 06:13](1071 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:46] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:40, 02:52](1618 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:39](1607 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:04](823 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:45](815 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:26](1134 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:48](828 MB) -PASS -- TEST 'control_diag_debug_intel' [04:44, 02:50](1676 MB) -PASS -- TEST 'control_debug_p8_intel' [05:45, 03:10](1910 MB) -PASS -- TEST 'regional_debug_intel' [18:39, 16:56](1096 MB) -PASS -- TEST 'rap_control_debug_intel' [06:21, 05:05](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:53](1206 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:48](1205 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:32, 05:03](1208 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 05:00](1206 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:40](1280 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:29](1205 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 04:59](1211 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:03](1216 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:58](1208 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:47](1207 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:28, 04:59](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:02](1204 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:58](1195 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:56](1207 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:54](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:26, 08:36](1211 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 06:40] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:40, 13:40](1681 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 04:50](1132 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:15, 07:11](999 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:39, 03:44](924 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:55, 07:16](1069 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:12, 03:37](944 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:12, 03:53](902 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:34, 05:22](977 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [13:15, 02:02](878 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:53] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:55, 02:41](1168 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:50, 01:15](1117 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:56, 01:31](1070 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:41, 04:33](977 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:42] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:25, 04:57](1082 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:30, 04:49](1086 MB) -PASS -- TEST 'conus13km_debug_intel' [20:52, 14:40](1237 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:47, 14:40](942 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:44, 08:33](1168 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:44, 15:08](1303 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:13, 06:43] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:27, 04:55](1131 MB) - -PASS -- COMPILE 'hafsw_intel' [17:12, 15:33] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:18, 05:59](733 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:32, 06:32](1115 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:34, 07:42](816 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [27:15, 24:05](849 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:21, 28:25](870 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:06, 07:13](500 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:31, 08:24](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [10:56, 03:27](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:31, 09:43](474 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:58, 04:46](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:03, 04:33](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:01, 05:46](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:36, 01:33](404 MB) -PASS -- TEST 'gnv1_nested_intel' [13:19, 04:21](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:18] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:06, 13:03](588 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:12, 15:14] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:05, 12:38](653 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:02, 13:02](726 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:36, 08:44](710 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:12, 15:03] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [19:22, 07:35](814 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:15, 07:29](795 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [26:00, 16:27](1201 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:07] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [12:24, 03:00](1159 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:22, 01:52](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:18, 02:51](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:20, 02:35](1009 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [10:19, 02:56](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:17, 02:58](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:19, 03:00](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:19, 02:51](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:11, 06:31](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:06, 06:28](1003 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:22, 02:57](1152 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:21, 04:20](2397 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [14:19, 04:25](2452 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:44] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [15:21, 06:29](1082 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:55] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [11:21, 02:58](1145 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:18] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [12:34, 01:04](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:26, 00:56](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:30, 00:35](322 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 13:31] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [15:10, 04:11](1980 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:10] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:59, 03:59](1947 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 14:30] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:40, 04:55](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [15:32, 04:51](1866 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 02:47](1062 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:12, 07:50] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [15:34, 05:48](1892 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 13:45] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [12:22, 02:10](1909 MB) - -PASS -- COMPILE 'atmaero_intel' [15:11, 13:43] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [14:12, 04:33](1984 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [16:16, 05:17](1768 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:08, 05:23](1784 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:29] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [31:58, 20:13](4562 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:11, 17:34] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:27, 14:50](2095 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:11, 25:18] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:45, 18:05](1943 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:05, 19:08](2120 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:02, 09:00](1232 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:49, 20:21](1868 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:54] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:40, 17:50](1946 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:11, 09:11] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:38, 28:20](1923 MB) + +PASS -- COMPILE 's2swa_intel' [17:11, 15:56] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:40, 14:23](2157 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:06, 14:20](2156 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:48, 08:00](1805 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:39, 14:31](2183 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:50, 07:48](1714 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:15, 13:13](2435 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:38, 14:30](2149 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:33, 12:08](2047 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:09, 14:13](2149 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:33, 16:56](2718 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:55, 08:49](2733 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:09, 10:42](3687 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:47, 06:37](3504 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:22, 05:57](2104 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 16:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:41, 13:59](1974 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:24, 07:48](2042 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:12, 09:05] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:21, 13:20](2186 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:12, 08:10] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:04, 09:18](1998 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:35] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:27, 04:44](2041 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 15:01] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:55, 08:34](3029 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:56, 03:22](3029 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:56, 02:12](2485 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:36] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:30, 15:00](2150 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:28] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:51, 18:22](2019 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:27, 09:06](1252 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 07:26] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:02, 29:59](1960 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:25, 03:57](695 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:48, 03:30](1581 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:41](1586 MB) +PASS -- TEST 'control_latlon_intel' [05:45, 03:35](1582 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:55, 03:34](1583 MB) +PASS -- TEST 'control_c48_intel' [16:54, 14:25](1715 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:35, 08:19](842 MB) +PASS -- TEST 'control_c192_intel' [14:58, 13:00](1753 MB) +PASS -- TEST 'control_c384_intel' [20:09, 16:29](2002 MB) +PASS -- TEST 'control_c384gdas_intel' [13:42, 09:42](1341 MB) +PASS -- TEST 'control_stochy_intel' [04:26, 02:21](653 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:03](474 MB) +PASS -- TEST 'control_lndp_intel' [04:27, 02:24](649 MB) +PASS -- TEST 'control_iovr4_intel' [04:29, 02:49](650 MB) +PASS -- TEST 'control_iovr5_intel' [04:36, 02:42](645 MB) +PASS -- TEST 'control_p8_intel' [06:17, 04:07](1873 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:11, 03:29](1882 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:25, 04:01](1884 MB) +PASS -- TEST 'control_restart_p8_intel' [05:14, 02:19](1094 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:03, 03:59](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:22, 02:15](1125 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:06, 04:03](1855 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:07, 04:22](1958 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:35, 07:10](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:28, 04:57](1948 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:14, 03:28](1892 MB) +PASS -- TEST 'merra2_thompson_intel' [06:26, 03:50](1891 MB) +PASS -- TEST 'regional_control_intel' [08:36, 06:31](1077 MB) +PASS -- TEST 'regional_restart_intel' [05:34, 03:33](1077 MB) +PASS -- TEST 'regional_decomp_intel' [08:38, 06:55](1073 MB) +PASS -- TEST 'regional_2threads_intel' [06:32, 04:40](1068 MB) +PASS -- TEST 'regional_noquilt_intel' [08:31, 06:16](1381 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:40, 06:26](1079 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:36, 06:30](1085 MB) +PASS -- TEST 'regional_wofs_intel' [09:42, 07:51](1902 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:53] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:12, 08:26](1061 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:51, 05:07](1261 MB) +PASS -- TEST 'rap_decomp_intel' [11:20, 08:38](1023 MB) +PASS -- TEST 'rap_2threads_intel' [11:35, 08:28](1157 MB) +PASS -- TEST 'rap_restart_intel' [08:00, 04:36](1041 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:07, 08:06](1055 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:48, 08:48](1019 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:04, 06:14](1069 MB) +PASS -- TEST 'hrrr_control_intel' [06:57, 04:19](1028 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:22, 04:26](1017 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:20, 04:08](1088 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:29](952 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:23, 08:29](1045 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 10:03](1987 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 09:45](2016 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:11] +PASS -- TEST 'control_csawmg_intel' [08:39, 06:48](1014 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:27](715 MB) + +PASS -- COMPILE 'wam_intel' [14:10, 12:36] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:46, 12:47](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:40, 12:52] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:01, 03:15](1878 MB) +PASS -- TEST 'regional_control_faster_intel' [08:39, 06:35](1071 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:35] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 02:24](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:22](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:19](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:24, 03:02](822 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:25](1127 MB) +PASS -- TEST 'control_ras_debug_intel' [04:42, 03:07](827 MB) +PASS -- TEST 'control_diag_debug_intel' [05:47, 03:12](1669 MB) +PASS -- TEST 'control_debug_p8_intel' [05:45, 03:12](1903 MB) +PASS -- TEST 'regional_debug_intel' [19:43, 17:38](1087 MB) +PASS -- TEST 'rap_control_debug_intel' [07:23, 05:52](1198 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 05:06](1196 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 05:29](1206 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:20, 06:11](1203 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:44, 05:39](1213 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:42, 05:40](1284 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:33, 05:18](1206 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:28, 05:15](1209 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:34, 05:16](1208 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:32, 05:26](1209 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:36, 05:04](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 05:00](1204 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:09](1207 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:53](1195 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:30, 06:24](1207 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:26, 05:00](1208 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:26, 08:31](1206 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:11, 06:24] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:44, 13:27](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:52, 04:52](1129 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:02, 07:10](1001 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:27, 03:46](927 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:54, 07:19](1074 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:06, 03:37](942 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:32, 03:54](898 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:26, 05:21](975 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 02:01](879 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:48, 02:40](1164 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:17](1115 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:34](1065 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:49, 04:33](970 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:27] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:58](1087 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:45](1085 MB) +PASS -- TEST 'conus13km_debug_intel' [16:53, 14:32](1237 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:48, 14:38](930 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:43, 08:40](1168 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:38, 14:48](1305 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:48] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:05](1135 MB) + +PASS -- COMPILE 'hafsw_intel' [17:11, 15:15] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:10, 05:56](737 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:31](1114 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:31](815 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [27:12, 24:55](843 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:18, 28:26](876 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:59, 07:08](501 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:27, 08:19](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 03:29](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:34, 09:42](484 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:50, 04:53](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:54, 04:33](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:52, 05:41](567 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:36](405 MB) +PASS -- TEST 'gnv1_nested_intel' [08:14, 04:18](1730 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:10, 07:59] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:09, 13:07](590 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:10, 15:06] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:06, 12:58](665 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:08, 12:54](718 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:30] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:40, 08:47](717 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:11, 14:13] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:22, 07:36](818 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:19, 07:34](796 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:23](1202 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:12] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 03:00](1138 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:57](1115 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:53](1027 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:57](1021 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:58](1014 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:04](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:02](1146 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:53](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:34](1025 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 06:26](1012 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:58](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 04:22](2458 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:23](2395 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:46] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:31](1087 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 09:03] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:56](1162 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:22] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 01:02](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:55](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:38](320 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:45] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:14, 04:11](1970 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:16] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:58, 04:04](1958 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 13:46] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:51](1867 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:25, 04:56](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:54, 02:47](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:10, 08:30] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:23, 05:57](1886 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:31] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:22, 02:10](1910 MB) + +PASS -- COMPILE 'atmaero_intel' [15:10, 13:16] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:11, 04:35](1985 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:20](1770 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:58, 05:24](1776 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:40] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:50, 20:23](4552 MB) SYNOPSIS: -Starting Date/Time: 20240830 11:24:28 -Ending Date/Time: 20240830 13:22:21 -Total Time: 01h:58m:55s +Starting Date/Time: 20240911 22:56:41 +Ending Date/Time: 20240912 00:41:20 +Total Time: 01h:45m:34s Compiles Completed: 41/41 -Tests Completed: 185/185 +Tests Completed: 184/185 +Failed Tests: +* TEST cpld_mpi_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2363/tests/logs/log_orion/run_cpld_mpi_pdlib_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ORION REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +17749118ba0dfcca7c2cac513d497ea37521edc8 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3664509 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf + +PASS -- COMPILE 's2sw_pdlib_intel' [29:11, 28:00] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:09, 18:20](2013 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:12, 20:31](1941 MB) + +SYNOPSIS: +Starting Date/Time: 20240912 11:52:41 +Ending Date/Time: 20240912 13:06:13 +Total Time: 01h:13m:41s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 640843a9a8..fa1aba423b 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: -fec503e13e8d4b6708283f074b01445a68e50f43 +17749118ba0dfcca7c2cac513d497ea37521edc8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,308 +35,241 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_100506 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_185073 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:27] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:29, 02:21](3099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:29, 12:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [36:29, 02:50](1812 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:22, 02:25](1827 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:11, 03:08](956 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [36:30, 02:37](1794 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:46] ( 1 warnings 8 remarks ) -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_sfs_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:15] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [42:37, 02:39](1842 MB) - -PASS -- COMPILE 's2swa_intel' [12:27, 11:09] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [37:31, 02:31](3133 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:31, 02:45](3134 MB) -PASS -- TEST 'cpld_restart_p8_intel' [28:17, 02:04](3057 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [37:31, 02:27](3151 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [28:17, 02:44](3079 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [37:31, 02:02](3368 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [37:31, 02:31](3120 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [37:32, 02:35](3071 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:31, 02:43](3137 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [37:40, 05:04](4124 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:07, 05:55](4262 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [37:31, 02:47](3110 MB) - -PASS -- COMPILE 's2sw_intel' [12:28, 10:44] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [37:30, 01:50](1827 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [37:30, 01:59](1900 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:16] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [37:31, 02:01](1889 MB) - -PASS -- COMPILE 's2s_intel' [12:28, 10:27] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [37:29, 01:58](2868 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [37:29, 02:29](2874 MB) -PASS -- TEST 'cpld_restart_c48_intel' [32:26, 02:05](2288 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:35, 16:37] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [31:23, 02:52](3127 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:43] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:29, 02:10](1825 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:56, 02:38](987 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:33, 02:41](1802 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:04] ( 1539 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:18, 02:13](1848 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [27:07, 01:24](570 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [27:07, 01:30](1475 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:07, 02:24](1478 MB) -PASS -- TEST 'control_latlon_intel' [27:07, 01:20](1479 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:07, 02:27](1475 MB) -PASS -- TEST 'control_c48_intel' [27:06, 01:53](1559 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [27:06, 01:42](695 MB) -PASS -- TEST 'control_c192_intel' [27:07, 02:12](1576 MB) -PASS -- TEST 'control_c384_intel' [27:11, 03:01](1850 MB) -PASS -- TEST 'control_c384gdas_intel' [27:11, 03:44](1064 MB) -PASS -- TEST 'control_stochy_intel' [27:07, 01:26](524 MB) -PASS -- TEST 'control_stochy_restart_intel' [23:42, 02:02](328 MB) -PASS -- TEST 'control_lndp_intel' [27:07, 01:34](525 MB) -PASS -- TEST 'control_iovr4_intel' [27:07, 01:44](520 MB) -PASS -- TEST 'control_iovr5_intel' [27:07, 01:42](520 MB) -PASS -- TEST 'control_p8_intel' [27:07, 02:53](1750 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [27:07, 02:50](1759 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [27:07, 02:54](1759 MB) -PASS -- TEST 'control_restart_p8_intel' [20:41, 01:45](908 MB) -PASS -- TEST 'control_noqr_p8_intel' [23:38, 02:55](1746 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [16:32, 02:00](917 MB) -PASS -- TEST 'control_decomp_p8_intel' [22:38, 02:31](1756 MB) -PASS -- TEST 'control_2threads_p8_intel' [22:38, 02:48](1839 MB) -PASS -- TEST 'control_p8_lndp_intel' [22:30, 02:03](1756 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [22:22, 02:55](1813 MB) -PASS -- TEST 'control_p8_mynn_intel' [22:19, 02:50](1766 MB) -PASS -- TEST 'merra2_thompson_intel' [22:01, 02:48](1761 MB) -PASS -- TEST 'regional_control_intel' [21:42, 02:13](840 MB) -PASS -- TEST 'regional_restart_intel' [13:59, 01:22](839 MB) -PASS -- TEST 'regional_decomp_intel' [21:33, 01:59](844 MB) -PASS -- TEST 'regional_2threads_intel' [21:15, 01:54](899 MB) -PASS -- TEST 'regional_noquilt_intel' [21:08, 01:20](1172 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [20:58, 01:26](852 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [20:39, 02:11](841 MB) -PASS -- TEST 'regional_wofs_intel' [20:39, 01:32](1570 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 08:25] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [20:15, 02:59](911 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [19:25, 02:03](1053 MB) -PASS -- TEST 'rap_decomp_intel' [19:17, 02:18](909 MB) -PASS -- TEST 'rap_2threads_intel' [18:06, 02:12](990 MB) -PASS -- TEST 'rap_restart_intel' [09:45, 02:05](777 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:32, 03:05](906 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:55, 02:21](910 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:02, 02:40](778 MB) -PASS -- TEST 'hrrr_control_intel' [15:38, 02:22](900 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [15:23, 02:52](902 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [15:16, 02:19](980 MB) -PASS -- TEST 'hrrr_control_restart_intel' [09:14, 02:05](733 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:01, 03:02](900 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:44, 01:39](1867 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:31, 02:01](1856 MB) - -PASS -- COMPILE 'csawmg_intel' [09:24, 07:49] -PASS -- TEST 'control_csawmg_intel' [28:05, 01:30](861 MB) -PASS -- TEST 'control_ras_intel' [28:05, 01:58](557 MB) - -PASS -- COMPILE 'wam_intel' [09:24, 07:53] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [28:05, 01:29](1561 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:12] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [14:27, 03:05](1756 MB) -PASS -- TEST 'regional_control_faster_intel' [14:08, 01:22](842 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:21] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [14:08, 02:18](1488 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [13:59, 02:25](1498 MB) -PASS -- TEST 'control_stochy_debug_intel' [13:55, 01:48](703 MB) -PASS -- TEST 'control_lndp_debug_intel' [13:45, 02:03](705 MB) -PASS -- TEST 'control_csawmg_debug_intel' [13:13, 01:28](1006 MB) -PASS -- TEST 'control_ras_debug_intel' [12:59, 02:04](710 MB) -PASS -- TEST 'control_diag_debug_intel' [12:20, 02:07](1553 MB) -PASS -- TEST 'control_debug_p8_intel' [12:17, 01:51](1783 MB) -PASS -- TEST 'regional_debug_intel' [12:05, 01:13](883 MB) -PASS -- TEST 'rap_control_debug_intel' [11:57, 01:38](1085 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:25, 01:48](1078 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:14, 01:39](1080 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:14, 01:39](1083 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:57, 02:35](1086 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:25, 02:20](1164 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 02:29](1085 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 02:33](1087 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:17, 02:28](1080 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:11, 02:27](1086 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:53, 03:21](1081 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:41, 03:09](1080 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:32, 01:29](1082 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 02:58](1081 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 01:57](1083 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:34, 02:00](1082 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [06:31, 02:57](1088 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:19, 04:29] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [30:09, 02:08](1586 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:51] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:29, 03:16](918 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:54, 02:58](785 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:17, 03:52](784 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:44, 02:13](846 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:31, 03:24](832 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:27, 02:53](780 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [56:46, 02:31](681 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [57:57, 01:21](665 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:25, 07:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:06, 03:06](989 MB) -PASS -- TEST 'conus13km_2threads_intel' [58:11, 01:54](994 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [58:05, 01:42](864 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:57] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [03:53, 02:15](810 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:29] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [03:23, 01:56](960 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [01:49, 01:28](955 MB) -PASS -- TEST 'conus13km_debug_intel' [01:43, 01:53](1037 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [01:43, 01:47](711 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [59:53, 02:11](1046 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [59:47, 01:40](1110 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:20] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [59:47, 01:55](986 MB) - -PASS -- COMPILE 'hafsw_intel' [11:26, 09:25] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [59:50, 02:56](604 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [59:49, 01:46](947 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [59:48, 02:37](637 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [59:46, 02:27](671 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [58:50, 02:34](694 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [58:49, 02:07](380 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [58:47, 03:15](387 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [58:46, 02:41](280 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [58:35, 03:26](365 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [57:58, 01:44](403 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [57:58, 02:07](408 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [57:40, 01:44](478 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [57:27, 01:31](316 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:53] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:20, 02:17](507 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:24, 09:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:04, 01:49](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [56:49, 02:36](702 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:24, 09:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [55:53, 02:07](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:24, 08:40] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [54:53, 03:07](640 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:50, 03:02](628 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [54:27, 01:20](821 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:28, 10:04] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [54:26, 02:36](1822 MB) - -PASS -- COMPILE 'atml_intel' [10:24, 09:02] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:20, 05:19] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [09:28, 08:12] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [54:25, 02:16](3025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [53:54, 02:42](2905 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [53:53, 02:36](2917 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:19, 04:23] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [52:42, 01:45](4443 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:30, 11:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [35:46, 02:35](3105 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:29, 12:05] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [34:48, 02:35](1808 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:37, 02:42](1842 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:15, 02:52](967 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:49, 03:03](1787 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:30, 11:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [35:46, 01:54](1811 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:23, 05:11] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [41:56, 02:51](1836 MB) + +PASS -- COMPILE 's2swa_intel' [13:31, 11:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [35:45, 02:23](3131 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:45, 02:45](3128 MB) +PASS -- TEST 'cpld_restart_p8_intel' [24:24, 02:56](3062 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [35:45, 02:20](3149 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [24:24, 02:47](3078 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [35:45, 02:17](3372 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [35:45, 02:26](3127 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [35:46, 03:02](3076 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:45, 02:41](3129 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [35:54, 05:08](4117 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:54, 06:01](4267 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [35:45, 02:46](3113 MB) + +PASS -- COMPILE 's2sw_intel' [13:28, 10:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [35:50, 02:55](1827 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:50, 02:46](1899 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:29, 10:08] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [36:48, 02:47](1885 MB) + +PASS -- COMPILE 's2s_intel' [12:29, 10:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [36:47, 01:42](2870 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [36:47, 02:17](2879 MB) +PASS -- TEST 'cpld_restart_c48_intel' [31:48, 02:01](2289 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:44, 16:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [30:33, 02:49](3131 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:31, 11:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [34:46, 02:45](1834 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:13, 02:19](1001 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:48, 02:27](1797 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:03] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:36, 01:47](1856 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:30, 08:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [26:18, 01:43](569 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [26:18, 01:49](1462 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:18, 01:43](1472 MB) +PASS -- TEST 'control_latlon_intel' [26:18, 01:44](1472 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [26:18, 01:52](1473 MB) +PASS -- TEST 'control_c48_intel' [26:17, 02:02](1569 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [26:17, 02:06](691 MB) +PASS -- TEST 'control_c192_intel' [26:17, 01:54](1589 MB) +PASS -- TEST 'control_c384_intel' [26:22, 03:23](1884 MB) +PASS -- TEST 'control_c384gdas_intel' [26:14, 03:23](1066 MB) +PASS -- TEST 'control_stochy_intel' [25:57, 02:02](522 MB) +PASS -- TEST 'control_stochy_restart_intel' [21:22, 02:03](329 MB) +PASS -- TEST 'control_lndp_intel' [25:14, 01:28](522 MB) +PASS -- TEST 'control_iovr4_intel' [25:14, 01:38](521 MB) +PASS -- TEST 'control_iovr5_intel' [24:30, 01:46](521 MB) +PASS -- TEST 'control_p8_intel' [24:12, 02:06](1754 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [24:08, 02:44](1765 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [24:05, 02:17](1756 MB) +PASS -- TEST 'control_restart_p8_intel' [16:44, 02:50](913 MB) +PASS -- TEST 'control_noqr_p8_intel' [21:46, 02:31](1758 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [14:46, 02:51](905 MB) +PASS -- TEST 'control_decomp_p8_intel' [20:44, 02:04](1754 MB) +PASS -- TEST 'control_2threads_p8_intel' [20:20, 02:17](1844 MB) +PASS -- TEST 'control_p8_lndp_intel' [20:17, 02:22](1766 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [20:14, 03:06](1812 MB) +PASS -- TEST 'control_p8_mynn_intel' [20:09, 02:42](1768 MB) +PASS -- TEST 'merra2_thompson_intel' [19:43, 03:03](1767 MB) +PASS -- TEST 'regional_control_intel' [19:40, 01:32](852 MB) +PASS -- TEST 'regional_restart_intel' [11:53, 01:14](840 MB) +PASS -- TEST 'regional_decomp_intel' [18:54, 01:50](838 MB) +PASS -- TEST 'regional_2threads_intel' [18:55, 01:42](895 MB) +PASS -- TEST 'regional_noquilt_intel' [17:51, 01:56](1171 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [17:39, 02:00](845 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [17:28, 02:01](844 MB) +PASS -- TEST 'regional_wofs_intel' [16:41, 01:28](1569 MB) + +PASS -- COMPILE 'rrfs_intel' [10:29, 08:27] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [16:37, 02:52](910 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:08, 02:09](1053 MB) +PASS -- TEST 'rap_decomp_intel' [14:35, 02:15](912 MB) +PASS -- TEST 'rap_2threads_intel' [14:12, 02:12](990 MB) +PASS -- TEST 'rap_restart_intel' [06:04, 02:20](777 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:53, 03:17](906 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:11, 02:50](909 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [02:19, 02:38](780 MB) +PASS -- TEST 'hrrr_control_intel' [12:58, 02:26](905 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:47, 02:26](901 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:46, 02:25](978 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:01, 02:06](732 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:44, 02:45](901 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:41, 02:30](1861 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:58, 01:55](1852 MB) + +PASS -- COMPILE 'csawmg_intel' [09:30, 07:56] +PASS -- TEST 'control_csawmg_intel' [26:19, 02:17](861 MB) +PASS -- TEST 'control_ras_intel' [26:19, 02:13](561 MB) + +PASS -- COMPILE 'wam_intel' [09:27, 07:52] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:45, 01:18](1558 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:27, 08:08] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [11:06, 02:27](1752 MB) +PASS -- TEST 'regional_control_faster_intel' [11:04, 01:50](837 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:29, 07:34] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:04, 02:07](1496 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:07, 01:37](1493 MB) +PASS -- TEST 'control_stochy_debug_intel' [10:03, 01:37](704 MB) +PASS -- TEST 'control_lndp_debug_intel' [09:50, 01:31](699 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:49, 01:50](1006 MB) +PASS -- TEST 'control_ras_debug_intel' [08:40, 01:34](708 MB) +PASS -- TEST 'control_diag_debug_intel' [08:14, 02:15](1552 MB) +PASS -- TEST 'control_debug_p8_intel' [07:59, 02:16](1790 MB) +PASS -- TEST 'regional_debug_intel' [07:55, 01:15](884 MB) +PASS -- TEST 'rap_control_debug_intel' [06:55, 01:50](1083 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:47, 01:56](1074 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 01:41](1081 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:52, 01:47](1078 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 01:43](1087 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:14, 01:42](1167 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:35, 01:22](1087 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:32, 01:21](1083 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:22, 01:59](1084 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:15, 01:39](1082 MB) +PASS -- TEST 'rap_noah_debug_intel' [03:28, 02:10](1079 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [03:12, 02:25](1079 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [03:05, 02:20](1079 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [02:34, 01:36](1080 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [02:18, 01:49](1082 MB) +PASS -- TEST 'rap_flake_debug_intel' [02:15, 01:36](1081 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [02:12, 02:43](1086 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:23, 04:27] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [29:11, 02:16](1580 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:37, 07:46] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:07, 01:59](921 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [02:02, 02:09](784 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [02:02, 03:14](784 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:24, 02:08](843 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [01:15, 02:50](836 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [00:55, 02:25](779 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [53:37, 02:50](685 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [55:14, 01:49](667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:35, 08:03] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [59:25, 02:16](988 MB) +PASS -- TEST 'conus13km_2threads_intel' [49:58, 01:44](994 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [49:39, 01:54](864 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:55] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [59:11, 01:47](813 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:22, 04:39] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [59:01, 01:58](960 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [58:42, 01:57](954 MB) +PASS -- TEST 'conus13km_debug_intel' [58:13, 02:21](1038 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [57:40, 01:51](709 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [57:29, 01:31](1042 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [57:25, 01:59](1110 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:21] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [57:01, 02:07](989 MB) + +PASS -- COMPILE 'hafsw_intel' [11:26, 09:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [57:03, 03:27](597 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:00, 01:43](950 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [55:48, 02:54](636 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [55:41, 03:22](674 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [55:06, 02:41](692 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [55:01, 02:24](377 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [55:00, 03:02](390 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [55:00, 02:35](277 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [55:02, 03:21](364 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [54:46, 02:27](403 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [54:43, 01:57](406 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [54:39, 02:20](481 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:53, 01:27](342 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:21, 04:55] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [53:45, 02:17](502 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:19] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:29, 02:16](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [52:06, 02:12](701 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:24] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [51:25, 03:00](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:31, 08:41] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [49:05, 02:35](637 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [48:43, 02:42](625 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [47:54, 01:50](879 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:44, 10:18] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [47:16, 02:30](1824 MB) + +PASS -- COMPILE 'atml_intel' [11:39, 08:55] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:21, 05:20] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:26, 08:12] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [47:15, 02:10](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [46:59, 02:25](2908 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [46:15, 02:51](2916 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:31, 04:22] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [45:40, 01:54](4441 MB) SYNOPSIS: -Starting Date/Time: 20240905 17:09:45 -Ending Date/Time: 20240905 18:34:06 -Total Time: 01h:24m:50s +Starting Date/Time: 20240912 18:10:27 +Ending Date/Time: 20240912 19:41:57 +Total Time: 01h:32m:15s Compiles Completed: 33/33 -Tests Completed: 155/156 -Failed Tests: -* TEST cpld_control_sfs_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/jiandewang/ufs-weather-model/tests/logs/log_wcoss2/run_cpld_control_sfs_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF WCOSS2 REGRESSION TESTING LOG==== -====START OF WCOSS2 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -fec503e13e8d4b6708283f074b01445a68e50f43 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_68121 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-c) - CREATE NEW BASELINES -* (-n) - RUN SINGLE TEST: cpld_control_sfs -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:35, 12:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:08, 01:46](1806 MB) - -SYNOPSIS: -Starting Date/Time: 20240905 20:25:17 -Ending Date/Time: 20240905 20:59:08 -Total Time: 00h:34m:06s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 156/156 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index 8868906af9..675bc19739 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -37,9 +37,9 @@ n_sponge = 42 nudge_qv = .true. nudge_dz = .false. - tau = 0.0 + tau = @[TAU] fast_tau_w_sec = 0.2 - rf_cutoff = 10. + rf_cutoff = @[RF_CUTOFF] d2_bg_k1 = @[D2_BG_K1] d2_bg_k2 = @[D2_BG_K2] kord_tm = @[KORD_TM] @@ -53,13 +53,13 @@ beta = 0. a_imp = 1. p_fac = 0.1 - k_split = 2 - n_split = 5 + k_split = @[K_SPLIT] + n_split = @[N_SPLIT] nwat = 6 na_init = @[NA_INIT] d_ext = 0. dnats = @[DNATS] - fv_sg_adj = 450 + fv_sg_adj = @[FV_SG_ADJ] d2_bg = 0. nord = 2 dddmp = @[DDDMP] @@ -276,7 +276,7 @@ @[HIDE_UGWPV1] knob_ugwp_lzmin = 0.75e3 @[HIDE_UGWPV1] knob_ugwp_lzstar = 2.0e3 @[HIDE_UGWPV1] knob_ugwp_taumin = 0.25e-3 -@[HIDE_UGWPV1] knob_ugwp_tauamp = 3.0e-3 +@[HIDE_UGWPV1] knob_ugwp_tauamp = @[KNOB_UGWP_TAUAMP] @[HIDE_UGWPV1] knob_ugwp_lhmet = 200.0e3 @[HIDE_UGWPV1] knob_ugwp_orosolv = 'pss-1986' / diff --git a/tests/rt.conf b/tests/rt.conf index af678f72ca..6da6df4ed6 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -38,7 +38,7 @@ RUN | cpld_control_sfs | - noaacloud COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 | RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline | -COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | RUN | cpld_control_p8 | - noaacloud | baseline | RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline | RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 @@ -56,35 +56,35 @@ RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaaclo # Aerosol, no Wave RUN | cpld_s2sa_p8 | - noaacloud | baseline | -COMPILE | s2sw | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +COMPILE | s2sw | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | RUN | cpld_control_noaero_p8 | | baseline | RUN | cpld_control_nowave_noaero_p8 | - noaacloud | baseline | -COMPILE | s2swa_debug | intel | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | +COMPILE | s2swa_debug | intel | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | - wcoss2 noaacloud acorn | fv3 | RUN | cpld_debug_p8 | - wcoss2 acorn noaacloud | baseline | -COMPILE | s2sw_debug | intel | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | +COMPILE | s2sw_debug | intel | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | - wcoss2 noaacloud acorn | fv3 | RUN | cpld_debug_noaero_p8 | - wcoss2 acorn noaacloud | baseline | # Waves and aerosol off for computing fluxes in mediator COMPILE | s2s_aoflux | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON | | fv3 | RUN | cpld_control_noaero_p8_agrid | | baseline | -COMPILE | s2s | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +COMPILE | s2s | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | RUN | cpld_control_c48 | | baseline | RUN | cpld_warmstart_c48 | - noaacloud | baseline | RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48 -COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - noaacloud | fv3 | +COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DFASTER=ON | - noaacloud | fv3 | RUN | cpld_control_p8_faster | - noaacloud | baseline | # Unstructured WW3 mesh -COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | - noaacloud | fv3 | +COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | RUN | cpld_control_pdlib_p8 | - noaacloud | baseline | RUN | cpld_restart_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 RUN | cpld_mpi_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 -COMPILE | s2sw_pdlib_debug | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 | +COMPILE | s2sw_pdlib_debug | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 | RUN | cpld_debug_pdlib_p8 | - noaacloud | baseline | ### ATM tests ### @@ -158,7 +158,7 @@ RUN | control_p8_faster | - noaacloud RUN | regional_control_faster | | baseline | ### DEBUG ATM tests ### -COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | - noaacloud | fv3 | +COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | - noaacloud | fv3 | RUN | control_CubedSphereGrid_debug | - noaacloud | baseline | RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud | baseline | RUN | control_stochy_debug | - noaacloud | baseline | @@ -413,17 +413,17 @@ RUN | rap_control_dyn64_phy32_debug | + hera hercules COMPILE | s2swa | gnu | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | #RUN | cpld_control_p8 | + hercules | baseline | -COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | +COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | + hera hercules | fv3 | RUN | cpld_control_nowave_noaero_p8 | + hera hercules | baseline | COMPILE | s2swa_debug | gnu | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | #RUN | cpld_debug_p8 | + hercules | baseline | # Unstructured WW3 -COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera hercules | fv3 | +COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + hera hercules | fv3 | RUN | cpld_control_pdlib_p8 | + hera hercules | baseline | -COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | + hera hercules | fv3 | +COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | + hera hercules | fv3 | RUN | cpld_debug_pdlib_p8 | + hercules | baseline | ### CDEPS Data Atmosphere test ### diff --git a/tests/test_changes.list b/tests/test_changes.list index a2ab4baa0f..f147a757e3 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -4,6 +4,7 @@ cpld_control_gfsv17_iau intel cpld_restart_gfsv17 intel cpld_mpi_gfsv17 intel cpld_control_sfs intel +cpld_debug_gfsv17 intel cpld_control_p8 intel cpld_control_p8.v2.sfc intel cpld_restart_p8 intel @@ -15,15 +16,38 @@ cpld_mpi_p8 intel cpld_control_ciceC_p8 intel cpld_bmark_p8 intel cpld_restart_bmark_p8 intel -cpld_s2sa_p8 intel cpld_control_noaero_p8 intel cpld_control_nowave_noaero_p8 intel -cpld_control_noaero_p8_agrid intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel cpld_control_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel cpld_control_p8_faster intel cpld_control_pdlib_p8 intel cpld_restart_pdlib_p8 intel cpld_mpi_pdlib_p8 intel -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel +cpld_debug_pdlib_p8 intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c192 intel +control_c384 intel +control_p8 intel +control_p8_ugwpv1 intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_debug_p8 intel +atm_ds2s_docn_dice intel +control_c48 gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_debug_p8 gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index 00dfea7e15..d48022f634 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -51,10 +51,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -92,19 +93,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -155,7 +143,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_CubedSphereGrid b/tests/tests/control_CubedSphereGrid index 772432a196..52bf0f12c9 100644 --- a/tests/tests/control_CubedSphereGrid +++ b/tests/tests/control_CubedSphereGrid @@ -34,9 +34,11 @@ export LIST_FILES="sfcf000.tile1.nc \ atmf024.tile6.nc" export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -50,5 +52,4 @@ export IOVR=3 export WRITE_DOPOST=.false. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_CubedSphereGrid_debug b/tests/tests/control_CubedSphereGrid_debug index 93681bb8a2..1789845883 100644 --- a/tests/tests/control_CubedSphereGrid_debug +++ b/tests/tests/control_CubedSphereGrid_debug @@ -35,9 +35,11 @@ export LIST_FILES="sfcf000.tile1.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -50,5 +52,4 @@ export IOVR=3 export OUTPUT_FH="0 1" export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_CubedSphereGrid_parallel b/tests/tests/control_CubedSphereGrid_parallel index 45963ad8f5..6bd709a41a 100644 --- a/tests/tests/control_CubedSphereGrid_parallel +++ b/tests/tests/control_CubedSphereGrid_parallel @@ -23,9 +23,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -41,5 +43,4 @@ export HISTORY_FILE_ON_NATIVE_GRID=.true. export WRITE_DOPOST=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_c192 b/tests/tests/control_c192 index 9ca7c3ace7..8ba14ae125 100644 --- a/tests/tests/control_c192 +++ b/tests/tests/control_c192 @@ -21,19 +21,20 @@ export ATMRES=C192 export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export INPES=4 export WRTTASK_PER_GROUP=12 export NPZ=127 export NPZP=128 export NPX=193 export NPY=193 -export DT_ATMOS=360 export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 export RESTART_INTERVAL=48 -export CDMBWD=${CDMBWD_c192} export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. @@ -43,5 +44,4 @@ export IMO=768 export JMO=384 export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_c384 b/tests/tests/control_c384 index ed42237a87..9619b89e3e 100644 --- a/tests/tests/control_c384 +++ b/tests/tests/control_c384 @@ -21,6 +21,9 @@ export ATMRES=C384 export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export atm_omp_num_threads=${THRD_c384} export INPES=${INPES_c384} export JNPES=${JNPES_c384} @@ -35,9 +38,7 @@ export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 -export DT_ATMOS=225 export RESTART_INTERVAL=0 -export CDMBWD=${CDMBWD_c384} export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. @@ -48,7 +49,6 @@ export JMO=768 export OUTPUT_FH="6 -1" export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN if [[ $MACHINE_ID = jet ]]; then diff --git a/tests/tests/control_c48 b/tests/tests/control_c48 index 9ffa2ce490..0c0313f375 100644 --- a/tests/tests/control_c48 +++ b/tests/tests/control_c48 @@ -45,8 +45,14 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" +export ATMRES=C48 + export_fv3 export_tiled +if [[ $RT_COMPILER != gnu ]]; then + export_ugwpv1 + export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 +fi export INPES=1 export JNPES=1 @@ -55,13 +61,11 @@ export NPZ=127 export NPZP=128 export NPX=49 export NPY=49 -export DT_ATMOS=1200 export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 export RESTART_INTERVAL=0 -export CDMBWD=${CDMBWD_c48} export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.false. @@ -77,5 +81,4 @@ export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8 index c5f823c4b2..dc8521b587 100644 --- a/tests/tests/control_debug_p8 +++ b/tests/tests/control_debug_p8 @@ -15,10 +15,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -52,19 +53,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -97,7 +85,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_decomp_p8 b/tests/tests/control_decomp_p8 index e9f22a92c0..867e2457c7 100644 --- a/tests/tests/control_decomp_p8 +++ b/tests/tests/control_decomp_p8 @@ -51,10 +51,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -92,19 +93,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -141,7 +129,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_latlon b/tests/tests/control_latlon index a46b819168..a5cbce2863 100644 --- a/tests/tests/control_latlon +++ b/tests/tests/control_latlon @@ -19,9 +19,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -37,5 +39,4 @@ export OUTPUT_FH='0 24' export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_noqr_p8 b/tests/tests/control_noqr_p8 index dd3cd82113..47e065497c 100644 --- a/tests/tests/control_noqr_p8 +++ b/tests/tests/control_noqr_p8 @@ -55,10 +55,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -94,19 +95,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -139,7 +127,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index 26ab79b7fb..5ef5b0acae 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -55,10 +55,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -93,19 +94,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -138,7 +126,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_p8_lndp b/tests/tests/control_p8_lndp index 4f5742b448..3414969d4f 100644 --- a/tests/tests/control_p8_lndp +++ b/tests/tests/control_p8_lndp @@ -27,10 +27,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -66,19 +67,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -111,7 +99,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_p8_mynn b/tests/tests/control_p8_mynn index 593b283f63..9eac9bb346 100644 --- a/tests/tests/control_p8_mynn +++ b/tests/tests/control_p8_mynn @@ -171,5 +171,6 @@ export LANDICE=".false." export FSICL=0 export FSICS=0 +export RF_CUTOFF=10. export IOVR=3 export ICLIQ_SW=2 diff --git a/tests/tests/control_p8_ugwpv1 b/tests/tests/control_p8_ugwpv1 index a62a9c1049..a580362248 100644 --- a/tests/tests/control_p8_ugwpv1 +++ b/tests/tests/control_p8_ugwpv1 @@ -56,10 +56,10 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -94,22 +94,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - # CA export DO_CA=.true. export CA_SGS=.true. diff --git a/tests/tests/control_restart_noqr_p8 b/tests/tests/control_restart_noqr_p8 index f3baca99f7..3465569ad6 100644 --- a/tests/tests/control_restart_noqr_p8 +++ b/tests/tests/control_restart_noqr_p8 @@ -47,10 +47,11 @@ export LIST_FILES="sfcf024.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -93,19 +94,6 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -138,7 +126,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8 index 50be1ec0dd..27808b02c4 100644 --- a/tests/tests/control_restart_p8 +++ b/tests/tests/control_restart_p8 @@ -47,10 +47,11 @@ export LIST_FILES="sfcf024.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -92,19 +93,6 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -137,7 +125,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_wrtGauss_netcdf_parallel b/tests/tests/control_wrtGauss_netcdf_parallel index d90184da4d..8ee30f0ad1 100644 --- a/tests/tests/control_wrtGauss_netcdf_parallel +++ b/tests/tests/control_wrtGauss_netcdf_parallel @@ -19,9 +19,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -36,5 +38,4 @@ export IDEFLATE=1 export QUANTIZE_NSD=14 export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_wrtGauss_netcdf_parallel_debug b/tests/tests/control_wrtGauss_netcdf_parallel_debug index 2988ec0782..8d29303cef 100644 --- a/tests/tests/control_wrtGauss_netcdf_parallel_debug +++ b/tests/tests/control_wrtGauss_netcdf_parallel_debug @@ -15,9 +15,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -33,5 +35,4 @@ export QUANTIZE_NSD=14 export OUTPUT_FH="0 1" export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/cpld_2threads_p8 b/tests/tests/cpld_2threads_p8 index 66c0a88240..3612e62529 100644 --- a/tests/tests/cpld_2threads_p8 +++ b/tests/tests/cpld_2threads_p8 @@ -59,6 +59,8 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -93,10 +95,11 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 14f127024e..8a0229c38e 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -53,6 +53,8 @@ export LIST_FILES="sfcf006.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export SYEAR=2013 export SMONTH=04 @@ -107,8 +109,6 @@ export MESH_WAV=mesh.${WW3_DOMAIN}.nc export WW3_MODDEF=mod_def.${WW3_DOMAIN} # set component and coupling timesteps -export DT_ATMOS=300 -export DT_INNER=${DT_ATMOS} export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=900 export DT_THERM_MOM6=1800 @@ -144,14 +144,11 @@ export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" #BMICs do not contain NSST spinup export NSTF_NAME=2,1,0,0,0 -export CDMBWD=${CDMBWD_c384} - export FV3_RUN=cpld_control_run.IN +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 index 0a21f62be7..f90cad4b81 100644 --- a/tests/tests/cpld_control_c48 +++ b/tests/tests/cpld_control_c48 @@ -55,6 +55,9 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 + +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -140,9 +143,5 @@ export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_ciceC_p8 b/tests/tests/cpld_control_ciceC_p8 index b99fb22832..e3c1a9f462 100644 --- a/tests/tests/cpld_control_ciceC_p8 +++ b/tests/tests/cpld_control_ciceC_p8 @@ -71,6 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -84,10 +86,11 @@ export CICE_GRIDICE=C export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index eb1b30790d..98b9f8a077 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -71,6 +71,7 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 export CPLCHM=.false. export DNATS=0 @@ -90,22 +91,6 @@ WAV_tasks=$WAV_tasks_cpl_unstr export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# UGWP1 -export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 @@ -129,10 +114,9 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index dbf82fe08c..a85cc6adad 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -52,6 +52,7 @@ export LIST_FILES="sfcf024.nc \ export_fv3 export_cpl +export_ugwpv1 export CPLCHM=.false. export DNATS=0 @@ -97,22 +98,6 @@ WAV_tasks=$WAV_tasks_cpl_unstr export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# UGWP1 -export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - export WW3_DOMAIN=global_270k export MESH_WAV=mesh.${WW3_DOMAIN}.nc export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} @@ -142,9 +127,5 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then fi # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_noaero_p8 b/tests/tests/cpld_control_noaero_p8 index f191cc8dd5..e918aa1f63 100644 --- a/tests/tests/cpld_control_noaero_p8 +++ b/tests/tests/cpld_control_noaero_p8 @@ -70,6 +70,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -87,10 +89,9 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_nowave_noaero_p8 b/tests/tests/cpld_control_nowave_noaero_p8 index 34bcd8d921..0647cd8e79 100644 --- a/tests/tests/cpld_control_nowave_noaero_p8 +++ b/tests/tests/cpld_control_nowave_noaero_p8 @@ -70,6 +70,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -105,10 +107,9 @@ export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 67243979f3..fcb57d70fe 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -71,6 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -86,10 +88,11 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8.v2.sfc b/tests/tests/cpld_control_p8.v2.sfc index 30ed1593fb..b754f76072 100644 --- a/tests/tests/cpld_control_p8.v2.sfc +++ b/tests/tests/cpld_control_p8.v2.sfc @@ -71,6 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -87,10 +89,11 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8_faster b/tests/tests/cpld_control_p8_faster index fcf93cd106..5a751b24d8 100644 --- a/tests/tests/cpld_control_p8_faster +++ b/tests/tests/cpld_control_p8_faster @@ -71,6 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -82,6 +84,11 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. export DO_UGWP_V1=.true. diff --git a/tests/tests/cpld_control_p8_mixedmode b/tests/tests/cpld_control_p8_mixedmode index b01765abdf..10669918f3 100644 --- a/tests/tests/cpld_control_p8_mixedmode +++ b/tests/tests/cpld_control_p8_mixedmode @@ -71,6 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -82,10 +84,11 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 index 252481a48a..7f87778cf7 100644 --- a/tests/tests/cpld_control_pdlib_p8 +++ b/tests/tests/cpld_control_pdlib_p8 @@ -70,6 +70,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -106,10 +108,11 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_qr_p8 b/tests/tests/cpld_control_qr_p8 index 9618a05e6b..a79b1a6d82 100644 --- a/tests/tests/cpld_control_qr_p8 +++ b/tests/tests/cpld_control_qr_p8 @@ -71,6 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export QUILTING_RESTART=.true. export RESTART_N=12 @@ -83,10 +85,11 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index 1d2f12753a..9f0d327e00 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -19,6 +19,7 @@ export LIST_FILES="sfcf021.nc \ export_fv3 export_cpl +export_ugwpv1 export CPLCHM=.false. export DNATS=0 @@ -56,22 +57,6 @@ export CICE_ICE_IC=cice.warmstart.nc export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# UGWP1 -export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 @@ -96,10 +81,9 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 37220564ac..1f64f8b861 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -58,6 +58,7 @@ export LIST_FILES="sfcf003.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 export FHMAX=3 export DAYS=0.125 @@ -85,21 +86,6 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` -export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - #GFSv17 settings export PROGSIGMA=.true. export IOPT_DIAG=2 @@ -117,14 +103,15 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN export FV3_RUN=cpld_control_run.IN +export DT_INNER=360 +export DT_ATMOS=360 +export K_SPLIT=2 +export N_SPLIT=5 + if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_noaero_p8 b/tests/tests/cpld_debug_noaero_p8 index ec5114a81d..befc62f92a 100644 --- a/tests/tests/cpld_debug_noaero_p8 +++ b/tests/tests/cpld_debug_noaero_p8 @@ -58,6 +58,8 @@ export LIST_FILES="sfcf003.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHMAX=3 export DAYS=0.125 @@ -78,6 +80,9 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. export DO_UGWP_V1=.true. diff --git a/tests/tests/cpld_debug_p8 b/tests/tests/cpld_debug_p8 index ed304b3b3d..9267cf6f8e 100644 --- a/tests/tests/cpld_debug_p8 +++ b/tests/tests/cpld_debug_p8 @@ -59,6 +59,8 @@ export LIST_FILES="sfcf003.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHMAX=3 export DAYS=0.125 @@ -77,6 +79,11 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. export DO_UGWP_V1=.true. diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index 9f577a1b92..47b41d2da9 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -58,6 +58,8 @@ export LIST_FILES="sfcf003.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHMAX=3 export DAYS=0.125 @@ -100,6 +102,9 @@ if [[ $MACHINE_ID = hera && $RT_COMPILER = gnu ]] || [[ $MACHINE_ID = jet ]]; th WLCLK=50 fi +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. export DO_UGWP_V1=.true. diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index 6c44601b3f..2642cc30a2 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -59,6 +59,8 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -87,10 +89,11 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index 6fc53f2686..36b1c81ea0 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -71,6 +71,7 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 export CPLCHM=.false. export DNATS=0 @@ -97,22 +98,6 @@ export CICE_BLCKY=`expr $NY_GLB / 2` export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# UGWP1 -export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 @@ -132,10 +117,10 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN export PROGSIGMA=.true. export IOPT_DIAG=2 +export K_SPLIT=2 +export N_SPLIT=5 + + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index 84756f04d6..fcf8316ab0 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -59,6 +59,8 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -87,10 +89,11 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index cd536948d2..c3879bf706 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -70,6 +70,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -105,10 +107,11 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index d6a3b39d2d..ca3dc70ffc 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -53,6 +53,8 @@ export LIST_FILES="sfcf006.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export SYEAR=2013 export SMONTH=04 @@ -111,8 +113,6 @@ export MESH_WAV=mesh.${WW3_DOMAIN}.nc export WW3_MODDEF=mod_def.${WW3_DOMAIN} # set component and coupling timesteps -export DT_ATMOS=300 -export DT_INNER=${DT_ATMOS} export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=900 export DT_THERM_MOM6=1800 @@ -145,8 +145,6 @@ export FNVMXC="'C384.vegetation_greenness.tileX.nc'" export FNSLPC="'C384.slope_type.tileX.nc'" export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" -export CDMBWD=${CDMBWD_c384} - # ATM warm start export WARM_START=.true. export MAKE_NH=.false. @@ -165,10 +163,9 @@ export MOM6_RESTART_SETTING=r export FV3_RUN=cpld_control_run.IN +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index 924c60a9b7..484c29da74 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -60,6 +60,7 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 export CPLCHM=.false. export DNATS=0 @@ -98,22 +99,6 @@ WAV_tasks=$WAV_tasks_cpl_unstr export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# UGWP1 -export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 @@ -134,10 +119,9 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN export PROGSIGMA=.true. export IOPT_DIAG=2 +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_p8 b/tests/tests/cpld_restart_p8 index edbba45c3e..9895fd9d99 100644 --- a/tests/tests/cpld_restart_p8 +++ b/tests/tests/cpld_restart_p8 @@ -59,6 +59,8 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHROT=12 export RESTART_N=$((FHMAX-$FHROT)) @@ -93,10 +95,11 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 index e9e8a9d510..6097f05559 100644 --- a/tests/tests/cpld_restart_pdlib_p8 +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -58,6 +58,8 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHROT=12 export RESTART_N=$((FHMAX-$FHROT)) @@ -109,10 +111,11 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_qr_p8 b/tests/tests/cpld_restart_qr_p8 index 79ebaaf10e..33dd3e65d0 100644 --- a/tests/tests/cpld_restart_qr_p8 +++ b/tests/tests/cpld_restart_qr_p8 @@ -59,6 +59,8 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export QUILTING_RESTART=.true. export FHROT=12 @@ -90,10 +92,11 @@ export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. From 25ee7f6ca087ee19991e684a3c83e451921d5770 Mon Sep 17 00:00:00 2001 From: Daniel Rosen Date: Tue, 17 Sep 2024 10:41:52 -0600 Subject: [PATCH 28/33] Fire Coupling FV3ATM and Community Fire Behavior Model (#2220) * UFSWM - The fire_behavior component has been added and a new application created 'ATMF'. This work also includes a new regression test 'cpld_regional_atm_fbh' for testing two-way coupling of the atm component (fv3atm) and fbh component (fire_behavior) * CMEPS - CMEPS required modifications to be aligned with the changes to the ccpp physics package * FV3 - the fv3 cap has been modified to export atmosphere forcing data to the fire component when 'cpl_fire' is set to true. It will also import new fields for physics. * ccpp-physics - the ccpp physics package has been modified to add heat fluxes, upward specific humidity flux, and a smoke tracer from the fire component. --- .github/pull_request_template.md | 2 + .gitmodules | 4 + CMEPS-interface/CMEPS | 2 +- CMakeLists.txt | 20 +- FV3 | 2 +- cmake/configure_apps.cmake | 4 +- driver/UFSDriver.F90 | 14 +- fire_behavior | 1 + tests/default_vars.sh | 27 + tests/fv3_conf/regional_fire_run.IN | 12 + tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 30 +- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_acorn.log | 515 +++++------ tests/logs/RegressionTests_gaea.log | 635 ++++++-------- tests/logs/RegressionTests_hera.log | 772 +++++++++-------- tests/logs/RegressionTests_hercules.log | 804 ++++++++---------- tests/logs/RegressionTests_jet.log | 567 ++++++------ tests/logs/RegressionTests_orion.log | 584 ++++++------- tests/logs/RegressionTests_wcoss2.log | 459 +++++----- tests/parm/diag_table/diag_table_fire | 377 ++++++++ tests/parm/fd_ufs.yaml | 17 + tests/parm/field_table/field_table_fire | 70 ++ tests/parm/input_regional_fire.nml.IN | 300 +++++++ tests/parm/model_configure_fire.IN | 71 ++ tests/parm/namelist.fire.IN | 40 + tests/parm/ufs.configure.cpld_atm_fbh.IN | 41 + tests/rt.conf | 4 + tests/rt_utils.sh | 10 +- tests/run_test.sh | 4 + tests/test_changes.list | 54 +- tests/tests/cpld_regional_atm_fbh | 136 +++ 32 files changed, 3281 insertions(+), 2397 deletions(-) create mode 160000 fire_behavior create mode 100644 tests/fv3_conf/regional_fire_run.IN create mode 100644 tests/parm/diag_table/diag_table_fire create mode 100644 tests/parm/field_table/field_table_fire create mode 100644 tests/parm/input_regional_fire.nml.IN create mode 100644 tests/parm/model_configure_fire.IN create mode 100644 tests/parm/namelist.fire.IN create mode 100644 tests/parm/ufs.configure.cpld_atm_fbh.IN create mode 100644 tests/tests/cpld_regional_atm_fbh diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index f287387a35..b154eda796 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -42,6 +42,7 @@ Please delete what is not needed. * MOM6 - * NOAHMP - * WW3 - + * fire_behavior * stochastic_physics - ``` @@ -89,6 +90,7 @@ Example: * MOM6: * NOAHMP: * WW3: +* fire_behavior: * stochastic_physics: * None diff --git a/.gitmodules b/.gitmodules index a3775fc12d..b4a4c635e4 100644 --- a/.gitmodules +++ b/.gitmodules @@ -46,3 +46,7 @@ path = NOAHMP-interface/noahmp url = https://github.com/NOAA-EMC/noahmp branch = develop +[submodule "fire_behavior"] + path = fire_behavior + url = https://github.com/NCAR/fire_behavior + branch = develop diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 663554e1c1..dc977bcadd 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 663554e1c1724ade6292cf0a28a3c19e59caf980 +Subproject commit dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a diff --git a/CMakeLists.txt b/CMakeLists.txt index e5fdd1e83a..042b9cf9ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) ############################################################################### # Valid applications and choices -list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML LND S2S S2SA S2SW S2SWA S2SWAL ATM_DS2S ATM_DS2S-PCICE HAFS HAFSW HAFS-MOM6 HAFS-MOM6W HAFS-ALL NG-GODAS) +list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML ATMF LND S2S S2SA S2SW S2SWA S2SWAL ATM_DS2S ATM_DS2S-PCICE HAFS HAFSW HAFS-MOM6 HAFS-MOM6W HAFS-ALL NG-GODAS) set(APP NONE CACHE BOOL "Application Name") if(NOT (APP IN_LIST VALID_APPS)) message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") @@ -34,6 +34,7 @@ set(STOCH_PHYS OFF CACHE BOOL "Enable Stochastic Physics") set(CMEPS OFF CACHE BOOL "Enable CMEPS") set(CDEPS OFF CACHE BOOL "Enable CDEPS") set(NOAHMP OFF CACHE BOOL "Enable NOAHMP") +set(FIRE_BEHAVIOR OFF CACHE BOOL "Enable Fire Behavior") # Configure selected application specific components message("") @@ -52,6 +53,7 @@ message("STOCH_PHYS ....... ${STOCH_PHYS}") message("CDEPS ............ ${CDEPS}") message("CMEPS ............ ${CMEPS}") message("NOAHMP ........... ${NOAHMP}") +message("FIRE_BEHAVIOR .... ${FIRE_BEHAVIOR}") ############################################################################### ### Build Options @@ -155,7 +157,7 @@ if(FMS) elseif (APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|ATM_DS2S|ATM_DS2S-PCICE|NG-GODAS|HAFS-MOM6|HAFS-MOM6W)$") add_library(fms ALIAS FMS::fms_r8) endif() - if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|HAFS|HAFS-ALL)$") + if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|ATMF|HAFS|HAFS-ALL)$") if(32BIT) add_library(fms ALIAS FMS::fms_r4) else() @@ -260,6 +262,14 @@ if(NOAHMP) add_subdirectory(NOAHMP-interface) endif() +############################################################################### +### Fire Components [FIRE_BEHAVIOR] +############################################################################### +if(FIRE_BEHAVIOR) + set(NUOPC "ON" CACHE STRING "Build fire_behavior with NUOPC cap" FORCE) + add_subdirectory(fire_behavior) +endif() + ############################################################################### ### UFS Library ############################################################################### @@ -339,6 +349,12 @@ if(NOAHMP) list(APPEND _ufs_libs_public noahmp) endif() +if(FIRE_BEHAVIOR) + add_dependencies(ufs fire_behavior_nuopc) + list(APPEND _ufs_defs_private FRONT_FIRE_BEHAVIOR=fire_behavior_nuopc) + list(APPEND _ufs_libs_public fire_behavior_nuopc) +endif() + target_compile_definitions(ufs PRIVATE "${_ufs_defs_private}") target_link_libraries(ufs PUBLIC "${_ufs_libs_public}") diff --git a/FV3 b/FV3 index 40e014f3ec..a936459109 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 40e014f3ec805fc10399b53ad6810bc57a79ce9e +Subproject commit a9364591091c836984a40107729720705847c195 diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index b6db3a5759..a63601f62f 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -13,7 +13,7 @@ ############################################################################### ### Configure Application Components ############################################################################### -if(APP MATCHES "^(ATM|ATMW|ATMWM|ATMAQ|ATML)$") +if(APP MATCHES "^(ATM|ATMW|ATMWM|ATMAQ|ATML|ATMF)$") set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) @@ -31,6 +31,8 @@ if(APP MATCHES "^(ATM|ATMW|ATMWM|ATMAQ|ATML)$") set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) message("Configuring UFS app in Atmosphere with Air Quality mode") + elseif(APP MATCHES "ATMF") + set(FIRE_BEHAVIOR ON CACHE BOOL "Enable Fire Behavior" FORCE) else() message("Configuring UFS app in Atmosphere Only mode") endif() diff --git a/driver/UFSDriver.F90 b/driver/UFSDriver.F90 index 53c51d818b..2b07308aa1 100644 --- a/driver/UFSDriver.F90 +++ b/driver/UFSDriver.F90 @@ -23,7 +23,7 @@ MODULE UFSDriver ! UFS Driver component ! /|\ ! / | \ -! ATM/OCN/ICE/WAV/LND/IPM/HYD .. components +! ATM/OCN/ICE/WAV/LND/IPM/HYD/FIR .. components ! | | | ! | | (CICE, etc.) ! | | @@ -81,6 +81,10 @@ MODULE UFSDriver #endif #ifdef FRONT_NOAHMP use FRONT_NOAHMP, only: NOAHMP_SS => SetServices +#endif + ! - Handle build time FIR options: +#ifdef FRONT_FIRE_BEHAVIOR + use FRONT_FIRE_BEHAVIOR, only: FIRE_BEHAVIOR_SS => SetServices #endif #ifdef FRONT_LIS use FRONT_LIS, only: LIS_SS => SetServices @@ -471,6 +475,14 @@ subroutine SetModelServices(driver, rc) found_comp = .true. end if #endif +#ifdef FRONT_FIRE_BEHAVIOR + if (trim(model) == "fire_behavior") then + call NUOPC_DriverAddComp(driver, trim(prefix), FIRE_BEHAVIOR_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif #ifdef FRONT_LIS if (trim(model) == "lis") then !TODO: Remove bail code and pass info and SetVM to DriverAddComp diff --git a/fire_behavior b/fire_behavior new file mode 160000 index 0000000000..05cad173fe --- /dev/null +++ b/fire_behavior @@ -0,0 +1 @@ +Subproject commit 05cad173feeb598431e3ef5f17c2df6562c8d101 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 66f3e281a1..9a8eb118ed 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -116,6 +116,7 @@ export med_omp_num_threads=1 export ocn_omp_num_threads=1 export wav_omp_num_threads=1 + export fbh_omp_num_threads=1 if [[ ${MACHINE_ID} = wcoss2 || ${MACHINE_ID} = acorn ]]; then @@ -501,6 +502,7 @@ export FV3=true export S2S=false export HAFS=false export AQM=false +export FIRE_BEHAVIOR=false export DATM_CDEPS=false export DOCN_CDEPS=false export DICE_CDEPS=false @@ -1159,6 +1161,25 @@ export_ww3() { export WW3_user_sets_restname="true" } +export_fire_behavior() { + export fbh_model=fire_behavior + export FIRE_BEHAVIOR=true + export FIRE_NML=namelist.fire.IN + export CPLFIRE=false + export DT_FIRE=${DT_ATMOS} + OUTPUT_FS="$(printf "%02d" $(( OUTPUT_FH*3600 )))" + export OUTPUT_FS + export fire_atm_feedback=1.0 + export fire_lsm_zcoupling=false + export fire_lsm_zcoupling_ref=60.0 + export fire_num_ignitions=1 + export fire_print_msg=0 + export fire_upwinding=9 + export fire_viscosity=0.4 + export fire_wind_height=5.0 +} + + # Defaults for the coupled 5-component export_cmeps() { export UFS_CONFIGURE=ufs.configure.s2swa_fast_esmf.IN @@ -1203,6 +1224,7 @@ export FV3=true export S2S=true export HAFS=false export AQM=false +export FIRE_BEHAVIOR=false export DATM_CDEPS=false export DOCN_CDEPS=false export DICE_CDEPS=false @@ -1395,6 +1417,7 @@ export_datm_cdeps () export S2S=false export HAFS=false export AQM=false + export FIRE_BEHAVIOR=false export DATM_CDEPS=true export DOCN_CDEPS=false export CDEPS_INLINE=false @@ -1472,6 +1495,7 @@ export_hafs_datm_cdeps () export S2S=false export HAFS=true export AQM=false + export FIRE_BEHAVIOR=false export DATM_CDEPS=true export DOCN_CDEPS=false export CDEPS_INLINE=false @@ -1491,6 +1515,7 @@ export_hafs_docn_cdeps () export S2S=false export HAFS=true export AQM=false + export FIRE_BEHAVIOR=false export DOCN_CDEPS=true export CDEPS_INLINE=false export INPES=${INPES_dflt} @@ -1510,6 +1535,7 @@ export_hafs_regional () export S2S=false export HAFS=true export AQM=false + export FIRE_BEHAVIOR=false export DATM_CDEPS=false export DOCN_CDEPS=false export CDEPS_INLINE=false @@ -1583,6 +1609,7 @@ export FV3=true export S2S=false export HAFS=true export AQM=false +export FIRE_BEHAVIOR=false export DATM_CDEPS=false export DOCN_CDEPS=false export CDEPS_INLINE=false diff --git a/tests/fv3_conf/regional_fire_run.IN b/tests/fv3_conf/regional_fire_run.IN new file mode 100644 index 0000000000..10fb6e2a8c --- /dev/null +++ b/tests/fv3_conf/regional_fire_run.IN @@ -0,0 +1,12 @@ +rm -rf INPUT RESTART +mkdir INPUT RESTART + +rsync -arv @[INPUTDATA_ROOT]/FIRE_BEHAVIOR_input_data/@[FIRE_NAME]/. . +rsync -arv @[INPUTDATA_ROOT]/FV3_fire_input_data/@[FIRE_NAME]/. . + +rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix . +ln -sf FV3_fix/* . +ln -sf FV3_fix/fix_co2_proj/* . + +touch data_table diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index e33433c2b4..138fd70659 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Sep 9 23:10:23 UTC 2024 +Mon Sep 16 14:09:37 UTC 2024 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_664740/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/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 = 301.063864 - 0: The maximum resident set size (KB) = 1450936 + 0: The total amount of wall time = 302.216095 + 0: The maximum resident set size (KB) = 1458276 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_664740/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/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 = 1003.768135 - 0: The maximum resident set size (KB) = 1432920 + 0: The total amount of wall time = 1000.555258 + 0: The maximum resident set size (KB) = 1429696 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_664740/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/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 = 272.986390 - 0: The maximum resident set size (KB) = 1418504 + 0: The total amount of wall time = 270.121509 + 0: The maximum resident set size (KB) = 1428680 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_664740/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/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 = 271.716758 - 0: The maximum resident set size (KB) = 1429720 + 0: The total amount of wall time = 274.685713 + 0: The maximum resident set size (KB) = 1419820 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_664740/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/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 = 271.525308 - 0: The maximum resident set size (KB) = 1430068 + 0: The total amount of wall time = 277.361393 + 0: The maximum resident set size (KB) = 1424812 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_664740/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/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 = 270.165754 - 0: The maximum resident set size (KB) = 1429764 + 0: The total amount of wall time = 275.403359 + 0: The maximum resident set size (KB) = 1436644 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_664740/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/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 = 270.519887 - 0: The maximum resident set size (KB) = 1441764 + 0: The total amount of wall time = 267.762416 + 0: The maximum resident set size (KB) = 1425320 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Sep 10 00:41:38 UTC 2024 -Elapsed time: 01h:31m:15s. Have a nice day! +Mon Sep 16 15:29:42 UTC 2024 +Elapsed time: 01h:20m:05s. 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 d95256847e..cf109ffcbe 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Sep 9 21:29:33 UTC 2024 +Mon Sep 16 19:38:10 UTC 2024 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_268951/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3031233/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 = 2492.069029 - 0: The maximum resident set size (KB) = 1537788 + 0: The total amount of wall time = 2391.025998 + 0: The maximum resident set size (KB) = 1540828 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_268951/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3031233/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 = 654.617351 - 0: The maximum resident set size (KB) = 1509560 + 0: The total amount of wall time = 649.071605 + 0: The maximum resident set size (KB) = 1529900 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_268951/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3031233/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 = 760.383664 - 0: The maximum resident set size (KB) = 1533208 + 0: The total amount of wall time = 656.545960 + 0: The maximum resident set size (KB) = 1542368 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Sep 9 23:10:23 UTC 2024 -Elapsed time: 01h:40m:51s. Have a nice day! +Mon Sep 16 21:08:34 UTC 2024 +Elapsed time: 01h:30m:24s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 1f286e8dc1..f0e30d9070 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Sep 9 18:57:45 UTC 2024 +Mon Sep 16 17:00:35 UTC 2024 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_2601361/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2755338/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 = 1354.752756 - 0: The maximum resident set size (KB) = 769596 + 0: The total amount of wall time = 1384.045273 + 0: The maximum resident set size (KB) = 779080 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_2601361/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2755338/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 = 2166.948131 - 0: The maximum resident set size (KB) = 719548 + 0: The total amount of wall time = 2244.080771 + 0: The maximum resident set size (KB) = 730644 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_2601361/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2755338/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 = 2166.204837 - 0: The maximum resident set size (KB) = 732444 + 0: The total amount of wall time = 2249.176725 + 0: The maximum resident set size (KB) = 740600 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_2601361/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2755338/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 = 2262.073130 - 0: The maximum resident set size (KB) = 734244 + 0: The total amount of wall time = 2183.368243 + 0: The maximum resident set size (KB) = 751260 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Sep 9 21:29:32 UTC 2024 -Elapsed time: 02h:31m:47s. Have a nice day! +Mon Sep 16 19:35:51 UTC 2024 +Elapsed time: 02h:35m:17s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 786d4b74e8..294ab31409 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: -17749118ba0dfcca7c2cac513d497ea37521edc8 +a859b1acf58f86110b5dfb42c0445b2ea0fa39cb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -26,6 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,266 +37,266 @@ 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-20240909 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_528239 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3954703 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:23, 10:06] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [42:29, 02:57](3360 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:15] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [36:23, 03:41](2173 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:11, 03:30](2176 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:11, 04:05](1324 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [36:24, 02:44](2275 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:34, 17:37] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [34:19, 02:07](2159 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:20] ( 1524 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [46:33, 04:16](2244 MB) - -PASS -- COMPILE 's2swa_intel' [12:26, 10:22] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [41:27, 02:43](3391 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:27, 03:24](3389 MB) -PASS -- TEST 'cpld_restart_p8_intel' [29:46, 02:58](3305 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [41:27, 02:38](3411 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [29:46, 02:15](3325 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [41:27, 02:20](3694 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [41:27, 02:42](3386 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [41:28, 02:23](3516 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:27, 03:05](3390 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [41:27, 02:19](3294 MB) - -PASS -- COMPILE 's2sw_intel' [11:25, 09:34] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [42:28, 02:11](2079 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:28, 03:18](2083 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:27, 12:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [40:26, 02:29](2092 MB) - -PASS -- COMPILE 's2s_intel' [11:23, 09:27] ( 2 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [42:28, 02:24](2890 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [42:28, 01:54](2898 MB) -PASS -- TEST 'cpld_restart_c48_intel' [38:00, 02:32](2312 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:29, 15:01] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [37:23, 02:36](3400 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:33, 16:41] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:20, 02:02](2167 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:37, 02:49](1342 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:32, 02:15](2273 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:22] ( 1524 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:44, 02:04](2283 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:35] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [31:25, 01:45](711 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [30:53, 01:58](1604 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [30:27, 01:34](1622 MB) -PASS -- TEST 'control_latlon_intel' [29:49, 01:46](1616 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [29:31, 02:07](1608 MB) -PASS -- TEST 'control_c48_intel' [27:17, 02:26](1590 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [27:15, 02:18](712 MB) -PASS -- TEST 'control_c192_intel' [25:49, 01:34](1842 MB) -PASS -- TEST 'control_c384_intel' [24:15, 03:24](3263 MB) -PASS -- TEST 'control_c384gdas_intel' [23:19, 03:16](2445 MB) -PASS -- TEST 'control_stochy_intel' [21:24, 01:38](666 MB) -PASS -- TEST 'control_stochy_restart_intel' [10:47, 01:29](469 MB) -PASS -- TEST 'control_lndp_intel' [19:35, 02:00](668 MB) -PASS -- TEST 'control_iovr4_intel' [18:34, 02:00](667 MB) -PASS -- TEST 'control_iovr5_intel' [18:31, 01:53](667 MB) -PASS -- TEST 'control_p8_intel' [17:25, 03:28](1908 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [17:24, 02:58](1898 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [17:23, 02:51](1910 MB) -PASS -- TEST 'control_restart_p8_intel' [04:59, 03:27](1054 MB) -PASS -- TEST 'control_noqr_p8_intel' [17:22, 02:23](1901 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:04, 02:32](1063 MB) -PASS -- TEST 'control_decomp_p8_intel' [16:10, 02:08](1902 MB) -PASS -- TEST 'control_2threads_p8_intel' [16:08, 03:45](1985 MB) -PASS -- TEST 'control_p8_lndp_intel' [14:42, 01:30](1891 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:47, 03:45](1960 MB) -PASS -- TEST 'control_p8_mynn_intel' [13:43, 03:15](1911 MB) -PASS -- TEST 'merra2_thompson_intel' [13:16, 03:50](1901 MB) -PASS -- TEST 'regional_control_intel' [12:46, 02:00](861 MB) -PASS -- TEST 'regional_restart_intel' [02:53, 01:36](861 MB) -PASS -- TEST 'regional_decomp_intel' [12:12, 01:26](864 MB) -PASS -- TEST 'regional_2threads_intel' [12:11, 01:22](1241 MB) -PASS -- TEST 'regional_noquilt_intel' [10:00, 01:27](1190 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:55, 01:40](867 MB) -PASS -- TEST 'regional_wofs_intel' [08:25, 01:32](1592 MB) - -PASS -- COMPILE 'rrfs_intel' [09:23, 08:12] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [33:05, 02:55](1054 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:06, 02:13](1749 MB) -PASS -- TEST 'rap_decomp_intel' [33:05, 03:06](1049 MB) -PASS -- TEST 'rap_2threads_intel' [33:05, 04:01](1137 MB) -PASS -- TEST 'rap_restart_intel' [08:26, 03:04](861 MB) -PASS -- TEST 'rap_sfcdiff_intel' [33:05, 03:57](1053 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [33:05, 03:03](1045 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:52, 03:05](861 MB) -PASS -- TEST 'hrrr_control_intel' [33:05, 02:20](1042 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [33:05, 03:19](1042 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [33:06, 04:04](1269 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:51, 02:12](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [33:05, 03:31](1042 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [33:05, 02:15](2007 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [32:29, 01:32](1995 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 07:47] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [32:16, 01:25](1007 MB) -PASS -- TEST 'control_ras_intel' [04:56, 01:48](702 MB) - -PASS -- COMPILE 'wam_intel' [09:24, 07:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [04:54, 01:27](1703 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:31, 08:05] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:54, 02:52](1897 MB) -PASS -- TEST 'regional_control_faster_intel' [04:32, 02:07](860 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:28, 06:51] ( 883 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:13, 01:41](1658 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:42, 02:28](1653 MB) -PASS -- TEST 'control_stochy_debug_intel' [02:33, 01:34](858 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:22, 02:02](858 MB) -PASS -- TEST 'control_csawmg_debug_intel' [02:22, 02:09](1158 MB) -PASS -- TEST 'control_ras_debug_intel' [02:13, 02:03](862 MB) -PASS -- TEST 'control_diag_debug_intel' [01:25, 02:17](1718 MB) -PASS -- TEST 'control_debug_p8_intel' [00:40, 02:11](1952 MB) -PASS -- TEST 'regional_debug_intel' [59:52, 01:38](920 MB) -PASS -- TEST 'rap_control_debug_intel' [00:17, 01:29](1237 MB) -PASS -- TEST 'hrrr_control_debug_intel' [59:59, 01:58](1232 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [59:23, 02:17](1235 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [59:18, 01:20](1232 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [58:44, 01:42](1236 MB) -PASS -- TEST 'rap_diag_debug_intel' [58:34, 01:59](1318 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [58:30, 01:20](1237 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:25, 02:09](1239 MB) -PASS -- TEST 'rap_lndp_debug_intel' [58:21, 02:10](1240 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [58:07, 02:10](1239 MB) -PASS -- TEST 'rap_noah_debug_intel' [57:38, 01:19](1233 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [57:16, 01:47](1234 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [57:04, 02:02](1235 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [57:03, 02:04](1231 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [57:00, 02:15](1239 MB) -PASS -- TEST 'rap_flake_debug_intel' [56:51, 02:03](1240 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [56:32, 03:47](1241 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:26, 04:24] ( 838 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [55:50, 02:03](1738 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:38, 07:48] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [55:30, 01:53](1614 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [55:02, 02:57](927 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [54:52, 04:13](925 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [54:37, 03:11](988 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [54:30, 04:34](1127 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [53:47, 04:01](923 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [42:15, 03:54](819 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [43:29, 01:23](803 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:39, 07:49] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [53:25, 02:18](1129 MB) -PASS -- TEST 'conus13km_2threads_intel' [46:13, 01:56](1474 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [45:26, 01:15](953 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:38, 07:53] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [52:46, 02:35](956 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [24:40, 04:23] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [52:44, 01:44](1113 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [51:44, 01:35](1114 MB) -PASS -- TEST 'conus13km_debug_intel' [51:22, 01:48](1210 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [51:13, 01:47](864 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [50:49, 02:02](1542 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [50:43, 01:19](1278 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [37:55, 04:20] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [49:47, 02:04](1135 MB) - -PASS -- COMPILE 'hafsw_intel' [41:57, 09:03] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [49:54, 02:37](1814 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:08, 01:29](2163 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [48:53, 02:20](1278 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [48:46, 02:35](1317 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:34, 02:51](1479 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [48:32, 02:14](1010 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [48:14, 02:33](1324 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [47:44, 02:05](1204 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [47:44, 03:32](2130 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [45:14, 02:14](1047 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [44:23, 02:37](1047 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [43:53, 02:28](1683 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [43:31, 02:04](1232 MB) -PASS -- TEST 'gnv1_nested_intel' [43:11, 04:33](1973 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [36:55, 04:39] ( 1466 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [42:27, 02:16](1727 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [49:07, 08:49] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [36:51, 02:41](1723 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [36:51, 02:12](1902 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [49:06, 08:56] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [35:17, 02:26](1896 MB) - -PASS -- COMPILE 'hafs_all_intel' [49:03, 08:33] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [33:51, 03:09](1268 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [33:51, 02:29](1256 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [33:49, 02:08](898 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [41:56, 09:01] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [29:46, 02:03](772 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [17:13, 02:08](761 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [29:46, 02:01](652 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [29:46, 02:09](650 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [29:46, 01:40](650 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:13, 02:11](772 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [28:55, 01:34](771 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [27:31, 01:52](658 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [24:26, 02:22](868 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [24:22, 01:51](852 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [24:21, 01:48](772 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [24:07, 01:53](2038 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [23:52, 01:27](2038 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [41:58, 08:46] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [23:09, 01:18](772 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [34:49, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [35:52, 01:24](671 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [35:52, 01:57](816 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [23:04, 02:07](818 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [40:57, 09:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:19, 01:55](2024 MB) - -PASS -- COMPILE 'atml_intel' [27:42, 08:42] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [21:50, 03:52](2274 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [21:35, 02:59](2260 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [11:09, 01:30](1412 MB) - -PASS -- COMPILE 'atml_debug_intel' [26:42, 05:00] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [21:11, 03:30](2301 MB) - -PASS -- COMPILE 'atmw_intel' [29:44, 08:20] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:23, 03:19](1999 MB) - -PASS -- COMPILE 'atmaero_intel' [16:31, 08:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [20:17, 03:01](3285 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [20:17, 03:15](3055 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [20:02, 02:38](3067 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [25:39, 04:25] ( 883 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [10:12, 02:45](4849 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:12] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [54:01, 02:58](3362 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 16:40] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [46:54, 03:49](2165 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:46, 03:53](2188 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [25:11, 03:53](1319 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [46:55, 03:21](2259 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:31, 15:47] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [47:55, 01:52](2159 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:46] ( 1524 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [58:07, 04:00](2241 MB) + +PASS -- COMPILE 's2swa_intel' [12:25, 10:37] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [53:00, 02:43](3392 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [53:00, 03:21](3391 MB) +PASS -- TEST 'cpld_restart_p8_intel' [41:19, 01:54](3308 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [53:00, 02:39](3410 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [41:19, 02:40](3327 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [53:00, 02:26](3690 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [53:00, 03:20](3383 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [53:01, 02:23](3516 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [53:00, 03:07](3394 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [53:00, 03:19](3301 MB) + +PASS -- COMPILE 's2sw_intel' [11:24, 10:11] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [54:01, 02:08](2087 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [54:01, 02:22](2090 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:25, 09:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [54:01, 02:31](2091 MB) + +PASS -- COMPILE 's2s_intel' [10:24, 09:12] ( 2 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [55:01, 02:24](2898 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [55:01, 01:55](2904 MB) +PASS -- TEST 'cpld_restart_c48_intel' [50:35, 02:50](2314 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:30, 14:49] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [48:55, 03:24](3395 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:32, 16:57] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [46:53, 02:06](2172 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:11, 02:37](1333 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:42, 02:21](2275 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 04:57] ( 1524 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [51:48, 02:42](2286 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:25, 08:39] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [44:37, 01:51](711 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [44:37, 01:24](1610 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [44:37, 02:14](1617 MB) +PASS -- TEST 'control_latlon_intel' [44:37, 01:58](1613 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [44:37, 02:26](1615 MB) +PASS -- TEST 'control_c48_intel' [44:36, 01:37](1590 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [44:36, 02:14](716 MB) +PASS -- TEST 'control_c192_intel' [44:37, 02:13](1849 MB) +PASS -- TEST 'control_c384_intel' [44:41, 03:29](3267 MB) +PASS -- TEST 'control_c384gdas_intel' [43:51, 04:02](2446 MB) +PASS -- TEST 'control_stochy_intel' [43:01, 01:20](668 MB) +PASS -- TEST 'control_stochy_restart_intel' [27:17, 01:18](469 MB) +PASS -- TEST 'control_lndp_intel' [43:00, 01:35](666 MB) +PASS -- TEST 'control_iovr4_intel' [42:58, 02:03](663 MB) +PASS -- TEST 'control_iovr5_intel' [42:20, 02:16](662 MB) +PASS -- TEST 'control_p8_intel' [41:04, 03:13](1901 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [39:05, 03:08](1907 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [38:02, 03:12](1872 MB) +PASS -- TEST 'control_restart_p8_intel' [22:26, 03:06](1055 MB) +PASS -- TEST 'control_noqr_p8_intel' [36:51, 02:42](1901 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [20:02, 02:42](1065 MB) +PASS -- TEST 'control_decomp_p8_intel' [36:47, 02:37](1901 MB) +PASS -- TEST 'control_2threads_p8_intel' [35:43, 02:20](1980 MB) +PASS -- TEST 'control_p8_lndp_intel' [34:51, 01:36](1902 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [33:33, 03:40](1960 MB) +PASS -- TEST 'control_p8_mynn_intel' [33:28, 03:12](1906 MB) +PASS -- TEST 'merra2_thompson_intel' [31:32, 03:15](1905 MB) +PASS -- TEST 'regional_control_intel' [30:30, 01:58](866 MB) +PASS -- TEST 'regional_restart_intel' [16:32, 01:27](866 MB) +PASS -- TEST 'regional_decomp_intel' [29:15, 01:48](866 MB) +PASS -- TEST 'regional_2threads_intel' [28:43, 02:10](1241 MB) +PASS -- TEST 'regional_noquilt_intel' [28:33, 01:18](1192 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [28:17, 01:56](873 MB) +PASS -- TEST 'regional_wofs_intel' [27:43, 01:52](1594 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:23] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [24:34, 03:15](1053 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [24:04, 02:34](1738 MB) +PASS -- TEST 'rap_decomp_intel' [23:00, 02:35](1048 MB) +PASS -- TEST 'rap_2threads_intel' [20:52, 03:11](1129 MB) +PASS -- TEST 'rap_restart_intel' [10:05, 03:36](860 MB) +PASS -- TEST 'rap_sfcdiff_intel' [20:35, 03:50](1048 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:17, 03:34](1047 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:05, 03:08](864 MB) +PASS -- TEST 'hrrr_control_intel' [20:04, 03:36](1046 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [20:03, 03:33](1040 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [19:59, 04:02](1268 MB) +PASS -- TEST 'hrrr_control_restart_intel' [11:28, 01:14](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [19:51, 04:00](1041 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [19:41, 01:55](2006 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:33, 02:01](1995 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 07:54] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [44:38, 02:06](1002 MB) +PASS -- TEST 'control_ras_intel' [44:38, 01:24](700 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 08:01] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [44:38, 01:22](1706 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 08:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [19:13, 03:08](1904 MB) +PASS -- TEST 'regional_control_faster_intel' [17:46, 01:16](857 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:28, 07:13] ( 883 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [16:50, 01:23](1654 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:19, 02:09](1660 MB) +PASS -- TEST 'control_stochy_debug_intel' [15:47, 02:09](852 MB) +PASS -- TEST 'control_lndp_debug_intel' [15:45, 01:52](855 MB) +PASS -- TEST 'control_csawmg_debug_intel' [15:14, 01:20](1158 MB) +PASS -- TEST 'control_ras_debug_intel' [14:59, 02:06](863 MB) +PASS -- TEST 'control_diag_debug_intel' [14:06, 01:57](1708 MB) +PASS -- TEST 'control_debug_p8_intel' [12:20, 01:26](1948 MB) +PASS -- TEST 'regional_debug_intel' [11:27, 01:40](930 MB) +PASS -- TEST 'rap_control_debug_intel' [11:22, 01:41](1231 MB) +PASS -- TEST 'hrrr_control_debug_intel' [11:17, 01:45](1228 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:55, 01:59](1230 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:12, 02:15](1232 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:26, 01:33](1233 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:19, 01:29](1318 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:58, 01:20](1233 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:53, 02:09](1236 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:13, 01:49](1233 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:12, 01:20](1231 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:05, 01:43](1229 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:03, 02:08](1232 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:55, 01:19](1232 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:39, 01:48](1227 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:33, 01:38](1233 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:29, 01:21](1235 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:25, 04:16](1242 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:24, 04:44] ( 838 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [07:11, 01:58](1739 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:26, 07:52] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 02:26](1609 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:18, 03:09](926 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:15, 04:28](924 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:51, 03:22](983 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:28, 04:56](1124 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:28, 04:14](923 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [53:31, 03:27](814 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [54:46, 01:46](804 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:24, 07:55] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:34, 02:13](1129 MB) +PASS -- TEST 'conus13km_2threads_intel' [57:23, 02:11](1473 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [57:03, 01:19](953 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:26, 07:58] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [02:53, 01:46](959 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:25, 04:22] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [02:46, 01:54](1112 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [02:40, 01:18](1110 MB) +PASS -- TEST 'conus13km_debug_intel' [02:19, 01:55](1199 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [01:56, 02:08](858 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [01:40, 01:47](1544 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [01:38, 01:18](1276 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:28, 04:19] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [01:37, 01:16](1139 MB) + +PASS -- COMPILE 'hafsw_intel' [18:34, 09:06] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [01:28, 02:19](1809 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [01:22, 01:34](2161 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [00:42, 03:12](1288 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [00:40, 02:41](1320 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [00:23, 02:42](1474 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [59:31, 01:51](1011 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [58:41, 03:00](1317 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [57:28, 02:27](1200 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [56:58, 03:46](2122 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [56:31, 01:59](1047 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [55:56, 01:44](1045 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [54:49, 01:55](1677 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [54:18, 01:36](1232 MB) +PASS -- TEST 'gnv1_nested_intel' [53:31, 04:00](1963 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:29, 04:47] ( 1466 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [53:00, 01:43](1725 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:36, 08:53] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [52:50, 02:08](1726 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [52:40, 01:59](1898 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:34, 09:03] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [49:45, 02:12](1900 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:27, 08:33] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [49:12, 02:54](1280 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [47:36, 02:26](1263 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [46:56, 01:28](899 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [34:48, 08:54] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [46:54, 01:54](772 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [27:14, 01:41](762 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [43:35, 01:17](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [43:11, 01:41](651 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [41:22, 01:23](651 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [41:07, 01:34](772 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [39:26, 01:56](773 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [39:11, 01:21](651 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [38:05, 02:15](872 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [38:04, 02:24](852 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [35:40, 01:37](775 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [35:38, 01:52](2037 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [35:12, 01:59](2037 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [34:48, 09:05] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [34:11, 01:55](773 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [25:40, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [34:07, 01:24](679 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [33:46, 01:43](816 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [30:14, 01:33](818 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [46:03, 09:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [33:27, 02:02](2014 MB) + +PASS -- COMPILE 'atml_intel' [44:01, 09:08] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [32:56, 03:44](2263 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [32:51, 03:24](2265 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [23:25, 01:31](1410 MB) + +PASS -- COMPILE 'atml_debug_intel' [36:51, 04:59] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [30:51, 03:34](2314 MB) + +PASS -- COMPILE 'atmw_intel' [46:02, 08:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [30:40, 03:40](1993 MB) + +PASS -- COMPILE 'atmaero_intel' [02:19, 08:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [20:40, 03:03](3285 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [20:40, 02:30](3059 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [20:40, 02:25](3068 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [56:12, 04:23] ( 883 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:38, 02:54](4881 MB) SYNOPSIS: -Starting Date/Time: 20240912 20:05:48 -Ending Date/Time: 20240912 22:17:39 -Total Time: 02h:12m:18s +Starting Date/Time: 20240913 19:54:16 +Ending Date/Time: 20240913 22:03:14 +Total Time: 02h:09m:26s Compiles Completed: 37/37 Tests Completed: 176/176 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 67162950d9..cfb39ed6ec 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -c64ccb4c80d1f8c91039650319784bf96c81a676 +a859b1acf58f86110b5dfb42c0445b2ea0fa39cb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -26,6 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,365 +37,289 @@ 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-20240909 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_86017 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_102678 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:13, 18:01] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:00, 08:01](3200 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:23, 14:11](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 14:30](1934 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:23, 15:06](1890 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:31] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:47, 13:52](1912 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:11, 12:52] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:22, 25:57](1940 MB) - -PASS -- COMPILE 's2swa_intel' [19:13, 17:52] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:01, 09:50](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:58, 09:58](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [22:26, 06:21](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:57, 10:00](3250 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [19:26, 05:58](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:51, 08:19](3470 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:53, 09:45](3224 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:52, 08:31](3171 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:02, 09:51](3226 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:35, 09:42](3446 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:08, 06:28](3605 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:07, 09:15](4210 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:52, 07:45](3213 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 16:49] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:19, 06:02](1928 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:19, 08:29](1995 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:11, 12:22] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:46, 14:15](3282 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:11, 12:27] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:20, 09:04](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:01] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:18, 05:12](1991 MB) - -PASS -- COMPILE 's2s_intel' [17:11, 15:24] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:06, 05:30](2874 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:05, 01:55](2882 MB) -PASS -- TEST 'cpld_restart_c48_intel' [08:06, 01:09](2293 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:11, 19:34] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:29, 09:47](3225 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 21:06] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:45, 15:27](1924 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [09:58, 17:43](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:11, 12:34] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:15, 27:06](1949 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [12:44, 03:55](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [14:29, 03:48](1562 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:21, 03:53](1575 MB) -PASS -- TEST 'control_latlon_intel' [15:18, 03:37](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:31, 03:40](1565 MB) -PASS -- TEST 'control_c48_intel' [21:38, 09:50](1578 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [16:10, 05:45](699 MB) -PASS -- TEST 'control_c192_intel' [23:33, 11:22](1686 MB) -PASS -- TEST 'control_c384_intel' [39:38, 23:21](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [30:25, 14:25](1154 MB) -PASS -- TEST 'control_stochy_intel' [12:44, 02:04](620 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:28, 01:00](426 MB) -PASS -- TEST 'control_lndp_intel' [12:44, 02:05](619 MB) -PASS -- TEST 'control_iovr4_intel' [12:45, 02:45](618 MB) -PASS -- TEST 'control_iovr5_intel' [11:47, 02:49](618 MB) -PASS -- TEST 'control_p8_intel' [17:40, 04:02](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [16:56, 03:23](1858 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [17:13, 03:54](1860 MB) -PASS -- TEST 'control_restart_p8_intel' [07:02, 02:28](1007 MB) -PASS -- TEST 'control_noqr_p8_intel' [19:03, 03:58](1855 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:58, 02:44](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [20:02, 03:51](1847 MB) -PASS -- TEST 'control_2threads_p8_intel' [18:00, 03:13](1941 MB) -PASS -- TEST 'control_p8_lndp_intel' [20:49, 06:33](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:54, 04:31](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:09, 03:24](1860 MB) -PASS -- TEST 'merra2_thompson_intel' [09:07, 03:35](1867 MB) -PASS -- TEST 'regional_control_intel' [06:37, 04:40](850 MB) -PASS -- TEST 'regional_restart_intel' [06:34, 03:13](854 MB) -PASS -- TEST 'regional_decomp_intel' [09:34, 04:55](859 MB) -PASS -- TEST 'regional_2threads_intel' [08:35, 02:55](995 MB) -PASS -- TEST 'regional_noquilt_intel' [09:37, 04:34](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:41, 04:40](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:37, 04:38](852 MB) -PASS -- TEST 'regional_wofs_intel' [09:37, 06:17](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 13:17] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:01, 06:48](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:06, 03:48](1147 MB) -PASS -- TEST 'rap_decomp_intel' [10:58, 07:52](1004 MB) -PASS -- TEST 'rap_2threads_intel' [09:01, 06:43](1081 MB) -PASS -- TEST 'rap_restart_intel' [06:06, 03:38](872 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:45, 07:33](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:44, 07:37](1002 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [51:00, 05:07](871 MB) -PASS -- TEST 'hrrr_control_intel' [07:03, 04:23](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:58, 03:53](997 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:00, 03:04](1070 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:08, 01:54](827 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:56, 06:47](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 08:29](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:32, 08:09](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [15:11, 13:33] -PASS -- TEST 'control_csawmg_intel' [10:43, 06:39](958 MB) -PASS -- TEST 'control_ras_intel' [06:25, 03:21](653 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:27] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:03, 12:02](1656 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 12:58] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:50, 03:11](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [07:40, 04:33](829 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:11, 13:10] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:48, 02:40](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:43, 02:42](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:07](794 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:30, 02:55](793 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:39, 04:20](1095 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:57](801 MB) -PASS -- TEST 'control_diag_debug_intel' [04:57, 02:55](1655 MB) -PASS -- TEST 'control_debug_p8_intel' [05:40, 03:03](1891 MB) -PASS -- TEST 'regional_debug_intel' [19:34, 16:59](899 MB) -PASS -- TEST 'rap_control_debug_intel' [11:32, 04:59](1173 MB) -PASS -- TEST 'hrrr_control_debug_intel' [14:29, 05:01](1169 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [14:28, 05:11](1176 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [14:31, 05:16](1176 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:30, 05:11](1173 MB) -PASS -- TEST 'rap_diag_debug_intel' [47:42, 05:16](1258 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [46:32, 05:07](1173 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [46:32, 05:09](1173 MB) -PASS -- TEST 'rap_lndp_debug_intel' [46:16, 05:07](1176 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [45:32, 05:02](1173 MB) -PASS -- TEST 'rap_noah_debug_intel' [45:37, 04:58](1169 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [46:36, 05:08](1173 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [53:33, 08:04](1169 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [50:30, 05:02](1172 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [51:36, 05:56](1179 MB) -PASS -- TEST 'rap_flake_debug_intel' [55:30, 05:06](1175 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [01:02, 08:27](1180 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:12, 09:24] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [09:14, 13:25](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:13, 03:30](1012 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [59:00, 05:50](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:02, 03:20](878 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:03, 05:14](935 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:01, 02:44](927 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:56, 03:53](878 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [22:55, 04:26](775 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:34, 01:58](760 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:12, 12:37] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:20, 02:23](1084 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:54, 00:53](1065 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:56, 01:20](962 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:59] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:05, 04:31](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:13, 09:41] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 05:11](1052 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:37, 04:57](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [16:11, 14:32](1133 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:06, 14:31](805 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [06:56, 08:00](1116 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:05, 14:27](1198 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 09:41] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [34:29, 05:01](1077 MB) - -PASS -- COMPILE 'hafsw_intel' [18:12, 16:16] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [34:14, 04:37](690 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:42, 03:54](1034 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:28, 07:19](725 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [40:20, 11:32](761 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:27, 12:33](779 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:11, 05:00](464 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [32:27, 06:17](479 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [28:06, 02:30](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [33:26, 06:54](430 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [25:48, 03:32](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:00, 03:20](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [18:03, 04:01](555 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:38, 01:13](396 MB) -PASS -- TEST 'gnv1_nested_intel' [15:54, 05:03](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:11, 11:12] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:58, 12:21](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:11, 15:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:07, 07:12](603 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:18, 07:09](779 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:15, 16:13] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:21, 05:25](775 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:11, 15:15] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:10, 05:55](719 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:18, 06:07](705 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:16, 20:07](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:59] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:28, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:28, 01:34](741 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:27](649 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 02:26](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:23, 02:27](641 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 02:33](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 02:34](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 02:25](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:03, 05:59](696 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:00, 05:59](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:30, 04:39](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:28, 04:41](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 07:54] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:28, 05:24](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 12:22] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:32](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:12, 03:18] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:50, 01:42](317 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:46, 01:16](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:46, 00:51](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:15, 15:35] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:24, 04:03](1916 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:13, 13:54] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:18, 04:00](1904 MB) - -PASS -- COMPILE 'atml_intel' [17:12, 15:33] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:36, 07:06](1880 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:40, 07:11](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 03:33](1035 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:11, 12:18] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:31, 06:12](1919 MB) - -PASS -- COMPILE 'atmw_intel' [17:11, 15:54] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:02, 02:38](1888 MB) - -PASS -- COMPILE 'atmaero_intel' [16:11, 14:31] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:11, 06:37](3121 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:12, 06:35](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:04, 06:51](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:11, 10:28] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:29, 18:16](4484 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:11, 19:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:38, 08:32](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:12, 22:07] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:19, 14:05](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:56, 14:39](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:54, 06:50](1070 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:14, 14:56](1890 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:12, 21:58] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:43, 13:15](1915 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:14, 15:18] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:34, 26:40](1940 MB) + +PASS -- COMPILE 's2swa_intel' [23:12, 21:57] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [21:32, 09:59](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:46, 09:53](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:53, 06:02](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:41, 10:15](3251 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:45, 06:12](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:38, 08:28](3471 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [21:29, 09:52](3224 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:38, 08:39](3170 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:46, 10:03](3225 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [22:43, 10:00](3443 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:11, 06:44](3606 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:17, 09:15](4207 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:39, 05:53](4358 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [18:30, 07:50](3214 MB) + +PASS -- COMPILE 's2sw_intel' [20:11, 18:14] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:37, 06:25](1924 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:51, 08:50](1996 MB) + +PASS -- COMPILE 's2swa_debug_intel' [15:13, 13:49] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [18:00, 14:11](3283 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:13, 13:17] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:57, 09:17](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:12, 17:23] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:39, 05:10](1992 MB) + +PASS -- COMPILE 's2s_intel' [18:11, 16:44] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:10, 05:32](2871 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:10, 01:55](2882 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:06, 01:06](2293 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:11, 20:04] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:54, 10:19](3224 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:14, 22:21] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:41, 15:50](1923 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:42, 07:18](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:30, 17:14](1904 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 13:31] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:26, 26:53](1947 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:11] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:38, 03:44](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:28, 03:55](1563 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:20, 03:18](1575 MB) +PASS -- TEST 'control_latlon_intel' [06:09, 03:21](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:28, 03:53](1565 MB) +PASS -- TEST 'control_c48_intel' [12:36, 09:55](1580 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:16, 05:48](699 MB) +PASS -- TEST 'control_c192_intel' [16:16, 11:20](1687 MB) +PASS -- TEST 'control_c384_intel' [29:46, 23:57](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [21:44, 14:30](1151 MB) +PASS -- TEST 'control_stochy_intel' [03:46, 01:43](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:29, 01:40](426 MB) +PASS -- TEST 'control_lndp_intel' [03:46, 01:34](619 MB) +PASS -- TEST 'control_iovr4_intel' [04:47, 02:37](618 MB) +PASS -- TEST 'control_iovr5_intel' [04:48, 02:21](618 MB) +PASS -- TEST 'control_p8_intel' [08:14, 04:23](1856 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:36, 03:51](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:22, 04:14](1861 MB) +PASS -- TEST 'control_restart_p8_intel' [04:20, 02:06](1012 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:15, 03:59](1855 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:22, 01:59](1022 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:07](1847 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:15, 03:34](1939 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:46, 06:35](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:20, 04:20](1910 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:30, 03:21](1859 MB) +PASS -- TEST 'merra2_thompson_intel' [06:16, 03:43](1854 MB) +PASS -- TEST 'regional_control_intel' [06:44, 04:47](851 MB) +PASS -- TEST 'regional_restart_intel' [04:41, 02:34](854 MB) +PASS -- TEST 'regional_decomp_intel' [06:44, 04:50](849 MB) +PASS -- TEST 'regional_2threads_intel' [04:42, 02:53](989 MB) +PASS -- TEST 'regional_noquilt_intel' [06:45, 04:45](1181 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:53, 04:39](850 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:54, 04:36](851 MB) +PASS -- TEST 'regional_wofs_intel' [07:58, 06:05](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 13:19] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:12, 06:55](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:17, 03:42](1143 MB) +PASS -- TEST 'rap_decomp_intel' [10:03, 07:14](1005 MB) +PASS -- TEST 'rap_2threads_intel' [09:02, 06:17](1093 MB) +PASS -- TEST 'rap_restart_intel' [06:01, 03:25](872 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:07, 07:02](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:00, 07:30](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:03, 05:13](871 MB) +PASS -- TEST 'hrrr_control_intel' [06:10, 03:53](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:59, 04:23](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:00, 03:05](1069 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:38, 02:03](827 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:09, 07:19](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:33, 08:37](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:34, 08:22](1953 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:49] +PASS -- TEST 'control_csawmg_intel' [09:43, 06:47](958 MB) +PASS -- TEST 'control_ras_intel' [07:28, 03:34](652 MB) + +PASS -- COMPILE 'wam_intel' [16:11, 14:12] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:09, 12:02](1656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:57] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:12, 03:17](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [07:41, 04:34](854 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:15, 14:16] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:56, 02:49](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:55](1591 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:20](794 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:30, 02:51](792 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:20](1095 MB) +PASS -- TEST 'control_ras_debug_intel' [04:26, 02:51](800 MB) +PASS -- TEST 'control_diag_debug_intel' [04:42, 02:59](1652 MB) +PASS -- TEST 'control_debug_p8_intel' [05:44, 03:13](1889 MB) +PASS -- TEST 'regional_debug_intel' [18:42, 16:20](887 MB) +PASS -- TEST 'rap_control_debug_intel' [06:29, 05:01](1173 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:33, 05:06](1169 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:35, 05:17](1176 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:32, 05:15](1176 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:28, 05:04](1173 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:35, 05:14](1258 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:32, 05:10](1172 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:31, 05:11](1176 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:35, 05:20](1178 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:34, 05:08](1173 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:34, 05:03](1169 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:34, 05:04](1173 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 08:00](1169 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:34, 04:55](1173 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:33, 06:14](1179 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:35, 05:02](1176 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:05, 08:28](1177 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:11, 10:41] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:08, 13:30](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 13:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:11, 03:32](1012 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 05:56](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:57, 03:18](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:00, 05:19](939 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:01, 02:43](923 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:57, 03:36](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:51, 04:25](776 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:35, 01:40](760 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 13:03] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:17, 02:14](1083 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:07, 00:55](1064 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:05, 01:46](960 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:11, 13:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:07, 04:10](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 10:37] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 05:01](1052 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:33, 05:00](1053 MB) +PASS -- TEST 'conus13km_debug_intel' [17:09, 14:34](1135 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:13, 14:25](806 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:07, 08:19](1115 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:08, 14:30](1199 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:11, 10:25] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:31, 05:02](1077 MB) + +PASS -- COMPILE 'hafsw_intel' [19:11, 17:30] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:14, 04:44](687 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:40, 03:53](1035 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:41, 07:34](732 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:23, 11:33](760 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:33, 12:39](776 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:14, 05:03](462 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:36, 06:23](479 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:19, 02:28](366 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:57, 06:56](438 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:54, 03:33](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:16, 03:15](495 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:16, 04:10](556 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:48, 01:16](396 MB) +PASS -- TEST 'gnv1_nested_intel' [11:16, 05:14](1700 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:11, 12:02] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:04, 12:32](586 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:11, 16:27] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:14, 07:07](597 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:21, 07:12](775 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:11, 17:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:43, 05:32](777 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:11, 15:55] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:17, 05:59](721 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:23, 06:04](709 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:20, 20:08](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:37] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:32, 02:37](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:29, 01:33](742 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:28](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:31](641 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:32, 02:29](651 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:32, 02:34](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 02:38](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 02:26](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:02, 06:01](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 05:58](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:26, 02:34](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 04:43](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:31, 04:44](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 08:23] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:30, 05:24](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:12, 13:17] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 02:34](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:15, 03:57] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:55, 01:28](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 01:24](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:51, 00:50](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:15, 14:38] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:47, 04:11](1918 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:11, 14:28] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:39, 04:06](1907 MB) + +PASS -- COMPILE 'atml_intel' [17:11, 15:39] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:57, 07:30](1881 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:57, 07:32](1882 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:51, 04:01](1037 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:12, 11:30] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:21, 06:07](1907 MB) + +PASS -- COMPILE 'atmw_intel' [16:11, 14:51] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:10, 02:23](1888 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 13:31] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:22, 06:09](3121 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:18, 07:05](3007 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:10, 07:10](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:12, 10:04] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:39, 18:11](4486 MB) + +PASS -- COMPILE 'atm_fbh_intel' [15:12, 13:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:48, 08:57](799 MB) SYNOPSIS: -Starting Date/Time: 20240909 23:36:06 -Ending Date/Time: 20240910 02:33:17 -Total Time: 02h:57m:58s -Compiles Completed: 41/41 -Tests Completed: 182/185 -Failed Tests: -* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2363/ufs-weather-model/tests/logs/log_gaea/run_cpld_restart_gfsv17_intel.log -* TEST cpld_restart_bmark_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2363/ufs-weather-model/tests/logs/log_gaea/run_cpld_restart_bmark_p8_intel.log -* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2363/ufs-weather-model/tests/logs/log_gaea/run_cpld_restart_pdlib_p8_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF GAEA REGRESSION TESTING LOG==== -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -94d3c1110e119e311d76266bdc79a376f12d856e - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_183925 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:34] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [29:22, 13:46](1909 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:30, 07:08](1063 MB) - -PASS -- COMPILE 's2swa_intel' [20:11, 18:07] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_bmark_p8_intel' [31:34, 09:18](4206 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [10:57, 05:57](4364 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 20:55] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:18, 15:08](1925 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 07:21](1090 MB) - -SYNOPSIS: -Starting Date/Time: 20240911 17:40:18 -Ending Date/Time: 20240911 18:44:42 -Total Time: 01h:04m:43s -Compiles Completed: 3/3 -Tests Completed: 6/6 +Starting Date/Time: 20240916 02:20:09 +Ending Date/Time: 20240916 04:06:50 +Total Time: 01h:47m:37s +Compiles Completed: 42/42 +Tests Completed: 186/186 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 6e961e3796..410d1b05e1 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,20 +1,21 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -c64ccb4c80d1f8c91039650319784bf96c81a676 +a859b1acf58f86110b5dfb42c0445b2ea0fa39cb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -25,383 +26,382 @@ 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-20240909 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3529378 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_169542 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:12, 12:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:12, 06:19](3327 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:12, 16:25] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:00, 17:35](1990 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:09, 18:16](2167 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:57, 19:43](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:14, 16:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:45, 17:12](1964 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:14, 06:02] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:11, 23:49](1889 MB) - -PASS -- COMPILE 's2swa_intel' [15:12, 12:44] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:13, 07:44](3335 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:22, 07:29](3368 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:15, 04:16](3268 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:14, 07:39](3364 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:14, 04:21](3285 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:10, 07:09](3640 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [19:14, 07:40](3364 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:07, 06:15](3233 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:22, 07:33](3366 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:18, 10:15](3542 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:36, 06:20](3632 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:32, 08:37](4309 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:09, 05:47](3338 MB) - -PASS -- COMPILE 's2sw_intel' [14:14, 12:18] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:53, 05:38](1985 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:59, 07:17](2058 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:13, 05:51] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:14, 13:08](3376 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:13, 05:41] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:06, 09:14](2019 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:14, 11:13] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:59, 04:19](2014 MB) - -PASS -- COMPILE 's2s_intel' [13:14, 11:24] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:40, 07:50](3041 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:41, 02:39](3031 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:38, 01:33](2477 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:13, 16:41] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:13, 07:14](3343 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 15:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:59, 17:42](2020 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:54, 20:05](1926 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:36] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:10, 26:15](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:20, 03:19](711 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:36, 03:12](1599 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:41, 03:19](1593 MB) -PASS -- TEST 'control_latlon_intel' [05:36, 03:10](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:43, 03:13](1595 MB) -PASS -- TEST 'control_c48_intel' [13:41, 11:31](1724 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:30](845 MB) -PASS -- TEST 'control_c192_intel' [13:51, 11:52](1756 MB) -PASS -- TEST 'control_c384_intel' [16:48, 13:24](1987 MB) -PASS -- TEST 'control_c384gdas_intel' [15:37, 08:11](1375 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:37](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:26, 00:59](507 MB) -PASS -- TEST 'control_lndp_intel' [03:22, 01:32](660 MB) -PASS -- TEST 'control_iovr4_intel' [04:22, 02:28](651 MB) -PASS -- TEST 'control_iovr5_intel' [04:23, 02:28](657 MB) -PASS -- TEST 'control_p8_intel' [05:58, 03:39](1882 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:54, 03:04](1894 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 03:35](1876 MB) -PASS -- TEST 'control_restart_p8_intel' [04:44, 02:02](1127 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:50, 03:38](1872 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:50, 02:00](1167 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:48, 03:41](1868 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:48, 03:32](1960 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:43, 06:34](1894 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:54, 04:08](1951 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:06](1899 MB) -PASS -- TEST 'merra2_thompson_intel' [05:50, 03:25](1895 MB) -PASS -- TEST 'regional_control_intel' [07:36, 05:28](1092 MB) -PASS -- TEST 'regional_restart_intel' [04:34, 02:52](1083 MB) -PASS -- TEST 'regional_decomp_intel' [07:34, 05:41](1090 MB) -PASS -- TEST 'regional_2threads_intel' [05:33, 03:25](1092 MB) -PASS -- TEST 'regional_noquilt_intel' [07:35, 05:16](1389 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:37, 05:16](1100 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 05:21](1089 MB) -PASS -- TEST 'regional_wofs_intel' [08:33, 06:49](1916 MB) - -PASS -- COMPILE 'rrfs_intel' [11:13, 10:05] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:41, 07:47](1115 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:01, 04:06](1248 MB) -PASS -- TEST 'rap_decomp_intel' [10:42, 08:14](1040 MB) -PASS -- TEST 'rap_2threads_intel' [09:43, 07:21](1175 MB) -PASS -- TEST 'rap_restart_intel' [06:44, 04:03](1104 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:45, 07:46](1100 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:45, 08:11](1038 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:42, 05:52](1134 MB) -PASS -- TEST 'hrrr_control_intel' [06:38, 03:59](1043 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:38, 04:08](1032 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:38, 03:39](1101 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:29, 02:10](1002 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:50, 07:43](1095 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:20](1993 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 09:07](2065 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 09:48] -PASS -- TEST 'control_csawmg_intel' [07:36, 06:08](1017 MB) -PASS -- TEST 'control_ras_intel' [05:21, 03:18](743 MB) - -PASS -- COMPILE 'csawmg_gnu' [07:12, 04:14] -PASS -- TEST 'control_csawmg_gnu' [12:41, 08:31](741 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 12:47] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:17, 06:26](3339 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:07, 17:37](1980 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:34, 18:16](2158 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:15, 08:31](1271 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:30, 19:48](1869 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:12, 17:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:48, 17:17](1963 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:12, 06:21] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:10, 24:16](1935 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 12:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:13, 07:35](3370 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:25, 07:53](3349 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:42, 04:20](3266 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:15, 07:43](3386 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:41, 04:23](3293 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:10, 07:15](3643 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:12, 07:43](3363 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:21, 06:16](3233 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:27, 07:44](3362 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:10, 10:21](3535 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:59, 06:45](3635 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [17:56, 08:52](4303 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:56, 06:10](4386 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:17, 05:36](3324 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 11:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:04, 05:46](2000 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:08, 07:21](2069 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:12, 06:22] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:06, 13:39](3415 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:49] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:04, 09:11](2020 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:19] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:23](2052 MB) + +PASS -- COMPILE 's2s_intel' [13:12, 11:30] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:46, 07:45](3033 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:45, 02:42](3035 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:45, 01:36](2490 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:15, 16:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:30, 07:14](3367 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:14, 15:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:17, 17:38](2038 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:21, 08:28](1269 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:05, 20:05](1942 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:12, 06:07] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:10, 25:51](1970 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:12, 10:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:27, 03:26](706 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:44, 03:13](1593 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:50, 03:16](1598 MB) +PASS -- TEST 'control_latlon_intel' [06:40, 03:11](1593 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:46, 03:14](1585 MB) +PASS -- TEST 'control_c48_intel' [13:46, 11:24](1725 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:31, 06:28](861 MB) +PASS -- TEST 'control_c192_intel' [14:15, 11:54](1768 MB) +PASS -- TEST 'control_c384_intel' [18:04, 14:03](1994 MB) +PASS -- TEST 'control_c384gdas_intel' [14:41, 08:08](1373 MB) +PASS -- TEST 'control_stochy_intel' [03:25, 01:44](660 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:35, 01:02](507 MB) +PASS -- TEST 'control_lndp_intel' [03:23, 01:53](658 MB) +PASS -- TEST 'control_iovr4_intel' [04:25, 02:34](655 MB) +PASS -- TEST 'control_iovr5_intel' [04:29, 02:43](665 MB) +PASS -- TEST 'control_p8_intel' [06:05, 04:01](1887 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:13, 03:27](1893 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:46, 03:42](1884 MB) +PASS -- TEST 'control_restart_p8_intel' [03:49, 02:03](1131 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:19, 03:43](1876 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:07, 02:03](1150 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:57, 03:43](1869 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:54, 03:28](1957 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:53, 06:35](1883 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:00, 04:04](1961 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:29, 03:08](1901 MB) +PASS -- TEST 'merra2_thompson_intel' [05:56, 03:22](1897 MB) +PASS -- TEST 'regional_control_intel' [07:40, 05:21](1091 MB) +PASS -- TEST 'regional_restart_intel' [05:44, 03:11](1084 MB) +PASS -- TEST 'regional_decomp_intel' [07:40, 05:41](1088 MB) +PASS -- TEST 'regional_2threads_intel' [05:41, 03:29](1088 MB) +PASS -- TEST 'regional_noquilt_intel' [07:46, 05:24](1391 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 05:27](1097 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 05:38](1097 MB) +PASS -- TEST 'regional_wofs_intel' [09:40, 07:14](1912 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 10:05] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:04, 07:55](1102 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:17, 04:05](1255 MB) +PASS -- TEST 'rap_decomp_intel' [10:47, 08:11](1042 MB) +PASS -- TEST 'rap_2threads_intel' [10:03, 07:21](1178 MB) +PASS -- TEST 'rap_restart_intel' [07:22, 04:03](1099 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:02, 07:54](1104 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:47, 08:11](1044 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:57, 05:56](1132 MB) +PASS -- TEST 'hrrr_control_intel' [06:48, 03:59](1041 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:46, 04:07](1033 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:51, 03:38](1102 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:43, 02:15](1003 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:06, 07:42](1098 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:34, 09:36](1987 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:35, 09:19](2047 MB) + +PASS -- COMPILE 'csawmg_intel' [13:16, 09:51] +PASS -- TEST 'control_csawmg_intel' [08:53, 06:09](1021 MB) +PASS -- TEST 'control_ras_intel' [05:30, 03:19](744 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:15] +PASS -- TEST 'control_csawmg_gnu' [10:43, 08:27](742 MB) PASS -- COMPILE 'wam_intel' [12:12, 09:51] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:47, 11:08](1670 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 10:09] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:51, 02:46](1886 MB) -PASS -- TEST 'regional_control_faster_intel' [06:33, 04:58](1086 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:12, 07:38] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:35, 02:14](1616 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:17](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:03](832 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:51](829 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:36, 04:22](1145 MB) -PASS -- TEST 'control_ras_debug_intel' [04:25, 02:49](839 MB) -PASS -- TEST 'control_diag_debug_intel' [04:46, 02:43](1688 MB) -PASS -- TEST 'control_debug_p8_intel' [04:41, 02:39](1915 MB) -PASS -- TEST 'regional_debug_intel' [19:38, 17:39](1113 MB) -PASS -- TEST 'rap_control_debug_intel' [07:23, 05:01](1218 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:58](1210 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 05:04](1213 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:57](1217 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 05:07](1222 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:19](1297 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 05:08](1219 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 05:05](1219 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:06](1224 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:07](1215 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:25, 04:58](1217 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:22, 05:04](1217 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:19](1215 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 05:04](1215 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 06:17](1227 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:21, 05:01](1217 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:41, 08:45](1218 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [11:12, 04:17] -PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:21](732 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:12, 04:42] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:47, 13:44](1691 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 09:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:04, 03:57](1119 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:32](1051 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 03:22](987 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 06:07](1093 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:09](961 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:38](918 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:38, 04:54](1038 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:50](928 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:12, 09:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:54, 02:07](1194 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:44, 00:55](1111 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:13](1096 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 09:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:09](982 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:37] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:03](1092 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:49](1100 MB) -PASS -- TEST 'conus13km_debug_intel' [16:53, 14:55](1243 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:49, 15:27](942 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 08:24](1160 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 15:17](1300 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:39] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:56](1140 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 11:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:18, 04:59](722 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:00](1094 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:20, 06:57](810 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:16, 13:49](858 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:28, 15:36](877 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:57, 05:30](493 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:18, 06:40](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:40](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:11, 07:14](481 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:45](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:30](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:04](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:11](403 MB) -PASS -- TEST 'gnv1_nested_intel' [06:32, 03:59](1742 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:12, 04:57] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:50, 13:07](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:12, 11:01] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:01, 08:51](671 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:05, 08:58](743 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:24] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:33, 06:30](725 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 10:38] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:16, 06:32](815 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:14, 06:39](801 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:09](1219 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:24] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:42](1158 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:39](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:32](1046 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:38](1033 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:37](1040 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:41](1184 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:41](1176 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:38](1047 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:22, 06:43](1065 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:17, 06:27](1044 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:40](1156 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:50](2515 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:57](2529 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:27] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:15](1071 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 06:25] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:46](1161 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:12] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:45](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:50](330 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:24, 00:31](326 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:36] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:58, 03:40](1986 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:20] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:53, 03:38](1952 MB) - -PASS -- COMPILE 'atml_intel' [12:16, 10:50] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:59, 04:17](1865 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:58, 04:19](1864 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:44, 02:20](1084 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 05:44] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:57, 05:45](1888 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:19] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:47, 01:51](1916 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 10:22] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:55, 04:08](3196 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:53, 04:54](3111 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:43, 04:58](3114 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:35] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:31] -PASS -- TEST 'control_c48_gnu' [11:39, 09:12](1510 MB) -PASS -- TEST 'control_stochy_gnu' [06:22, 03:23](492 MB) -PASS -- TEST 'control_ras_gnu' [07:22, 04:50](505 MB) -PASS -- TEST 'control_p8_gnu' [08:53, 05:06](1446 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:50, 04:59](1455 MB) -PASS -- TEST 'control_flake_gnu' [13:26, 10:19](540 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:11] -PASS -- TEST 'rap_control_gnu' [13:31, 10:42](812 MB) -PASS -- TEST 'rap_decomp_gnu' [13:30, 11:00](816 MB) -PASS -- TEST 'rap_2threads_gnu' [12:36, 09:53](920 MB) -PASS -- TEST 'rap_restart_gnu' [07:43, 05:35](578 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 10:50](817 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:12](811 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:47, 08:01](580 MB) -PASS -- TEST 'hrrr_control_gnu' [08:31, 05:35](815 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:37, 05:34](832 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:35, 04:59](914 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:34](809 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:26, 02:53](568 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 02:51](654 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:43, 10:35](814 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:33] -PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:40](1273 MB) -PASS -- TEST 'regional_debug_gnu' [12:37, 10:58](755 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:43](827 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:33](822 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:21, 02:37](826 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:21, 02:37](830 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:52](908 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 04:07](818 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:21, 02:39](823 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:36](818 MB) -PASS -- TEST 'control_ras_debug_gnu' [04:21, 01:36](461 MB) -PASS -- TEST 'control_stochy_debug_gnu' [04:21, 01:45](452 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:32](1441 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:37](823 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [05:22, 02:51](827 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:38, 04:25](828 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:25] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:09] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:31, 09:31](709 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:32, 05:01](709 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:40, 08:37](753 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:29, 04:28](745 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:29, 05:05](702 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:38, 07:02](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:27, 02:32](537 MB) -PASS -- TEST 'conus13km_control_gnu' [05:53, 03:10](874 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:45, 05:34](882 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:43, 01:49](571 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:30] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:40, 05:46](731 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:38] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:23, 02:34](716 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:22, 02:31](712 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:50, 06:57](895 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:43, 07:05](585 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 07:46](898 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:43, 07:06](962 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:36] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:22, 02:43](737 MB) - -PASS -- COMPILE 's2swa_gnu' [18:14, 16:30] - -PASS -- COMPILE 's2s_gnu' [17:14, 16:03] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:06, 10:57](1543 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:11] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:14, 16:10] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:59, 23:19](1460 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 02:58] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:14, 15:26] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:01](695 MB) +PASS -- TEST 'control_wam_intel' [13:51, 11:20](1674 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:12] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:01, 02:54](1879 MB) +PASS -- TEST 'regional_control_faster_intel' [06:40, 05:01](1098 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:56] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 02:23](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:50, 02:14](1624 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:19](836 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:28, 02:52](825 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:26](1142 MB) +PASS -- TEST 'control_ras_debug_intel' [04:27, 02:51](844 MB) +PASS -- TEST 'control_diag_debug_intel' [04:55, 02:49](1687 MB) +PASS -- TEST 'control_debug_p8_intel' [04:58, 02:43](1914 MB) +PASS -- TEST 'regional_debug_intel' [19:45, 17:27](1114 MB) +PASS -- TEST 'rap_control_debug_intel' [07:35, 05:10](1219 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:37, 05:03](1219 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 05:06](1220 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:31, 05:10](1222 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 05:11](1217 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:47, 05:10](1306 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:33, 05:08](1215 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:33, 05:08](1219 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:28, 05:00](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:29, 04:59](1211 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:28, 04:57](1210 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:28, 05:04](1216 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 08:15](1214 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 05:00](1211 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 05:47](1220 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:27, 05:00](1227 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:43, 08:37](1223 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 04:05] +PASS -- TEST 'control_csawmg_debug_gnu' [04:39, 02:29](726 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:12, 04:44] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:50, 13:33](1664 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:17, 09:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:10, 03:57](1134 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:46, 06:28](1051 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:22](980 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:38, 06:11](1089 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:11](959 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:36, 03:35](931 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:40, 04:53](1032 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:53](929 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:13, 10:06] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:57, 02:09](1191 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:01](1114 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:16](1099 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:13, 10:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:10](987 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:42] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:56](1090 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 04:55](1092 MB) +PASS -- TEST 'conus13km_debug_intel' [16:54, 15:01](1240 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 15:02](933 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 08:33](1164 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:47, 15:17](1313 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 04:43] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 05:09](1138 MB) + +PASS -- COMPILE 'hafsw_intel' [13:13, 11:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:05](722 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:35, 05:55](1102 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:22, 06:58](821 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:15, 13:28](840 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:39, 15:20](870 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:56, 05:31](491 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:31, 06:40](512 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:42, 02:42](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:48, 07:12](482 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:44, 03:45](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 03:37](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:10](578 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:13](407 MB) +PASS -- TEST 'gnv1_nested_intel' [07:32, 04:01](1739 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:14, 05:09] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:02, 13:20](590 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:12, 11:40] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 09:01](674 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:05, 08:53](738 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:15, 11:51] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:28, 06:31](724 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:15, 10:43] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:16, 06:35](815 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:16, 06:35](812 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:16](1225 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:13, 06:50] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:48](1167 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:38](1121 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:38](1035 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:43](1031 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:40](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:42](1165 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:40](1163 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:35](1040 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:26, 06:09](1070 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:17, 06:08](1047 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:47](1165 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:20, 03:48](2517 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:56](2473 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:38] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:10](1083 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:49] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:41](1162 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:13, 01:23] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:47](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:54](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:39](326 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:13, 10:53] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:05, 03:42](1979 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:13, 10:28] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:59, 03:41](1956 MB) + +PASS -- COMPILE 'atml_intel' [12:13, 10:59] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:04, 04:19](1865 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:59, 04:24](1871 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:33](1097 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:20, 06:04] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:59, 05:43](1869 MB) + +PASS -- COMPILE 'atmw_intel' [12:13, 10:40] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:50](1914 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 10:31] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:03, 04:09](3204 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:01, 04:52](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:54, 05:00](3122 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:12, 05:17] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:12, 04:45] +PASS -- TEST 'control_c48_gnu' [11:40, 09:10](1511 MB) +PASS -- TEST 'control_stochy_gnu' [05:23, 03:21](494 MB) +PASS -- TEST 'control_ras_gnu' [06:26, 04:50](506 MB) +PASS -- TEST 'control_p8_gnu' [07:57, 05:11](1457 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:52, 05:02](1446 MB) +PASS -- TEST 'control_flake_gnu' [12:25, 10:20](538 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:13, 04:40] +PASS -- TEST 'rap_control_gnu' [13:38, 11:04](819 MB) +PASS -- TEST 'rap_decomp_gnu' [13:36, 10:56](810 MB) +PASS -- TEST 'rap_2threads_gnu' [12:39, 09:55](925 MB) +PASS -- TEST 'rap_restart_gnu' [07:46, 05:29](577 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:39, 10:44](815 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:37, 10:59](811 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:52, 08:33](580 MB) +PASS -- TEST 'hrrr_control_gnu' [07:37, 05:32](820 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:32, 05:31](796 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:38, 05:02](909 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:31, 05:34](810 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 02:55](566 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:31, 02:47](654 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:03, 10:35](846 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:13, 06:45] +PASS -- TEST 'control_diag_debug_gnu' [03:58, 01:42](1274 MB) +PASS -- TEST 'regional_debug_gnu' [13:42, 11:08](756 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:39](826 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:25, 02:31](825 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:37](828 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:23, 02:38](828 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:41, 02:51](910 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 04:07](821 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:29, 02:43](829 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:27, 02:44](819 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:26, 01:34](461 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:25, 01:45](454 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:45, 01:39](1432 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:25, 02:40](827 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:24, 02:57](828 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:27](832 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:13, 02:38] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:09] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:35, 09:27](710 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:53, 04:58](700 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:37, 08:35](754 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:53, 04:28](745 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:53, 05:04](707 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:39, 07:04](555 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:32, 02:38](543 MB) +PASS -- TEST 'conus13km_control_gnu' [06:32, 03:13](874 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:56, 05:30](880 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:54, 01:48](568 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:13, 09:50] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:46, 05:42](726 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 06:47] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:25, 02:33](717 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:24, 02:35](716 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:51, 07:02](890 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:48, 07:09](576 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:45, 07:32](896 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:44, 07:14](960 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:41] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:44, 02:38](751 MB) + +PASS -- COMPILE 's2swa_gnu' [18:13, 16:48] + +PASS -- COMPILE 's2s_gnu' [17:13, 15:49] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:11, 11:32](1519 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:15] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:13, 16:09] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_pdlib_p8_gnu' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:57] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:31] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:02](692 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:31, 11:17](1089 MB) SYNOPSIS: -Starting Date/Time: 20240910 03:30:29 -Ending Date/Time: 20240910 05:22:15 -Total Time: 01h:52m:07s -Compiles Completed: 57/57 -Tests Completed: 240/243 +Starting Date/Time: 20240916 05:57:35 +Ending Date/Time: 20240916 08:06:40 +Total Time: 02h:10m:37s +Compiles Completed: 58/58 +Tests Completed: 243/244 Failed Tests: -* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2363/ufs-weather-model/tests/logs/log_hera/run_cpld_restart_gfsv17_intel.log -* TEST cpld_restart_bmark_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2363/ufs-weather-model/tests/logs/log_hera/run_cpld_restart_bmark_p8_intel.log -* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2363/ufs-weather-model/tests/logs/log_hera/run_cpld_restart_pdlib_p8_intel.log +* TEST cpld_control_pdlib_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch1/NCEPDEV/nems/Fernando.Andrade-maldonado/regression-tests/wm/2220/ufs-weather-model/tests/logs/log_hera/run_cpld_control_pdlib_p8_gnu.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -414,20 +414,21 @@ Result: FAILURE ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -94d3c1110e119e311d76266bdc79a376f12d856e +eb7271e2cda9cebebb45e82a7eda3bbe5756b116 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -438,31 +439,22 @@ 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-20240909 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1118900 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3794600 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-n) - RUN SINGLE TEST: cpld_control_pdlib_p8 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:05, 17:33](1972 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:23, 08:22](1274 MB) - -PASS -- COMPILE 's2swa_intel' [15:12, 13:25] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_bmark_p8_intel' [17:56, 08:53](4348 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:49, 05:41](4391 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 16:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:08, 17:40](2043 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:13, 08:21](1272 MB) +PASS -- COMPILE 's2sw_pdlib_gnu' [18:13, 16:23] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:19, 23:43](1453 MB) SYNOPSIS: -Starting Date/Time: 20240911 20:51:33 -Ending Date/Time: 20240911 21:43:55 -Total Time: 00h:52m:32s -Compiles Completed: 3/3 -Tests Completed: 6/6 +Starting Date/Time: 20240916 23:01:41 +Ending Date/Time: 20240916 23:47:29 +Total Time: 00h:45m:56s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index e28a662a50..ad7e01e26c 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: -94d3c1110e119e311d76266bdc79a376f12d856e +a859b1acf58f86110b5dfb42c0445b2ea0fa39cb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -26,6 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,443 +37,380 @@ 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-20240909 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_573739 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2154934 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:11, 13:39] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:15, 07:39](2156 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:12, 20:28] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:43, 13:19](1993 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:57, 15:23](2297 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [16:01, 07:19](1356 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:40, 16:29](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:01, 13:04](1989 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:40] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:43, 21:44](1986 MB) - -PASS -- COMPILE 's2swa_intel' [15:11, 13:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:27, 08:21](2221 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:16, 08:02](2214 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:18, 04:27](1975 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:07, 08:01](2230 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:03, 04:35](1746 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:12, 09:38](2554 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:59, 07:57](2206 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:15, 06:48](2110 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:29, 08:13](2208 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:19, 15:15](2988 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [19:41, 06:38](2933 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:02, 09:35](3840 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:29, 06:40](3652 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:14, 05:16](2159 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 13:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:03, 07:23](2026 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:14, 06:51](2081 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:40] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:17, 12:18](2240 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:17] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:07, 07:42](2041 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 12:26] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:09, 04:03](2082 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 12:37] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:44, 05:56](3037 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 02:11](3041 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:55, 01:15](2476 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:11, 11:16] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:38, 07:40](2218 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:10, 13:47](2078 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:47, 06:56](1409 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:07] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:12, 23:51](2024 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:23, 03:31](718 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:40, 03:39](1605 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:43](1611 MB) -PASS -- TEST 'control_latlon_intel' [05:36, 03:33](1596 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:43, 04:01](1602 MB) -PASS -- TEST 'control_c48_intel' [12:49, 10:30](1711 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:56, 05:57](839 MB) -PASS -- TEST 'control_c192_intel' [15:55, 13:41](1757 MB) -PASS -- TEST 'control_c384_intel' [19:51, 17:02](2012 MB) -PASS -- TEST 'control_c384gdas_intel' [13:22, 09:49](1498 MB) -PASS -- TEST 'control_stochy_intel' [03:21, 01:48](668 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:36, 01:03](550 MB) -PASS -- TEST 'control_lndp_intel' [03:21, 01:47](666 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:32](660 MB) -PASS -- TEST 'control_iovr5_intel' [04:23, 02:40](678 MB) -PASS -- TEST 'control_p8_intel' [07:15, 04:19](1892 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:42, 03:13](1908 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:45, 03:57](1890 MB) -PASS -- TEST 'control_restart_p8_intel' [12:10, 03:37](1166 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:12, 04:02](1883 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [11:10, 03:07](1220 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:06, 04:25](1876 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:44, 03:38](1967 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:21, 07:40](1896 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:48, 05:26](1971 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:33, 03:44](1909 MB) -PASS -- TEST 'merra2_thompson_intel' [13:41, 04:52](1909 MB) -PASS -- TEST 'regional_control_intel' [09:01, 06:03](1204 MB) -PASS -- TEST 'regional_restart_intel' [08:33, 03:25](1170 MB) -PASS -- TEST 'regional_decomp_intel' [09:56, 07:05](1175 MB) -PASS -- TEST 'regional_2threads_intel' [06:57, 03:53](1152 MB) -PASS -- TEST 'regional_noquilt_intel' [15:37, 05:59](1525 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [14:57, 06:11](1201 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [14:50, 06:09](1193 MB) -PASS -- TEST 'regional_wofs_intel' [14:39, 05:47](2098 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 09:20] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [15:04, 06:47](1193 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:00, 03:45](1358 MB) -PASS -- TEST 'rap_decomp_intel' [17:07, 06:58](1142 MB) -PASS -- TEST 'rap_2threads_intel' [09:28, 06:17](1365 MB) -PASS -- TEST 'rap_restart_intel' [06:11, 03:30](1126 MB) -PASS -- TEST 'rap_sfcdiff_intel' [18:23, 06:47](1199 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:26, 07:18](1142 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:13, 05:02](1197 MB) -PASS -- TEST 'hrrr_control_intel' [11:52, 03:29](1058 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:55, 03:35](1044 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:02, 03:13](1119 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:35, 01:52](1016 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:04, 06:36](1205 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:39, 07:47](2007 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:13, 07:32](2227 MB) - -PASS -- COMPILE 'csawmg_intel' [10:11, 08:18] -PASS -- TEST 'control_csawmg_intel' [10:50, 06:26](1052 MB) -PASS -- TEST 'control_ras_intel' [05:21, 02:55](841 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:10, 04:09] -PASS -- TEST 'control_csawmg_gnu' [09:45, 07:38](1084 MB) - -PASS -- COMPILE 'wam_intel' [10:10, 08:25] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:47, 10:03](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 09:21] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:14, 02:47](1895 MB) -PASS -- TEST 'regional_control_faster_intel' [06:47, 04:19](1198 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 06:05] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:44, 02:13](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:43, 02:07](1622 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:42, 02:56](838 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:57, 02:37](840 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:33, 04:53](1151 MB) -PASS -- TEST 'control_ras_debug_intel' [05:47, 02:27](857 MB) -PASS -- TEST 'control_diag_debug_intel' [05:59, 02:32](1696 MB) -PASS -- TEST 'control_debug_p8_intel' [06:43, 03:17](1917 MB) -PASS -- TEST 'regional_debug_intel' [19:41, 16:58](1142 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 04:31](1236 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:28, 04:50](1221 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 04:24](1223 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:50](1232 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:33, 04:29](1229 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:35, 04:48](1312 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:11, 04:44](1220 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:30, 04:36](1231 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:46, 04:42](1240 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:34, 04:23](1236 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:34, 04:35](1222 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:51, 04:46](1227 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:47, 07:36](1242 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:33, 04:41](1234 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 05:30](1226 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:40](1233 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:12, 08:00](1229 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:48] -PASS -- TEST 'control_csawmg_debug_gnu' [03:40, 02:04](1052 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 03:52] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:38, 08:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 04:01](1227 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:59, 07:21](1177 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:19, 03:41](1045 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:58, 06:59](1286 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:56, 03:25](1038 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:49, 03:58](998 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:08, 05:29](1134 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:27, 01:53](975 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:37, 08:29] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:58, 02:11](1277 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:48, 00:52](1185 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:40, 01:19](1141 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:37, 08:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:53, 03:53](1077 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:52] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 04:45](1110 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:55](1111 MB) -PASS -- TEST 'conus13km_debug_intel' [16:49, 14:48](1326 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:47, 16:06](991 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:43, 11:34](1243 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:42, 15:46](1429 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:58] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 04:17](1163 MB) - -PASS -- COMPILE 'hafsw_intel' [11:38, 09:54] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:13, 05:24](861 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:30, 05:09](1238 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:21](938 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:11, 13:47](961 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:20, 15:41](982 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:01, 05:38](597 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:24, 07:01](605 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:54, 02:37](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:14, 07:37](546 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:44, 04:02](603 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:55, 03:48](607 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:58, 04:55](658 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:28, 01:11](447 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:37, 04:20] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:54, 11:25](619 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:44] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:25, 16:19](748 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:13, 17:05](841 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:37, 10:00] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:49, 09:48](823 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:28, 09:21] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:20, 05:47](912 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:14, 05:51](887 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:59, 16:34](1341 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:27, 05:33] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:18, 02:11](1147 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:23](1094 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:18, 02:07](1025 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:21, 02:09](1017 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:17, 02:10](1024 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:16, 02:12](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 02:13](1166 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:16, 02:08](1016 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:06, 04:56](1179 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:00, 04:54](1159 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:10](1148 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:20, 03:12](2445 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:08](2453 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:25, 03:23] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 05:18](1074 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 05:24] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:11](1166 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 00:47] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:00](333 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 00:49](578 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:34](574 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 09:22] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:07, 04:25](2026 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 09:06] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:55, 04:18](1997 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 09:55] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:11, 05:51](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:11, 05:51](1901 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 02:58](1138 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:11, 04:32] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:14, 06:33](1910 MB) - -PASS -- COMPILE 'atmw_intel' [14:14, 09:58] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:02, 01:44](1937 MB) - -PASS -- COMPILE 'atmaero_intel' [14:14, 09:00] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:58, 03:48](2041 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:52, 04:26](1804 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:25](1812 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:10, 04:03] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:46, 16:46](4609 MB) - -PASS -- COMPILE 'atm_gnu' [09:11, 04:34] -PASS -- TEST 'control_c48_gnu' [09:48, 07:50](1533 MB) -PASS -- TEST 'control_stochy_gnu' [04:27, 02:27](725 MB) -PASS -- TEST 'control_ras_gnu' [05:24, 03:58](730 MB) -PASS -- TEST 'control_p8_gnu' [07:02, 04:26](1728 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:01](1756 MB) -PASS -- TEST 'control_flake_gnu' [06:22, 04:46](813 MB) - -PASS -- COMPILE 'rrfs_gnu' [07:10, 03:53] -PASS -- TEST 'rap_control_gnu' [10:57, 08:42](1087 MB) -PASS -- TEST 'rap_decomp_gnu' [10:50, 08:32](1087 MB) -PASS -- TEST 'rap_2threads_gnu' [09:56, 07:23](1140 MB) -PASS -- TEST 'rap_restart_gnu' [07:15, 04:22](887 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:51, 08:46](1084 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:47, 08:16](1085 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:05, 06:12](887 MB) -PASS -- TEST 'hrrr_control_gnu' [06:57, 04:29](1071 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:51, 04:18](1141 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:01, 03:46](1035 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:58, 04:12](1073 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 02:21](887 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:29, 02:09](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [10:02, 07:59](1081 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:13, 06:23] -PASS -- TEST 'control_diag_debug_gnu' [03:40, 01:12](1624 MB) -PASS -- TEST 'regional_debug_gnu' [08:37, 06:34](1134 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:26, 02:10](1093 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:26, 01:58](1088 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:20, 02:09](1093 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:25, 02:15](1095 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:30, 02:17](1268 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:12](1095 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:09](1093 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:11](1091 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:11](726 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:27](725 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:26](1698 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:26, 02:05](1096 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:12](1098 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:01, 03:30](1099 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:56] -PASS -- TEST 'control_wam_debug_gnu' [07:45, 05:37](1559 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [10:12, 07:39] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:03, 07:42](960 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:47, 04:16](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:58, 06:56](968 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:08, 03:44](889 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:50, 04:09](949 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:12, 05:55](864 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 02:06](862 MB) -PASS -- TEST 'conus13km_control_gnu' [04:48, 02:36](1268 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:42, 01:14](1176 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:41, 01:31](933 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:12, 12:13] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:48, 05:10](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:12, 10:37] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 02:07](977 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:26, 02:05](972 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:53, 05:29](1287 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:53, 05:44](961 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:41, 03:39](1196 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:44, 05:35](1355 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:12, 10:41] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:24, 02:03](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [24:13, 21:27] - -PASS -- COMPILE 's2s_gnu' [20:13, 18:08] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:31, 08:55](2752 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:15, 04:06] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 17:02] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:08, 25:52](2903 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [08:12, 07:01] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:07, 12:11](3035 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [19:11, 17:25] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 02:26](768 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:40] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:33, 09:00](2139 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:03] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:30, 14:21](2001 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:53, 15:26](2315 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:37, 07:16](1326 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:27, 16:09](1915 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:52] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:47, 13:42](1985 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:11] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:28, 22:43](1973 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 11:43] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:30, 09:21](2206 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:23, 09:01](2211 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:34, 05:21](1989 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:18, 09:26](2246 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:45, 05:35](1751 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:16, 10:27](2560 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:30, 09:10](2203 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:15, 07:38](2122 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:27, 09:14](2217 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [29:07, 16:49](2993 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:52, 06:12](2924 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:04, 10:01](3839 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:03, 06:30](3645 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:20, 06:18](2155 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 11:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [17:08, 08:10](2020 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:20, 08:04](2078 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:08] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:17, 12:32](2248 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 04:51] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:09, 10:34](2049 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 10:25] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:16, 05:10](2076 MB) + +PASS -- COMPILE 's2s_intel' [11:11, 09:23] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:49, 07:22](3043 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [10:51, 03:25](3031 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:08, 04:34](2488 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:11, 12:16] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:28, 10:16](2214 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 16:46] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:12, 14:52](2079 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:15, 06:57](1399 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:12, 15:38](2000 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:49] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:10, 24:27](2011 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:11, 08:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:25, 03:15](725 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:40, 02:54](1587 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 02:54](1600 MB) +PASS -- TEST 'control_latlon_intel' [05:37, 02:55](1592 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:44, 03:00](1592 MB) +PASS -- TEST 'control_c48_intel' [13:44, 10:17](1711 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:33, 05:50](841 MB) +PASS -- TEST 'control_c192_intel' [13:54, 10:15](1764 MB) +PASS -- TEST 'control_c384_intel' [17:40, 12:21](2014 MB) +PASS -- TEST 'control_c384gdas_intel' [13:20, 07:36](1505 MB) +PASS -- TEST 'control_stochy_intel' [05:23, 01:32](677 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:37, 00:55](558 MB) +PASS -- TEST 'control_lndp_intel' [05:23, 01:29](674 MB) +PASS -- TEST 'control_iovr4_intel' [06:24, 02:16](676 MB) +PASS -- TEST 'control_iovr5_intel' [06:24, 02:12](661 MB) +PASS -- TEST 'control_p8_intel' [08:57, 04:34](1900 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:13, 04:30](1901 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:10, 04:07](1888 MB) +PASS -- TEST 'control_restart_p8_intel' [04:00, 01:57](1154 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:59, 04:20](1887 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:01, 02:09](1232 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:52, 04:14](1870 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:54, 03:28](1964 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:40, 06:16](1899 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 04:40](1979 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:57, 03:33](1908 MB) +PASS -- TEST 'merra2_thompson_intel' [08:09, 04:33](1918 MB) +PASS -- TEST 'regional_control_intel' [06:38, 04:49](1207 MB) +PASS -- TEST 'regional_restart_intel' [05:33, 03:26](1172 MB) +PASS -- TEST 'regional_decomp_intel' [07:36, 05:11](1185 MB) +PASS -- TEST 'regional_2threads_intel' [05:33, 03:24](1157 MB) +PASS -- TEST 'regional_noquilt_intel' [07:38, 05:08](1521 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:34, 05:25](1198 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:45](1194 MB) +PASS -- TEST 'regional_wofs_intel' [07:30, 05:53](2093 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 08:50] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:54, 06:39](1198 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:54, 03:36](1354 MB) +PASS -- TEST 'rap_decomp_intel' [08:41, 06:55](1118 MB) +PASS -- TEST 'rap_2threads_intel' [08:39, 06:21](1360 MB) +PASS -- TEST 'rap_restart_intel' [05:53, 03:31](1132 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:47, 06:45](1229 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:42, 07:00](1171 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:58, 05:05](1188 MB) +PASS -- TEST 'hrrr_control_intel' [05:55, 03:30](1073 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:39, 03:34](1047 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:17](1109 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:25, 01:54](1025 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:55, 06:35](1195 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 07:43](1998 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:26, 07:30](2168 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 08:44] +PASS -- TEST 'control_csawmg_intel' [08:34, 06:38](1044 MB) +PASS -- TEST 'control_ras_intel' [04:20, 02:54](842 MB) + +PASS -- COMPILE 'csawmg_gnu' [09:11, 03:57] +PASS -- TEST 'control_csawmg_gnu' [10:38, 09:01](1065 MB) + +PASS -- COMPILE 'wam_intel' [18:11, 08:50] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:40, 09:50](1668 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:12, 08:50] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:58, 02:32](1901 MB) +PASS -- TEST 'regional_control_faster_intel' [06:33, 04:44](1196 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 05:57] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:35, 02:02](1631 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:43, 01:57](1628 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:23, 02:54](848 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:30](840 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:50](1159 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:38](864 MB) +PASS -- TEST 'control_diag_debug_intel' [04:35, 02:42](1700 MB) +PASS -- TEST 'control_debug_p8_intel' [04:33, 02:44](1903 MB) +PASS -- TEST 'regional_debug_intel' [20:30, 18:43](1159 MB) +PASS -- TEST 'rap_control_debug_intel' [06:20, 04:58](1233 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 05:00](1240 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:26](1235 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:46](1239 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:18, 04:52](1231 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:29, 04:41](1318 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:26, 04:55](1232 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 04:46](1240 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:24, 04:41](1247 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:32](1231 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 05:03](1227 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:20, 04:38](1243 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 07:58](1243 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:20, 04:39](1225 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 06:01](1237 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:20, 05:02](1228 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:06, 07:45](1232 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [08:11, 03:49] +PASS -- TEST 'control_csawmg_debug_gnu' [05:39, 03:09](1047 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 03:57] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 08:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:58, 03:34](1231 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:53, 05:32](1160 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:02, 02:55](1031 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:39, 05:13](1270 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 02:51](1039 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:43, 03:11](983 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:08, 04:23](1112 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:36, 01:39](954 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 08:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:47, 01:58](1291 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:35, 01:02](1193 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:33, 01:09](1150 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:37, 03:48](1107 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:26] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:08](1108 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:03](1111 MB) +PASS -- TEST 'conus13km_debug_intel' [14:50, 12:18](1363 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 13:03](1003 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:49, 07:03](1261 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:49, 12:26](1411 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:06] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 04:30](1164 MB) + +PASS -- COMPILE 'hafsw_intel' [12:11, 10:15] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:10, 05:41](846 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:22, 05:16](1254 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 06:47](937 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:22, 14:24](961 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:47, 15:31](993 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 05:40](594 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:24, 07:21](610 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [10:00, 02:44](431 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [16:45, 08:49](552 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:03, 04:10](607 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:53, 04:12](607 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:59, 05:11](656 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:31, 01:13](450 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:10, 05:02] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:52, 13:06](636 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:10, 10:14] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:36, 18:07](731 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [26:05, 21:12](838 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:17] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:06, 10:58](820 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:10, 10:17] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:31, 06:03](914 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:27, 05:57](905 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:56, 19:13](1341 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:16] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:17, 02:17](1165 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:26](1111 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:17, 02:08](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:15, 02:14](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:17, 02:12](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 02:13](1144 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:18, 02:14](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:16, 02:10](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:04, 05:11](1170 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:26, 05:19](1166 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:18](1140 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 03:28](2399 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:17, 03:18](2456 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:21] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 05:21](1070 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:45] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 02:18](1167 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 01:41](345 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 01:23](571 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:30, 01:40](574 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:12] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:54, 06:04](2010 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 08:49] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:23, 05:09](1989 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 09:20] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [21:38, 18:00](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [22:35, 19:29](1909 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:01, 05:10](1126 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:10, 04:45] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [16:44, 12:23](1925 MB) + +PASS -- COMPILE 'atmw_intel' [11:11, 09:30] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:09, 04:13](1946 MB) + +PASS -- COMPILE 'atmaero_intel' [10:10, 08:29] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:03, 06:16](2037 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:12, 05:12](1802 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:06, 10:51](1808 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:32] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:58, 22:06](4602 MB) + +PASS -- COMPILE 'atm_gnu' [07:10, 05:30] +PASS -- TEST 'control_c48_gnu' [13:18, 10:06](1539 MB) +PASS -- TEST 'control_stochy_gnu' [04:34, 02:38](730 MB) +PASS -- TEST 'control_ras_gnu' [06:53, 04:27](733 MB) +PASS -- TEST 'control_p8_gnu' [12:56, 09:41](1709 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [14:25, 10:06](1709 MB) +PASS -- TEST 'control_flake_gnu' [07:56, 05:31](813 MB) + +PASS -- COMPILE 'rrfs_gnu' [07:10, 05:23] +PASS -- TEST 'rap_control_gnu' [13:47, 10:50](1084 MB) +PASS -- TEST 'rap_decomp_gnu' [15:34, 12:29](1086 MB) +PASS -- TEST 'rap_2threads_gnu' [13:23, 10:59](1122 MB) +PASS -- TEST 'rap_restart_gnu' [07:21, 04:39](888 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:34, 10:58](1085 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:59, 11:20](1082 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:27, 06:28](886 MB) +PASS -- TEST 'hrrr_control_gnu' [10:45, 07:57](1070 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [10:42, 07:16](1137 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [11:16, 07:34](1015 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [10:53, 07:26](1069 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:56, 02:38](893 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:52, 02:27](937 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:33, 10:50](1077 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:11, 07:11] +PASS -- TEST 'control_diag_debug_gnu' [10:16, 05:48](1624 MB) +PASS -- TEST 'regional_debug_gnu' [12:38, 10:54](1111 MB) +PASS -- TEST 'rap_control_debug_gnu' [10:30, 09:03](1098 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [09:04, 06:29](1087 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [09:49, 04:40](1096 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [08:10, 04:19](1095 MB) +PASS -- TEST 'rap_diag_debug_gnu' [07:22, 04:21](1272 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:19, 04:38](1094 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:42, 03:49](1097 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:28, 04:08](1095 MB) +PASS -- TEST 'control_ras_debug_gnu' [05:00, 01:58](726 MB) +PASS -- TEST 'control_stochy_debug_gnu' [05:00, 02:08](723 MB) +PASS -- TEST 'control_debug_p8_gnu' [06:39, 03:36](1702 MB) +PASS -- TEST 'rap_flake_debug_gnu' [05:02, 02:29](1099 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:49, 02:45](1099 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:36, 03:52](1101 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:10, 03:48] +PASS -- TEST 'control_wam_debug_gnu' [07:58, 05:39](1560 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 05:20] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:11, 07:51](963 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:25, 04:26](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:52, 07:15](970 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:06, 04:06](892 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:04, 04:39](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:58, 06:01](864 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:47, 02:26](863 MB) +PASS -- TEST 'conus13km_control_gnu' [06:06, 03:15](1268 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:43, 01:24](1174 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:43, 01:41](930 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:11, 10:23] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:50, 04:54](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:11, 08:16] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:31, 02:30](973 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:29, 02:13](968 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:44, 06:07](1289 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:44, 06:11](956 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [06:36, 03:59](1190 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:40, 06:09](1350 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 06:04] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:29, 02:25](1005 MB) + +PASS -- COMPILE 's2swa_gnu' [20:11, 17:20] + +PASS -- COMPILE 's2s_gnu' [20:11, 18:11] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:27, 10:42](3088 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [10:11, 08:10] + +PASS -- COMPILE 's2sw_pdlib_gnu' [21:11, 19:58] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [30:31, 27:54](3040 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:11, 07:59] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [16:22, 14:02](2885 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [19:12, 18:00] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 02:31](770 MB) + +PASS -- COMPILE 'atm_fbh_intel' [10:10, 08:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:36, 09:59](1083 MB) SYNOPSIS: -Starting Date/Time: 20240911 22:58:14 -Ending Date/Time: 20240912 00:56:44 -Total Time: 01h:59m:27s -Compiles Completed: 57/57 -Tests Completed: 243/244 -Failed Tests: -* TEST cpld_mpi_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2363/tests/logs/log_hercules/run_cpld_mpi_pdlib_p8_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF HERCULES REGRESSION TESTING LOG==== -====START OF HERCULES REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -17749118ba0dfcca7c2cac513d497ea37521edc8 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1831882 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 's2sw_pdlib_intel' [18:10, 16:50] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:40, 13:53](2083 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:40, 16:23](1997 MB) - -SYNOPSIS: -Starting Date/Time: 20240912 11:50:27 -Ending Date/Time: 20240912 12:47:58 -Total Time: 00h:57m:55s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Starting Date/Time: 20240913 11:40:40 +Ending Date/Time: 20240913 13:41:32 +Total Time: 02h:01m:51s +Compiles Completed: 58/58 +Tests Completed: 245/245 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 701553ee6c..82a3ea1600 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -51a07c1585abc6f5dea12812f8f72a50ba92183a +32e792f3d0fbcd20035e2b3df5d47b7e1fd6817a Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -26,6 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,328 +37,258 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1523996 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4163787 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:49, 42:15] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [53:59, 08:19](2026 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:51, 49:18] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:12, 20:44](1888 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:47, 22:20](2020 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [02:56, 24:07](1865 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:51, 49:16] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:53, 20:24](1885 MB) - -PASS -- COMPILE 's2swa_intel' [17:49, 42:17] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [55:56, 09:55](2072 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [56:07, 09:58](2078 MB) -PASS -- TEST 'cpld_restart_p8_intel' [30:24, 05:37](1725 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [55:56, 09:55](2090 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [30:24, 05:40](1741 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [55:52, 09:25](2326 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [55:53, 10:06](2068 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [55:07, 08:23](2017 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [56:10, 09:51](2066 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [53:01, 07:09](2046 MB) - -PASS -- COMPILE 's2sw_intel' [15:48, 40:04] ( 1 warnings 1284 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [56:03, 07:35](1911 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:07, 09:36](1979 MB) - -PASS -- COMPILE 's2swa_debug_intel' [53:39, 05:38] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [45:25, 16:39](2097 MB) - -PASS -- COMPILE 's2sw_debug_intel' [03:53, 06:01] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [27:56, 11:24](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [42:01, 36:30] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [43:45, 05:40](1980 MB) - -PASS -- COMPILE 's2s_intel' [35:00, 37:05] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [48:15, 10:28](3012 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [41:16, 03:35](3020 MB) -PASS -- TEST 'cpld_restart_c48_intel' [35:55, 01:57](2462 MB) - -PASS -- COMPILE 's2swa_faster_intel' [31:12, 32:55] ( 1 warnings 1615 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [51:52, 09:23](2074 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:01, 49:19] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:00, 21:28](1908 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:20, 24:01](1899 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [21:36, 06:04] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:08, 33:20](1941 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:33, 37:20] ( 1 warnings 1126 remarks ) -PASS -- TEST 'control_flake_intel' [37:42, 04:21](648 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [23:38, 04:14](1537 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [39:17, 04:22](1538 MB) -PASS -- TEST 'control_latlon_intel' [37:09, 04:12](1543 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:45, 04:22](1540 MB) -PASS -- TEST 'control_c48_intel' [54:24, 18:07](1700 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [46:52, 10:12](822 MB) -PASS -- TEST 'control_c192_intel' [34:48, 15:54](1688 MB) -PASS -- TEST 'control_c384_intel' [42:44, 23:01](1816 MB) -PASS -- TEST 'control_c384gdas_intel' [52:46, 13:46](994 MB) -PASS -- TEST 'control_stochy_intel' [34:42, 02:09](609 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:43, 01:46](437 MB) -PASS -- TEST 'control_lndp_intel' [34:42, 02:01](605 MB) -PASS -- TEST 'control_iovr4_intel' [35:44, 03:16](602 MB) -PASS -- TEST 'control_iovr5_intel' [36:44, 03:18](597 MB) -PASS -- TEST 'control_p8_intel' [23:59, 04:50](1821 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [41:56, 04:22](1838 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:24, 04:39](1829 MB) -PASS -- TEST 'control_restart_p8_intel' [16:45, 03:05](1061 MB) -PASS -- TEST 'control_noqr_p8_intel' [23:58, 04:41](1825 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [15:48, 03:02](1077 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:25, 04:49](1828 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:01, 04:29](1907 MB) -PASS -- TEST 'control_p8_lndp_intel' [15:14, 08:38](1829 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [24:53, 05:18](1907 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:04, 04:01](1847 MB) -PASS -- TEST 'merra2_thompson_intel' [37:23, 04:20](1841 MB) -PASS -- TEST 'regional_control_intel' [43:12, 07:04](1011 MB) -PASS -- TEST 'regional_restart_intel' [57:52, 04:17](1012 MB) -PASS -- TEST 'regional_decomp_intel' [07:43, 07:28](1003 MB) -PASS -- TEST 'regional_2threads_intel' [58:38, 04:19](999 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [38:26, 07:11](1004 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [37:28, 07:10](1015 MB) - -PASS -- COMPILE 'rrfs_intel' [14:33, 36:40] ( 3 warnings 1102 remarks ) -PASS -- TEST 'rap_control_intel' [12:01, 10:33](998 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:11, 06:05](1174 MB) -PASS -- TEST 'rap_decomp_intel' [11:51, 11:18](989 MB) -PASS -- TEST 'rap_2threads_intel' [10:03, 10:06](1074 MB) -PASS -- TEST 'rap_restart_intel' [17:49, 05:25](993 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:46, 10:32](998 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:58, 11:06](990 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [20:47, 07:38](1004 MB) -PASS -- TEST 'hrrr_control_intel' [01:59, 05:41](984 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [55:51, 05:46](979 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [47:58, 05:13](1053 MB) -PASS -- TEST 'hrrr_control_restart_intel' [08:29, 02:53](919 MB) -PASS -- TEST 'rrfs_v1beta_intel' [23:54, 10:20](995 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [26:24, 12:55](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:21, 12:29](1947 MB) - -PASS -- COMPILE 'csawmg_intel' [15:23, 34:07] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [43:43, 08:05](965 MB) -PASS -- TEST 'control_ras_intel' [07:30, 04:19](669 MB) - -PASS -- COMPILE 'wam_intel' [06:06, 34:46] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [16:41, 14:40](1627 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:03, 36:22] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [58:41, 04:03](1833 MB) -PASS -- TEST 'regional_control_faster_intel' [39:30, 07:02](997 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [44:01, 08:25] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:28, 03:12](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [30:27, 03:12](1578 MB) -PASS -- TEST 'control_stochy_debug_intel' [31:48, 04:12](782 MB) -PASS -- TEST 'control_lndp_debug_intel' [30:44, 03:53](785 MB) -PASS -- TEST 'control_csawmg_debug_intel' [30:56, 05:54](1093 MB) -PASS -- TEST 'control_ras_debug_intel' [28:44, 04:01](788 MB) -PASS -- TEST 'control_diag_debug_intel' [28:03, 03:51](1647 MB) -PASS -- TEST 'control_debug_p8_intel' [26:02, 03:42](1859 MB) -PASS -- TEST 'regional_debug_intel' [23:58, 22:07](1028 MB) -PASS -- TEST 'rap_control_debug_intel' [14:31, 06:17](1170 MB) -PASS -- TEST 'hrrr_control_debug_intel' [14:33, 06:09](1160 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [13:28, 06:08](1167 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [14:24, 06:14](1165 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:28, 06:17](1167 MB) -PASS -- TEST 'rap_diag_debug_intel' [13:34, 06:32](1255 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:26, 06:21](1173 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:24, 06:24](1169 MB) -PASS -- TEST 'rap_lndp_debug_intel' [13:27, 06:19](1174 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:23, 06:21](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [13:24, 06:08](1163 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [12:25, 06:15](1175 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:29, 10:08](1166 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [11:25, 06:13](1159 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [13:30, 07:23](1146 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:28, 06:03](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [26:51, 10:51](1172 MB) - -PASS -- COMPILE 'wam_debug_intel' [42:00, 05:11] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [29:58, 16:47](1649 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [25:42, 24:54] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [18:06, 05:17](1043 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [20:42, 08:24](904 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:44, 04:30](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:45, 08:02](942 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:40, 04:13](908 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:36, 04:43](860 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:46, 06:06](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:30, 02:17](851 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:11, 32:21] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [12:59, 02:44](1102 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:46, 01:32](1043 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [09:46, 01:48](1020 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [26:16, 31:43] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:49, 05:24](915 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [59:08, 05:48] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [14:28, 06:13](1052 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:29, 06:05](1046 MB) -PASS -- TEST 'conus13km_debug_intel' [25:03, 18:54](1159 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:51, 18:56](863 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:41, 10:58](1103 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:41, 18:54](1231 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [33:03, 05:41] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:27, 06:21](1082 MB) - -PASS -- COMPILE 'hafsw_intel' [39:30, 40:16] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [12:18, 06:43](705 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:35, 06:16](1061 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [22:34, 09:10](756 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [29:30, 16:09](792 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:41, 17:57](806 MB) -PASS -- TEST 'gnv1_nested_intel' [19:48, 06:41](1681 MB) - -PASS -- COMPILE 'hafs_all_intel' [42:17, 35:47] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [15:14, 08:26](759 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:17, 08:32](738 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:12, 08:20] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [10:25, 03:33](1076 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:27, 02:11](1033 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [11:26, 03:29](940 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:25, 03:33](931 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:25, 03:32](935 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:25, 03:36](1075 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:25, 03:35](1093 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:25, 03:31](931 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:18, 07:46](906 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:19, 07:37](850 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [10:23, 03:35](1088 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 05:02](2359 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:22, 05:06](2375 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 03:26] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:22, 08:14](1025 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:15] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:22, 03:53](1074 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [12:11, 01:48] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [10:36, 01:23](237 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [10:28, 01:14](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:31, 00:38](263 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [45:20, 35:50] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [32:35, 04:53](1911 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [48:19, 35:33] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [21:22, 04:38](1893 MB) - -PASS -- COMPILE 'atml_intel' [49:19, 36:41] ( 8 warnings 1167 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [21:23, 05:36](1865 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [20:24, 05:34](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [38:13, 03:13](1063 MB) - -PASS -- COMPILE 'atml_debug_intel' [16:12, 06:36] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:15, 07:20](1886 MB) - -PASS -- COMPILE 'atmw_intel' [42:16, 36:12] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:11, 02:18](1862 MB) - -PASS -- COMPILE 'atmaero_intel' [20:32, 35:23] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:11, 05:15](1920 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:07, 06:19](1719 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:54, 06:20](1729 MB) +PASS -- COMPILE 's2swa_32bit_intel' [44:17, 42:37] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:25, 08:05](2006 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [56:20, 54:41] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:15, 20:48](1899 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:19, 21:49](2022 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:01, 10:11](1146 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:02, 23:41](1854 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:20, 49:06] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:53, 20:20](1879 MB) + +PASS -- COMPILE 's2swa_intel' [45:17, 43:01] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:14, 09:41](2066 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:34, 09:44](2064 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:17, 05:28](1722 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:32, 09:44](2091 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:17, 05:32](1741 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:08, 09:08](2317 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:08, 09:51](2063 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:08, 08:14](2000 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:34, 09:46](2063 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:21, 06:54](2033 MB) + +PASS -- COMPILE 's2sw_intel' [43:17, 40:52] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:31, 07:23](1907 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:43, 09:30](1976 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:00] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [23:26, 16:28](2074 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:08] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [17:09, 11:21](1925 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [38:15, 36:40] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:22, 05:33](1974 MB) + +PASS -- COMPILE 's2s_intel' [43:14, 37:22] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:52, 10:16](3021 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:54, 03:25](3012 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:50, 01:57](2466 MB) + +PASS -- COMPILE 's2swa_faster_intel' [42:28, 32:52] ( 1 warnings 1615 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:40, 09:25](2069 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [00:16, 51:55] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:16, 20:51](1931 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:18, 10:04](1117 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:18, 24:03](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:13, 06:10] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:16, 33:19](1942 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [40:14, 37:46] ( 1 warnings 1126 remarks ) +PASS -- TEST 'control_flake_intel' [06:34, 04:21](652 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:11, 04:37](1538 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:14, 04:53](1547 MB) +PASS -- TEST 'control_latlon_intel' [07:07, 04:39](1540 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:16, 04:43](1539 MB) +PASS -- TEST 'control_c48_intel' [21:18, 18:20](1705 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:38, 10:12](832 MB) +PASS -- TEST 'control_c192_intel' [19:29, 16:24](1686 MB) +PASS -- TEST 'control_c384_intel' [27:25, 23:18](1820 MB) +PASS -- TEST 'control_c384gdas_intel' [18:15, 13:46](1009 MB) +PASS -- TEST 'control_stochy_intel' [04:31, 02:09](608 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:27, 01:14](437 MB) +PASS -- TEST 'control_lndp_intel' [03:31, 02:01](609 MB) +PASS -- TEST 'control_iovr4_intel' [05:34, 03:13](599 MB) +PASS -- TEST 'control_iovr5_intel' [05:34, 03:16](597 MB) +PASS -- TEST 'control_p8_intel' [08:26, 05:12](1835 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:39, 04:22](1843 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:23, 05:04](1825 MB) +PASS -- TEST 'control_restart_p8_intel' [05:54, 02:41](1059 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:25, 05:01](1823 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 02:39](1069 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:24, 05:11](1826 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:24, 04:55](1910 MB) +PASS -- TEST 'control_p8_lndp_intel' [12:14, 09:00](1838 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:21, 05:33](1897 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:28, 04:25](1848 MB) +PASS -- TEST 'merra2_thompson_intel' [08:23, 04:49](1840 MB) +PASS -- TEST 'regional_control_intel' [10:04, 07:26](1013 MB) +PASS -- TEST 'regional_restart_intel' [06:38, 03:46](1006 MB) +PASS -- TEST 'regional_decomp_intel' [11:04, 07:50](998 MB) +PASS -- TEST 'regional_2threads_intel' [08:05, 04:43](1000 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:11, 07:25](1006 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:03, 07:27](1002 MB) + +PASS -- COMPILE 'rrfs_intel' [39:14, 37:01] ( 3 warnings 1102 remarks ) +PASS -- TEST 'rap_control_intel' [12:53, 10:07](988 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:17, 05:31](1162 MB) +PASS -- TEST 'rap_decomp_intel' [14:41, 10:32](991 MB) +PASS -- TEST 'rap_2threads_intel' [13:46, 09:34](1083 MB) +PASS -- TEST 'rap_restart_intel' [09:48, 05:12](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:54, 10:00](993 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:44, 10:43](983 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:51, 07:29](999 MB) +PASS -- TEST 'hrrr_control_intel' [11:45, 05:04](985 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:55, 05:13](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:43, 04:40](1048 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:30, 02:44](911 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:04, 10:01](988 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:31, 12:26](1931 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:32, 12:06](1941 MB) + +PASS -- COMPILE 'csawmg_intel' [36:15, 34:23] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:40, 08:03](968 MB) +PASS -- TEST 'control_ras_intel' [06:25, 04:23](669 MB) + +PASS -- COMPILE 'wam_intel' [36:13, 34:53] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [16:51, 14:18](1617 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [38:16, 36:29] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:02, 03:38](1842 MB) +PASS -- TEST 'regional_control_faster_intel' [08:42, 06:32](1000 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:12, 08:42] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:53, 02:53](1575 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:55, 02:41](1567 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:28, 03:54](776 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:28, 03:30](781 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:47, 05:36](1091 MB) +PASS -- TEST 'control_ras_debug_intel' [05:28, 03:33](785 MB) +PASS -- TEST 'control_diag_debug_intel' [05:52, 03:31](1636 MB) +PASS -- TEST 'control_debug_p8_intel' [05:52, 03:24](1866 MB) +PASS -- TEST 'regional_debug_intel' [26:50, 21:58](1031 MB) +PASS -- TEST 'rap_control_debug_intel' [08:31, 06:19](1170 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:31, 06:07](1162 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 06:14](1167 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:31, 06:15](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:31, 06:14](1166 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:43, 06:34](1254 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 06:26](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:27, 06:13](1171 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:28, 06:11](1173 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:26, 06:04](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:25, 06:01](1168 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:26, 06:03](1173 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:25, 10:00](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:28, 06:01](1162 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:27, 07:17](1167 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:27, 06:04](1168 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:51, 10:37](1172 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:19] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:49, 16:33](1653 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:56] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:13, 05:09](1042 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:34, 08:10](903 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:44, 04:20](879 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:47, 07:50](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:44, 03:59](908 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:44, 04:38](859 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:38, 06:09](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:17](858 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:14, 32:04] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:48, 02:45](1104 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:36, 01:16](1041 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:39, 01:33](1016 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:15, 31:17] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:55, 05:23](913 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:25] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:28, 06:05](1045 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:29, 05:57](1040 MB) +PASS -- TEST 'conus13km_debug_intel' [20:58, 19:01](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:58, 18:51](866 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:51, 10:54](1088 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:52, 19:06](1225 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 05:02] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:29, 06:06](1089 MB) + +PASS -- COMPILE 'hafsw_intel' [41:15, 39:14] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:20, 06:44](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:04](1068 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:36, 09:06](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:27, 15:57](790 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:40, 17:48](804 MB) +PASS -- TEST 'gnv1_nested_intel' [09:57, 06:28](1676 MB) + +PASS -- COMPILE 'hafs_all_intel' [37:13, 35:27] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:33, 08:28](761 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:37, 08:28](746 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:09] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:37](1073 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:25, 02:08](1041 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:30](935 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:33](930 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:34](933 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:38](1071 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:38](1076 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:31](934 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:20, 07:39](895 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:23, 07:34](851 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:37](1074 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:25, 05:08](2416 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:25, 05:07](2432 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:26] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:23, 08:07](1026 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:18] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:31](1072 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:42] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:37, 01:15](251 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:03](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:41](263 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:14, 35:39] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:24, 04:45](1905 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:14, 35:12] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:06, 04:34](1898 MB) + +PASS -- COMPILE 'atml_intel' [44:14, 42:33] ( 8 warnings 1167 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:09, 05:42](1855 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:11, 05:43](1869 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 03:11](1070 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:12, 06:26] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:13, 07:15](1890 MB) + +PASS -- COMPILE 'atmw_intel' [38:13, 36:36] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:04, 02:18](1851 MB) + +PASS -- COMPILE 'atmaero_intel' [36:14, 34:58] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:08, 05:13](1945 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:05, 06:12](1719 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:57, 06:19](1726 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:14, 30:59] ( 3 warnings 996 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:36, 15:13](1027 MB) SYNOPSIS: -Starting Date/Time: 20240910 17:19:14 -Ending Date/Time: 20240911 20:44:48 -Total Time: 03h:26m:11s -Compiles Completed: 36/36 -Tests Completed: 162/164 -Failed Tests: -* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2363/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_gfsv17_intel.log -* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2363/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_pdlib_p8_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -0ada1565625de2db2c9a41a044a14577648e4991 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1358374 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [57:32, 50:44] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [03:21, 20:46](1892 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [48:00, 11:21](1126 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [54:32, 46:52] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [05:37, 20:55](1897 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [48:46, 10:35](1142 MB) - -SYNOPSIS: -Starting Date/Time: 20240912 06:38:11 -Ending Date/Time: 20240912 12:28:22 -Total Time: 05h:50m:38s -Compiles Completed: 2/2 -Tests Completed: 4/4 +Starting Date/Time: 20240917 07:28:03 +Ending Date/Time: 20240917 11:58:32 +Total Time: 04h:31m:25s +Compiles Completed: 37/37 +Tests Completed: 165/165 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 2251322092..ae15cf0bed 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: -0ada1565625de2db2c9a41a044a14577648e4991 +a859b1acf58f86110b5dfb42c0445b2ea0fa39cb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -26,6 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,289 +37,292 @@ 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-20240909 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1933739 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1093282 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:11, 17:34] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:27, 14:50](2095 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:11, 25:18] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:45, 18:05](1943 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:05, 19:08](2120 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:02, 09:00](1232 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:49, 20:21](1868 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:54] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:40, 17:50](1946 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:11, 09:11] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:38, 28:20](1923 MB) - -PASS -- COMPILE 's2swa_intel' [17:11, 15:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:40, 14:23](2157 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:06, 14:20](2156 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:48, 08:00](1805 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:39, 14:31](2183 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:50, 07:48](1714 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:15, 13:13](2435 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:38, 14:30](2149 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:33, 12:08](2047 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:09, 14:13](2149 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:33, 16:56](2718 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:55, 08:49](2733 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:09, 10:42](3687 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:47, 06:37](3504 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:22, 05:57](2104 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 16:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:41, 13:59](1974 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:24, 07:48](2042 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:12, 09:05] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:21, 13:20](2186 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:12, 08:10] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:04, 09:18](1998 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:35] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:27, 04:44](2041 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 15:01] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:55, 08:34](3029 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:56, 03:22](3029 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:56, 02:12](2485 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:36] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:30, 15:00](2150 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:28] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:51, 18:22](2019 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:27, 09:06](1252 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 07:26] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:02, 29:59](1960 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:25, 03:57](695 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:48, 03:30](1581 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:41](1586 MB) -PASS -- TEST 'control_latlon_intel' [05:45, 03:35](1582 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:55, 03:34](1583 MB) -PASS -- TEST 'control_c48_intel' [16:54, 14:25](1715 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:35, 08:19](842 MB) -PASS -- TEST 'control_c192_intel' [14:58, 13:00](1753 MB) -PASS -- TEST 'control_c384_intel' [20:09, 16:29](2002 MB) -PASS -- TEST 'control_c384gdas_intel' [13:42, 09:42](1341 MB) -PASS -- TEST 'control_stochy_intel' [04:26, 02:21](653 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:03](474 MB) -PASS -- TEST 'control_lndp_intel' [04:27, 02:24](649 MB) -PASS -- TEST 'control_iovr4_intel' [04:29, 02:49](650 MB) -PASS -- TEST 'control_iovr5_intel' [04:36, 02:42](645 MB) -PASS -- TEST 'control_p8_intel' [06:17, 04:07](1873 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:11, 03:29](1882 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:25, 04:01](1884 MB) -PASS -- TEST 'control_restart_p8_intel' [05:14, 02:19](1094 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:03, 03:59](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:22, 02:15](1125 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:06, 04:03](1855 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:07, 04:22](1958 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:35, 07:10](1868 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:28, 04:57](1948 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:14, 03:28](1892 MB) -PASS -- TEST 'merra2_thompson_intel' [06:26, 03:50](1891 MB) -PASS -- TEST 'regional_control_intel' [08:36, 06:31](1077 MB) -PASS -- TEST 'regional_restart_intel' [05:34, 03:33](1077 MB) -PASS -- TEST 'regional_decomp_intel' [08:38, 06:55](1073 MB) -PASS -- TEST 'regional_2threads_intel' [06:32, 04:40](1068 MB) -PASS -- TEST 'regional_noquilt_intel' [08:31, 06:16](1381 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:40, 06:26](1079 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:36, 06:30](1085 MB) -PASS -- TEST 'regional_wofs_intel' [09:42, 07:51](1902 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 12:53] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:12, 08:26](1061 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:51, 05:07](1261 MB) -PASS -- TEST 'rap_decomp_intel' [11:20, 08:38](1023 MB) -PASS -- TEST 'rap_2threads_intel' [11:35, 08:28](1157 MB) -PASS -- TEST 'rap_restart_intel' [08:00, 04:36](1041 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:07, 08:06](1055 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:48, 08:48](1019 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:04, 06:14](1069 MB) -PASS -- TEST 'hrrr_control_intel' [06:57, 04:19](1028 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:22, 04:26](1017 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:20, 04:08](1088 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:29](952 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:23, 08:29](1045 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 10:03](1987 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 09:45](2016 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:11] -PASS -- TEST 'control_csawmg_intel' [08:39, 06:48](1014 MB) -PASS -- TEST 'control_ras_intel' [05:21, 03:27](715 MB) - -PASS -- COMPILE 'wam_intel' [14:10, 12:36] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:46, 12:47](1651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:40, 12:52] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:01, 03:15](1878 MB) -PASS -- TEST 'regional_control_faster_intel' [08:39, 06:35](1071 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:35] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 02:24](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:22](1607 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:19](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:24, 03:02](822 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:25](1127 MB) -PASS -- TEST 'control_ras_debug_intel' [04:42, 03:07](827 MB) -PASS -- TEST 'control_diag_debug_intel' [05:47, 03:12](1669 MB) -PASS -- TEST 'control_debug_p8_intel' [05:45, 03:12](1903 MB) -PASS -- TEST 'regional_debug_intel' [19:43, 17:38](1087 MB) -PASS -- TEST 'rap_control_debug_intel' [07:23, 05:52](1198 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:25, 05:06](1196 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 05:29](1206 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:20, 06:11](1203 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:44, 05:39](1213 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:42, 05:40](1284 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:33, 05:18](1206 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:28, 05:15](1209 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:34, 05:16](1208 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:32, 05:26](1209 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:36, 05:04](1205 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 05:00](1204 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:09](1207 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:53](1195 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:30, 06:24](1207 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:26, 05:00](1208 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:26, 08:31](1206 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 06:24] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:44, 13:27](1685 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:52, 04:52](1129 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:02, 07:10](1001 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:27, 03:46](927 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:54, 07:19](1074 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:06, 03:37](942 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:32, 03:54](898 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:26, 05:21](975 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 02:01](879 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:48, 02:40](1164 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:17](1115 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:34](1065 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:49, 04:33](970 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:27] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:58](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:45](1085 MB) -PASS -- TEST 'conus13km_debug_intel' [16:53, 14:32](1237 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:48, 14:38](930 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:43, 08:40](1168 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:38, 14:48](1305 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:48] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:05](1135 MB) - -PASS -- COMPILE 'hafsw_intel' [17:11, 15:15] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:10, 05:56](737 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:31](1114 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:31](815 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [27:12, 24:55](843 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:18, 28:26](876 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:59, 07:08](501 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:27, 08:19](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 03:29](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:34, 09:42](484 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:50, 04:53](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:54, 04:33](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:52, 05:41](567 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:36](405 MB) -PASS -- TEST 'gnv1_nested_intel' [08:14, 04:18](1730 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:10, 07:59] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:09, 13:07](590 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:10, 15:06] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:06, 12:58](665 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:08, 12:54](718 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:30] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:40, 08:47](717 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:11, 14:13] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:22, 07:36](818 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:19, 07:34](796 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:23](1202 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:12] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 03:00](1138 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:57](1115 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:53](1027 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:57](1021 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:58](1014 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:04](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:02](1146 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:53](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:34](1025 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 06:26](1012 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:58](1154 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 04:22](2458 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:23](2395 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:46] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:31](1087 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 09:03] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:56](1162 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:22] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 01:02](252 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:55](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:38](320 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:45] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:14, 04:11](1970 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:16] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:58, 04:04](1958 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 13:46] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:51](1867 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:25, 04:56](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:54, 02:47](1075 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:10, 08:30] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:23, 05:57](1886 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 13:31] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:22, 02:10](1910 MB) - -PASS -- COMPILE 'atmaero_intel' [15:10, 13:16] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:11, 04:35](1985 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:20](1770 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:58, 05:24](1776 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:40] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:50, 20:23](4552 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:12, 16:13] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:37, 14:47](2101 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:12, 25:40] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [28:59, 18:08](1956 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:53, 19:43](2140 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:40, 09:01](1207 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:07, 20:21](1876 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:12, 19:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:52, 17:38](1955 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 08:51] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [34:43, 27:29](1928 MB) + +PASS -- COMPILE 's2swa_intel' [23:12, 17:49] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [22:48, 14:43](2156 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:41, 14:31](2148 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:47, 07:50](1801 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [22:48, 14:33](2170 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:46, 07:53](1711 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:30, 13:15](2435 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [21:24, 14:26](2149 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:29, 12:12](2053 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [22:51, 14:34](2154 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [24:33, 16:21](2717 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [17:20, 09:03](2711 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:16, 10:41](3692 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:17, 06:59](3499 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:27, 05:55](2106 MB) + +PASS -- COMPILE 's2sw_intel' [20:11, 15:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [19:21, 13:53](1974 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:26, 07:56](2055 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:12, 08:50] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [20:17, 13:31](2182 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:11, 08:08] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [16:07, 09:18](1997 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:11, 14:20] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:17, 04:45](2049 MB) + +PASS -- COMPILE 's2s_intel' [19:12, 14:14] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:59, 08:34](3045 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [10:00, 03:30](3032 MB) +PASS -- TEST 'cpld_restart_c48_intel' [13:05, 02:15](2486 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:13] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [22:47, 14:39](2149 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:12, 19:52] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:25, 18:19](2008 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:37, 12:39](1259 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:24, 21:18](1928 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:11, 08:13] ( 1523 warnings 2000 remarks ) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_debug_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 'atm_dyn32_intel' [19:11, 13:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [10:31, 03:41](697 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:52, 03:31](1582 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:56, 03:37](1593 MB) +PASS -- TEST 'control_latlon_intel' [09:46, 03:32](1581 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:57, 03:34](1576 MB) +PASS -- TEST 'control_c48_intel' [21:00, 14:26](1708 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [14:40, 08:07](842 MB) +PASS -- TEST 'control_c192_intel' [20:02, 13:01](1742 MB) +PASS -- TEST 'control_c384_intel' [24:05, 16:18](2003 MB) +PASS -- TEST 'control_c384gdas_intel' [18:11, 09:46](1335 MB) +PASS -- TEST 'control_stochy_intel' [08:27, 01:52](653 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:43, 01:03](484 MB) +PASS -- TEST 'control_lndp_intel' [06:30, 01:46](645 MB) +PASS -- TEST 'control_iovr4_intel' [05:29, 02:45](649 MB) +PASS -- TEST 'control_iovr5_intel' [05:23, 02:45](649 MB) +PASS -- TEST 'control_p8_intel' [11:07, 04:06](1871 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:17, 03:33](1879 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:32, 04:04](1872 MB) +PASS -- TEST 'control_restart_p8_intel' [12:41, 02:20](1096 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:19, 04:00](1864 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [13:41, 02:15](1138 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:06, 04:06](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:05, 04:14](1945 MB) +PASS -- TEST 'control_p8_lndp_intel' [14:00, 07:08](1871 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:39, 04:51](1951 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:41, 03:27](1885 MB) +PASS -- TEST 'merra2_thompson_intel' [11:52, 03:49](1893 MB) +PASS -- TEST 'regional_control_intel' [12:55, 06:27](1078 MB) +PASS -- TEST 'regional_restart_intel' [06:55, 03:31](1074 MB) +PASS -- TEST 'regional_decomp_intel' [13:55, 06:47](1077 MB) +PASS -- TEST 'regional_2threads_intel' [10:47, 04:38](1066 MB) +PASS -- TEST 'regional_noquilt_intel' [12:48, 06:23](1382 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:02, 06:25](1079 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [13:44, 06:29](1071 MB) +PASS -- TEST 'regional_wofs_intel' [14:48, 07:56](1903 MB) + +PASS -- COMPILE 'rrfs_intel' [19:12, 12:58] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [15:38, 08:28](1058 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:06, 05:10](1250 MB) +PASS -- TEST 'rap_decomp_intel' [20:22, 08:42](1025 MB) +PASS -- TEST 'rap_2threads_intel' [19:21, 08:31](1159 MB) +PASS -- TEST 'rap_restart_intel' [10:51, 04:25](1039 MB) +PASS -- TEST 'rap_sfcdiff_intel' [18:48, 08:22](1040 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [17:21, 08:38](1023 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [13:51, 07:04](1074 MB) +PASS -- TEST 'hrrr_control_intel' [12:01, 04:21](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [11:49, 04:26](1020 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [11:01, 04:10](1089 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:34, 02:21](945 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:42, 08:17](1045 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:34, 09:59](1985 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:36, 09:43](2023 MB) + +PASS -- COMPILE 'csawmg_intel' [18:12, 13:00] +PASS -- TEST 'control_csawmg_intel' [10:41, 06:36](1012 MB) +PASS -- TEST 'control_ras_intel' [07:35, 03:31](714 MB) + +PASS -- COMPILE 'wam_intel' [17:12, 13:00] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:59, 12:38](1654 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 13:16] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:57, 03:17](1870 MB) +PASS -- TEST 'regional_control_faster_intel' [08:54, 06:11](1086 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:12, 09:56] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:26, 02:21](1600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:14, 02:17](1600 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:32, 03:07](825 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:28, 02:53](817 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:36, 04:22](1129 MB) +PASS -- TEST 'control_ras_debug_intel' [05:25, 02:58](834 MB) +PASS -- TEST 'control_diag_debug_intel' [09:47, 02:49](1685 MB) +PASS -- TEST 'control_debug_p8_intel' [09:46, 02:57](1895 MB) +PASS -- TEST 'regional_debug_intel' [23:49, 17:45](1094 MB) +PASS -- TEST 'rap_control_debug_intel' [11:28, 04:57](1208 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:35, 04:59](1208 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:29, 04:59](1209 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:27, 05:10](1209 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:24, 05:06](1209 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:31, 05:14](1289 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:05](1202 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 05:10](1207 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:29, 05:13](1208 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 05:04](1209 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:32, 05:16](1209 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [11:24, 05:19](1213 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:25, 08:10](1205 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:30, 05:20](1200 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:36, 05:56](1212 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:24, 05:19](1212 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:32, 08:26](1208 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:11, 07:02] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:52, 13:13](1683 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:12, 12:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:06, 05:41](1129 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:21, 07:57](989 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:06, 04:46](953 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:27, 08:30](1064 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:11, 04:32](946 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:11, 04:43](897 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:39, 06:07](977 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:01, 02:03](880 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 12:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:56, 02:55](1179 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:05, 01:23](1118 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:55, 01:52](1064 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:12, 12:53] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:04, 04:39](976 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 07:00] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:31, 05:03](1083 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:31, 04:59](1085 MB) +PASS -- TEST 'conus13km_debug_intel' [19:56, 15:20](1233 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:55, 15:22](932 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:01, 09:00](1170 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:02, 15:25](1305 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:55] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:30, 05:15](1132 MB) + +PASS -- COMPILE 'hafsw_intel' [16:14, 14:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [11:23, 06:28](740 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:40, 08:41](1114 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:42, 08:33](818 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:39, 24:30](842 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [34:29, 28:24](874 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:06, 08:46](497 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:36, 09:25](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:02, 03:32](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:33, 11:13](483 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:06, 04:47](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:19, 04:33](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:03, 05:47](570 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:35, 01:38](402 MB) +PASS -- TEST 'gnv1_nested_intel' [13:28, 05:05](1732 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:46] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:13, 13:44](590 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:12, 14:15] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:18, 19:10](637 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:17, 13:35](725 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:14, 15:40] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:42, 09:14](716 MB) + +PASS -- COMPILE 'hafs_all_intel' [21:13, 15:18] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [14:23, 08:47](812 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:17, 08:46](796 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:00, 16:51](1206 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:15, 07:51] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:21, 03:18](1156 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:57](1117 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:19, 03:18](1023 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:19, 03:18](1019 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:19, 02:53](1023 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:19, 02:59](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:19, 02:59](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:26, 02:50](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:14, 06:34](1026 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:25, 06:27](1001 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:18, 03:00](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 04:22](2389 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:23](2456 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 05:03] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [13:23, 06:30](1075 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:15, 09:04] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:20, 03:08](1160 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 01:32] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:41, 01:04](250 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:26, 00:58](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:31, 01:21](325 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:13, 13:37] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:21, 04:50](1970 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:16, 13:13] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:33, 04:29](1944 MB) + +PASS -- COMPILE 'atml_intel' [16:17, 14:29] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:49, 05:49](1873 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:34, 05:49](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:04, 05:16](1069 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:16, 07:52] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:36, 06:39](1891 MB) + +PASS -- COMPILE 'atmw_intel' [19:15, 13:29] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:25, 02:38](1900 MB) + +PASS -- COMPILE 'atmaero_intel' [18:20, 13:26] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:18, 04:55](1993 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:28, 05:34](1761 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:01, 05:49](1778 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:14, 06:09] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [30:03, 21:56](4558 MB) + +PASS -- COMPILE 'atm_fbh_intel' [19:25, 12:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:33, 15:02](1083 MB) SYNOPSIS: -Starting Date/Time: 20240911 22:56:41 -Ending Date/Time: 20240912 00:41:20 -Total Time: 01h:45m:34s -Compiles Completed: 41/41 -Tests Completed: 184/185 +Starting Date/Time: 20240913 12:02:34 +Ending Date/Time: 20240913 14:17:00 +Total Time: 02h:15m:35s +Compiles Completed: 42/42 +Tests Completed: 185/186 Failed Tests: -* TEST cpld_mpi_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2363/tests/logs/log_orion/run_cpld_mpi_pdlib_p8_intel.log +* TEST cpld_debug_pdlib_p8_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2220/tests/logs/log_orion/run_cpld_debug_pdlib_p8_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -331,7 +335,7 @@ Result: FAILURE ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -17749118ba0dfcca7c2cac513d497ea37521edc8 +a859b1acf58f86110b5dfb42c0445b2ea0fa39cb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -339,12 +343,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -356,6 +360,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -366,22 +371,21 @@ 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-20240909 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3664509 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1471733 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf -PASS -- COMPILE 's2sw_pdlib_intel' [29:11, 28:00] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:09, 18:20](2013 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:12, 20:31](1941 MB) +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 07:33] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:10, 30:03](1977 MB) SYNOPSIS: -Starting Date/Time: 20240912 11:52:41 -Ending Date/Time: 20240912 13:06:13 -Total Time: 01h:13m:41s +Starting Date/Time: 20240913 14:21:21 +Ending Date/Time: 20240913 15:02:42 +Total Time: 00h:41m:30s Compiles Completed: 1/1 -Tests Completed: 2/2 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index fa1aba423b..df6270b162 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: -17749118ba0dfcca7c2cac513d497ea37521edc8 +a859b1acf58f86110b5dfb42c0445b2ea0fa39cb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -26,6 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,238 +37,238 @@ 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-20240909 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_185073 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_49815 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:30, 11:09] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [35:46, 02:35](3105 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:29, 12:05] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [34:48, 02:35](1808 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:37, 02:42](1842 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:15, 02:52](967 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:49, 03:03](1787 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:30, 11:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [35:46, 01:54](1811 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:23, 05:11] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [41:56, 02:51](1836 MB) - -PASS -- COMPILE 's2swa_intel' [13:31, 11:18] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [35:45, 02:23](3131 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:45, 02:45](3128 MB) -PASS -- TEST 'cpld_restart_p8_intel' [24:24, 02:56](3062 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [35:45, 02:20](3149 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [24:24, 02:47](3078 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [35:45, 02:17](3372 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [35:45, 02:26](3127 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [35:46, 03:02](3076 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:45, 02:41](3129 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [35:54, 05:08](4117 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:54, 06:01](4267 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [35:45, 02:46](3113 MB) - -PASS -- COMPILE 's2sw_intel' [13:28, 10:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [35:50, 02:55](1827 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:50, 02:46](1899 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:29, 10:08] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [36:48, 02:47](1885 MB) - -PASS -- COMPILE 's2s_intel' [12:29, 10:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [36:47, 01:42](2870 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [36:47, 02:17](2879 MB) -PASS -- TEST 'cpld_restart_c48_intel' [31:48, 02:01](2289 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:44, 16:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [30:33, 02:49](3131 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:31, 11:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [34:46, 02:45](1834 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:13, 02:19](1001 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:48, 02:27](1797 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:03] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:36, 01:47](1856 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:30, 08:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [26:18, 01:43](569 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [26:18, 01:49](1462 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:18, 01:43](1472 MB) -PASS -- TEST 'control_latlon_intel' [26:18, 01:44](1472 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [26:18, 01:52](1473 MB) -PASS -- TEST 'control_c48_intel' [26:17, 02:02](1569 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [26:17, 02:06](691 MB) -PASS -- TEST 'control_c192_intel' [26:17, 01:54](1589 MB) -PASS -- TEST 'control_c384_intel' [26:22, 03:23](1884 MB) -PASS -- TEST 'control_c384gdas_intel' [26:14, 03:23](1066 MB) -PASS -- TEST 'control_stochy_intel' [25:57, 02:02](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [21:22, 02:03](329 MB) -PASS -- TEST 'control_lndp_intel' [25:14, 01:28](522 MB) -PASS -- TEST 'control_iovr4_intel' [25:14, 01:38](521 MB) -PASS -- TEST 'control_iovr5_intel' [24:30, 01:46](521 MB) -PASS -- TEST 'control_p8_intel' [24:12, 02:06](1754 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [24:08, 02:44](1765 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [24:05, 02:17](1756 MB) -PASS -- TEST 'control_restart_p8_intel' [16:44, 02:50](913 MB) -PASS -- TEST 'control_noqr_p8_intel' [21:46, 02:31](1758 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [14:46, 02:51](905 MB) -PASS -- TEST 'control_decomp_p8_intel' [20:44, 02:04](1754 MB) -PASS -- TEST 'control_2threads_p8_intel' [20:20, 02:17](1844 MB) -PASS -- TEST 'control_p8_lndp_intel' [20:17, 02:22](1766 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [20:14, 03:06](1812 MB) -PASS -- TEST 'control_p8_mynn_intel' [20:09, 02:42](1768 MB) -PASS -- TEST 'merra2_thompson_intel' [19:43, 03:03](1767 MB) -PASS -- TEST 'regional_control_intel' [19:40, 01:32](852 MB) -PASS -- TEST 'regional_restart_intel' [11:53, 01:14](840 MB) -PASS -- TEST 'regional_decomp_intel' [18:54, 01:50](838 MB) -PASS -- TEST 'regional_2threads_intel' [18:55, 01:42](895 MB) -PASS -- TEST 'regional_noquilt_intel' [17:51, 01:56](1171 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [17:39, 02:00](845 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [17:28, 02:01](844 MB) -PASS -- TEST 'regional_wofs_intel' [16:41, 01:28](1569 MB) - -PASS -- COMPILE 'rrfs_intel' [10:29, 08:27] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [16:37, 02:52](910 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:08, 02:09](1053 MB) -PASS -- TEST 'rap_decomp_intel' [14:35, 02:15](912 MB) -PASS -- TEST 'rap_2threads_intel' [14:12, 02:12](990 MB) -PASS -- TEST 'rap_restart_intel' [06:04, 02:20](777 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:53, 03:17](906 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:11, 02:50](909 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [02:19, 02:38](780 MB) -PASS -- TEST 'hrrr_control_intel' [12:58, 02:26](905 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:47, 02:26](901 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:46, 02:25](978 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:01, 02:06](732 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:44, 02:45](901 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:41, 02:30](1861 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:58, 01:55](1852 MB) - -PASS -- COMPILE 'csawmg_intel' [09:30, 07:56] -PASS -- TEST 'control_csawmg_intel' [26:19, 02:17](861 MB) -PASS -- TEST 'control_ras_intel' [26:19, 02:13](561 MB) - -PASS -- COMPILE 'wam_intel' [09:27, 07:52] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:45, 01:18](1558 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:27, 08:08] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [11:06, 02:27](1752 MB) -PASS -- TEST 'regional_control_faster_intel' [11:04, 01:50](837 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:29, 07:34] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:04, 02:07](1496 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:07, 01:37](1493 MB) -PASS -- TEST 'control_stochy_debug_intel' [10:03, 01:37](704 MB) -PASS -- TEST 'control_lndp_debug_intel' [09:50, 01:31](699 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:49, 01:50](1006 MB) -PASS -- TEST 'control_ras_debug_intel' [08:40, 01:34](708 MB) -PASS -- TEST 'control_diag_debug_intel' [08:14, 02:15](1552 MB) -PASS -- TEST 'control_debug_p8_intel' [07:59, 02:16](1790 MB) -PASS -- TEST 'regional_debug_intel' [07:55, 01:15](884 MB) -PASS -- TEST 'rap_control_debug_intel' [06:55, 01:50](1083 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:47, 01:56](1074 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 01:41](1081 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:52, 01:47](1078 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 01:43](1087 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:14, 01:42](1167 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:35, 01:22](1087 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:32, 01:21](1083 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:22, 01:59](1084 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:15, 01:39](1082 MB) -PASS -- TEST 'rap_noah_debug_intel' [03:28, 02:10](1079 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [03:12, 02:25](1079 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [03:05, 02:20](1079 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [02:34, 01:36](1080 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [02:18, 01:49](1082 MB) -PASS -- TEST 'rap_flake_debug_intel' [02:15, 01:36](1081 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [02:12, 02:43](1086 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:23, 04:27] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [29:11, 02:16](1580 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:37, 07:46] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:07, 01:59](921 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [02:02, 02:09](784 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [02:02, 03:14](784 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:24, 02:08](843 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [01:15, 02:50](836 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [00:55, 02:25](779 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [53:37, 02:50](685 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [55:14, 01:49](667 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:35, 08:03] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [59:25, 02:16](988 MB) -PASS -- TEST 'conus13km_2threads_intel' [49:58, 01:44](994 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [49:39, 01:54](864 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:55] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [59:11, 01:47](813 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:22, 04:39] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [59:01, 01:58](960 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [58:42, 01:57](954 MB) -PASS -- TEST 'conus13km_debug_intel' [58:13, 02:21](1038 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [57:40, 01:51](709 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [57:29, 01:31](1042 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [57:25, 01:59](1110 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:21] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [57:01, 02:07](989 MB) - -PASS -- COMPILE 'hafsw_intel' [11:26, 09:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [57:03, 03:27](597 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:00, 01:43](950 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [55:48, 02:54](636 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [55:41, 03:22](674 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [55:06, 02:41](692 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [55:01, 02:24](377 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [55:00, 03:02](390 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [55:00, 02:35](277 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [55:02, 03:21](364 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [54:46, 02:27](403 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [54:43, 01:57](406 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [54:39, 02:20](481 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:53, 01:27](342 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:21, 04:55] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [53:45, 02:17](502 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:19] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:29, 02:16](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [52:06, 02:12](701 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:24] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [51:25, 03:00](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:31, 08:41] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [49:05, 02:35](637 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [48:43, 02:42](625 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [47:54, 01:50](879 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:44, 10:18] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [47:16, 02:30](1824 MB) - -PASS -- COMPILE 'atml_intel' [11:39, 08:55] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:21, 05:20] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:26, 08:12] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [47:15, 02:10](3025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [46:59, 02:25](2908 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [46:15, 02:51](2916 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:31, 04:22] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [45:40, 01:54](4441 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:30, 11:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:34, 02:17](3104 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:28, 11:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:35, 02:31](1816 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [55:21, 03:12](1843 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [54:01, 03:03](973 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:36, 03:01](1786 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:30, 11:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:33, 01:52](1811 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:16] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [20:42, 03:02](1838 MB) + +PASS -- COMPILE 's2swa_intel' [12:28, 11:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:35, 02:36](3133 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:35, 02:45](3128 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:05, 02:46](3058 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:35, 02:35](3147 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:05, 02:43](3079 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:35, 02:01](3369 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:35, 02:44](3127 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:36, 02:01](3074 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:35, 02:50](3130 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:44, 05:22](4123 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [56:19, 04:21](4264 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:35, 02:43](3113 MB) + +PASS -- COMPILE 's2sw_intel' [12:29, 10:54] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:35, 02:43](1834 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:35, 02:47](1891 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:33] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:36, 02:04](1889 MB) + +PASS -- COMPILE 's2s_intel' [12:28, 10:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [15:34, 01:48](2874 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [15:34, 02:24](2877 MB) +PASS -- TEST 'cpld_restart_c48_intel' [10:26, 02:04](2293 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:36, 16:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:27, 03:09](3129 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:30, 11:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:34, 01:49](1829 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [55:57, 02:06](990 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [55:28, 02:32](1806 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:06] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [13:21, 02:48](1853 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:12, 02:19](566 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:12, 02:17](1466 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:12, 02:16](1469 MB) +PASS -- TEST 'control_latlon_intel' [05:12, 02:08](1473 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:12, 02:14](1472 MB) +PASS -- TEST 'control_c48_intel' [05:11, 02:28](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [05:11, 01:42](692 MB) +PASS -- TEST 'control_c192_intel' [05:12, 02:05](1599 MB) +PASS -- TEST 'control_c384_intel' [05:16, 03:05](1883 MB) +PASS -- TEST 'control_c384gdas_intel' [05:16, 03:43](1064 MB) +PASS -- TEST 'control_stochy_intel' [05:12, 02:28](526 MB) +PASS -- TEST 'control_stochy_restart_intel' [00:42, 02:00](328 MB) +PASS -- TEST 'control_lndp_intel' [04:52, 02:21](525 MB) +PASS -- TEST 'control_iovr4_intel' [04:05, 01:49](519 MB) +PASS -- TEST 'control_iovr5_intel' [03:59, 01:46](521 MB) +PASS -- TEST 'control_p8_intel' [03:55, 02:18](1757 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:54, 02:44](1762 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [00:38, 02:28](1766 MB) +PASS -- TEST 'control_restart_p8_intel' [57:21, 02:28](915 MB) +PASS -- TEST 'control_noqr_p8_intel' [00:13, 02:20](1759 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [53:42, 02:45](924 MB) +PASS -- TEST 'control_decomp_p8_intel' [59:24, 02:23](1755 MB) +PASS -- TEST 'control_2threads_p8_intel' [59:21, 02:36](1851 MB) +PASS -- TEST 'control_p8_lndp_intel' [59:15, 01:59](1768 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [59:09, 03:07](1819 MB) +PASS -- TEST 'control_p8_mynn_intel' [59:06, 02:58](1768 MB) +PASS -- TEST 'merra2_thompson_intel' [59:02, 02:34](1762 MB) +PASS -- TEST 'regional_control_intel' [58:39, 02:05](838 MB) +PASS -- TEST 'regional_restart_intel' [50:50, 01:21](842 MB) +PASS -- TEST 'regional_decomp_intel' [58:37, 01:56](846 MB) +PASS -- TEST 'regional_2threads_intel' [57:27, 01:46](896 MB) +PASS -- TEST 'regional_noquilt_intel' [57:22, 01:22](1168 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [57:17, 02:18](839 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [57:10, 01:13](840 MB) +PASS -- TEST 'regional_wofs_intel' [56:18, 01:14](1569 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:29] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [55:27, 02:55](912 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [52:43, 02:04](1046 MB) +PASS -- TEST 'rap_decomp_intel' [52:41, 02:15](910 MB) +PASS -- TEST 'rap_2threads_intel' [52:32, 02:08](994 MB) +PASS -- TEST 'rap_restart_intel' [44:54, 03:01](776 MB) +PASS -- TEST 'rap_sfcdiff_intel' [52:27, 02:50](912 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [52:17, 02:25](908 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [42:12, 02:39](777 MB) +PASS -- TEST 'hrrr_control_intel' [52:11, 02:05](902 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [52:10, 02:00](904 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [52:10, 02:28](980 MB) +PASS -- TEST 'hrrr_control_restart_intel' [46:00, 02:02](735 MB) +PASS -- TEST 'rrfs_v1beta_intel' [51:56, 02:57](902 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [51:43, 01:37](1867 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [51:39, 01:46](1848 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 07:53] +PASS -- TEST 'control_csawmg_intel' [06:12, 01:31](863 MB) +PASS -- TEST 'control_ras_intel' [06:12, 01:53](561 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 07:57] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [06:12, 01:33](1557 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:27, 08:06] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [51:32, 02:57](1754 MB) +PASS -- TEST 'regional_control_faster_intel' [51:25, 01:22](836 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:25, 07:24] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [50:51, 01:39](1494 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [50:51, 01:48](1502 MB) +PASS -- TEST 'control_stochy_debug_intel' [50:41, 01:42](702 MB) +PASS -- TEST 'control_lndp_debug_intel' [50:29, 02:00](704 MB) +PASS -- TEST 'control_csawmg_debug_intel' [50:16, 01:36](1007 MB) +PASS -- TEST 'control_ras_debug_intel' [49:33, 01:55](708 MB) +PASS -- TEST 'control_diag_debug_intel' [48:04, 02:14](1562 MB) +PASS -- TEST 'control_debug_p8_intel' [47:40, 02:10](1791 MB) +PASS -- TEST 'regional_debug_intel' [47:13, 01:19](888 MB) +PASS -- TEST 'rap_control_debug_intel' [46:14, 01:43](1085 MB) +PASS -- TEST 'hrrr_control_debug_intel' [46:09, 01:55](1079 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [46:02, 01:48](1085 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [46:00, 01:44](1091 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [46:00, 01:46](1085 MB) +PASS -- TEST 'rap_diag_debug_intel' [45:33, 01:31](1169 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [45:15, 01:35](1087 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [45:07, 01:33](1089 MB) +PASS -- TEST 'rap_lndp_debug_intel' [45:01, 01:46](1087 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [44:39, 01:34](1087 MB) +PASS -- TEST 'rap_noah_debug_intel' [44:34, 01:45](1080 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [44:06, 01:36](1082 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [43:32, 01:32](1081 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [43:29, 01:42](1086 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [42:38, 01:53](1087 MB) +PASS -- TEST 'rap_flake_debug_intel' [42:37, 01:42](1086 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [42:16, 02:47](1089 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:27] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [08:13, 01:18](1593 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:25, 07:52] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [42:13, 02:15](919 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [41:58, 02:48](784 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [41:37, 03:11](784 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [41:31, 02:40](838 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [41:29, 03:21](834 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [41:09, 02:35](781 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:57, 02:26](685 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [34:56, 02:14](667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:57] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [41:06, 02:02](989 MB) +PASS -- TEST 'conus13km_2threads_intel' [36:16, 02:00](995 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [36:00, 01:42](865 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 08:00] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:40, 02:26](815 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:30] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [38:43, 01:54](957 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [38:26, 02:00](954 MB) +PASS -- TEST 'conus13km_debug_intel' [38:25, 01:55](1042 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [38:24, 01:48](714 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [38:24, 01:21](1045 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [37:54, 01:42](1109 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:25] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [37:45, 01:49](988 MB) + +PASS -- COMPILE 'hafsw_intel' [11:26, 09:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [37:41, 03:07](603 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:29, 02:11](949 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:26, 03:03](645 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [37:10, 03:09](671 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:06, 02:22](690 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [36:34, 02:11](374 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [35:10, 03:28](389 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [35:10, 02:33](281 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [35:01, 03:14](367 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [34:57, 02:25](402 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [34:09, 01:52](409 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [33:57, 02:34](481 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [33:49, 01:24](316 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:20, 05:06] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [33:50, 02:18](506 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:24, 09:14] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:14, 02:48](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [32:59, 02:14](705 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:36, 09:13] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [32:51, 02:06](706 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:25, 08:41] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [32:29, 03:10](646 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [32:18, 02:37](630 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:13, 02:09](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:35, 10:30] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [30:53, 02:43](1817 MB) + +PASS -- COMPILE 'atml_intel' [11:28, 09:43] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:20, 05:27] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:31, 08:15] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [30:20, 02:33](3022 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [30:13, 02:23](2905 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [30:13, 02:13](2921 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:33, 04:26] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:41, 02:23](4444 MB) SYNOPSIS: -Starting Date/Time: 20240912 18:10:27 -Ending Date/Time: 20240912 19:41:57 -Total Time: 01h:32m:15s +Starting Date/Time: 20240913 16:31:43 +Ending Date/Time: 20240913 17:57:47 +Total Time: 01h:26m:35s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/parm/diag_table/diag_table_fire b/tests/parm/diag_table/diag_table_fire new file mode 100644 index 0000000000..530377aab2 --- /dev/null +++ b/tests/parm/diag_table/diag_table_fire @@ -0,0 +1,377 @@ +20200813.18Z.C3336.32bit.non-hydro.regional +2020 08 13 18 00 00 + +"grid_spec", -1, "months", 1, "days", "time" +"atmos_static", -1, "hours", 1, "hours", "time" +#"atmos_4xdaily", 1, "hours", 1, "days", "time" +"fv3_history", 1, "years", 1, "hours", "time" +"fv3_history2d", 1, "years", 1, "hours", "time" + +# +#======================= +# ATMOSPHERE DIAGNOSTICS +#======================= +### +# grid_spec +### + "dynamics", "grid_lon", "grid_lon", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lat", "grid_lat", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lont", "grid_lont", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_latt", "grid_latt", "grid_spec", "all", .false., "none", 2, + "dynamics", "area", "area", "grid_spec", "all", .false., "none", 2, +### +# 4x daily output +### +# "dynamics", "slp", "slp", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vort850", "vort850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vort200", "vort200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "us", "us", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u1000", "u1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u850", "u850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u700", "u700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u500", "u500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u200", "u200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u100", "u100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u50", "u50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u10", "u10", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vs", "vs", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v1000", "v1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v850", "v850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v700", "v700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v500", "v500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v200", "v200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v100", "v100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v50", "v50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v10", "v10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "tm", "tm", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t1000", "t1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t850", "t850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t700", "t700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t500", "t500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t200", "t200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t100", "t100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t50", "t50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t10", "t10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "z1000", "z1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z850", "z850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z700", "z700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z500", "z500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z200", "z200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z100", "z100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z50", "z50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z10", "z10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "w1000", "w1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w850", "w850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w700", "w700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w500", "w500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w200", "w200", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "q1000", "q1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q850", "q850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q700", "q700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q500", "q500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q200", "q200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q100", "q100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q50", "q50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q10", "q10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "rh1000", "rh1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh850", "rh850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh700", "rh700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh500", "rh500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh200", "rh200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg1000", "omg1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg850", "omg850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg700", "omg700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg500", "omg500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg200", "omg200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg100", "omg100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg50", "omg50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg10", "omg10", "atmos_4xdaily", "all", .false., "none", 2 +### +# gfs static data +### + "dynamics", "pk", "pk", "atmos_static", "all", .false., "none", 2 + "dynamics", "bk", "bk", "atmos_static", "all", .false., "none", 2 + "dynamics", "hyam", "hyam", "atmos_static", "all", .false., "none", 2 + "dynamics", "hybm", "hybm", "atmos_static", "all", .false., "none", 2 + "dynamics", "zsurf", "zsurf", "atmos_static", "all", .false., "none", 2 +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +# Reflectivity from Thompson microphysics +"gfs_phys", "refl_10cm" "refl_10cm" "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cldfra", "cldfra", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 + +"gfs_dyn", "wmaxup", "upvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "wmaxdn", "dnvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax03", "uhmax03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax25", "uhmax25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin03", "uhmin03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin25", "uhmin25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort01", "maxvort01", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort02", "maxvort02", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvorthy1", "maxvorthy1", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt5", "soilt5" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt6", "soilt6" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt7", "soilt7" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt8", "soilt8" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt9", "soilt9" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw5", "soilw5" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw6", "soilw6" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw7", "soilw7" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw8", "soilw8" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw9", "soilw9" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_5", "soill5", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_6", "soill6", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_7", "soill7", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_8", "soill8", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_9", "soill9", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 +# Aerosols (CCN, IN) from Thompson microphysics +"gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "nwfa2d", "nwfa2d", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "nifa2d", "nifa2d", "fv3_history2d", "all", .false., "none", 2 +# Cloud effective radii from Thompson and WSM6 microphysics +"gfs_phys", "cleffr", "cleffr", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cieffr", "cieffr", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cseffr", "cseffr", "fv3_history", "all", .false., "none", 2 +# Prognostic/diagnostic variables from MYNN +"gfs_phys", "QC_BL", "qc_bl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "CLDFRA_BL", "cldfra_bl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "EL_PBL", "el_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "QKE", "qke", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "maxmf", "maxmf", "fv3_history2d", "all", .false., "none", 2 +#"gfs_sfc", "nupdraft", "nupdrafts", "fv3_history2d", "all", .false., "none", 2 +#"gfs_sfc", "ktop_shallow", "ktop_shallow", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zol", "zol", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "flhc", "flhc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "flqc", "flqc", "fv3_history2d", "all", .false., "none", 2 +# Prognostic/diagnostic variables from RUC LSM +"gfs_sfc", "snowfall_acc", "snowfall_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "swe_snowfall_acc", "swe_snowfall_acc", "fv3_history2d", "all", .false., "none", 2 +# Stochastic physics +"gfs_phys", "sppt_wts", "sppt_wts", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "skebu_wts", "skebu_wts", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "skebv_wts", "skebv_wts", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "shum_wts", "shum_wts", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "spp_wts_pbl", "spp_wts_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "spp_wts_sfc", "spp_wts_sfc", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "spp_wts_mp", "spp_wts_mp", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "spp_wts_rad", "spp_wts_rad", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "spp_wts_gwd", "spp_wts_gwd", "fv3_history", "all", .false., "none", 2 + +# Additional entries from user-specified SRW settings (e.g. UFS-FIRE) +"gfs_phys","fsmoke","fsmoke","fv3_history","all",.false.,"none",2 + +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/fd_ufs.yaml b/tests/parm/fd_ufs.yaml index edfca0beed..34602a3272 100644 --- a/tests/parm/fd_ufs.yaml +++ b/tests/parm/fd_ufs.yaml @@ -830,6 +830,8 @@ field_dictionary: canonical_units: tbd - standard_name: inst_rainfall_amount canonical_units: tbd + - standard_name: accumulated_lwe_thickness_of_precipitation_amount + canonical_units: tbd - standard_name: inst_land_sea_mask canonical_units: tbd - standard_name: inst_temp_height_surface @@ -1264,3 +1266,18 @@ field_dictionary: alias: inst_func_of_roughness_length_and_vfrac canonical_units: 1 description: land export + # + #----------------------------------- + # section: fire behavior + #----------------------------------- + # + - standard_name: hflx_fire + canonical_units: K m s-1 + description: kinematic surface upward sensible heat flux of fire + # + - standard_name: evap_fire + canonical_units: Kg Kg-1 m s-1 + description: kinematic surface upward latent heat flux of fire + # + - standard_name: smoke_fire + canonical_units: kg m-2 diff --git a/tests/parm/field_table/field_table_fire b/tests/parm/field_table/field_table_fire new file mode 100644 index 0000000000..8d340fc7fa --- /dev/null +++ b/tests/parm/field_table/field_table_fire @@ -0,0 +1,70 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ice water mixing ratio + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain water mixing ratio + "TRACER", "atmos_mod", "rainwat" + "longname", "rain water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic snow water mixing ratio + "TRACER", "atmos_mod", "snowwat" + "longname", "snow water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic graupel mixing ratio + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water number concentration + "TRACER", "atmos_mod", "water_nc" + "longname", "cloud liquid water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic cloud ice number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# water- and ice-friendly aerosols (Thompson) + "TRACER", "atmos_mod", "liq_aero" + "longname", "water-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "ice_aero" + "longname", "ice-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / +# smoke tracer for UFS_FIRE + "TRACER", "atmos_mod", "fsmoke" + "longname", "fire smoke" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=0.0" / diff --git a/tests/parm/input_regional_fire.nml.IN b/tests/parm/input_regional_fire.nml.IN new file mode 100644 index 0000000000..1b9957aa24 --- /dev/null +++ b/tests/parm/input_regional_fire.nml.IN @@ -0,0 +1,300 @@ +&amip_interp_nml + data_set = 'reynolds_oi' + date_out_of_range = 'climo' + interp_oi_sst = .true. + no_anom_sst = .false. + use_ncep_ice = .false. + use_ncep_sst = .true. +/ + +&atmos_model_nml + blocksize = @[BLOCKSIZE] + ccpp_suite = '@[CCPP_SUITE]' + chksum_debug = .false. + dycore_only = .false. +/ + +&cires_ugwp_nml + knob_ugwp_azdir = 2, 4, 4, 4 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_effac = 1, 1, 1, 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_solver = 2 + knob_ugwp_source = 1, 1, 0, 0 + knob_ugwp_stoch = 0, 0, 0, 0 + knob_ugwp_version = 0 + knob_ugwp_wvspec = 1, 25, 25, 25 + launch_level = 25 +/ + +&diag_manager_nml + max_output_fields = 450 + prepend_date = .false. +/ + +&external_ic_nml + checker_tr = .false. + filtered_terrain = .true. + gfs_dwinds = .true. + levp = @[NPZP] + nt_checker = 0 +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 12000000 + print_memory_usage = .false. +/ + +&fv_core_nml + a_imp = 1.0 + adjust_dry_mass = .false. + bc_update_interval = @[BC_UPDATE_INTERVAL] + beta = 0.0 + consv_am = .false. + consv_te = 0.0 + d2_bg = 0.0 + d2_bg_k1 = 0.2 + d2_bg_k2 = 0.04 + d4_bg = 0.12 + d_con = 0.5 + d_ext = 0.0 + dddmp = 0.1 + delt_max = 0.008 + dnats = @[DNATS] + do_sat_adj = @[DO_SAT_ADJ] + do_schmidt = .true. + do_vort_damp = .true. + dwind_2d = .false. + dz_min = 2 + external_eta = .true. + external_ic = @[EXTERNAL_IC] + fill = .true. + full_zs_filter = @[FULL_ZS_FILTER] + fv_debug = .false. + fv_sg_adj = 300 + gfs_phil = .false. + hord_dp = 6 + hord_mt = 6 + hord_tm = 6 + hord_tr = 8 + hord_vt = 6 + hydrostatic = .false. + io_layout = 1, 1 + k_split = @[K_SPLIT] + ke_bg = 0.0 + kord_mt = 9 + kord_tm = -9 + kord_tr = 9 + kord_wz = 9 + layout = @[INPES], @[JNPES] + make_nh = .true. + mountain = @[MOUNTAIN] + n_split = @[N_SPLIT] + n_sponge = 9 + n_zs_filter = @[N_ZS_FILTER] + na_init = @[NA_INIT] + ncep_ic = .false. + nggps_ic = @[NGGPS_IC] + no_dycore = .false. + nord = 3 + nord_tr = 0 + npx = @[NPX] + npy = @[NPY] + npz = @[NPZ] + nrows_blend = @[NROWS_BLEND] + ntiles = @[NTILES] + nudge_qv = .false. + nwat = @[NWAT] + p_fac = 0.1 + phys_hydrostatic = .false. + print_freq = 6 + psm_bc = 1 + range_warn = .true. + read_increment = .false. + regional = @[REGIONAL] + regional_bcs_from_gsi = .false. + res_latlon_dynamics = 'fv3_increment.nc' + reset_eta = .false. + rf_cutoff = 2000.0 + stretch_fac = @[STRETCH_FAC] + target_lat = @[TARGET_LAT] + target_lon = @[TARGET_LON] + tau = 5.0 + use_hydro_pressure = .false. + vtdm4 = 0.02 + warm_start = @[WARM_START] + write_restart_with_bcs = .false. + z_tracer = .true. +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&gfs_physics_nml + bl_mynn_edmf = 1 + bl_mynn_edmf_mom = 1 + bl_mynn_tkeadvect = .true. + cal_pre = .false. + cdmbgwd = 3.5, 1.0 + cnvcld = .false. + cnvgwd = .false. + cplflx = @[CPLFLX] + cpl_fire = @[CPLFIRE] + cpl_imp_mrg = @[CPL_IMP_MRG] + cpl_imp_dbg = @[CPL_IMP_DBG] + debug = .false. + diag_log = .true. + do_deep = .false. + do_gsl_drag_ls_bl = .true. + do_gsl_drag_ss = .true. + do_gsl_drag_tofd = .true. + do_mynnedmf = .true. + do_mynnsfclay = .true. + dspheat = .true. + effr_in = .true. + fhcyc = @[FHCYC] + fhlwr = @[FHLWR] + fhswr = @[FHSWR] + fhzero = 1.0 + gwd_opt = 3 + h2o_phys = .true. + hybedmf = .false. + iaer = 5111 + ialb = 2 + iau_delthrs = 6 + iau_inc_files = '' + iaufhrs = 30 + icliq_sw = 2 + icloud_bl = 1 + ico2 = 2 + iems = 2 + imfdeepcnv = -1 + imfshalcnv = -1 + imp_physics = @[IMP_PHYSICS] + iopt_alb = 2 + iopt_btr = 1 + iopt_crs = 1 + iopt_dveg = 2 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_snf = 4 + iopt_stc = 1 + iopt_tbot = 2 + iopt_trs = 2 + iovr = 3 + isncond_opt = 2 + isncovr_opt = 3 + isol = 2 + isot = 1 + isubc_lw = 2 + isubc_sw = 2 + ivegsrc = 1 + kice = 9 + ldiag3d = .false. + lheatstrg = .false. + lradar = .true. + lsm = 3 + lsoil = 9 + lsoil_lsm = 9 + ltaerosol = .true. + lwhtr = .true. + mosaic_lu = 0 + mosaic_soil = 0 + nsfullradar_diag = 3600 + oz_phys = .false. + oz_phys_2015 = .true. + pdfcld = .false. + pre_rad = .false. + print_diff_pgr = .false. + prslrd0 = 0.0 + random_clds = .false. + redrag = .true. + satmedmf = .false. + sfclay_compute_flux = .true. + shal_cnv = .false. + swhtr = .true. + thsfc_loc = .false. + trans_trac = .true. + ttendlim = -999 + use_ufo = .true. +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&nam_sfcperts +/ + +&nam_sppperts +/ + +&nam_stochy +/ + +&namsfc + fabsl = 99999 + faisl = 99999 + faiss = 99999 + fnacna = '' + fnaisc = '../../../../../epicufsrt/contrib/UFS_SRW_data/develop/fix/fix_am/CFSR.SEAICE.1982.2012.monthly.clim.grb' + fnglac = '../../../../../epicufsrt/contrib/UFS_SRW_data/develop/fix/fix_am/global_glacier.2x2.grb' + fnmskh = '../../../../../epicufsrt/contrib/UFS_SRW_data/develop/fix/fix_am/seaice_newland.grb' + fnmxic = '../../../../../epicufsrt/contrib/UFS_SRW_data/develop/fix/fix_am/global_maxice.2x2.grb' + fnsmcc = '../../../../../epicufsrt/contrib/UFS_SRW_data/develop/fix/fix_am/global_soilmgldas.t126.384.190.grb' + fnsnoa = '' + fnsnoc = '../../../../../epicufsrt/contrib/UFS_SRW_data/develop/fix/fix_am/global_snoclim.1.875.grb' + fntsfa = '' + fntsfc = '../../../../../epicufsrt/contrib/UFS_SRW_data/develop/fix/fix_am/RTGSST.1982.2012.monthly.clim.grb' + fnzorc = 'igbp' + fsicl = 99999 + fsics = 99999 + fslpl = 99999 + fsmcl = 99999, 99999, 99999 + fsnol = 99999 + fsnos = 99999 + fsotl = 99999 + ftsfl = 99999 + ftsfs = 90 + fvetl = 99999 + fvmnl = 99999 + fvmxl = 99999 + ldebug = .true. +/ + +&namsfc_dict + fnabsc = '../fix_lam/C3336.maximum_snow_albedo.tileX.nc' + fnalbc = '../fix_lam/C3336.snowfree_albedo.tileX.nc' + fnalbc2 = '../fix_lam/C3336.facsf.tileX.nc' + fnslpc = '../fix_lam/C3336.slope_type.tileX.nc' + fnsotc = '../fix_lam/C3336.soil_type.tileX.nc' + fntg3c = '../fix_lam/C3336.substrate_temperature.tileX.nc' + fnvegc = '../fix_lam/C3336.vegetation_greenness.tileX.nc' + fnvetc = '../fix_lam/C3336.vegetation_type.tileX.nc' + fnvmnc = '../fix_lam/C3336.vegetation_greenness.tileX.nc' + fnvmxc = '../fix_lam/C3336.vegetation_greenness.tileX.nc' +/ + +&surf_map_nml + cd2 = -1 + cd4 = 0.12 + max_slope = 0.4 + n_del2_strong = 0 + n_del2_weak = 2 + n_del4 = 1 + peak_fac = 1.0 + zero_ocean = .false. +/ diff --git a/tests/parm/model_configure_fire.IN b/tests/parm/model_configure_fire.IN new file mode 100644 index 0000000000..61fe2986a7 --- /dev/null +++ b/tests/parm/model_configure_fire.IN @@ -0,0 +1,71 @@ +start_year: @[SYEAR] +start_month: @[SMONTH] +start_day: @[SDAY] +start_hour: @[SHOUR] +start_minute: 0 +start_second: 0 +nhours_fcst: @[FHMAX] +fhrot: 0 +RUN_CONTINUE: .false. +ENS_SPS: .false. +dt_atmos: @[DT_ATMOS] +calendar: 'julian' +memuse_verbose: .false. +restart_interval: @[RESTART_INTERVAL] +output_1st_tstep_rst: .false. +write_dopost: @[WRITE_DOPOST] +ideflate: @[IDEFLATE] +nbits: 0 +ichunk2d: -1 +jchunk2d: -1 +ichunk3d: -1 +jchunk3d: -1 +kchunk3d: -1 +itasks: 1 +quilting: @[QUILTING] + +# +# Write-component (quilting) computational parameters. +# +write_groups: @[WRITE_GROUP] +write_tasks_per_group: @[WRTTASK_PER_GROUP] +num_files: @[NUM_FILES] +filename_base: @[FILENAME_BASE] +output_file: @[OUTPUT_FILE] +# +# Write-component output frequency parameter definitions: +# +# output_fh: Output frequency in hours. +# nsout: Output frequency in time steps (positive values override "output_fh"). +# +output_fh: @[OUTPUT_FH] +nsout: -1 +# +# Coordinate system used by the output grid. +# +output_grid: @[OUTPUT_GRID] +# +# Parameter definitions for an output grid of type "lambert_conformal": +# +# cen_lon: Longitude of center of grid (degrees). +# cen_lat: Latitude of center of grid (degrees). +# stdlat1: Latitude of first standard parallel (degrees). +# stdlat2: Latitude of second standard parallel (degrees). +# nx: Number of grid cells along x-axis in Lambert conformal (x,y) plane. +# ny: Number of grid cells along y-axis in Lambert conformal (x,y) plane. +# lon1: Longitude of center of grid cell at bottom-left corner of grid (degrees). +# lat1: Latitude of center of grid cell at bottom-left corner of grid (degrees). +# dx: Grid cell size in x direction (meters). +# dy: Grid cell size in y direction (meters). +# +cen_lon: @[CEN_LON] +cen_lat: @[CEN_LAT] +stdlat1: @[STDLAT1] +stdlat2: @[STDLAT2] +nx: @[NX] +ny: @[NY] +lon1: @[LON1] +lat1: @[LAT1] +dx: @[DX] +dy: @[DY] + diff --git a/tests/parm/namelist.fire.IN b/tests/parm/namelist.fire.IN new file mode 100644 index 0000000000..aa9a71ceaa --- /dev/null +++ b/tests/parm/namelist.fire.IN @@ -0,0 +1,40 @@ +&atm + interval_atm = @[DT_ATMOS] + kde = @[NPZP] +/ + +&fire + fire_atm_feedback = @[fire_atm_feedback] + fire_ignition_end_lat1 = @[fire_ignition_end_lat1] + fire_ignition_end_lon1 = @[fire_ignition_end_lon1] + fire_ignition_end_time1 = @[fire_ignition_end_time1] + fire_ignition_radius1 = @[fire_ignition_radius1] + fire_ignition_ros1 = @[fire_ignition_ros1] + fire_ignition_start_lat1 = @[fire_ignition_start_lat1] + fire_ignition_start_lon1 = @[fire_ignition_start_lon1] + fire_ignition_start_time1 = @[fire_ignition_start_time1] + fire_lsm_zcoupling = @[fire_lsm_zcoupling] + fire_lsm_zcoupling_ref = @[fire_lsm_zcoupling_ref] + fire_num_ignitions = @[fire_num_ignitions] + fire_print_msg = @[fire_print_msg] + fire_upwinding = @[fire_upwinding] + fire_viscosity = @[fire_viscosity] + fire_wind_height = @[fire_wind_height] +/ + +&time + dt = @[DT_FIRE] + end_day = @[EDAY] + end_hour = @[EHOUR] + end_minute = 0 + end_month = @[EMONTH] + end_second = 0 + end_year = @[EYEAR] + interval_output = @[OUTPUT_FS] + start_day = @[SDAY] + start_hour = @[SHOUR] + start_minute = 0 + start_month = @[SMONTH] + start_second = 0 + start_year = @[SYEAR] +/ diff --git a/tests/parm/ufs.configure.cpld_atm_fbh.IN b/tests/parm/ufs.configure.cpld_atm_fbh.IN new file mode 100644 index 0000000000..6b586d6585 --- /dev/null +++ b/tests/parm/ufs.configure.cpld_atm_fbh.IN @@ -0,0 +1,41 @@ +############################################## +##### UFS Run-Time Configuration File ###### +############################################## + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true + +# EARTH # +EARTH_component_list: ATM FBH +EARTH_attributes:: + Verbosity = 0 +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 1 + Diagnostic = 0 +:: + +# FBH # +FBH_model: @[fbh_model] +FBH_petlist_bounds: @[fbh_petlist_bounds] +FBH_omp_num_threads: @[fbh_omp_num_threads] +FBH_attributes:: + Verbosity = 1 + Diagnostic = 0 +:: + +# Run Sequence # +runSeq:: +@@[coupling_interval_sec] + ATM -> FBH + FBH -> ATM :remapmethod=conserve + ATM + FBH +@ +:: diff --git a/tests/rt.conf b/tests/rt.conf index 6da6df4ed6..407dcde958 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -429,3 +429,7 @@ RUN | cpld_debug_pdlib_p8 | + hercules ### CDEPS Data Atmosphere test ### COMPILE | datm_cdeps | gnu | -DAPP=NG-GODAS | + hera hercules | fv3 | RUN | datm_cdeps_control_cfsr | + hera hercules | baseline | + +### ATM-FBH test ### +COMPILE | atm_fbh | intel | -DAPP=ATMF -DCCPP_SUITES=FV3_HRRR -D32BIT=ON | - wcoss2 noaacloud acorn | fv3 | +RUN | cpld_regional_atm_fbh | - wcoss2 noaacloud acorn | baseline | diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 3fb1070547..86df50569f 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -39,7 +39,7 @@ function compute_petbounds_and_tasks() { fi local n=0 - unset atm_petlist_bounds ocn_petlist_bounds ice_petlist_bounds wav_petlist_bounds chm_petlist_bounds med_petlist_bounds aqm_petlist_bounds + unset atm_petlist_bounds ocn_petlist_bounds ice_petlist_bounds wav_petlist_bounds chm_petlist_bounds med_petlist_bounds aqm_petlist_bounds fbh_petlist_bounds # ATM ATM_io_tasks=${ATM_io_tasks:-0} @@ -85,6 +85,13 @@ function compute_petbounds_and_tasks() { n=$((n + LND_tasks)) fi + # FBH + if [[ ${FBH_tasks:-0} -gt 0 ]]; then + FBH_tasks=$((FBH_tasks * fbh_omp_num_threads)) + fbh_petlist_bounds="${n} $((n + FBH_tasks - 1))" + n=$((n + FBH_tasks)) + fi + UFS_tasks=${n} if [[ ${RTVERBOSE} == true ]]; then @@ -96,6 +103,7 @@ function compute_petbounds_and_tasks() { echo "MED_petlist_bounds: ${med_petlist_bounds:-}" echo "AQM_petlist_bounds: ${aqm_petlist_bounds:-}" echo "LND_petlist_bounds: ${lnd_petlist_bounds:-}" + echo "FBH_petlist_bounds: ${fbh_petlist_bounds:-}" echo "UFS_tasks : ${UFS_tasks:-}" fi diff --git a/tests/run_test.sh b/tests/run_test.sh index 88e10210d6..8f5c0a02bf 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -330,6 +330,10 @@ if [[ ${CDEPS_INLINE} = 'true' ]]; then atparse < "${PATHRT}/parm/${CDEPS_INLINE_CONFIGURE:-stream.config.IN}" > stream.config fi +if [[ ${FIRE_BEHAVIOR} = 'true' ]]; then + atparse < "${PATHRT}/parm/${FIRE_NML:-namelist.fire.IN}" > namelist.fire +fi + TPN=$(( TPN / THRD )) if (( TASKS < TPN )); then TPN=${TASKS} diff --git a/tests/test_changes.list b/tests/test_changes.list index f147a757e3..509fd8a203 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,53 +1 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 intel -cpld_control_sfs intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_bmark_p8 intel -cpld_restart_bmark_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_c48 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -control_CubedSphereGrid intel -control_CubedSphereGrid_parallel intel -control_latlon intel -control_wrtGauss_netcdf_parallel intel -control_c48 intel -control_c192 intel -control_c384 intel -control_p8 intel -control_p8_ugwpv1 intel -control_restart_p8 intel -control_noqr_p8 intel -control_restart_noqr_p8 intel -control_decomp_p8 intel -control_2threads_p8 intel -control_p8_lndp intel -control_CubedSphereGrid_debug intel -control_wrtGauss_netcdf_parallel_debug intel -control_debug_p8 intel -atm_ds2s_docn_dice intel -control_c48 gnu -control_p8 gnu -control_p8_ugwpv1 gnu -control_debug_p8 gnu -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu +cpld_regional_atm_fbh intel diff --git a/tests/tests/cpld_regional_atm_fbh b/tests/tests/cpld_regional_atm_fbh new file mode 100644 index 0000000000..8e995d5a43 --- /dev/null +++ b/tests/tests/cpld_regional_atm_fbh @@ -0,0 +1,136 @@ +############################################################################### +# +# FV3 regional control (hi-res 3km, small domain) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional with FIRE BEHAVIOR control results with previous trunk version" + +export CNTL_DIR=cpld_regional_atm_fbh + +export LIST_FILES="dynf000.nc \ + dynf003.nc \ + phyf000.nc \ + phyf003.nc \ + fire_output_2020-08-13_18:00:00.nc \ + fire_output_2020-08-13_21:00:00.nc" + +# default configuration +export_fv3 +export_fire_behavior + +# models +export atm_model=fv3 +export fbh_model=fire_behavior + +# simulation window +export SYEAR=2020 +export SMONTH=8 +export SDAY=13 +export SHOUR=18 +export EYEAR=2020 +export EMONTH=8 +export EDAY=13 +export EHOUR=21 + +# time steps +export coupling_interval_sec=36 +export DT_ATMOS=36 +export DT_FIRE=0.5 + +# model configuration +export FHMAX=3 +export RESTART_INTERVAL=0 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=5 +export NUM_FILES=2 +export FILENAME_BASE="'dyn' 'phy'" +export OUTPUT_FILE="'netcdf' 'netcdf'" +export WRITE_DOPOST=.false. +export IDEFLATE=0 +export OUTPUT_GRID="'lambert_conformal'" +export CEN_LON=-105.6041 +export CEN_LAT=39.01736 +export LON1=-109.0989 +export LAT1=36.2794 +export STDLAT1=39.01736 +export STDLAT2=39.01736 +export NX=207 +export NY=197 +export DX=3000.0 +export DY=3000.0 + +# atmosphere configuration (fv3atm) +export BLOCKSIZE=40 +export CCPP_SUITE='FV3_HRRR' +export INPES='5' +export JNPES='5' +export NPX=211 +export NPY=201 +export NPZ=64 +export NTILES=1 +export K_SPLIT=2 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export DNATS=0 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export DO_SAT_ADJ=.false. +export WARM_START=.false. +export TARGET_LAT=39.01737 +export TARGET_LON=-105.6041 +export STRETCH_FAC=0.999 +export REGIONAL=.true. +export BC_UPDATE_INTERVAL=3 +export NROWS_BLEND=10 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 +export NPZP=65 +export FHCYC=0.0 +export IMP_PHYSICS=8 +export FHSWR=1200.0 +export FHLWR=1200.0 +export CPLFLX=.false. +export CPL_IMP_MRG=.false. +export CPL_IMP_DBG=.false. +export CPLFIRE=.true. + +# fire configuration (fire_behavior) +export FIRE_NAME=cameron_peak_fire +export fire_atm_feedback=1.0 +export fire_ignition_end_lat1=40.609 +export fire_ignition_end_lon1=-105.879 +export fire_ignition_end_time1=7000 +export fire_ignition_radius1=250 +export fire_ignition_ros1=0.05 +export fire_ignition_start_lat1=40.609 +export fire_ignition_start_lon1=-105.879 +export fire_ignition_start_time1=6480 +export fire_lsm_zcoupling=.false. +export fire_lsm_zcoupling_ref=60.0 +export fire_num_ignitions=1 +export fire_print_msg=0 +export fire_upwinding=9 +export fire_viscosity=0.4 +export fire_wind_height=5.0 + +# output configuration +export OUTPUT_FH='1 -1' +export OUTPUT_FS=3600 + +# tasks +export ATM_compute_tasks=$(( INPES*JNPES*NTILES )) +export FBH_tasks=1 + +# configuration files +export INPUT_NML=input_regional_fire.nml.IN +export MODEL_CONFIGURE=model_configure_fire.IN +export UFS_CONFIGURE=ufs.configure.cpld_atm_fbh.IN +export FV3_RUN="regional_fire_run.IN" +export DIAG_TABLE=diag_table_fire +export FIELD_TABLE=field_table_fire +export FIRE_NML=namelist.fire.IN + From 38a29a62461cb1f9bf530420d5bc2f73a4650724 Mon Sep 17 00:00:00 2001 From: Nicholas Szapiro <149816583+NickSzapiro-NOAA@users.noreply.github.com> Date: Thu, 19 Sep 2024 16:51:41 -0400 Subject: [PATCH 29/33] Update CICE and use EMC/CICE:develop branch from CICE-Consortium:main (#2430) * UFSWM - Use EMC/CICE:develop branch from CICE-Consortium:main * CICE - Use EMC/CICE:develop branch from CICE-Consortium:main --- .gitmodules | 6 +- CICE-interface/CICE | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 30 +- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_acorn.log | 518 ++++++------ tests/logs/RegressionTests_derecho.log | 558 ++++++------ tests/logs/RegressionTests_gaea.log | 558 ++++++------ tests/logs/RegressionTests_hera.log | 793 ++++++++---------- tests/logs/RegressionTests_hercules.log | 745 ++++++++-------- tests/logs/RegressionTests_jet.log | 496 +++++------ tests/logs/RegressionTests_orion.log | 626 +++++++------- tests/logs/RegressionTests_wcoss2.log | 458 +++++----- tests/test_changes.list | 1 - 14 files changed, 2385 insertions(+), 2506 deletions(-) diff --git a/.gitmodules b/.gitmodules index b4a4c635e4..d648fcb8f9 100644 --- a/.gitmodules +++ b/.gitmodules @@ -29,7 +29,7 @@ [submodule "CICE"] path = CICE-interface/CICE url = https://github.com/NOAA-EMC/CICE - branch = emc/develop + branch = develop [submodule "CDEPS"] path = CDEPS-interface/CDEPS url = https://github.com/NOAA-EMC/CDEPS @@ -48,5 +48,5 @@ branch = develop [submodule "fire_behavior"] path = fire_behavior - url = https://github.com/NCAR/fire_behavior - branch = develop + url = https://github.com/NOAA-EMC/fire_behavior + branch = emc/develop diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 2ffee5cd48..635d9a100a 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 +Subproject commit 635d9a100a736bd8d14ad091e879d5da6e4eb2bd diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 138fd70659..6edef2c7e4 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Sep 16 14:09:37 UTC 2024 +Thu Sep 19 10:34:04 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/bit_base_bit_base +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_3253678/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 = 302.216095 - 0: The maximum resident set size (KB) = 1458276 + 0: The total amount of wall time = 302.407527 + 0: The maximum resident set size (KB) = 1441812 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/dbg_base_dbg_base +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_3253678/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 = 1000.555258 - 0: The maximum resident set size (KB) = 1429696 + 0: The total amount of wall time = 1009.311079 + 0: The maximum resident set size (KB) = 1431700 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/dcp_dcp +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_3253678/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 = 270.121509 - 0: The maximum resident set size (KB) = 1428680 + 0: The total amount of wall time = 275.353504 + 0: The maximum resident set size (KB) = 1438552 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/mpi_mpi +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_3253678/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 = 274.685713 - 0: The maximum resident set size (KB) = 1419820 + 0: The total amount of wall time = 270.526810 + 0: The maximum resident set size (KB) = 1437944 Test mpi PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/rst_rst +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_3253678/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 = 277.361393 - 0: The maximum resident set size (KB) = 1424812 + 0: The total amount of wall time = 272.184977 + 0: The maximum resident set size (KB) = 1441260 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/std_base_std_base +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_3253678/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 = 275.403359 - 0: The maximum resident set size (KB) = 1436644 + 0: The total amount of wall time = 273.007924 + 0: The maximum resident set size (KB) = 1441600 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1796713/thr_thr +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_3253678/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 = 267.762416 - 0: The maximum resident set size (KB) = 1425320 + 0: The total amount of wall time = 270.263073 + 0: The maximum resident set size (KB) = 1429548 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Sep 16 15:29:42 UTC 2024 -Elapsed time: 01h:20m:05s. Have a nice day! +Thu Sep 19 11:49:05 UTC 2024 +Elapsed time: 01h:15m:02s. 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 cf109ffcbe..409bb4bba4 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Sep 16 19:38:10 UTC 2024 +Thu Sep 19 09:02:15 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3031233/dbg_base_dbg_base +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_2883046/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 = 2391.025998 - 0: The maximum resident set size (KB) = 1540828 + 0: The total amount of wall time = 2403.226127 + 0: The maximum resident set size (KB) = 1541736 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3031233/rst_rst +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_2883046/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 = 649.071605 - 0: The maximum resident set size (KB) = 1529900 + 0: The total amount of wall time = 652.724686 + 0: The maximum resident set size (KB) = 1530376 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3031233/std_base_std_base +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_2883046/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 = 656.545960 - 0: The maximum resident set size (KB) = 1542368 + 0: The total amount of wall time = 668.735610 + 0: The maximum resident set size (KB) = 1518632 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Sep 16 21:08:34 UTC 2024 -Elapsed time: 01h:30m:24s. Have a nice day! +Thu Sep 19 10:34:03 UTC 2024 +Elapsed time: 01h:31m:49s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index f0e30d9070..7c10cbd922 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Sep 16 17:00:35 UTC 2024 +Thu Sep 19 06:26:19 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2755338/bit_base_bit_base +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_3951212/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 = 1384.045273 - 0: The maximum resident set size (KB) = 779080 + 0: The total amount of wall time = 1487.475517 + 0: The maximum resident set size (KB) = 783772 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2755338/dcp_dcp +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_3951212/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 = 2244.080771 - 0: The maximum resident set size (KB) = 730644 + 0: The total amount of wall time = 2239.533660 + 0: The maximum resident set size (KB) = 711488 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2755338/std_base_std_base +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_3951212/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 = 2249.176725 - 0: The maximum resident set size (KB) = 740600 + 0: The total amount of wall time = 2256.857916 + 0: The maximum resident set size (KB) = 744788 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2755338/thr_thr +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_3951212/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 = 2183.368243 - 0: The maximum resident set size (KB) = 751260 + 0: The total amount of wall time = 2251.197250 + 0: The maximum resident set size (KB) = 721196 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Sep 16 19:35:51 UTC 2024 -Elapsed time: 02h:35m:17s. Have a nice day! +Thu Sep 19 09:02:14 UTC 2024 +Elapsed time: 02h:35m:56s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 294ab31409..2eca4ed07d 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,20 +1,20 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -a859b1acf58f86110b5dfb42c0445b2ea0fa39cb +e3bd67a093b800f028092d252373abe1b7a7602b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) + 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) + 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) + a9364591091c836984a40107729720705847c195 FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) + b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -37,266 +37,266 @@ 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-20240909 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3954703 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1860289 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:12] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [54:01, 02:58](3362 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 16:40] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [46:54, 03:49](2165 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:46, 03:53](2188 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [25:11, 03:53](1319 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [46:55, 03:21](2259 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:31, 15:47] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [47:55, 01:52](2159 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:46] ( 1524 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [58:07, 04:00](2241 MB) - -PASS -- COMPILE 's2swa_intel' [12:25, 10:37] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [53:00, 02:43](3392 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [53:00, 03:21](3391 MB) -PASS -- TEST 'cpld_restart_p8_intel' [41:19, 01:54](3308 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [53:00, 02:39](3410 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [41:19, 02:40](3327 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [53:00, 02:26](3690 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [53:00, 03:20](3383 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [53:01, 02:23](3516 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [53:00, 03:07](3394 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [53:00, 03:19](3301 MB) - -PASS -- COMPILE 's2sw_intel' [11:24, 10:11] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [54:01, 02:08](2087 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [54:01, 02:22](2090 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:25, 09:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [54:01, 02:31](2091 MB) - -PASS -- COMPILE 's2s_intel' [10:24, 09:12] ( 2 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [55:01, 02:24](2898 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [55:01, 01:55](2904 MB) -PASS -- TEST 'cpld_restart_c48_intel' [50:35, 02:50](2314 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:30, 14:49] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [48:55, 03:24](3395 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:32, 16:57] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [46:53, 02:06](2172 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:11, 02:37](1333 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:42, 02:21](2275 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 04:57] ( 1524 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [51:48, 02:42](2286 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:25, 08:39] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [44:37, 01:51](711 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [44:37, 01:24](1610 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [44:37, 02:14](1617 MB) -PASS -- TEST 'control_latlon_intel' [44:37, 01:58](1613 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [44:37, 02:26](1615 MB) -PASS -- TEST 'control_c48_intel' [44:36, 01:37](1590 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [44:36, 02:14](716 MB) -PASS -- TEST 'control_c192_intel' [44:37, 02:13](1849 MB) -PASS -- TEST 'control_c384_intel' [44:41, 03:29](3267 MB) -PASS -- TEST 'control_c384gdas_intel' [43:51, 04:02](2446 MB) -PASS -- TEST 'control_stochy_intel' [43:01, 01:20](668 MB) -PASS -- TEST 'control_stochy_restart_intel' [27:17, 01:18](469 MB) -PASS -- TEST 'control_lndp_intel' [43:00, 01:35](666 MB) -PASS -- TEST 'control_iovr4_intel' [42:58, 02:03](663 MB) -PASS -- TEST 'control_iovr5_intel' [42:20, 02:16](662 MB) -PASS -- TEST 'control_p8_intel' [41:04, 03:13](1901 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [39:05, 03:08](1907 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [38:02, 03:12](1872 MB) -PASS -- TEST 'control_restart_p8_intel' [22:26, 03:06](1055 MB) -PASS -- TEST 'control_noqr_p8_intel' [36:51, 02:42](1901 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [20:02, 02:42](1065 MB) -PASS -- TEST 'control_decomp_p8_intel' [36:47, 02:37](1901 MB) -PASS -- TEST 'control_2threads_p8_intel' [35:43, 02:20](1980 MB) -PASS -- TEST 'control_p8_lndp_intel' [34:51, 01:36](1902 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [33:33, 03:40](1960 MB) -PASS -- TEST 'control_p8_mynn_intel' [33:28, 03:12](1906 MB) -PASS -- TEST 'merra2_thompson_intel' [31:32, 03:15](1905 MB) -PASS -- TEST 'regional_control_intel' [30:30, 01:58](866 MB) -PASS -- TEST 'regional_restart_intel' [16:32, 01:27](866 MB) -PASS -- TEST 'regional_decomp_intel' [29:15, 01:48](866 MB) -PASS -- TEST 'regional_2threads_intel' [28:43, 02:10](1241 MB) -PASS -- TEST 'regional_noquilt_intel' [28:33, 01:18](1192 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [28:17, 01:56](873 MB) -PASS -- TEST 'regional_wofs_intel' [27:43, 01:52](1594 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:23] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [24:34, 03:15](1053 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [24:04, 02:34](1738 MB) -PASS -- TEST 'rap_decomp_intel' [23:00, 02:35](1048 MB) -PASS -- TEST 'rap_2threads_intel' [20:52, 03:11](1129 MB) -PASS -- TEST 'rap_restart_intel' [10:05, 03:36](860 MB) -PASS -- TEST 'rap_sfcdiff_intel' [20:35, 03:50](1048 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:17, 03:34](1047 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:05, 03:08](864 MB) -PASS -- TEST 'hrrr_control_intel' [20:04, 03:36](1046 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [20:03, 03:33](1040 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [19:59, 04:02](1268 MB) -PASS -- TEST 'hrrr_control_restart_intel' [11:28, 01:14](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [19:51, 04:00](1041 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [19:41, 01:55](2006 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:33, 02:01](1995 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 07:54] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [44:38, 02:06](1002 MB) -PASS -- TEST 'control_ras_intel' [44:38, 01:24](700 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 08:01] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [44:38, 01:22](1706 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 08:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [19:13, 03:08](1904 MB) -PASS -- TEST 'regional_control_faster_intel' [17:46, 01:16](857 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:28, 07:13] ( 883 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [16:50, 01:23](1654 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:19, 02:09](1660 MB) -PASS -- TEST 'control_stochy_debug_intel' [15:47, 02:09](852 MB) -PASS -- TEST 'control_lndp_debug_intel' [15:45, 01:52](855 MB) -PASS -- TEST 'control_csawmg_debug_intel' [15:14, 01:20](1158 MB) -PASS -- TEST 'control_ras_debug_intel' [14:59, 02:06](863 MB) -PASS -- TEST 'control_diag_debug_intel' [14:06, 01:57](1708 MB) -PASS -- TEST 'control_debug_p8_intel' [12:20, 01:26](1948 MB) -PASS -- TEST 'regional_debug_intel' [11:27, 01:40](930 MB) -PASS -- TEST 'rap_control_debug_intel' [11:22, 01:41](1231 MB) -PASS -- TEST 'hrrr_control_debug_intel' [11:17, 01:45](1228 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:55, 01:59](1230 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:12, 02:15](1232 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:26, 01:33](1233 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:19, 01:29](1318 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:58, 01:20](1233 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:53, 02:09](1236 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:13, 01:49](1233 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:12, 01:20](1231 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:05, 01:43](1229 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:03, 02:08](1232 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:55, 01:19](1232 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:39, 01:48](1227 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:33, 01:38](1233 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:29, 01:21](1235 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:25, 04:16](1242 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:24, 04:44] ( 838 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [07:11, 01:58](1739 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:26, 07:52] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 02:26](1609 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:18, 03:09](926 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:15, 04:28](924 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:51, 03:22](983 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:28, 04:56](1124 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:28, 04:14](923 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [53:31, 03:27](814 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [54:46, 01:46](804 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:24, 07:55] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:34, 02:13](1129 MB) -PASS -- TEST 'conus13km_2threads_intel' [57:23, 02:11](1473 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [57:03, 01:19](953 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:26, 07:58] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [02:53, 01:46](959 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:25, 04:22] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [02:46, 01:54](1112 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [02:40, 01:18](1110 MB) -PASS -- TEST 'conus13km_debug_intel' [02:19, 01:55](1199 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [01:56, 02:08](858 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [01:40, 01:47](1544 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [01:38, 01:18](1276 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:28, 04:19] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [01:37, 01:16](1139 MB) - -PASS -- COMPILE 'hafsw_intel' [18:34, 09:06] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [01:28, 02:19](1809 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [01:22, 01:34](2161 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [00:42, 03:12](1288 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [00:40, 02:41](1320 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [00:23, 02:42](1474 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [59:31, 01:51](1011 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [58:41, 03:00](1317 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [57:28, 02:27](1200 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [56:58, 03:46](2122 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [56:31, 01:59](1047 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [55:56, 01:44](1045 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [54:49, 01:55](1677 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [54:18, 01:36](1232 MB) -PASS -- TEST 'gnv1_nested_intel' [53:31, 04:00](1963 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:29, 04:47] ( 1466 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [53:00, 01:43](1725 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:36, 08:53] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [52:50, 02:08](1726 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [52:40, 01:59](1898 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:34, 09:03] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [49:45, 02:12](1900 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:27, 08:33] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [49:12, 02:54](1280 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [47:36, 02:26](1263 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [46:56, 01:28](899 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [34:48, 08:54] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [46:54, 01:54](772 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [27:14, 01:41](762 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [43:35, 01:17](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [43:11, 01:41](651 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [41:22, 01:23](651 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [41:07, 01:34](772 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [39:26, 01:56](773 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [39:11, 01:21](651 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [38:05, 02:15](872 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [38:04, 02:24](852 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [35:40, 01:37](775 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [35:38, 01:52](2037 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [35:12, 01:59](2037 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [34:48, 09:05] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [34:11, 01:55](773 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [25:40, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [34:07, 01:24](679 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [33:46, 01:43](816 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [30:14, 01:33](818 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [46:03, 09:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [33:27, 02:02](2014 MB) - -PASS -- COMPILE 'atml_intel' [44:01, 09:08] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [32:56, 03:44](2263 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [32:51, 03:24](2265 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [23:25, 01:31](1410 MB) - -PASS -- COMPILE 'atml_debug_intel' [36:51, 04:59] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [30:51, 03:34](2314 MB) - -PASS -- COMPILE 'atmw_intel' [46:02, 08:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [30:40, 03:40](1993 MB) - -PASS -- COMPILE 'atmaero_intel' [02:19, 08:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [20:40, 03:03](3285 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [20:40, 02:30](3059 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [20:40, 02:25](3068 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [56:12, 04:23] ( 883 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:38, 02:54](4881 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:26, 10:15] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [59:44, 03:29](3362 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:31, 15:44] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [54:39, 03:45](2154 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [31:27, 04:23](2185 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [31:24, 04:10](1300 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:40, 03:22](2258 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:31, 16:02] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [54:39, 01:57](2154 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:52] ( 1524 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [04:50, 04:14](2242 MB) + +PASS -- COMPILE 's2swa_intel' [12:26, 10:36] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [59:43, 02:43](3366 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [59:43, 03:15](3385 MB) +PASS -- TEST 'cpld_restart_p8_intel' [47:36, 02:44](3305 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [59:43, 02:42](3405 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [47:36, 02:21](3322 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [59:43, 03:21](3676 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [59:43, 02:46](3384 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [59:44, 03:32](3511 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [59:43, 02:52](3387 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [59:43, 03:05](3311 MB) + +PASS -- COMPILE 's2sw_intel' [11:25, 09:53] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [00:44, 02:40](2078 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [00:44, 02:57](2091 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:25, 10:12] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [00:44, 03:11](2056 MB) + +PASS -- COMPILE 's2s_intel' [13:28, 11:55] ( 2 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [58:40, 02:39](2887 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [58:40, 02:42](2896 MB) +PASS -- TEST 'cpld_restart_c48_intel' [51:06, 02:51](2309 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:40] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [54:37, 03:02](3388 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 15:44] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [54:37, 02:08](2167 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:51, 02:24](1339 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:00, 02:40](2288 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:33] ( 1524 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:29, 02:06](2280 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:08] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [50:20, 02:04](689 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [50:20, 01:57](1587 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [50:20, 02:04](1593 MB) +PASS -- TEST 'control_latlon_intel' [50:20, 01:26](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [50:20, 01:54](1607 MB) +PASS -- TEST 'control_c48_intel' [50:19, 02:10](1593 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [50:19, 02:01](713 MB) +PASS -- TEST 'control_c192_intel' [50:20, 02:18](1853 MB) +PASS -- TEST 'control_c384_intel' [50:24, 02:45](3276 MB) +PASS -- TEST 'control_c384gdas_intel' [50:24, 04:01](2445 MB) +PASS -- TEST 'control_stochy_intel' [50:20, 02:07](666 MB) +PASS -- TEST 'control_stochy_restart_intel' [45:48, 01:32](465 MB) +PASS -- TEST 'control_lndp_intel' [49:37, 01:57](644 MB) +PASS -- TEST 'control_iovr4_intel' [48:44, 01:22](662 MB) +PASS -- TEST 'control_iovr5_intel' [48:22, 01:34](643 MB) +PASS -- TEST 'control_p8_intel' [47:37, 02:53](1877 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [47:36, 03:27](1856 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [47:22, 02:56](1903 MB) +PASS -- TEST 'control_restart_p8_intel' [28:00, 03:35](1033 MB) +PASS -- TEST 'control_noqr_p8_intel' [45:34, 02:04](1899 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [25:57, 02:52](1026 MB) +PASS -- TEST 'control_decomp_p8_intel' [45:21, 02:58](1875 MB) +PASS -- TEST 'control_2threads_p8_intel' [43:44, 02:57](1986 MB) +PASS -- TEST 'control_p8_lndp_intel' [42:18, 01:30](1906 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [41:56, 02:53](1958 MB) +PASS -- TEST 'control_p8_mynn_intel' [40:21, 02:50](1905 MB) +PASS -- TEST 'merra2_thompson_intel' [40:11, 03:24](1884 MB) +PASS -- TEST 'regional_control_intel' [39:27, 01:23](859 MB) +PASS -- TEST 'regional_restart_intel' [22:23, 01:57](849 MB) +PASS -- TEST 'regional_decomp_intel' [39:18, 01:35](863 MB) +PASS -- TEST 'regional_2threads_intel' [38:03, 01:37](1252 MB) +PASS -- TEST 'regional_noquilt_intel' [35:53, 01:41](1194 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [34:27, 01:12](869 MB) +PASS -- TEST 'regional_wofs_intel' [34:15, 01:44](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:28] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [33:22, 03:42](1049 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [30:35, 01:54](1732 MB) +PASS -- TEST 'rap_decomp_intel' [29:45, 03:06](1049 MB) +PASS -- TEST 'rap_2threads_intel' [29:03, 03:16](1131 MB) +PASS -- TEST 'rap_restart_intel' [16:53, 03:25](863 MB) +PASS -- TEST 'rap_sfcdiff_intel' [28:00, 03:43](1030 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [27:47, 02:42](1026 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [15:32, 03:36](863 MB) +PASS -- TEST 'hrrr_control_intel' [26:45, 04:10](1041 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [26:36, 03:45](1041 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [26:17, 03:13](1269 MB) +PASS -- TEST 'hrrr_control_restart_intel' [16:05, 01:52](815 MB) +PASS -- TEST 'rrfs_v1beta_intel' [25:36, 03:07](1042 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [25:34, 02:22](1988 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:37, 01:32](1977 MB) + +PASS -- COMPILE 'csawmg_intel' [10:23, 08:13] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [23:51, 01:23](1000 MB) +PASS -- TEST 'control_ras_intel' [23:51, 01:59](682 MB) + +PASS -- COMPILE 'wam_intel' [10:23, 08:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [23:06, 02:06](1676 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:33, 08:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [22:14, 02:50](1872 MB) +PASS -- TEST 'regional_control_faster_intel' [22:07, 01:54](857 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:30, 07:18] ( 883 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [21:56, 01:43](1628 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:20, 01:55](1657 MB) +PASS -- TEST 'control_stochy_debug_intel' [21:17, 02:07](835 MB) +PASS -- TEST 'control_lndp_debug_intel' [21:11, 02:08](852 MB) +PASS -- TEST 'control_csawmg_debug_intel' [18:36, 01:27](1137 MB) +PASS -- TEST 'control_ras_debug_intel' [18:13, 01:55](839 MB) +PASS -- TEST 'control_diag_debug_intel' [17:01, 02:10](1711 MB) +PASS -- TEST 'control_debug_p8_intel' [16:53, 02:12](1920 MB) +PASS -- TEST 'regional_debug_intel' [16:30, 01:59](937 MB) +PASS -- TEST 'rap_control_debug_intel' [16:29, 01:24](1215 MB) +PASS -- TEST 'hrrr_control_debug_intel' [16:05, 01:41](1228 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [15:17, 01:37](1232 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [15:08, 02:01](1230 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:01, 02:00](1232 MB) +PASS -- TEST 'rap_diag_debug_intel' [14:18, 02:30](1316 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:12, 01:35](1216 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:51, 01:47](1215 MB) +PASS -- TEST 'rap_lndp_debug_intel' [13:44, 01:58](1216 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:38, 02:03](1232 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:12, 01:59](1209 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:55, 01:23](1215 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:57, 01:23](1227 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:55, 01:43](1227 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:47, 01:28](1217 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:41, 01:26](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:32, 03:19](1239 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:24, 04:49] ( 838 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:59, 02:16](1742 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:27, 08:12] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:57, 01:52](1612 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:07, 03:26](925 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:07, 04:24](923 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:06, 03:35](982 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:57, 04:33](1122 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:29, 04:24](919 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [57:44, 03:05](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [58:57, 02:06](783 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:30, 08:19] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:44, 01:51](1106 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:31, 01:23](1468 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:20, 01:34](947 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [19:33, 08:18] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:57, 01:51](953 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:26, 04:48] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:56, 01:27](1092 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 02:05](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [05:38, 01:30](1185 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [05:33, 01:31](869 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [05:29, 01:31](1546 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:20, 01:38](1282 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:28, 04:43] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:13, 01:32](1115 MB) + +PASS -- COMPILE 'hafsw_intel' [18:32, 09:35] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:13, 02:58](1803 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:07, 01:31](2153 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [04:37, 02:45](1279 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [04:34, 02:28](1434 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [04:22, 02:31](1462 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [03:43, 01:53](1002 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:07, 02:55](1336 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [01:13, 02:37](1200 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [00:25, 04:06](2123 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [00:04, 02:30](1037 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:37, 02:14](1039 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:35, 02:24](1668 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:05, 01:59](1226 MB) +PASS -- TEST 'gnv1_nested_intel' [58:57, 04:22](1953 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [16:30, 05:22] ( 1466 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [58:26, 02:24](1722 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:17] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:47, 02:45](1713 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [54:51, 02:35](1892 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [51:07, 09:19] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [49:54, 02:39](1893 MB) + +PASS -- COMPILE 'hafs_all_intel' [59:15, 09:05] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [40:56, 02:46](1275 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [40:56, 02:46](1256 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [40:54, 01:33](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [00:17, 09:10] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [39:48, 01:40](768 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [32:20, 01:24](760 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [39:48, 01:37](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [39:48, 01:31](651 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [39:48, 01:51](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [39:48, 01:31](770 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [39:48, 01:58](771 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [39:48, 01:40](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [39:49, 02:17](870 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [39:49, 02:06](856 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [39:48, 01:33](770 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [39:08, 01:33](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [39:06, 02:14](2036 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:34, 09:23] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [22:30, 01:25](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [07:26, 01:04] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [30:28, 01:46](678 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [30:28, 01:43](815 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [26:56, 02:05](815 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:32, 09:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [21:19, 02:40](2012 MB) + +PASS -- COMPILE 'atml_intel' [12:31, 09:16] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [22:33, 03:08](2263 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [22:33, 03:10](2259 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [13:04, 01:53](1409 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:23, 05:29] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [25:23, 03:05](2298 MB) + +PASS -- COMPILE 'atmw_intel' [08:27, 08:47] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [22:17, 03:31](1992 MB) + +PASS -- COMPILE 'atmaero_intel' [06:24, 08:42] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [22:21, 02:52](3282 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [22:21, 03:04](3055 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [22:21, 03:06](3048 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [23:37, 04:48] ( 883 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:15, 02:27](4881 MB) SYNOPSIS: -Starting Date/Time: 20240913 19:54:16 -Ending Date/Time: 20240913 22:03:14 -Total Time: 02h:09m:26s +Starting Date/Time: 20240918 13:47:32 +Ending Date/Time: 20240918 16:01:35 +Total Time: 02h:14m:30s Compiles Completed: 37/37 Tests Completed: 176/176 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index cca2f3ec7d..68df2e6d28 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,20 +1,20 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -533e855dac5381cf818b39179344afcacd8f9d47 +4ac63b06501f964ea8feb3cb82fe4bd948d23093 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) + 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + a9364591091c836984a40107729720705847c195 FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -26,6 +26,7 @@ Submodule hashes used in testing: 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,285 +37,288 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_47350 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_33930 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [26:22, 24:08] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:26, 06:52](3197 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:29, 25:57] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:31, 15:09](1910 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:06, 16:23](1938 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:56, 08:19](1063 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:29, 17:04](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [28:29, 25:47] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:59, 14:44](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:20, 14:19] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:46, 24:11](1939 MB) - -PASS -- COMPILE 's2swa_intel' [26:30, 23:36] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:32, 08:33](3222 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:58, 08:39](3223 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:48, 05:17](3150 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:21, 08:35](3250 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:54, 05:12](3175 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:02, 07:55](3744 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:46, 08:17](3214 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:04, 07:04](3533 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:54, 08:45](3228 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [27:04, 10:11](3817 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:46, 07:06](3616 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [41:50, 10:30](4515 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:03, 07:19](4666 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:36, 06:04](3213 MB) - -PASS -- COMPILE 's2sw_intel' [23:25, 21:13] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:02, 05:59](1920 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:14, 08:24](1986 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:24, 13:54] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:34, 13:26](3306 MB) - -PASS -- COMPILE 's2sw_debug_intel' [15:23, 13:10] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:21, 09:05](1947 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [20:29, 18:05] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:26, 05:03](1987 MB) - -PASS -- COMPILE 's2s_intel' [21:25, 18:18] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:27, 06:04](2880 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:29, 02:48](2891 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:39, 02:04](2306 MB) - -PASS -- COMPILE 's2swa_faster_intel' [28:28, 25:54] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:49, 08:24](3233 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:18, 23:44] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:01, 15:11](1924 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:27, 08:32](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:08, 16:55](1890 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:16, 13:00] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:04, 24:40](1949 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:21, 15:20] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:48, 03:32](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:25, 02:53](1563 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:43, 02:51](1568 MB) -PASS -- TEST 'control_latlon_intel' [07:24, 02:47](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:25, 02:47](1566 MB) -PASS -- TEST 'control_c48_intel' [48:40, 09:18](1587 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [43:50, 05:17](709 MB) -PASS -- TEST 'control_c192_intel' [15:34, 10:06](1695 MB) -PASS -- TEST 'control_c384_intel' [22:46, 11:33](1973 MB) -PASS -- TEST 'control_c384gdas_intel' [21:50, 07:24](1174 MB) -PASS -- TEST 'control_stochy_intel' [06:02, 01:30](623 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:53, 00:53](437 MB) -PASS -- TEST 'control_lndp_intel' [06:01, 01:29](621 MB) -PASS -- TEST 'control_iovr4_intel' [06:08, 02:11](619 MB) -PASS -- TEST 'control_iovr5_intel' [06:07, 02:10](621 MB) -PASS -- TEST 'control_p8_intel' [07:46, 03:47](1851 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:46, 03:28](1849 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:04, 03:59](1856 MB) -PASS -- TEST 'control_restart_p8_intel' [09:46, 02:39](1002 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:41, 03:50](1848 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:40, 02:33](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:43, 03:49](1854 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:45, 03:48](1937 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:29, 06:14](1862 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:47, 04:15](1904 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:59, 03:35](1863 MB) -PASS -- TEST 'merra2_thompson_intel' [12:48, 03:48](1856 MB) -PASS -- TEST 'regional_control_intel' [09:09, 05:22](860 MB) -PASS -- TEST 'regional_restart_intel' [26:07, 03:15](860 MB) -PASS -- TEST 'regional_decomp_intel' [10:06, 05:25](860 MB) -PASS -- TEST 'regional_noquilt_intel' [36:11, 04:58](1183 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:04, 05:08](854 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [33:00, 05:04](859 MB) -PASS -- TEST 'regional_wofs_intel' [34:08, 05:47](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [16:23, 13:53] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:34, 06:11](1007 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:34, 03:54](1158 MB) -PASS -- TEST 'rap_decomp_intel' [10:23, 06:29](1006 MB) -PASS -- TEST 'rap_2threads_intel' [09:31, 05:47](1093 MB) -PASS -- TEST 'rap_restart_intel' [08:24, 03:18](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:13, 06:08](1001 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:26, 06:28](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:27, 04:40](879 MB) -PASS -- TEST 'hrrr_control_intel' [06:27, 03:16](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:27, 03:21](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [17:29, 02:50](1074 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:01, 01:50](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:23, 06:03](998 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:53, 07:30](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:45, 07:13](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [16:24, 12:45] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [12:10, 06:37](959 MB) -PASS -- TEST 'control_ras_intel' [07:40, 02:54](656 MB) - -PASS -- COMPILE 'wam_intel' [15:16, 12:30] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [18:23, 10:23](1652 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:18, 13:05] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:45, 03:10](1853 MB) -PASS -- TEST 'regional_control_faster_intel' [22:09, 05:06](858 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [26:23, 15:56] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:12, 02:15](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:10, 02:11](1605 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:44, 02:57](809 MB) -PASS -- TEST 'control_lndp_debug_intel' [09:44, 02:38](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:15, 04:43](1115 MB) -PASS -- TEST 'control_ras_debug_intel' [06:36, 02:42](815 MB) -PASS -- TEST 'control_diag_debug_intel' [07:04, 02:41](1667 MB) -PASS -- TEST 'control_debug_p8_intel' [05:59, 03:02](1902 MB) -PASS -- TEST 'regional_debug_intel' [26:59, 16:37](917 MB) -PASS -- TEST 'rap_control_debug_intel' [07:45, 04:46](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:39, 04:39](1184 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:33, 04:43](1193 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:50, 04:48](1189 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:42, 04:45](1193 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:37, 04:59](1271 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:40, 04:58](1187 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:46, 04:53](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:43, 04:49](1195 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:40, 04:47](1189 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:41, 04:46](1186 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:36, 04:53](1190 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:50, 07:33](1189 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [09:36, 04:49](1185 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:47, 05:33](1197 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:42, 04:55](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:36, 08:07](1191 MB) - -PASS -- COMPILE 'wam_debug_intel' [24:22, 08:07] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:07, 12:19](1683 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [25:22, 12:15] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:54, 03:43](1020 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:16, 05:12](877 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:25, 02:50](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:24, 04:51](936 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:14, 02:30](930 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:15, 02:58](874 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:27, 03:59](787 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:49, 01:35](770 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:23, 12:05] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:00, 01:59](1073 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:05, 01:10](1073 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [14:14, 01:12](961 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:22, 12:21] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:17, 03:40](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [45:29, 08:10] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:41, 04:42](1071 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:53, 04:29](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [26:14, 13:49](1147 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:13, 13:47](829 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:57, 07:59](1144 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:05, 13:44](1213 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [43:30, 07:53] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:46, 04:45](1086 MB) - -PASS -- COMPILE 'hafsw_intel' [53:31, 18:32] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:37, 04:53](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:41, 05:32](1055 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:57, 06:41](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:52, 11:17](774 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:10, 12:25](799 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:35, 04:47](463 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:48, 05:54](481 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [19:18, 02:34](387 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:37, 06:29](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [20:27, 03:35](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:25, 03:17](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:36, 04:11](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:43, 01:26](422 MB) -PASS -- TEST 'gnv1_nested_intel' [22:11, 04:37](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [43:29, 09:31] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:47, 12:26](618 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [51:26, 18:11] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:44, 07:27](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:11, 07:30](679 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [43:21, 19:34] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:29, 05:34](671 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:19, 16:40] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:59, 05:55](741 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:56, 05:55](726 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:25, 16:15](897 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [29:18, 09:14] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [14:36, 02:33](768 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [49:31, 01:42](744 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [20:39, 02:25](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:32, 02:32](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:27, 02:31](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [16:43, 02:33](768 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:57, 02:35](767 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:22, 02:25](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:41, 05:50](697 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:03, 05:48](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [15:30, 02:33](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:36, 04:06](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [16:01, 04:03](2035 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [25:17, 06:42] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:39, 05:14](750 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [28:18, 09:12] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:20, 02:34](755 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [18:07, 03:58] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:52, 01:43](679 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:50, 01:35](457 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:39, 01:00](679 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [29:20, 16:26] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:38, 04:20](1912 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [28:24, 15:00] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:34, 04:23](1895 MB) - -PASS -- COMPILE 'atml_intel' [30:19, 17:01] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:11, 08:51](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [14:13, 08:44](1878 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:34, 04:47](1034 MB) - -PASS -- COMPILE 'atml_debug_intel' [26:18, 13:28] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:20, 06:59](1932 MB) - -PASS -- COMPILE 'atmw_intel' [29:16, 16:08] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:06, 02:51](1872 MB) - -PASS -- COMPILE 'atmaero_intel' [23:11, 15:03] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [13:17, 04:53](3127 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:18, 04:30](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:44, 04:45](3014 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [17:23, 10:44] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [30:57, 23:04](4543 MB) +PASS -- COMPILE 's2swa_32bit_intel' [24:23, 23:06] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:28, 06:38](3199 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:24, 25:17] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:48, 14:50](1911 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:08, 16:15](1948 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:16, 08:06](1076 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:49, 16:39](1886 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:24, 24:59] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:26, 14:26](1905 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:19, 13:22] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:53, 23:43](1946 MB) + +PASS -- COMPILE 's2swa_intel' [24:23, 22:39] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:46, 08:31](3221 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:05, 08:20](3236 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:28, 05:01](3148 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:44, 08:21](3252 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:29, 04:58](3181 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:23, 07:48](3746 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:37, 08:19](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:23, 06:38](3530 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:55, 08:15](3235 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:41, 09:52](3818 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:11, 06:53](3616 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [29:38, 09:54](4515 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [30:21, 06:50](4668 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:11, 06:09](3210 MB) + +PASS -- COMPILE 's2sw_intel' [23:22, 20:57] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:33, 05:54](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:54, 08:07](1976 MB) + +PASS -- COMPILE 's2swa_debug_intel' [15:20, 13:19] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:49, 12:41](3303 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:19, 12:27] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:33, 08:47](1953 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:21, 17:42] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:50, 05:15](1987 MB) + +PASS -- COMPILE 's2s_intel' [19:21, 17:46] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:07, 05:54](2881 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:10, 02:31](2890 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:36, 01:39](2306 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:20, 25:14] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:37, 08:13](3238 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:19, 23:47] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:52, 14:53](1935 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:01, 08:01](1092 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:50, 16:55](1903 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:16, 12:21] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:31, 24:38](1948 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:17, 14:52] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:34, 03:27](665 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:09, 02:43](1561 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:29, 02:47](1566 MB) +PASS -- TEST 'control_latlon_intel' [05:06, 02:42](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:08, 02:45](1562 MB) +PASS -- TEST 'control_c48_intel' [12:05, 09:14](1592 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:44, 05:15](712 MB) +PASS -- TEST 'control_c192_intel' [14:01, 10:00](1694 MB) +PASS -- TEST 'control_c384_intel' [18:42, 11:26](1978 MB) +PASS -- TEST 'control_c384gdas_intel' [18:27, 07:18](1172 MB) +PASS -- TEST 'control_stochy_intel' [03:46, 01:26](623 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:49, 00:53](437 MB) +PASS -- TEST 'control_lndp_intel' [03:42, 01:27](625 MB) +PASS -- TEST 'control_iovr4_intel' [04:49, 02:12](617 MB) +PASS -- TEST 'control_iovr5_intel' [04:43, 02:07](622 MB) +PASS -- TEST 'control_p8_intel' [06:33, 03:35](1855 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:32, 03:06](1852 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:33, 03:38](1850 MB) +PASS -- TEST 'control_restart_p8_intel' [05:24, 02:26](1004 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:37, 03:42](1856 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:20, 02:28](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:53, 03:53](1847 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:47, 03:32](1936 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:45, 06:04](1858 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:54, 04:01](1904 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:55, 03:26](1866 MB) +PASS -- TEST 'merra2_thompson_intel' [06:52, 03:40](1861 MB) +PASS -- TEST 'regional_control_intel' [08:08, 04:56](858 MB) +PASS -- TEST 'regional_restart_intel' [05:56, 03:01](863 MB) +PASS -- TEST 'regional_decomp_intel' [08:05, 05:11](859 MB) +PASS -- TEST 'regional_noquilt_intel' [08:06, 04:52](1191 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:06, 04:56](858 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 04:59](863 MB) +PASS -- TEST 'regional_wofs_intel' [07:52, 05:41](1590 MB) + +PASS -- COMPILE 'rrfs_intel' [15:16, 13:31] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:25, 06:14](1006 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:48, 03:52](1154 MB) +PASS -- TEST 'rap_decomp_intel' [09:25, 06:26](1001 MB) +PASS -- TEST 'rap_2threads_intel' [09:25, 05:46](1093 MB) +PASS -- TEST 'rap_restart_intel' [06:15, 03:15](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:28, 06:09](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:28, 06:25](1004 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:15, 04:40](880 MB) +PASS -- TEST 'hrrr_control_intel' [06:12, 03:14](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:12, 03:20](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:12, 02:52](1076 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:39, 01:49](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:29, 06:02](998 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:02, 07:27](1963 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:01, 07:13](1955 MB) + +PASS -- COMPILE 'csawmg_intel' [14:16, 12:21] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:01, 06:38](958 MB) +PASS -- TEST 'control_ras_intel' [05:40, 02:52](655 MB) + +PASS -- COMPILE 'wam_intel' [14:16, 12:01] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:04, 10:19](1648 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:15, 12:29] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:26, 03:12](1854 MB) +PASS -- TEST 'regional_control_faster_intel' [06:55, 04:44](862 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:15, 15:22] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:05, 02:13](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:57, 02:07](1611 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:35, 03:02](812 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:40](808 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:03, 04:45](1115 MB) +PASS -- TEST 'control_ras_debug_intel' [04:34, 02:40](818 MB) +PASS -- TEST 'control_diag_debug_intel' [06:21, 02:39](1669 MB) +PASS -- TEST 'control_debug_p8_intel' [06:06, 03:01](1899 MB) +PASS -- TEST 'regional_debug_intel' [19:03, 16:38](924 MB) +PASS -- TEST 'rap_control_debug_intel' [07:33, 04:57](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:38, 04:38](1187 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 04:44](1190 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:44](1192 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:36, 04:45](1191 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:41, 05:02](1272 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 04:49](1191 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:39, 04:50](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:39, 04:46](1194 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:34, 04:44](1192 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:39, 04:45](1190 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 04:42](1185 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:33](1185 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:29, 04:43](1186 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 05:50](1198 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:34, 05:07](1185 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:10, 08:17](1198 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:14, 08:01] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:01, 12:09](1698 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:16, 11:56] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 03:31](1018 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:05, 05:11](880 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:03, 02:48](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:07, 04:47](937 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:11, 02:31](932 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:01, 02:55](878 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:07, 03:56](790 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 01:33](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:16, 11:50] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:40, 01:58](1074 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:24, 01:08](1070 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:30, 01:14](963 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 12:00] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:00, 03:42](900 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:16, 08:28] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 04:46](1064 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 04:29](1064 MB) +PASS -- TEST 'conus13km_debug_intel' [18:08, 14:12](1146 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:05, 13:53](831 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:48, 08:05](1143 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:52, 13:47](1215 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:16, 08:16] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:35, 05:05](1090 MB) + +PASS -- COMPILE 'hafsw_intel' [21:15, 19:04] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:26, 04:40](700 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:51, 05:20](1049 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:52, 06:31](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 10:59](772 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:43, 12:01](795 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:29, 04:43](471 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:38, 05:47](487 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:54, 02:20](386 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:28, 06:14](456 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:02, 03:24](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:38, 03:06](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:24, 03:55](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:15](421 MB) +PASS -- TEST 'gnv1_nested_intel' [08:19, 04:13](1710 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:16, 09:53] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:14, 12:16](623 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:18, 18:17] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:28, 07:16](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:32, 07:20](682 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:22, 19:45] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:40, 05:23](673 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:15, 16:36] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:38, 05:44](737 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:44, 05:43](724 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:15, 16:17](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:13, 09:18] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 02:32](756 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:42, 01:33](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:37, 02:23](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:38, 02:25](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:40, 02:25](651 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:36, 02:31](768 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:37, 02:30](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:31, 02:22](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:00, 05:44](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:08, 05:45](681 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:31](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:49, 03:58](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:41, 03:57](1970 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 06:43] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:29, 05:13](753 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:14, 09:17] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:39, 02:29](756 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:13, 02:55] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:14](306 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 01:13](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:34, 00:51](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:18, 14:46] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:52, 04:02](1914 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:17, 13:16] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:29, 03:49](1899 MB) + +PASS -- COMPILE 'atml_intel' [17:14, 15:13] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:58, 06:51](1882 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:51, 07:20](1886 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:03, 04:03](1039 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:13, 11:27] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:42, 06:20](1926 MB) + +PASS -- COMPILE 'atmw_intel' [16:14, 14:28] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:26, 02:16](1884 MB) + +PASS -- COMPILE 'atmaero_intel' [15:14, 13:24] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:31, 04:27](3128 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:44, 04:20](3002 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:07, 04:27](3014 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:14, 09:00] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:06, 22:02](4553 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:14, 11:50] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:37, 08:05](807 MB) SYNOPSIS: -Starting Date/Time: 20240912 08:28:20 -Ending Date/Time: 20240912 21:54:28 -Total Time: 13h:28m:09s -Compiles Completed: 41/41 -Tests Completed: 184/184 +Starting Date/Time: 20240919 07:53:20 +Ending Date/Time: 20240919 09:42:54 +Total Time: 01h:50m:32s +Compiles Completed: 42/42 +Tests Completed: 185/185 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index cfb39ed6ec..69dff2601c 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,20 +1,20 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a859b1acf58f86110b5dfb42c0445b2ea0fa39cb +a04244cbba4aaa7cd72d1546981457f04bea51e1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) + 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) + 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) + a9364591091c836984a40107729720705847c195 FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) + b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -37,287 +37,287 @@ 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-20240909 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_102678 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_159670 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:11, 19:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:38, 08:32](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:12, 22:07] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:19, 14:05](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:56, 14:39](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:54, 06:50](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:14, 14:56](1890 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:12, 21:58] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:43, 13:15](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:14, 15:18] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:34, 26:40](1940 MB) - -PASS -- COMPILE 's2swa_intel' [23:12, 21:57] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [21:32, 09:59](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:46, 09:53](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:53, 06:02](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:41, 10:15](3251 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:45, 06:12](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:38, 08:28](3471 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [21:29, 09:52](3224 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [19:38, 08:39](3170 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:46, 10:03](3225 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [22:43, 10:00](3443 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:11, 06:44](3606 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:17, 09:15](4207 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:39, 05:53](4358 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [18:30, 07:50](3214 MB) - -PASS -- COMPILE 's2sw_intel' [20:11, 18:14] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:37, 06:25](1924 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:51, 08:50](1996 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:13, 13:49] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [18:00, 14:11](3283 MB) - -PASS -- COMPILE 's2sw_debug_intel' [15:13, 13:17] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:57, 09:17](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:12, 17:23] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:39, 05:10](1992 MB) - -PASS -- COMPILE 's2s_intel' [18:11, 16:44] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:10, 05:32](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:10, 01:55](2882 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:06, 01:06](2293 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:11, 20:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:54, 10:19](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:14, 22:21] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:41, 15:50](1923 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:42, 07:18](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:30, 17:14](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 13:31] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:26, 26:53](1947 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:11] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:38, 03:44](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:28, 03:55](1563 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:20, 03:18](1575 MB) -PASS -- TEST 'control_latlon_intel' [06:09, 03:21](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:28, 03:53](1565 MB) -PASS -- TEST 'control_c48_intel' [12:36, 09:55](1580 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:16, 05:48](699 MB) -PASS -- TEST 'control_c192_intel' [16:16, 11:20](1687 MB) -PASS -- TEST 'control_c384_intel' [29:46, 23:57](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [21:44, 14:30](1151 MB) -PASS -- TEST 'control_stochy_intel' [03:46, 01:43](620 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:29, 01:40](426 MB) -PASS -- TEST 'control_lndp_intel' [03:46, 01:34](619 MB) -PASS -- TEST 'control_iovr4_intel' [04:47, 02:37](618 MB) -PASS -- TEST 'control_iovr5_intel' [04:48, 02:21](618 MB) -PASS -- TEST 'control_p8_intel' [08:14, 04:23](1856 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:36, 03:51](1861 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:22, 04:14](1861 MB) -PASS -- TEST 'control_restart_p8_intel' [04:20, 02:06](1012 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:15, 03:59](1855 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:22, 01:59](1022 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:07](1847 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:15, 03:34](1939 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:46, 06:35](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:20, 04:20](1910 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:30, 03:21](1859 MB) -PASS -- TEST 'merra2_thompson_intel' [06:16, 03:43](1854 MB) -PASS -- TEST 'regional_control_intel' [06:44, 04:47](851 MB) -PASS -- TEST 'regional_restart_intel' [04:41, 02:34](854 MB) -PASS -- TEST 'regional_decomp_intel' [06:44, 04:50](849 MB) -PASS -- TEST 'regional_2threads_intel' [04:42, 02:53](989 MB) -PASS -- TEST 'regional_noquilt_intel' [06:45, 04:45](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:53, 04:39](850 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:54, 04:36](851 MB) -PASS -- TEST 'regional_wofs_intel' [07:58, 06:05](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 13:19] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:12, 06:55](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:17, 03:42](1143 MB) -PASS -- TEST 'rap_decomp_intel' [10:03, 07:14](1005 MB) -PASS -- TEST 'rap_2threads_intel' [09:02, 06:17](1093 MB) -PASS -- TEST 'rap_restart_intel' [06:01, 03:25](872 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:07, 07:02](1006 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:00, 07:30](1002 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:03, 05:13](871 MB) -PASS -- TEST 'hrrr_control_intel' [06:10, 03:53](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:59, 04:23](997 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:00, 03:05](1069 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:38, 02:03](827 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:09, 07:19](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:33, 08:37](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:34, 08:22](1953 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:49] -PASS -- TEST 'control_csawmg_intel' [09:43, 06:47](958 MB) -PASS -- TEST 'control_ras_intel' [07:28, 03:34](652 MB) - -PASS -- COMPILE 'wam_intel' [16:11, 14:12] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:09, 12:02](1656 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:57] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:12, 03:17](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [07:41, 04:34](854 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:15, 14:16] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:56, 02:49](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:55](1591 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:20](794 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:30, 02:51](792 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:20](1095 MB) -PASS -- TEST 'control_ras_debug_intel' [04:26, 02:51](800 MB) -PASS -- TEST 'control_diag_debug_intel' [04:42, 02:59](1652 MB) -PASS -- TEST 'control_debug_p8_intel' [05:44, 03:13](1889 MB) -PASS -- TEST 'regional_debug_intel' [18:42, 16:20](887 MB) -PASS -- TEST 'rap_control_debug_intel' [06:29, 05:01](1173 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:33, 05:06](1169 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:35, 05:17](1176 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:32, 05:15](1176 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:28, 05:04](1173 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:35, 05:14](1258 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:32, 05:10](1172 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:31, 05:11](1176 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:35, 05:20](1178 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:34, 05:08](1173 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:34, 05:03](1169 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:34, 05:04](1173 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 08:00](1169 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:34, 04:55](1173 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:33, 06:14](1179 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:35, 05:02](1176 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:05, 08:28](1177 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:11, 10:41] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:08, 13:30](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 13:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:11, 03:32](1012 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 05:56](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:57, 03:18](878 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:00, 05:19](939 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:01, 02:43](923 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:57, 03:36](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:51, 04:25](776 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:35, 01:40](760 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 13:03] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:17, 02:14](1083 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:07, 00:55](1064 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:05, 01:46](960 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:11, 13:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:07, 04:10](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 10:37] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 05:01](1052 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:33, 05:00](1053 MB) -PASS -- TEST 'conus13km_debug_intel' [17:09, 14:34](1135 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:13, 14:25](806 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:07, 08:19](1115 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:08, 14:30](1199 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:11, 10:25] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:31, 05:02](1077 MB) - -PASS -- COMPILE 'hafsw_intel' [19:11, 17:30] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:14, 04:44](687 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:40, 03:53](1035 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:41, 07:34](732 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:23, 11:33](760 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:33, 12:39](776 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:14, 05:03](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:36, 06:23](479 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:19, 02:28](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:57, 06:56](438 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:54, 03:33](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:16, 03:15](495 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:16, 04:10](556 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:48, 01:16](396 MB) -PASS -- TEST 'gnv1_nested_intel' [11:16, 05:14](1700 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:11, 12:02] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:04, 12:32](586 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:11, 16:27] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:14, 07:07](597 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:21, 07:12](775 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:11, 17:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:43, 05:32](777 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:11, 15:55] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:17, 05:59](721 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:23, 06:04](709 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:20, 20:08](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:37] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:32, 02:37](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:29, 01:33](742 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:28](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:31](641 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:32, 02:29](651 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:32, 02:34](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 02:38](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 02:26](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:02, 06:01](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 05:58](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:26, 02:34](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 04:43](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:31, 04:44](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 08:23] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:30, 05:24](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:12, 13:17] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 02:34](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:15, 03:57] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:55, 01:28](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 01:24](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:51, 00:50](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:15, 14:38] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:47, 04:11](1918 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:11, 14:28] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:39, 04:06](1907 MB) - -PASS -- COMPILE 'atml_intel' [17:11, 15:39] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:57, 07:30](1881 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:57, 07:32](1882 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:51, 04:01](1037 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:12, 11:30] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:21, 06:07](1907 MB) - -PASS -- COMPILE 'atmw_intel' [16:11, 14:51] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:10, 02:23](1888 MB) - -PASS -- COMPILE 'atmaero_intel' [15:11, 13:31] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:22, 06:09](3121 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:18, 07:05](3007 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:10, 07:10](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:12, 10:04] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:39, 18:11](4486 MB) - -PASS -- COMPILE 'atm_fbh_intel' [15:12, 13:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:48, 08:57](799 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:15, 18:43] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:25, 08:35](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:14, 21:54] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:41, 13:58](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:38, 14:11](1944 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:35, 06:48](1070 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:37, 15:37](1891 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:12, 23:24] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:52, 13:53](1915 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:14, 14:04] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [36:36, 25:58](1941 MB) + +PASS -- COMPILE 's2swa_intel' [21:11, 19:35] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:03, 10:24](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:12, 10:25](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [13:34, 06:24](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:05, 10:19](3252 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:47, 06:04](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:11, 08:59](3471 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:54, 10:08](3224 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:11, 08:51](3169 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:12, 10:14](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:07, 10:05](3447 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:43, 06:34](3607 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:10, 10:00](4206 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:04, 06:04](4362 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:48, 08:11](3212 MB) + +PASS -- COMPILE 's2sw_intel' [20:15, 18:24] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:43, 06:12](1923 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:08, 08:51](1994 MB) + +PASS -- COMPILE 's2swa_debug_intel' [15:14, 13:30] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:41, 14:31](3283 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:13, 12:51] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:41, 09:18](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:14, 16:13] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:53, 05:29](1992 MB) + +PASS -- COMPILE 's2s_intel' [18:14, 16:39] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [13:26, 05:33](2872 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [09:36, 01:57](2883 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:15, 01:07](2296 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:11, 20:54] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:52, 10:08](3224 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:12, 22:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:36, 15:09](1923 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:48, 08:07](1098 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:37, 17:29](1904 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:12, 15:25] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:26, 27:50](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:12, 14:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:51, 03:45](663 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [10:23, 03:45](1562 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:21, 03:52](1575 MB) +PASS -- TEST 'control_latlon_intel' [08:13, 03:19](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:23, 03:52](1565 MB) +PASS -- TEST 'control_c48_intel' [14:30, 09:52](1578 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:11, 05:44](699 MB) +PASS -- TEST 'control_c192_intel' [18:22, 11:33](1686 MB) +PASS -- TEST 'control_c384_intel' [31:45, 23:37](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [23:37, 14:44](1153 MB) +PASS -- TEST 'control_stochy_intel' [03:51, 01:58](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:31, 01:01](424 MB) +PASS -- TEST 'control_lndp_intel' [03:51, 02:02](619 MB) +PASS -- TEST 'control_iovr4_intel' [06:56, 02:58](618 MB) +PASS -- TEST 'control_iovr5_intel' [09:38, 02:40](618 MB) +PASS -- TEST 'control_p8_intel' [11:12, 03:41](1861 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:34, 03:34](1862 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:10, 03:44](1860 MB) +PASS -- TEST 'control_restart_p8_intel' [05:06, 02:23](1012 MB) +PASS -- TEST 'control_noqr_p8_intel' [11:02, 03:44](1853 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:15, 02:23](1021 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:11, 03:44](1847 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:11, 03:36](1942 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:50, 06:23](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:08, 04:11](1910 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:11, 03:38](1859 MB) +PASS -- TEST 'merra2_thompson_intel' [08:20, 04:04](1855 MB) +PASS -- TEST 'regional_control_intel' [07:42, 04:43](849 MB) +PASS -- TEST 'regional_restart_intel' [04:44, 02:33](854 MB) +PASS -- TEST 'regional_decomp_intel' [07:37, 05:05](849 MB) +PASS -- TEST 'regional_2threads_intel' [05:44, 02:54](993 MB) +PASS -- TEST 'regional_noquilt_intel' [06:44, 04:36](1179 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:47, 04:35](850 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:34, 04:40](857 MB) +PASS -- TEST 'regional_wofs_intel' [07:45, 06:04](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [16:12, 14:09] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:08, 06:50](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 03:44](1145 MB) +PASS -- TEST 'rap_decomp_intel' [10:05, 07:17](1004 MB) +PASS -- TEST 'rap_2threads_intel' [09:04, 06:23](1085 MB) +PASS -- TEST 'rap_restart_intel' [06:20, 03:27](872 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:05, 06:56](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:12, 07:30](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:17, 04:53](871 MB) +PASS -- TEST 'hrrr_control_intel' [06:04, 03:49](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:03, 03:55](998 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:07, 03:05](1073 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:45, 02:03](827 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:12, 07:08](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:40, 08:40](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:31, 08:25](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [15:15, 13:33] +PASS -- TEST 'control_csawmg_intel' [08:41, 06:56](959 MB) +PASS -- TEST 'control_ras_intel' [06:34, 03:26](652 MB) + +PASS -- COMPILE 'wam_intel' [15:15, 12:53] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:24, 11:50](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:12, 14:01] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:27, 03:08](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [06:53, 04:26](846 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 14:50] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:13, 02:49](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:09, 02:41](1591 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:10](794 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:59](792 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:13](1096 MB) +PASS -- TEST 'control_ras_debug_intel' [04:29, 02:49](800 MB) +PASS -- TEST 'control_diag_debug_intel' [04:54, 02:58](1653 MB) +PASS -- TEST 'control_debug_p8_intel' [04:45, 03:00](1890 MB) +PASS -- TEST 'regional_debug_intel' [18:44, 16:11](886 MB) +PASS -- TEST 'rap_control_debug_intel' [06:35, 05:04](1179 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:46, 04:54](1169 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:31, 05:12](1176 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:06](1176 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:33, 05:04](1173 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:18](1258 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:33, 05:11](1173 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:34, 05:08](1176 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:38, 05:12](1178 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:37, 05:22](1173 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:37, 04:56](1169 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 05:06](1176 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:39, 08:24](1169 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:37, 05:13](1172 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:35, 06:25](1179 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:35, 05:23](1175 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:10, 08:32](1178 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:13, 10:48] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:11, 13:33](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 13:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:18, 03:41](1012 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:08, 05:56](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:00, 03:53](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:53, 05:27](937 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:08, 02:44](925 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:04, 03:47](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:55, 04:08](776 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:34, 01:38](760 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:19, 02:34](1083 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:59, 00:59](1063 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:00, 01:32](961 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:08, 04:38](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 10:24] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 05:15](1052 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:31, 04:48](1052 MB) +PASS -- TEST 'conus13km_debug_intel' [17:15, 14:55](1135 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:13, 14:37](807 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:00, 08:12](1111 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:37, 14:49](1200 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:11, 10:09] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 05:18](1078 MB) + +PASS -- COMPILE 'hafsw_intel' [19:12, 17:10] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:28, 04:47](688 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:46, 03:59](1036 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:47, 07:28](732 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:21, 11:35](760 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:45, 12:35](779 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:16, 05:01](462 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:36, 06:15](480 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:11, 02:30](366 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:03, 06:51](430 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:09, 03:35](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:14, 03:13](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:17, 04:08](557 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:46, 01:13](396 MB) +PASS -- TEST 'gnv1_nested_intel' [13:06, 05:18](1700 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:12, 12:13] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:13, 12:14](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:14, 16:11] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:20, 07:04](598 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:20, 07:14](775 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 16:49] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:07, 05:26](778 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:11, 15:49] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:34, 05:49](718 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:20, 06:10](708 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:17, 20:01](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:14, 13:34] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:34, 02:36](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:00](755 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:31, 02:26](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:27, 02:35](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:58, 02:29](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:28, 02:34](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:54, 02:36](765 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:30, 02:27](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:05, 06:08](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 05:52](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:28, 02:35](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:30, 04:39](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:33, 04:40](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:13, 08:25] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:27](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:14, 12:58] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:53, 02:32](766 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:15, 03:22] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:52, 02:53](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:49, 01:26](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:55, 01:01](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:13, 15:02] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:49, 04:34](1919 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:16, 14:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:36, 05:07](1907 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 14:47] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:55, 07:53](1882 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:34, 08:40](1882 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [16:46, 04:14](1036 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:13, 11:56] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:39, 07:02](1907 MB) + +PASS -- COMPILE 'atmw_intel' [17:16, 15:15] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:56, 02:19](1888 MB) + +PASS -- COMPILE 'atmaero_intel' [16:14, 14:04] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:04, 06:10](3122 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:15, 07:00](3006 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:03, 06:43](3018 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:12, 11:31] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:49, 18:11](4486 MB) + +PASS -- COMPILE 'atm_fbh_intel' [15:14, 13:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:00, 08:56](800 MB) SYNOPSIS: -Starting Date/Time: 20240916 02:20:09 -Ending Date/Time: 20240916 04:06:50 -Total Time: 01h:47m:37s +Starting Date/Time: 20240918 23:35:48 +Ending Date/Time: 20240919 01:30:37 +Total Time: 01h:55m:53s Compiles Completed: 42/42 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 410d1b05e1..60f1b9f054 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,15 +1,15 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a859b1acf58f86110b5dfb42c0445b2ea0fa39cb +9e7771572ae0e1b5f6c71e6bc0e1e8f79b7af8b5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) + 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) + dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) + a9364591091c836984a40107729720705847c195 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) @@ -26,435 +26,378 @@ 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-20240909 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_169542 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3988882 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 12:47] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:17, 06:26](3339 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:07, 17:37](1980 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:34, 18:16](2158 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:15, 08:31](1271 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:30, 19:48](1869 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:12, 17:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:48, 17:17](1963 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:12, 06:21] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:10, 24:16](1935 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 12:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:13, 07:35](3370 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:25, 07:53](3349 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:42, 04:20](3266 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:15, 07:43](3386 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:41, 04:23](3293 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:10, 07:15](3643 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:12, 07:43](3363 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:21, 06:16](3233 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:27, 07:44](3362 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:10, 10:21](3535 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:59, 06:45](3635 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [17:56, 08:52](4303 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:56, 06:10](4386 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:17, 05:36](3324 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 11:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:04, 05:46](2000 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:08, 07:21](2069 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:12, 06:22] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:06, 13:39](3415 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:49] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:04, 09:11](2020 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:19] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:23](2052 MB) - -PASS -- COMPILE 's2s_intel' [13:12, 11:30] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:46, 07:45](3033 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:45, 02:42](3035 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:45, 01:36](2490 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:15, 16:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:30, 07:14](3367 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:14, 15:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:17, 17:38](2038 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:21, 08:28](1269 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:05, 20:05](1942 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:12, 06:07] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:10, 25:51](1970 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:12, 10:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:27, 03:26](706 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:44, 03:13](1593 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:50, 03:16](1598 MB) -PASS -- TEST 'control_latlon_intel' [06:40, 03:11](1593 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:46, 03:14](1585 MB) -PASS -- TEST 'control_c48_intel' [13:46, 11:24](1725 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:31, 06:28](861 MB) -PASS -- TEST 'control_c192_intel' [14:15, 11:54](1768 MB) -PASS -- TEST 'control_c384_intel' [18:04, 14:03](1994 MB) -PASS -- TEST 'control_c384gdas_intel' [14:41, 08:08](1373 MB) -PASS -- TEST 'control_stochy_intel' [03:25, 01:44](660 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:35, 01:02](507 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:53](658 MB) -PASS -- TEST 'control_iovr4_intel' [04:25, 02:34](655 MB) -PASS -- TEST 'control_iovr5_intel' [04:29, 02:43](665 MB) -PASS -- TEST 'control_p8_intel' [06:05, 04:01](1887 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:13, 03:27](1893 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:46, 03:42](1884 MB) -PASS -- TEST 'control_restart_p8_intel' [03:49, 02:03](1131 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:19, 03:43](1876 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:07, 02:03](1150 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:57, 03:43](1869 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:54, 03:28](1957 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:53, 06:35](1883 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:00, 04:04](1961 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:29, 03:08](1901 MB) -PASS -- TEST 'merra2_thompson_intel' [05:56, 03:22](1897 MB) -PASS -- TEST 'regional_control_intel' [07:40, 05:21](1091 MB) -PASS -- TEST 'regional_restart_intel' [05:44, 03:11](1084 MB) -PASS -- TEST 'regional_decomp_intel' [07:40, 05:41](1088 MB) -PASS -- TEST 'regional_2threads_intel' [05:41, 03:29](1088 MB) -PASS -- TEST 'regional_noquilt_intel' [07:46, 05:24](1391 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 05:27](1097 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 05:38](1097 MB) -PASS -- TEST 'regional_wofs_intel' [09:40, 07:14](1912 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 10:05] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:04, 07:55](1102 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:17, 04:05](1255 MB) -PASS -- TEST 'rap_decomp_intel' [10:47, 08:11](1042 MB) -PASS -- TEST 'rap_2threads_intel' [10:03, 07:21](1178 MB) -PASS -- TEST 'rap_restart_intel' [07:22, 04:03](1099 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:02, 07:54](1104 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:47, 08:11](1044 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:57, 05:56](1132 MB) -PASS -- TEST 'hrrr_control_intel' [06:48, 03:59](1041 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:46, 04:07](1033 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:51, 03:38](1102 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:43, 02:15](1003 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:06, 07:42](1098 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:34, 09:36](1987 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:35, 09:19](2047 MB) - -PASS -- COMPILE 'csawmg_intel' [13:16, 09:51] -PASS -- TEST 'control_csawmg_intel' [08:53, 06:09](1021 MB) -PASS -- TEST 'control_ras_intel' [05:30, 03:19](744 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:11, 04:15] -PASS -- TEST 'control_csawmg_gnu' [10:43, 08:27](742 MB) - -PASS -- COMPILE 'wam_intel' [12:12, 09:51] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:51, 11:20](1674 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:12] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:01, 02:54](1879 MB) -PASS -- TEST 'regional_control_faster_intel' [06:40, 05:01](1098 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:56] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 02:23](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:50, 02:14](1624 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:19](836 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:28, 02:52](825 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:26](1142 MB) -PASS -- TEST 'control_ras_debug_intel' [04:27, 02:51](844 MB) -PASS -- TEST 'control_diag_debug_intel' [04:55, 02:49](1687 MB) -PASS -- TEST 'control_debug_p8_intel' [04:58, 02:43](1914 MB) -PASS -- TEST 'regional_debug_intel' [19:45, 17:27](1114 MB) -PASS -- TEST 'rap_control_debug_intel' [07:35, 05:10](1219 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:37, 05:03](1219 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 05:06](1220 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:31, 05:10](1222 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 05:11](1217 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:47, 05:10](1306 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:33, 05:08](1215 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:33, 05:08](1219 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:28, 05:00](1217 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:29, 04:59](1211 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:28, 04:57](1210 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:28, 05:04](1216 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 08:15](1214 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 05:00](1211 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 05:47](1220 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:27, 05:00](1227 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:43, 08:37](1223 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 04:05] -PASS -- TEST 'control_csawmg_debug_gnu' [04:39, 02:29](726 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:12, 04:44] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:50, 13:33](1664 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:17, 09:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:10, 03:57](1134 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:46, 06:28](1051 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:22](980 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:38, 06:11](1089 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:11](959 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:36, 03:35](931 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:40, 04:53](1032 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:53](929 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:13, 10:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:57, 02:09](1191 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:01](1114 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:16](1099 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:13, 10:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:10](987 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:42] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:56](1090 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 04:55](1092 MB) -PASS -- TEST 'conus13km_debug_intel' [16:54, 15:01](1240 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 15:02](933 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 08:33](1164 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:47, 15:17](1313 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 04:43] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 05:09](1138 MB) - -PASS -- COMPILE 'hafsw_intel' [13:13, 11:44] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:05](722 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:35, 05:55](1102 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:22, 06:58](821 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:15, 13:28](840 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:39, 15:20](870 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:56, 05:31](491 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:31, 06:40](512 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:42, 02:42](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:48, 07:12](482 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:44, 03:45](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 03:37](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:10](578 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:13](407 MB) -PASS -- TEST 'gnv1_nested_intel' [07:32, 04:01](1739 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:14, 05:09] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:02, 13:20](590 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:12, 11:40] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 09:01](674 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:05, 08:53](738 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:15, 11:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:28, 06:31](724 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:15, 10:43] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:16, 06:35](815 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:16, 06:35](812 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:16](1225 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:13, 06:50] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:48](1167 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:38](1121 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:38](1035 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:43](1031 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:40](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:42](1165 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:40](1163 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:35](1040 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:26, 06:09](1070 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:17, 06:08](1047 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:47](1165 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:20, 03:48](2517 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:56](2473 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:38] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:10](1083 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:49] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:41](1162 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:13, 01:23] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:47](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:54](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:39](326 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:13, 10:53] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:05, 03:42](1979 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:13, 10:28] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:59, 03:41](1956 MB) - -PASS -- COMPILE 'atml_intel' [12:13, 10:59] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:04, 04:19](1865 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:59, 04:24](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:33](1097 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:20, 06:04] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:59, 05:43](1869 MB) - -PASS -- COMPILE 'atmw_intel' [12:13, 10:40] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:50](1914 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 10:31] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:03, 04:09](3204 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:01, 04:52](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:54, 05:00](3122 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:12, 05:17] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:12, 04:45] -PASS -- TEST 'control_c48_gnu' [11:40, 09:10](1511 MB) -PASS -- TEST 'control_stochy_gnu' [05:23, 03:21](494 MB) -PASS -- TEST 'control_ras_gnu' [06:26, 04:50](506 MB) -PASS -- TEST 'control_p8_gnu' [07:57, 05:11](1457 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:52, 05:02](1446 MB) -PASS -- TEST 'control_flake_gnu' [12:25, 10:20](538 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:13, 04:40] -PASS -- TEST 'rap_control_gnu' [13:38, 11:04](819 MB) -PASS -- TEST 'rap_decomp_gnu' [13:36, 10:56](810 MB) -PASS -- TEST 'rap_2threads_gnu' [12:39, 09:55](925 MB) -PASS -- TEST 'rap_restart_gnu' [07:46, 05:29](577 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:39, 10:44](815 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:37, 10:59](811 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:52, 08:33](580 MB) -PASS -- TEST 'hrrr_control_gnu' [07:37, 05:32](820 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:32, 05:31](796 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:38, 05:02](909 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:31, 05:34](810 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 02:55](566 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:31, 02:47](654 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:03, 10:35](846 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:13, 06:45] -PASS -- TEST 'control_diag_debug_gnu' [03:58, 01:42](1274 MB) -PASS -- TEST 'regional_debug_gnu' [13:42, 11:08](756 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:39](826 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:25, 02:31](825 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:37](828 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:23, 02:38](828 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:41, 02:51](910 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 04:07](821 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:29, 02:43](829 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:27, 02:44](819 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:26, 01:34](461 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:25, 01:45](454 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:45, 01:39](1432 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:25, 02:40](827 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:24, 02:57](828 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:27](832 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:13, 02:38] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:09] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:35, 09:27](710 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:53, 04:58](700 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:37, 08:35](754 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:53, 04:28](745 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:53, 05:04](707 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:39, 07:04](555 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:32, 02:38](543 MB) -PASS -- TEST 'conus13km_control_gnu' [06:32, 03:13](874 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:56, 05:30](880 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:54, 01:48](568 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:13, 09:50] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:46, 05:42](726 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 06:47] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:25, 02:33](717 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:24, 02:35](716 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:51, 07:02](890 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:48, 07:09](576 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:45, 07:32](896 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:44, 07:14](960 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:41] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:44, 02:38](751 MB) - -PASS -- COMPILE 's2swa_gnu' [18:13, 16:48] - -PASS -- COMPILE 's2s_gnu' [17:13, 15:49] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:11, 11:32](1519 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:15] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:13, 16:09] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_pdlib_p8_gnu' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:57] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:31] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:02](692 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:31, 11:17](1089 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:12, 12:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:23, 06:34](3332 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:12, 16:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:05, 17:24](1974 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:26, 18:09](2155 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:18, 08:22](1286 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:57, 19:41](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 16:33] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:44, 17:06](1962 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:54] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:00, 23:54](1939 MB) + +PASS -- COMPILE 's2swa_intel' [15:12, 12:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:19, 07:48](3355 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:26, 07:38](3339 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:22, 04:28](3271 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:19, 07:43](3388 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:22, 04:19](3291 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:19, 07:22](3644 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:15, 07:52](3326 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:14, 06:12](3237 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:24, 07:44](3370 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:16, 10:24](3535 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 06:31](3611 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:50, 08:53](4301 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:40, 06:09](4384 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:13, 05:38](3342 MB) + +PASS -- COMPILE 's2sw_intel' [14:12, 12:28] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:59, 05:49](1979 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:04, 07:34](2037 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:12, 06:06] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:56, 13:30](3413 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:25] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:04, 09:14](2010 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:41] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:58, 04:21](2053 MB) + +PASS -- COMPILE 's2s_intel' [13:12, 11:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:39, 07:45](3033 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:40, 02:45](3043 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:41, 01:34](2481 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:51] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:23, 07:19](3367 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:13, 17:33](2024 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:10, 08:20](1283 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:07, 20:01](1948 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 05:41] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:12, 26:41](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:51] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:25, 03:26](706 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:51, 03:12](1596 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:50, 03:16](1597 MB) +PASS -- TEST 'control_latlon_intel' [06:44, 03:16](1598 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:17](1597 MB) +PASS -- TEST 'control_c48_intel' [13:51, 11:28](1724 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:29](859 MB) +PASS -- TEST 'control_c192_intel' [15:06, 12:01](1737 MB) +PASS -- TEST 'control_c384_intel' [18:13, 13:46](1987 MB) +PASS -- TEST 'control_c384gdas_intel' [12:54, 08:21](1389 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:40](661 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:24, 01:01](507 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:35](657 MB) +PASS -- TEST 'control_iovr4_intel' [04:21, 02:31](659 MB) +PASS -- TEST 'control_iovr5_intel' [04:23, 02:29](667 MB) +PASS -- TEST 'control_p8_intel' [05:54, 03:42](1869 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:09](1887 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:50, 03:41](1883 MB) +PASS -- TEST 'control_restart_p8_intel' [03:44, 02:01](1132 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:46, 03:36](1877 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:56, 02:00](1166 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:44, 03:43](1874 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:44, 03:29](1958 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:44, 06:31](1893 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:47, 04:03](1953 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:52, 03:05](1901 MB) +PASS -- TEST 'merra2_thompson_intel' [05:51, 03:21](1902 MB) +PASS -- TEST 'regional_control_intel' [07:36, 05:20](1094 MB) +PASS -- TEST 'regional_restart_intel' [04:38, 02:54](1085 MB) +PASS -- TEST 'regional_decomp_intel' [07:35, 05:38](1092 MB) +PASS -- TEST 'regional_2threads_intel' [05:33, 03:24](1091 MB) +PASS -- TEST 'regional_noquilt_intel' [07:38, 05:18](1394 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:36, 05:21](1091 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:25](1099 MB) +PASS -- TEST 'regional_wofs_intel' [08:35, 06:53](1914 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 10:31] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:40, 07:49](1107 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:07, 04:08](1248 MB) +PASS -- TEST 'rap_decomp_intel' [10:34, 08:09](1038 MB) +PASS -- TEST 'rap_2threads_intel' [09:35, 07:23](1165 MB) +PASS -- TEST 'rap_restart_intel' [05:42, 04:03](1098 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:39, 07:46](1098 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:36, 08:10](1033 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:45, 05:53](1126 MB) +PASS -- TEST 'hrrr_control_intel' [05:46, 03:59](1044 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 04:06](1034 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:32, 03:40](1105 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:12](1002 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:43, 07:42](1095 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:25](1986 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:10](2055 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 09:58] +PASS -- TEST 'control_csawmg_intel' [08:35, 06:14](1024 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:18](759 MB) + +PASS -- COMPILE 'csawmg_gnu' [08:12, 04:19] +PASS -- TEST 'control_csawmg_gnu' [11:35, 08:22](746 MB) + +PASS -- COMPILE 'wam_intel' [12:12, 10:09] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:48, 11:21](1678 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 10:09] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:48, 02:45](1891 MB) +PASS -- TEST 'regional_control_faster_intel' [06:33, 04:50](1092 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 07:37] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:38, 02:10](1622 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:39, 02:10](1619 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:21, 03:05](833 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:44](831 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:37, 04:20](1140 MB) +PASS -- TEST 'control_ras_debug_intel' [04:21, 02:53](836 MB) +PASS -- TEST 'control_diag_debug_intel' [04:44, 02:51](1679 MB) +PASS -- TEST 'control_debug_p8_intel' [04:38, 02:50](1898 MB) +PASS -- TEST 'regional_debug_intel' [19:38, 17:47](1097 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 05:01](1217 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:49](1213 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:59](1217 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:55](1217 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:54](1214 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:35, 05:24](1302 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:03](1217 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:09](1216 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:00](1222 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:57](1227 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:53](1216 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 05:03](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 08:06](1213 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:56](1217 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:55](1218 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:57](1217 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:42, 08:36](1228 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 04:00] +PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:19](728 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:41] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:49, 13:27](1695 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:04, 03:53](1125 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:27](1048 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:38, 03:25](993 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:35, 06:12](1091 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:30, 03:13](958 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:38](930 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:46, 05:00](1031 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:25, 01:54](931 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:59, 02:10](1194 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:54](1117 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:20](1098 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:09](985 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:57] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:56](1097 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 05:02](1092 MB) +PASS -- TEST 'conus13km_debug_intel' [17:45, 15:10](1230 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:59](932 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 08:25](1164 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:53](1301 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:48] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 05:06](1147 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 11:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:02](721 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:19](1094 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:25, 06:59](809 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:19, 13:31](849 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:40, 15:14](867 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:08, 05:29](495 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:43](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:49, 02:44](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:34, 07:13](473 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:42](521 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:59, 03:32](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:08](581 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:18](400 MB) +PASS -- TEST 'gnv1_nested_intel' [07:35, 04:14](1741 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:57] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 13:22](588 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:21] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:05, 08:55](658 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 08:51](695 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:30, 06:32](727 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 10:46] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:31](811 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:43](799 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:59, 16:18](1218 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:27] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:54](1170 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:40](1114 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:45](1044 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:23, 02:39](1031 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:41](1025 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:44](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:45](1169 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:38](1039 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:55, 06:13](1075 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:41, 06:29](1061 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:46](1157 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 04:13](2451 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:21, 03:59](2462 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:14] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:22, 06:30](1080 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:46] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:46](1158 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:08] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:30, 00:46](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 00:54](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](322 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:36] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:22, 03:50](1945 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:18] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 03:36](1933 MB) + +PASS -- COMPILE 'atml_intel' [12:13, 10:40] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:05, 04:25](1868 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:00, 04:29](1867 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:43, 02:30](1099 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 05:57] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:57, 05:53](1902 MB) + +PASS -- COMPILE 'atmw_intel' [12:13, 10:57] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:56](1937 MB) + +PASS -- COMPILE 'atmaero_intel' [12:12, 10:42] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:56, 04:24](3207 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:57, 04:56](3108 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:47, 04:58](3127 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:35] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:31] +PASS -- TEST 'control_c48_gnu' [11:42, 09:17](1511 MB) +PASS -- TEST 'control_stochy_gnu' [05:26, 03:34](499 MB) +PASS -- TEST 'control_ras_gnu' [06:23, 04:57](506 MB) +PASS -- TEST 'control_p8_gnu' [08:07, 05:12](1457 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:59, 05:09](1458 MB) +PASS -- TEST 'control_flake_gnu' [12:25, 10:27](540 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:17] +PASS -- TEST 'rap_control_gnu' [12:33, 10:50](843 MB) +PASS -- TEST 'rap_decomp_gnu' [12:31, 11:04](812 MB) +PASS -- TEST 'rap_2threads_gnu' [11:44, 10:04](921 MB) +PASS -- TEST 'rap_restart_gnu' [07:41, 05:34](578 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:49, 10:55](813 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:33, 11:10](815 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:41, 07:59](580 MB) +PASS -- TEST 'hrrr_control_gnu' [07:43, 05:37](812 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:39, 05:45](834 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:50, 05:05](911 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:35, 05:40](813 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:28, 02:59](564 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:30, 02:55](659 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:46, 10:32](809 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:29] +PASS -- TEST 'control_diag_debug_gnu' [03:49, 01:41](1275 MB) +PASS -- TEST 'regional_debug_gnu' [13:39, 11:26](743 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:39](827 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:27, 02:38](825 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:37](826 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:23, 02:36](830 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:46, 02:53](912 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:25, 04:04](821 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:42](827 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:38](821 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:24, 01:37](461 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:47](450 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:36](1433 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:24, 02:35](823 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:23, 02:50](824 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:43, 04:25](831 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:33] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:06] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:32, 09:26](716 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:42, 04:55](709 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:40, 08:39](751 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:33, 04:40](751 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:35, 05:18](706 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:36, 07:03](556 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:25, 02:37](539 MB) +PASS -- TEST 'conus13km_control_gnu' [06:26, 03:15](876 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:47, 05:37](875 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:45, 01:49](559 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:45] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:43, 05:39](728 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:29] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:27, 02:32](719 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:24, 02:33](718 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:48, 07:06](894 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:43, 07:10](582 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 06:58](897 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:45, 07:06](962 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:31] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:28, 02:36](748 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 16:29] + +PASS -- COMPILE 's2s_gnu' [18:11, 16:09] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [17:10, 14:27](1520 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:08] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 16:18] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:59, 19:49](1471 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:58] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:45] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:01](696 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:20](1090 MB) SYNOPSIS: -Starting Date/Time: 20240916 05:57:35 -Ending Date/Time: 20240916 08:06:40 -Total Time: 02h:10m:37s +Starting Date/Time: 20240917 23:56:35 +Ending Date/Time: 20240918 01:39:45 +Total Time: 01h:43m:27s Compiles Completed: 58/58 -Tests Completed: 243/244 -Failed Tests: -* TEST cpld_control_pdlib_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch1/NCEPDEV/nems/Fernando.Andrade-maldonado/regression-tests/wm/2220/ufs-weather-model/tests/logs/log_hera/run_cpld_control_pdlib_p8_gnu.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -eb7271e2cda9cebebb45e82a7eda3bbe5756b116 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3794600 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-n) - RUN SINGLE TEST: cpld_control_pdlib_p8 -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:13, 16:23] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:19, 23:43](1453 MB) - -SYNOPSIS: -Starting Date/Time: 20240916 23:01:41 -Ending Date/Time: 20240916 23:47:29 -Total Time: 00h:45m:56s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 244/244 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index ad7e01e26c..82a91d427e 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,20 +1,20 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -a859b1acf58f86110b5dfb42c0445b2ea0fa39cb +9e7771572ae0e1b5f6c71e6bc0e1e8f79b7af8b5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) + 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) + 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) + a9364591091c836984a40107729720705847c195 FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) + b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -37,378 +37,377 @@ 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-20240909 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2154934 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_594867 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:40] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:33, 09:00](2139 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:03] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:30, 14:21](2001 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:53, 15:26](2315 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:37, 07:16](1326 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:27, 16:09](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:52] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:47, 13:42](1985 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:11] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:28, 22:43](1973 MB) - -PASS -- COMPILE 's2swa_intel' [13:11, 11:43] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:30, 09:21](2206 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:23, 09:01](2211 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:34, 05:21](1989 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:18, 09:26](2246 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:45, 05:35](1751 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:16, 10:27](2560 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:30, 09:10](2203 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:15, 07:38](2122 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:27, 09:14](2217 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [29:07, 16:49](2993 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:52, 06:12](2924 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:04, 10:01](3839 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:03, 06:30](3645 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:20, 06:18](2155 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 11:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [17:08, 08:10](2020 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:20, 08:04](2078 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:08] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:17, 12:32](2248 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 04:51] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:09, 10:34](2049 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 10:25] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:16, 05:10](2076 MB) - -PASS -- COMPILE 's2s_intel' [11:11, 09:23] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:49, 07:22](3043 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [10:51, 03:25](3031 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:08, 04:34](2488 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:11, 12:16] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:28, 10:16](2214 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 16:46] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:12, 14:52](2079 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:15, 06:57](1399 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:12, 15:38](2000 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:49] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:10, 24:27](2011 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:11, 08:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:25, 03:15](725 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:40, 02:54](1587 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 02:54](1600 MB) -PASS -- TEST 'control_latlon_intel' [05:37, 02:55](1592 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:44, 03:00](1592 MB) -PASS -- TEST 'control_c48_intel' [13:44, 10:17](1711 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:33, 05:50](841 MB) -PASS -- TEST 'control_c192_intel' [13:54, 10:15](1764 MB) -PASS -- TEST 'control_c384_intel' [17:40, 12:21](2014 MB) -PASS -- TEST 'control_c384gdas_intel' [13:20, 07:36](1505 MB) -PASS -- TEST 'control_stochy_intel' [05:23, 01:32](677 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:37, 00:55](558 MB) -PASS -- TEST 'control_lndp_intel' [05:23, 01:29](674 MB) -PASS -- TEST 'control_iovr4_intel' [06:24, 02:16](676 MB) -PASS -- TEST 'control_iovr5_intel' [06:24, 02:12](661 MB) -PASS -- TEST 'control_p8_intel' [08:57, 04:34](1900 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:13, 04:30](1901 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:10, 04:07](1888 MB) -PASS -- TEST 'control_restart_p8_intel' [04:00, 01:57](1154 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:59, 04:20](1887 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:01, 02:09](1232 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:52, 04:14](1870 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:54, 03:28](1964 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:40, 06:16](1899 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 04:40](1979 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:57, 03:33](1908 MB) -PASS -- TEST 'merra2_thompson_intel' [08:09, 04:33](1918 MB) -PASS -- TEST 'regional_control_intel' [06:38, 04:49](1207 MB) -PASS -- TEST 'regional_restart_intel' [05:33, 03:26](1172 MB) -PASS -- TEST 'regional_decomp_intel' [07:36, 05:11](1185 MB) -PASS -- TEST 'regional_2threads_intel' [05:33, 03:24](1157 MB) -PASS -- TEST 'regional_noquilt_intel' [07:38, 05:08](1521 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:34, 05:25](1198 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:45](1194 MB) -PASS -- TEST 'regional_wofs_intel' [07:30, 05:53](2093 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 08:50] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:54, 06:39](1198 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:54, 03:36](1354 MB) -PASS -- TEST 'rap_decomp_intel' [08:41, 06:55](1118 MB) -PASS -- TEST 'rap_2threads_intel' [08:39, 06:21](1360 MB) -PASS -- TEST 'rap_restart_intel' [05:53, 03:31](1132 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:47, 06:45](1229 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:42, 07:00](1171 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:58, 05:05](1188 MB) -PASS -- TEST 'hrrr_control_intel' [05:55, 03:30](1073 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:39, 03:34](1047 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:17](1109 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:25, 01:54](1025 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:55, 06:35](1195 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 07:43](1998 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:26, 07:30](2168 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 08:44] -PASS -- TEST 'control_csawmg_intel' [08:34, 06:38](1044 MB) -PASS -- TEST 'control_ras_intel' [04:20, 02:54](842 MB) - -PASS -- COMPILE 'csawmg_gnu' [09:11, 03:57] -PASS -- TEST 'control_csawmg_gnu' [10:38, 09:01](1065 MB) - -PASS -- COMPILE 'wam_intel' [18:11, 08:50] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:40, 09:50](1668 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:12, 08:50] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:58, 02:32](1901 MB) -PASS -- TEST 'regional_control_faster_intel' [06:33, 04:44](1196 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 05:57] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:35, 02:02](1631 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:43, 01:57](1628 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:23, 02:54](848 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:30](840 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:50](1159 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 02:38](864 MB) -PASS -- TEST 'control_diag_debug_intel' [04:35, 02:42](1700 MB) -PASS -- TEST 'control_debug_p8_intel' [04:33, 02:44](1903 MB) -PASS -- TEST 'regional_debug_intel' [20:30, 18:43](1159 MB) -PASS -- TEST 'rap_control_debug_intel' [06:20, 04:58](1233 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:24, 05:00](1240 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:26](1235 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:46](1239 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:18, 04:52](1231 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:29, 04:41](1318 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:26, 04:55](1232 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 04:46](1240 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:24, 04:41](1247 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:32](1231 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 05:03](1227 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:20, 04:38](1243 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 07:58](1243 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:20, 04:39](1225 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 06:01](1237 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:20, 05:02](1228 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:06, 07:45](1232 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [08:11, 03:49] -PASS -- TEST 'control_csawmg_debug_gnu' [05:39, 03:09](1047 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 03:57] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 08:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:58, 03:34](1231 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:53, 05:32](1160 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:02, 02:55](1031 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:39, 05:13](1270 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 02:51](1039 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:43, 03:11](983 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:08, 04:23](1112 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:36, 01:39](954 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 08:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:47, 01:58](1291 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:35, 01:02](1193 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:33, 01:09](1150 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:37, 03:48](1107 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:26] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:08](1108 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:03](1111 MB) -PASS -- TEST 'conus13km_debug_intel' [14:50, 12:18](1363 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 13:03](1003 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:49, 07:03](1261 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:49, 12:26](1411 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:06] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 04:30](1164 MB) - -PASS -- COMPILE 'hafsw_intel' [12:11, 10:15] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:10, 05:41](846 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:22, 05:16](1254 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 06:47](937 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:22, 14:24](961 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:47, 15:31](993 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 05:40](594 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:24, 07:21](610 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [10:00, 02:44](431 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [16:45, 08:49](552 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:03, 04:10](607 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:53, 04:12](607 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:59, 05:11](656 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:31, 01:13](450 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:10, 05:02] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:52, 13:06](636 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:10, 10:14] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:36, 18:07](731 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [26:05, 21:12](838 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:17] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:06, 10:58](820 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:10, 10:17] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:31, 06:03](914 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:27, 05:57](905 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:56, 19:13](1341 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:16] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:17, 02:17](1165 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:26](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:17, 02:08](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:15, 02:14](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:17, 02:12](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 02:13](1144 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:18, 02:14](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:16, 02:10](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:04, 05:11](1170 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:26, 05:19](1166 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:18](1140 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 03:28](2399 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:17, 03:18](2456 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:21] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 05:21](1070 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:45] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 02:18](1167 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 01:41](345 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 01:23](571 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:30, 01:40](574 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:12] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:54, 06:04](2010 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 08:49] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:23, 05:09](1989 MB) - -PASS -- COMPILE 'atml_intel' [11:11, 09:20] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [21:38, 18:00](1892 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [22:35, 19:29](1909 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:01, 05:10](1126 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:10, 04:45] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [16:44, 12:23](1925 MB) - -PASS -- COMPILE 'atmw_intel' [11:11, 09:30] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:09, 04:13](1946 MB) - -PASS -- COMPILE 'atmaero_intel' [10:10, 08:29] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:03, 06:16](2037 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:12, 05:12](1802 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:06, 10:51](1808 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:32] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:58, 22:06](4602 MB) - -PASS -- COMPILE 'atm_gnu' [07:10, 05:30] -PASS -- TEST 'control_c48_gnu' [13:18, 10:06](1539 MB) -PASS -- TEST 'control_stochy_gnu' [04:34, 02:38](730 MB) -PASS -- TEST 'control_ras_gnu' [06:53, 04:27](733 MB) -PASS -- TEST 'control_p8_gnu' [12:56, 09:41](1709 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [14:25, 10:06](1709 MB) -PASS -- TEST 'control_flake_gnu' [07:56, 05:31](813 MB) - -PASS -- COMPILE 'rrfs_gnu' [07:10, 05:23] -PASS -- TEST 'rap_control_gnu' [13:47, 10:50](1084 MB) -PASS -- TEST 'rap_decomp_gnu' [15:34, 12:29](1086 MB) -PASS -- TEST 'rap_2threads_gnu' [13:23, 10:59](1122 MB) -PASS -- TEST 'rap_restart_gnu' [07:21, 04:39](888 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:34, 10:58](1085 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:59, 11:20](1082 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:27, 06:28](886 MB) -PASS -- TEST 'hrrr_control_gnu' [10:45, 07:57](1070 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [10:42, 07:16](1137 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [11:16, 07:34](1015 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [10:53, 07:26](1069 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:56, 02:38](893 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:52, 02:27](937 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:33, 10:50](1077 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:11, 07:11] -PASS -- TEST 'control_diag_debug_gnu' [10:16, 05:48](1624 MB) -PASS -- TEST 'regional_debug_gnu' [12:38, 10:54](1111 MB) -PASS -- TEST 'rap_control_debug_gnu' [10:30, 09:03](1098 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [09:04, 06:29](1087 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [09:49, 04:40](1096 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [08:10, 04:19](1095 MB) -PASS -- TEST 'rap_diag_debug_gnu' [07:22, 04:21](1272 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:19, 04:38](1094 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:42, 03:49](1097 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:28, 04:08](1095 MB) -PASS -- TEST 'control_ras_debug_gnu' [05:00, 01:58](726 MB) -PASS -- TEST 'control_stochy_debug_gnu' [05:00, 02:08](723 MB) -PASS -- TEST 'control_debug_p8_gnu' [06:39, 03:36](1702 MB) -PASS -- TEST 'rap_flake_debug_gnu' [05:02, 02:29](1099 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:49, 02:45](1099 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:36, 03:52](1101 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:10, 03:48] -PASS -- TEST 'control_wam_debug_gnu' [07:58, 05:39](1560 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 05:20] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:11, 07:51](963 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:25, 04:26](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:52, 07:15](970 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:06, 04:06](892 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:04, 04:39](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:58, 06:01](864 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:47, 02:26](863 MB) -PASS -- TEST 'conus13km_control_gnu' [06:06, 03:15](1268 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:43, 01:24](1174 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:43, 01:41](930 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:11, 10:23] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:50, 04:54](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:11, 08:16] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:31, 02:30](973 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:29, 02:13](968 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:44, 06:07](1289 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:44, 06:11](956 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [06:36, 03:59](1190 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:40, 06:09](1350 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 06:04] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:29, 02:25](1005 MB) - -PASS -- COMPILE 's2swa_gnu' [20:11, 17:20] - -PASS -- COMPILE 's2s_gnu' [20:11, 18:11] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:27, 10:42](3088 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [10:11, 08:10] - -PASS -- COMPILE 's2sw_pdlib_gnu' [21:11, 19:58] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [30:31, 27:54](3040 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:11, 07:59] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [16:22, 14:02](2885 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [19:12, 18:00] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 02:31](770 MB) - -PASS -- COMPILE 'atm_fbh_intel' [10:10, 08:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:36, 09:59](1083 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [11:15, 11:15] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:32, 07:47](2147 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:40, 16:40] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:12, 13:24](1995 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:07, 14:08](2289 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:36, 06:52](1360 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:26, 15:33](1914 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:07, 16:07] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:43, 13:07](1988 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:00, 06:00] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:02, 22:07](1973 MB) + +PASS -- COMPILE 's2swa_intel' [11:16, 11:16] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:53, 08:04](2216 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:51, 08:00](2225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:10, 04:29](1957 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:10, 08:14](2230 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:50, 05:05](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:04, 09:16](2564 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:44, 08:06](2196 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:18, 06:46](2126 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 08:54](2223 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:38, 15:22](2991 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:39, 05:54](2926 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [13:07, 08:09](3840 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:38, 05:52](3646 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:44, 05:08](2164 MB) + +PASS -- COMPILE 's2sw_intel' [10:27, 10:26] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:40, 07:10](2022 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:32, 06:50](2084 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:12, 05:12] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:52, 12:05](2245 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:44, 04:44] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:09, 09:26](2060 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:24, 09:23] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:49, 04:07](2077 MB) + +PASS -- COMPILE 's2s_intel' [09:51, 09:51] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:23, 05:54](3039 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:28, 02:01](3026 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:26, 01:08](2488 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:05, 12:05] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:39, 07:51](2212 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:43, 15:43] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:31, 13:57](2078 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:53, 07:01](1404 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:06, 16:21](2008 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:13, 05:13] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:35, 22:54](2023 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:25, 09:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:25, 03:12](714 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:08, 02:41](1602 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:17, 02:46](1598 MB) +PASS -- TEST 'control_latlon_intel' [02:57, 02:42](1583 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:50](1594 MB) +PASS -- TEST 'control_c48_intel' [10:55, 10:31](1718 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:01, 05:49](839 MB) +PASS -- TEST 'control_c192_intel' [10:45, 10:11](1771 MB) +PASS -- TEST 'control_c384_intel' [13:19, 12:13](2013 MB) +PASS -- TEST 'control_c384gdas_intel' [09:00, 07:23](1510 MB) +PASS -- TEST 'control_stochy_intel' [01:37, 01:25](676 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:12, 00:54](553 MB) +PASS -- TEST 'control_lndp_intel' [01:32, 01:21](671 MB) +PASS -- TEST 'control_iovr4_intel' [02:17, 02:08](669 MB) +PASS -- TEST 'control_iovr5_intel' [02:26, 02:13](669 MB) +PASS -- TEST 'control_p8_intel' [03:56, 03:18](1873 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:18, 03:24](1906 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:58, 03:05](1894 MB) +PASS -- TEST 'control_restart_p8_intel' [02:18, 01:52](1150 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:38, 03:03](1890 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:18, 01:46](1219 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:56, 03:14](1886 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:07, 03:18](1963 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:14, 05:46](1885 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:18, 03:35](1980 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:16, 02:43](1912 MB) +PASS -- TEST 'merra2_thompson_intel' [04:30, 03:41](1919 MB) +PASS -- TEST 'regional_control_intel' [04:49, 04:34](1209 MB) +PASS -- TEST 'regional_restart_intel' [03:03, 02:48](1179 MB) +PASS -- TEST 'regional_decomp_intel' [05:03, 04:49](1186 MB) +PASS -- TEST 'regional_2threads_intel' [03:14, 02:58](1159 MB) +PASS -- TEST 'regional_noquilt_intel' [04:54, 04:32](1523 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [04:59, 04:36](1200 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:11, 04:56](1199 MB) +PASS -- TEST 'regional_wofs_intel' [06:50, 06:30](2072 MB) + +PASS -- COMPILE 'rrfs_intel' [08:49, 08:49] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:38, 06:51](1198 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:59, 03:33](1363 MB) +PASS -- TEST 'rap_decomp_intel' [08:08, 07:28](1141 MB) +PASS -- TEST 'rap_2threads_intel' [07:11, 06:33](1355 MB) +PASS -- TEST 'rap_restart_intel' [05:34, 03:55](1142 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:33, 07:38](1206 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:07, 09:12](1142 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:53, 05:29](1185 MB) +PASS -- TEST 'hrrr_control_intel' [05:33, 04:23](1070 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:52, 03:44](1037 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:15, 04:30](1115 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:18, 02:11](1034 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:39, 07:31](1194 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:27, 07:55](2011 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:08, 07:41](2165 MB) + +PASS -- COMPILE 'csawmg_intel' [07:55, 07:55] +PASS -- TEST 'control_csawmg_intel' [06:22, 06:06](1044 MB) +PASS -- TEST 'control_ras_intel' [03:24, 03:10](830 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:00, 04:00] +PASS -- TEST 'control_csawmg_gnu' [08:49, 08:33](1063 MB) + +PASS -- COMPILE 'wam_intel' [09:19, 09:19] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:08, 09:45](1664 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:46, 08:46] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:29, 02:48](1897 MB) +PASS -- TEST 'regional_control_faster_intel' [04:41, 04:23](1194 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:39, 06:38] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:43, 02:19](1621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:42, 02:19](1623 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:01, 02:52](845 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:41, 02:32](851 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:43, 04:26](1161 MB) +PASS -- TEST 'control_ras_debug_intel' [02:43, 02:28](859 MB) +PASS -- TEST 'control_diag_debug_intel' [02:59, 02:36](1704 MB) +PASS -- TEST 'control_debug_p8_intel' [03:35, 03:08](1911 MB) +PASS -- TEST 'regional_debug_intel' [17:39, 17:17](1144 MB) +PASS -- TEST 'rap_control_debug_intel' [04:29, 04:21](1226 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:50, 04:39](1218 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:09, 04:57](1240 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 05:10](1243 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:50, 04:41](1235 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:54, 04:38](1322 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:06, 04:57](1229 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:10, 04:57](1238 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:02, 04:49](1243 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:46, 04:38](1233 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:18, 05:07](1233 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:57, 04:47](1235 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:51, 07:44](1227 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:45, 04:37](1229 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:42, 05:31](1241 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:59, 04:47](1237 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 07:59](1228 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:37, 04:36] +PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 03:09](1048 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:20, 04:20] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:49, 08:48] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:01, 03:21](1239 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:32, 05:48](1169 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:48, 02:56](1032 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:08, 05:22](1281 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:33, 02:40](1040 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:48, 03:03](998 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:55, 04:08](1104 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:12, 01:47](958 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:18, 08:18] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:20, 01:51](1295 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:19, 00:50](1194 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:04](1141 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:28, 08:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:12, 03:49](1084 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:19, 04:19] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:21, 04:08](1109 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:16, 04:01](1108 MB) +PASS -- TEST 'conus13km_debug_intel' [13:01, 12:30](1358 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:50, 12:21](1004 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:31, 07:05](1249 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:40, 12:22](1423 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:07, 04:07] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:41, 04:32](1163 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 10:11] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:14, 05:20](853 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:16, 05:03](1261 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:27, 06:23](916 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:54, 14:00](965 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:23, 15:17](990 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:30, 05:43](600 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:03, 06:57](604 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:09, 02:36](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:17, 07:35](545 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:14, 03:45](606 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:18, 03:38](610 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:35, 04:51](665 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:31, 01:12](446 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:39, 04:38] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:48, 12:04](643 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:00, 09:59] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:38, 16:44](747 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:41, 15:49](833 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:46, 09:46] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:36, 10:22](823 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:24, 10:24] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:35, 05:42](920 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:25, 05:31](917 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:03, 16:29](1339 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:02, 06:01] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:05, 03:00](1147 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:48, 01:43](1108 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:10, 02:05](1018 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:04, 02:56](1024 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:01, 02:54](1015 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:15, 02:11](1168 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:06, 03:00](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:10, 02:04](1013 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:31, 04:55](1180 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:30, 04:54](1154 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:01, 02:58](1145 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:07, 03:59](2488 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:08, 03:03](2408 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:03, 03:03] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:18, 05:13](1081 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:16, 06:16] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:59, 02:55](1142 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:45, 00:44] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:12, 00:56](332 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:04, 00:50](575 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:47, 00:32](573 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:42, 08:42] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:27, 03:46](2035 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:35, 08:35] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:48, 03:13](1999 MB) + +PASS -- COMPILE 'atml_intel' [09:40, 09:40] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:43, 05:55](1896 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 06:11](1903 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:32, 03:09](1133 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:32, 05:32] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:51, 06:00](1926 MB) + +PASS -- COMPILE 'atmw_intel' [09:18, 09:17] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:20, 02:34](1924 MB) + +PASS -- COMPILE 'atmaero_intel' [08:57, 08:57] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:54, 04:07](2011 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:08, 04:29](1794 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:59, 05:29](1809 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:12, 04:12] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [17:43, 16:31](4573 MB) + +PASS -- COMPILE 'atm_gnu' [04:14, 04:13] +PASS -- TEST 'control_c48_gnu' [11:38, 11:13](1530 MB) +PASS -- TEST 'control_stochy_gnu' [02:36, 02:24](726 MB) +PASS -- TEST 'control_ras_gnu' [04:01, 03:53](736 MB) +PASS -- TEST 'control_p8_gnu' [04:52, 04:12](1703 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:46, 04:13](1710 MB) +PASS -- TEST 'control_flake_gnu' [04:47, 04:36](816 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:31, 04:30] +PASS -- TEST 'rap_control_gnu' [08:57, 08:21](1084 MB) +PASS -- TEST 'rap_decomp_gnu' [08:50, 08:11](1086 MB) +PASS -- TEST 'rap_2threads_gnu' [07:51, 07:16](1140 MB) +PASS -- TEST 'rap_restart_gnu' [04:55, 04:16](889 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:32, 07:58](1083 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:07, 08:23](1084 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:02, 06:16](888 MB) +PASS -- TEST 'hrrr_control_gnu' [04:47, 04:04](1071 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:42, 04:10](1138 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [17:27, 16:47](1029 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:48, 04:09](1071 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:20, 02:11](895 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:29, 02:09](938 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:43, 07:58](1079 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:23, 06:23] +PASS -- TEST 'control_diag_debug_gnu' [01:40, 01:16](1631 MB) +PASS -- TEST 'regional_debug_gnu' [07:03, 06:48](1155 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:04, 01:57](1106 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:19, 02:04](1093 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:14, 02:04](1100 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:23, 02:11](1101 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:22, 02:08](1273 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:15, 03:06](1101 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:05, 01:56](1101 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:08, 02:01](1096 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:18, 01:12](725 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:39, 01:27](723 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:49, 01:23](1723 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:16, 02:07](1101 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:30, 02:20](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:17, 03:40](1104 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:04, 05:04] +PASS -- TEST 'control_wam_debug_gnu' [05:34, 05:11](1559 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:07, 06:06] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:25, 07:53](961 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:58, 04:04](949 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:45, 07:07](982 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:37, 03:49](898 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:57, 04:13](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:29, 05:50](867 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:30, 02:09](863 MB) +PASS -- TEST 'conus13km_control_gnu' [03:06, 02:40](1268 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:27, 01:07](1174 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:49, 01:30](936 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:14, 11:13] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:56, 04:32](987 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:50, 08:49] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:07, 02:00](975 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:12, 01:58](969 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:08, 05:41](1283 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:08, 05:45](958 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [03:32, 03:18](1195 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:50, 05:34](1357 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:58, 08:58] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:03, 01:57](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [20:27, 20:27] + +PASS -- COMPILE 's2s_gnu' [20:03, 20:02] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:29, 08:50](3091 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:21, 04:21] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:40, 17:40] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:43, 26:02](3025 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:16, 03:16] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:55, 12:18](3064 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:45, 15:45] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:29, 03:22](763 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:20, 08:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:05, 09:48](1085 MB) SYNOPSIS: -Starting Date/Time: 20240913 11:40:40 -Ending Date/Time: 20240913 13:41:32 -Total Time: 02h:01m:51s +Starting Date/Time: 20240917 19:00:54 +Ending Date/Time: 20240917 23:06:40 +Total Time: 04h:06m:31s Compiles Completed: 58/58 Tests Completed: 245/245 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 82a3ea1600..d7b20d75c5 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,20 +1,20 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -32e792f3d0fbcd20035e2b3df5d47b7e1fd6817a +a04244cbba4aaa7cd72d1546981457f04bea51e1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) + 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) + 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) + a9364591091c836984a40107729720705847c195 FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) + b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -37,256 +37,256 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4163787 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4071792 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [44:17, 42:37] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:25, 08:05](2006 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [56:20, 54:41] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:15, 20:48](1899 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:19, 21:49](2022 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:01, 10:11](1146 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:02, 23:41](1854 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:20, 49:06] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:53, 20:20](1879 MB) - -PASS -- COMPILE 's2swa_intel' [45:17, 43:01] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:14, 09:41](2066 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:34, 09:44](2064 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:17, 05:28](1722 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:32, 09:44](2091 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:17, 05:32](1741 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:08, 09:08](2317 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:08, 09:51](2063 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:08, 08:14](2000 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:34, 09:46](2063 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:21, 06:54](2033 MB) - -PASS -- COMPILE 's2sw_intel' [43:17, 40:52] ( 1 warnings 1284 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:31, 07:23](1907 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:43, 09:30](1976 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:00] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [23:26, 16:28](2074 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:08] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [17:09, 11:21](1925 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [38:15, 36:40] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:22, 05:33](1974 MB) - -PASS -- COMPILE 's2s_intel' [43:14, 37:22] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:52, 10:16](3021 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:54, 03:25](3012 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:50, 01:57](2466 MB) - -PASS -- COMPILE 's2swa_faster_intel' [42:28, 32:52] ( 1 warnings 1615 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:40, 09:25](2069 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [00:16, 51:55] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:16, 20:51](1931 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:18, 10:04](1117 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:18, 24:03](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:13, 06:10] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:16, 33:19](1942 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [40:14, 37:46] ( 1 warnings 1126 remarks ) -PASS -- TEST 'control_flake_intel' [06:34, 04:21](652 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:11, 04:37](1538 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:14, 04:53](1547 MB) -PASS -- TEST 'control_latlon_intel' [07:07, 04:39](1540 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:16, 04:43](1539 MB) -PASS -- TEST 'control_c48_intel' [21:18, 18:20](1705 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:38, 10:12](832 MB) -PASS -- TEST 'control_c192_intel' [19:29, 16:24](1686 MB) -PASS -- TEST 'control_c384_intel' [27:25, 23:18](1820 MB) -PASS -- TEST 'control_c384gdas_intel' [18:15, 13:46](1009 MB) -PASS -- TEST 'control_stochy_intel' [04:31, 02:09](608 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:27, 01:14](437 MB) -PASS -- TEST 'control_lndp_intel' [03:31, 02:01](609 MB) -PASS -- TEST 'control_iovr4_intel' [05:34, 03:13](599 MB) -PASS -- TEST 'control_iovr5_intel' [05:34, 03:16](597 MB) -PASS -- TEST 'control_p8_intel' [08:26, 05:12](1835 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:39, 04:22](1843 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:23, 05:04](1825 MB) -PASS -- TEST 'control_restart_p8_intel' [05:54, 02:41](1059 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:25, 05:01](1823 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 02:39](1069 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:24, 05:11](1826 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:24, 04:55](1910 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:14, 09:00](1838 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:21, 05:33](1897 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:28, 04:25](1848 MB) -PASS -- TEST 'merra2_thompson_intel' [08:23, 04:49](1840 MB) -PASS -- TEST 'regional_control_intel' [10:04, 07:26](1013 MB) -PASS -- TEST 'regional_restart_intel' [06:38, 03:46](1006 MB) -PASS -- TEST 'regional_decomp_intel' [11:04, 07:50](998 MB) -PASS -- TEST 'regional_2threads_intel' [08:05, 04:43](1000 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:11, 07:25](1006 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:03, 07:27](1002 MB) - -PASS -- COMPILE 'rrfs_intel' [39:14, 37:01] ( 3 warnings 1102 remarks ) -PASS -- TEST 'rap_control_intel' [12:53, 10:07](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:17, 05:31](1162 MB) -PASS -- TEST 'rap_decomp_intel' [14:41, 10:32](991 MB) -PASS -- TEST 'rap_2threads_intel' [13:46, 09:34](1083 MB) -PASS -- TEST 'rap_restart_intel' [09:48, 05:12](987 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:54, 10:00](993 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:44, 10:43](983 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:51, 07:29](999 MB) -PASS -- TEST 'hrrr_control_intel' [11:45, 05:04](985 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:55, 05:13](983 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:43, 04:40](1048 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:30, 02:44](911 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:04, 10:01](988 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:31, 12:26](1931 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:32, 12:06](1941 MB) - -PASS -- COMPILE 'csawmg_intel' [36:15, 34:23] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:40, 08:03](968 MB) -PASS -- TEST 'control_ras_intel' [06:25, 04:23](669 MB) - -PASS -- COMPILE 'wam_intel' [36:13, 34:53] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [16:51, 14:18](1617 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [38:16, 36:29] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:02, 03:38](1842 MB) -PASS -- TEST 'regional_control_faster_intel' [08:42, 06:32](1000 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:12, 08:42] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:53, 02:53](1575 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:55, 02:41](1567 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:28, 03:54](776 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:28, 03:30](781 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:47, 05:36](1091 MB) -PASS -- TEST 'control_ras_debug_intel' [05:28, 03:33](785 MB) -PASS -- TEST 'control_diag_debug_intel' [05:52, 03:31](1636 MB) -PASS -- TEST 'control_debug_p8_intel' [05:52, 03:24](1866 MB) -PASS -- TEST 'regional_debug_intel' [26:50, 21:58](1031 MB) -PASS -- TEST 'rap_control_debug_intel' [08:31, 06:19](1170 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:31, 06:07](1162 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 06:14](1167 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:31, 06:15](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:31, 06:14](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:43, 06:34](1254 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 06:26](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:27, 06:13](1171 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:28, 06:11](1173 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:26, 06:04](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:25, 06:01](1168 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:26, 06:03](1173 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:25, 10:00](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [09:28, 06:01](1162 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:27, 07:17](1167 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:27, 06:04](1168 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:51, 10:37](1172 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:19] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:49, 16:33](1653 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:56] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:13, 05:09](1042 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:34, 08:10](903 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:44, 04:20](879 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:47, 07:50](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:44, 03:59](908 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:44, 04:38](859 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:38, 06:09](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:17](858 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:14, 32:04] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:48, 02:45](1104 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:36, 01:16](1041 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:39, 01:33](1016 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:15, 31:17] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:55, 05:23](913 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:25] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:28, 06:05](1045 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:29, 05:57](1040 MB) -PASS -- TEST 'conus13km_debug_intel' [20:58, 19:01](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:58, 18:51](866 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:51, 10:54](1088 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:52, 19:06](1225 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 05:02] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:29, 06:06](1089 MB) - -PASS -- COMPILE 'hafsw_intel' [41:15, 39:14] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:20, 06:44](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:04](1068 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:36, 09:06](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:27, 15:57](790 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:40, 17:48](804 MB) -PASS -- TEST 'gnv1_nested_intel' [09:57, 06:28](1676 MB) - -PASS -- COMPILE 'hafs_all_intel' [37:13, 35:27] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:33, 08:28](761 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:37, 08:28](746 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:09] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:37](1073 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:25, 02:08](1041 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:30](935 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:33](930 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:34](933 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:38](1071 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:38](1076 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:31](934 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:20, 07:39](895 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:23, 07:34](851 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:37](1074 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:25, 05:08](2416 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:25, 05:07](2432 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:26] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:23, 08:07](1026 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:18] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:31](1072 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:42] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:37, 01:15](251 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:03](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:41](263 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:14, 35:39] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:24, 04:45](1905 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:14, 35:12] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:06, 04:34](1898 MB) - -PASS -- COMPILE 'atml_intel' [44:14, 42:33] ( 8 warnings 1167 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:09, 05:42](1855 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:11, 05:43](1869 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 03:11](1070 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:12, 06:26] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:13, 07:15](1890 MB) - -PASS -- COMPILE 'atmw_intel' [38:13, 36:36] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:04, 02:18](1851 MB) - -PASS -- COMPILE 'atmaero_intel' [36:14, 34:58] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:08, 05:13](1945 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:05, 06:12](1719 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:57, 06:19](1726 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:14, 30:59] ( 3 warnings 996 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:36, 15:13](1027 MB) +PASS -- COMPILE 's2swa_32bit_intel' [51:30, 42:19] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:33, 08:12](1988 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [58:31, 48:45] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [58:22, 20:45](1895 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:26, 22:24](2023 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:08, 10:29](1141 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [58:22, 23:54](1857 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [59:31, 50:07] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [57:04, 20:22](1888 MB) + +PASS -- COMPILE 's2swa_intel' [53:30, 43:23] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [49:21, 09:55](2024 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:35, 09:50](2069 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:18, 05:27](1722 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [49:24, 09:49](2089 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:20, 05:33](1746 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [46:16, 09:15](2324 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [49:14, 10:00](2044 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [45:34, 08:17](2002 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [46:38, 09:42](2062 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [46:24, 07:01](2024 MB) + +PASS -- COMPILE 's2sw_intel' [49:30, 40:06] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [34:28, 07:29](1896 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [37:39, 09:20](1983 MB) + +PASS -- COMPILE 's2swa_debug_intel' [32:14, 06:13] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [31:24, 16:29](2110 MB) + +PASS -- COMPILE 's2sw_debug_intel' [30:14, 05:53] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [26:10, 11:21](1932 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:22, 36:28] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:37, 05:30](1983 MB) + +PASS -- COMPILE 's2s_intel' [14:21, 37:09] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:52, 10:16](3012 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:54, 03:28](3004 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:56](2458 MB) + +PASS -- COMPILE 's2swa_faster_intel' [08:32, 32:19] ( 1 warnings 1615 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:34, 09:22](2078 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [01:22, 47:10] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:19, 20:53](1932 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:12, 10:40](1122 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:17, 23:54](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [20:14, 05:59] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:13, 33:18](1935 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:15, 37:26] ( 1 warnings 1126 remarks ) +PASS -- TEST 'control_flake_intel' [07:30, 04:30](648 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [10:09, 04:24](1534 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:12, 04:33](1548 MB) +PASS -- TEST 'control_latlon_intel' [10:04, 04:26](1535 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:11, 04:32](1543 MB) +PASS -- TEST 'control_c48_intel' [26:19, 18:03](1703 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [15:38, 10:19](831 MB) +PASS -- TEST 'control_c192_intel' [18:26, 15:57](1685 MB) +PASS -- TEST 'control_c384_intel' [29:19, 23:04](1813 MB) +PASS -- TEST 'control_c384gdas_intel' [21:08, 13:25](1010 MB) +PASS -- TEST 'control_stochy_intel' [04:30, 02:15](601 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:27, 01:18](438 MB) +PASS -- TEST 'control_lndp_intel' [04:30, 02:10](608 MB) +PASS -- TEST 'control_iovr4_intel' [06:33, 03:23](602 MB) +PASS -- TEST 'control_iovr5_intel' [06:32, 03:23](605 MB) +PASS -- TEST 'control_p8_intel' [11:25, 05:02](1819 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:36, 04:00](1843 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:21, 04:38](1828 MB) +PASS -- TEST 'control_restart_p8_intel' [04:54, 02:39](1054 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:23, 04:52](1828 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:54, 02:35](1073 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:26, 04:55](1821 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:16, 04:29](1916 MB) +PASS -- TEST 'control_p8_lndp_intel' [14:11, 08:45](1823 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:23, 05:12](1886 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:24, 04:08](1845 MB) +PASS -- TEST 'merra2_thompson_intel' [07:20, 04:29](1848 MB) +PASS -- TEST 'regional_control_intel' [13:03, 07:16](1016 MB) +PASS -- TEST 'regional_restart_intel' [06:35, 03:47](1010 MB) +PASS -- TEST 'regional_decomp_intel' [14:03, 07:25](998 MB) +PASS -- TEST 'regional_2threads_intel' [07:01, 04:33](993 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [13:42, 07:02](1000 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [13:37, 06:59](1003 MB) + +PASS -- COMPILE 'rrfs_intel' [38:16, 36:33] ( 3 warnings 1102 remarks ) +PASS -- TEST 'rap_control_intel' [13:49, 10:20](993 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:12, 05:45](1180 MB) +PASS -- TEST 'rap_decomp_intel' [13:48, 10:55](988 MB) +PASS -- TEST 'rap_2threads_intel' [12:56, 09:50](1078 MB) +PASS -- TEST 'rap_restart_intel' [07:45, 05:13](986 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:56, 10:14](995 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:47, 10:49](984 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:47, 07:31](995 MB) +PASS -- TEST 'hrrr_control_intel' [08:45, 05:22](983 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:47, 05:29](981 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:52, 04:55](1052 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:47](913 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:04, 10:13](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:35, 12:41](1940 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:35, 12:19](1935 MB) + +PASS -- COMPILE 'csawmg_intel' [36:15, 34:16] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:47, 08:03](974 MB) +PASS -- TEST 'control_ras_intel' [06:26, 04:18](672 MB) + +PASS -- COMPILE 'wam_intel' [36:15, 34:42] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [16:43, 14:13](1628 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [42:15, 36:38] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:55, 03:35](1842 MB) +PASS -- TEST 'regional_control_faster_intel' [08:38, 06:31](1003 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:21] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:47, 02:52](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:52, 03:05](1570 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:28, 03:43](777 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:27, 03:19](784 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:41, 05:33](1095 MB) +PASS -- TEST 'control_ras_debug_intel' [06:28, 03:23](787 MB) +PASS -- TEST 'control_diag_debug_intel' [06:49, 03:30](1635 MB) +PASS -- TEST 'control_debug_p8_intel' [06:50, 03:23](1863 MB) +PASS -- TEST 'regional_debug_intel' [25:50, 22:12](1040 MB) +PASS -- TEST 'rap_control_debug_intel' [09:30, 06:16](1165 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:30, 06:07](1163 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:30, 06:13](1168 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:30, 06:18](1160 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:30, 06:17](1162 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:41, 06:31](1258 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:30, 06:22](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:28, 06:23](1163 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:26, 06:09](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:05](1168 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:26, 06:00](1163 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 06:08](1163 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:27, 10:04](1158 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:28, 06:01](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 07:23](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:25, 06:04](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:49, 10:39](1174 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:03] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:56, 16:33](1644 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [33:13, 30:22] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:02, 05:05](1052 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:39, 08:09](908 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:45, 04:20](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:39, 07:52](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:45, 04:02](910 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:38, 04:35](863 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:11](898 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:27, 02:19](848 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [35:14, 32:00] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:51, 02:48](1109 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:13](1048 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:31](1022 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:16, 31:18] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:53, 05:28](914 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:10] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 06:06](1045 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:26, 05:58](1041 MB) +PASS -- TEST 'conus13km_debug_intel' [20:57, 18:42](1153 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:54, 19:07](895 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:49, 10:52](1097 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:49, 18:45](1220 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 04:53] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:28, 06:06](1094 MB) + +PASS -- COMPILE 'hafsw_intel' [41:17, 38:47] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:22, 06:49](709 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:15](1066 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:37, 09:11](750 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:29, 16:04](789 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:41, 17:56](807 MB) +PASS -- TEST 'gnv1_nested_intel' [10:57, 06:20](1666 MB) + +PASS -- COMPILE 'hafs_all_intel' [37:19, 35:19] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:27, 08:28](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:29, 08:25](743 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:18] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:33](1071 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:09](1048 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:28](936 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:33](941 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:33](934 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:33](1077 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:35](1080 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:30](931 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:20, 07:42](896 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:19, 07:37](856 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:35](1077 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 05:14](2426 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:25, 05:26](2415 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:26] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:22, 08:05](1019 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:15, 08:20] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:32](1070 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:49] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:34, 01:17](239 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:04](266 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:26, 00:41](260 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:17, 35:54] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:07, 04:48](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [36:18, 35:03] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:12, 04:35](1895 MB) + +PASS -- COMPILE 'atml_intel' [38:17, 36:41] ( 8 warnings 1167 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:13, 05:48](1863 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:12, 05:47](1868 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:45, 03:10](1069 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:04] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:12, 07:21](1882 MB) + +PASS -- COMPILE 'atmw_intel' [39:16, 37:23] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:57, 02:19](1860 MB) + +PASS -- COMPILE 'atmaero_intel' [37:15, 34:57] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:02, 05:15](1949 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:06, 06:18](1719 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:51, 06:19](1739 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:15, 31:16] ( 3 warnings 996 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:38, 15:13](1026 MB) SYNOPSIS: -Starting Date/Time: 20240917 07:28:03 -Ending Date/Time: 20240917 11:58:32 -Total Time: 04h:31m:25s +Starting Date/Time: 20240919 03:36:02 +Ending Date/Time: 20240919 09:46:13 +Total Time: 06h:10m:46s Compiles Completed: 37/37 Tests Completed: 165/165 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index ae15cf0bed..70cc1e8185 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,20 +1,20 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -a859b1acf58f86110b5dfb42c0445b2ea0fa39cb +4ac63b06501f964ea8feb3cb82fe4bd948d23093 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) + 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) + 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) + a9364591091c836984a40107729720705847c195 FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) + b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -37,355 +37,289 @@ 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-20240909 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1093282 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3988982 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:12, 16:13] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:37, 14:47](2101 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:12, 25:40] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [28:59, 18:08](1956 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:53, 19:43](2140 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:40, 09:01](1207 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:07, 20:21](1876 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:12, 19:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:52, 17:38](1955 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 08:51] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [34:43, 27:29](1928 MB) - -PASS -- COMPILE 's2swa_intel' [23:12, 17:49] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [22:48, 14:43](2156 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:41, 14:31](2148 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:47, 07:50](1801 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [22:48, 14:33](2170 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:46, 07:53](1711 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:30, 13:15](2435 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [21:24, 14:26](2149 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [19:29, 12:12](2053 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [22:51, 14:34](2154 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [24:33, 16:21](2717 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [17:20, 09:03](2711 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:16, 10:41](3692 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:17, 06:59](3499 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:27, 05:55](2106 MB) - -PASS -- COMPILE 's2sw_intel' [20:11, 15:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [19:21, 13:53](1974 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:26, 07:56](2055 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:12, 08:50] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [20:17, 13:31](2182 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:11, 08:08] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [16:07, 09:18](1997 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:11, 14:20] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:17, 04:45](2049 MB) - -PASS -- COMPILE 's2s_intel' [19:12, 14:14] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:59, 08:34](3045 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [10:00, 03:30](3032 MB) -PASS -- TEST 'cpld_restart_c48_intel' [13:05, 02:15](2486 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:13] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [22:47, 14:39](2149 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:12, 19:52] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:25, 18:19](2008 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:37, 12:39](1259 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:24, 21:18](1928 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:11, 08:13] ( 1523 warnings 2000 remarks ) -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_debug_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 'atm_dyn32_intel' [19:11, 13:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [10:31, 03:41](697 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:52, 03:31](1582 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:56, 03:37](1593 MB) -PASS -- TEST 'control_latlon_intel' [09:46, 03:32](1581 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:57, 03:34](1576 MB) -PASS -- TEST 'control_c48_intel' [21:00, 14:26](1708 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [14:40, 08:07](842 MB) -PASS -- TEST 'control_c192_intel' [20:02, 13:01](1742 MB) -PASS -- TEST 'control_c384_intel' [24:05, 16:18](2003 MB) -PASS -- TEST 'control_c384gdas_intel' [18:11, 09:46](1335 MB) -PASS -- TEST 'control_stochy_intel' [08:27, 01:52](653 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:43, 01:03](484 MB) -PASS -- TEST 'control_lndp_intel' [06:30, 01:46](645 MB) -PASS -- TEST 'control_iovr4_intel' [05:29, 02:45](649 MB) -PASS -- TEST 'control_iovr5_intel' [05:23, 02:45](649 MB) -PASS -- TEST 'control_p8_intel' [11:07, 04:06](1871 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:17, 03:33](1879 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:32, 04:04](1872 MB) -PASS -- TEST 'control_restart_p8_intel' [12:41, 02:20](1096 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:19, 04:00](1864 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [13:41, 02:15](1138 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:06, 04:06](1854 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:05, 04:14](1945 MB) -PASS -- TEST 'control_p8_lndp_intel' [14:00, 07:08](1871 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:39, 04:51](1951 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:41, 03:27](1885 MB) -PASS -- TEST 'merra2_thompson_intel' [11:52, 03:49](1893 MB) -PASS -- TEST 'regional_control_intel' [12:55, 06:27](1078 MB) -PASS -- TEST 'regional_restart_intel' [06:55, 03:31](1074 MB) -PASS -- TEST 'regional_decomp_intel' [13:55, 06:47](1077 MB) -PASS -- TEST 'regional_2threads_intel' [10:47, 04:38](1066 MB) -PASS -- TEST 'regional_noquilt_intel' [12:48, 06:23](1382 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:02, 06:25](1079 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:44, 06:29](1071 MB) -PASS -- TEST 'regional_wofs_intel' [14:48, 07:56](1903 MB) - -PASS -- COMPILE 'rrfs_intel' [19:12, 12:58] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [15:38, 08:28](1058 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:06, 05:10](1250 MB) -PASS -- TEST 'rap_decomp_intel' [20:22, 08:42](1025 MB) -PASS -- TEST 'rap_2threads_intel' [19:21, 08:31](1159 MB) -PASS -- TEST 'rap_restart_intel' [10:51, 04:25](1039 MB) -PASS -- TEST 'rap_sfcdiff_intel' [18:48, 08:22](1040 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [17:21, 08:38](1023 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [13:51, 07:04](1074 MB) -PASS -- TEST 'hrrr_control_intel' [12:01, 04:21](1029 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [11:49, 04:26](1020 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [11:01, 04:10](1089 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:34, 02:21](945 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:42, 08:17](1045 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:34, 09:59](1985 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:36, 09:43](2023 MB) - -PASS -- COMPILE 'csawmg_intel' [18:12, 13:00] -PASS -- TEST 'control_csawmg_intel' [10:41, 06:36](1012 MB) -PASS -- TEST 'control_ras_intel' [07:35, 03:31](714 MB) - -PASS -- COMPILE 'wam_intel' [17:12, 13:00] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:59, 12:38](1654 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 13:16] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:57, 03:17](1870 MB) -PASS -- TEST 'regional_control_faster_intel' [08:54, 06:11](1086 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:12, 09:56] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:26, 02:21](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:14, 02:17](1600 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:32, 03:07](825 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:28, 02:53](817 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:36, 04:22](1129 MB) -PASS -- TEST 'control_ras_debug_intel' [05:25, 02:58](834 MB) -PASS -- TEST 'control_diag_debug_intel' [09:47, 02:49](1685 MB) -PASS -- TEST 'control_debug_p8_intel' [09:46, 02:57](1895 MB) -PASS -- TEST 'regional_debug_intel' [23:49, 17:45](1094 MB) -PASS -- TEST 'rap_control_debug_intel' [11:28, 04:57](1208 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:35, 04:59](1208 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:29, 04:59](1209 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:27, 05:10](1209 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:24, 05:06](1209 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:31, 05:14](1289 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:05](1202 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 05:10](1207 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:29, 05:13](1208 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 05:04](1209 MB) -PASS -- TEST 'rap_noah_debug_intel' [11:32, 05:16](1209 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [11:24, 05:19](1213 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:25, 08:10](1205 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [11:30, 05:20](1200 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:36, 05:56](1212 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:24, 05:19](1212 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:32, 08:26](1208 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 07:02] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:52, 13:13](1683 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:12, 12:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:06, 05:41](1129 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:21, 07:57](989 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:06, 04:46](953 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:27, 08:30](1064 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:11, 04:32](946 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:11, 04:43](897 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:39, 06:07](977 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:01, 02:03](880 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 12:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:56, 02:55](1179 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:05, 01:23](1118 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:55, 01:52](1064 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:12, 12:53] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:04, 04:39](976 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 07:00] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:31, 05:03](1083 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:31, 04:59](1085 MB) -PASS -- TEST 'conus13km_debug_intel' [19:56, 15:20](1233 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:55, 15:22](932 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:01, 09:00](1170 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:02, 15:25](1305 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:55] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:30, 05:15](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [16:14, 14:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [11:23, 06:28](740 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:40, 08:41](1114 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:42, 08:33](818 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [30:39, 24:30](842 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [34:29, 28:24](874 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:06, 08:46](497 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:36, 09:25](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:02, 03:32](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:33, 11:13](483 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:06, 04:47](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:19, 04:33](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:03, 05:47](570 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:35, 01:38](402 MB) -PASS -- TEST 'gnv1_nested_intel' [13:28, 05:05](1732 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:46] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:13, 13:44](590 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:12, 14:15] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:18, 19:10](637 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:17, 13:35](725 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:14, 15:40] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:42, 09:14](716 MB) - -PASS -- COMPILE 'hafs_all_intel' [21:13, 15:18] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [14:23, 08:47](812 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:17, 08:46](796 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:00, 16:51](1206 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:15, 07:51] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:21, 03:18](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:57](1117 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:19, 03:18](1023 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:19, 03:18](1019 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:19, 02:53](1023 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:19, 02:59](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:19, 02:59](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:26, 02:50](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:14, 06:34](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:25, 06:27](1001 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:18, 03:00](1154 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 04:22](2389 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:23](2456 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 05:03] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [13:23, 06:30](1075 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:15, 09:04] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:20, 03:08](1160 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 01:32] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:41, 01:04](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:26, 00:58](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:31, 01:21](325 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:13, 13:37] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:21, 04:50](1970 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:16, 13:13] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:33, 04:29](1944 MB) - -PASS -- COMPILE 'atml_intel' [16:17, 14:29] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:49, 05:49](1873 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:34, 05:49](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:04, 05:16](1069 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:16, 07:52] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:36, 06:39](1891 MB) - -PASS -- COMPILE 'atmw_intel' [19:15, 13:29] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:25, 02:38](1900 MB) - -PASS -- COMPILE 'atmaero_intel' [18:20, 13:26] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:18, 04:55](1993 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:28, 05:34](1761 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:01, 05:49](1778 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:14, 06:09] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [30:03, 21:56](4558 MB) - -PASS -- COMPILE 'atm_fbh_intel' [19:25, 12:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:33, 15:02](1083 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:11, 16:39] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:33, 14:36](2092 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 19:54] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:39, 18:08](1950 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [51:42, 19:56](2124 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [42:32, 10:41](1237 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:39, 19:59](1874 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:31] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:01, 17:46](1949 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:10, 09:12] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:43, 28:13](1933 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 16:37] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [23:35, 14:38](2155 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:44, 14:44](2153 MB) +PASS -- TEST 'cpld_restart_p8_intel' [34:03, 07:59](1806 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [23:35, 14:41](2169 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [35:07, 08:04](1708 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [22:32, 13:38](2428 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [23:35, 14:24](2144 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [18:32, 12:30](2047 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:44, 14:12](2153 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [23:35, 16:28](2720 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [35:40, 08:55](2715 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:49, 10:57](3685 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [39:31, 07:11](3508 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:28, 06:12](2100 MB) + +PASS -- COMPILE 's2sw_intel' [19:11, 16:46] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [21:19, 13:45](1980 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:18, 07:54](2046 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:10, 09:12] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:16, 13:36](2186 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:10, 08:24] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:18, 09:09](1999 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 14:59] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:14, 04:45](2043 MB) + +PASS -- COMPILE 's2s_intel' [19:11, 16:48] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [16:09, 08:44](3041 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [11:06, 03:27](3032 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:02, 01:52](2487 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:59] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [21:52, 14:53](2148 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:07, 18:19](2009 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [34:44, 09:56](1240 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:39, 20:43](1931 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:19] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:11, 29:57](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:11, 13:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [31:34, 03:50](698 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [30:50, 03:38](1574 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [29:51, 03:40](1583 MB) +PASS -- TEST 'control_latlon_intel' [29:39, 03:36](1579 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [30:55, 03:33](1580 MB) +PASS -- TEST 'control_c48_intel' [51:56, 14:49](1715 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [43:50, 08:08](846 MB) +PASS -- TEST 'control_c192_intel' [38:59, 13:31](1750 MB) +PASS -- TEST 'control_c384_intel' [43:27, 16:58](1990 MB) +PASS -- TEST 'control_c384gdas_intel' [37:12, 09:58](1342 MB) +PASS -- TEST 'control_stochy_intel' [37:34, 02:27](649 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:43, 01:25](479 MB) +PASS -- TEST 'control_lndp_intel' [34:29, 02:12](648 MB) +PASS -- TEST 'control_iovr4_intel' [31:32, 03:14](649 MB) +PASS -- TEST 'control_iovr5_intel' [30:46, 03:31](649 MB) +PASS -- TEST 'control_p8_intel' [30:14, 04:39](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [29:26, 04:12](1880 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [23:33, 04:41](1876 MB) +PASS -- TEST 'control_restart_p8_intel' [11:40, 02:29](1094 MB) +PASS -- TEST 'control_noqr_p8_intel' [22:21, 04:53](1864 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [11:53, 02:41](1127 MB) +PASS -- TEST 'control_decomp_p8_intel' [18:26, 05:21](1862 MB) +PASS -- TEST 'control_2threads_p8_intel' [17:12, 04:46](1955 MB) +PASS -- TEST 'control_p8_lndp_intel' [20:42, 08:11](1869 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [18:44, 05:56](1949 MB) +PASS -- TEST 'control_p8_mynn_intel' [15:02, 04:16](1892 MB) +PASS -- TEST 'merra2_thompson_intel' [12:49, 04:25](1889 MB) +PASS -- TEST 'regional_control_intel' [14:46, 07:19](1081 MB) +PASS -- TEST 'regional_restart_intel' [07:45, 03:59](1078 MB) +PASS -- TEST 'regional_decomp_intel' [15:44, 07:41](1073 MB) +PASS -- TEST 'regional_2threads_intel' [11:51, 06:00](1071 MB) +PASS -- TEST 'regional_noquilt_intel' [10:50, 07:02](1382 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:16, 07:14](1068 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:40, 07:13](1087 MB) +PASS -- TEST 'regional_wofs_intel' [11:51, 08:18](1907 MB) + +PASS -- COMPILE 'rrfs_intel' [16:11, 13:21] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [37:28, 08:36](1058 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [34:04, 05:26](1250 MB) +PASS -- TEST 'rap_decomp_intel' [38:04, 08:52](1023 MB) +PASS -- TEST 'rap_2threads_intel' [23:23, 08:47](1154 MB) +PASS -- TEST 'rap_restart_intel' [08:44, 04:32](1037 MB) +PASS -- TEST 'rap_sfcdiff_intel' [37:28, 08:28](1051 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:02, 08:48](1028 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:42, 06:19](1070 MB) +PASS -- TEST 'hrrr_control_intel' [07:44, 05:08](1026 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:18, 04:31](1018 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [15:02, 04:17](1083 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:27, 02:29](940 MB) +PASS -- TEST 'rrfs_v1beta_intel' [18:42, 08:42](1044 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [18:38, 10:12](1983 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:40, 10:02](2021 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:33] +PASS -- TEST 'control_csawmg_intel' [20:39, 06:37](1018 MB) +PASS -- TEST 'control_ras_intel' [18:24, 03:31](709 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:42] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [26:48, 12:45](1653 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 13:28] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [12:24, 03:23](1873 MB) +PASS -- TEST 'regional_control_faster_intel' [12:12, 06:34](1076 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 10:18] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:33, 02:22](1610 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:14, 02:23](1602 MB) +PASS -- TEST 'control_stochy_debug_intel' [10:33, 03:14](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [10:24, 02:56](818 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:43, 04:54](1132 MB) +PASS -- TEST 'control_ras_debug_intel' [09:28, 02:51](828 MB) +PASS -- TEST 'control_diag_debug_intel' [08:57, 02:56](1671 MB) +PASS -- TEST 'control_debug_p8_intel' [09:50, 04:13](1896 MB) +PASS -- TEST 'regional_debug_intel' [25:51, 18:25](1096 MB) +PASS -- TEST 'rap_control_debug_intel' [10:50, 05:00](1209 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:36, 05:28](1201 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:30, 05:33](1212 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:26, 05:42](1214 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:34, 05:33](1205 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:37, 05:40](1285 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:26, 05:51](1208 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:42](1213 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:27, 05:40](1210 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:22, 05:23](1208 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:57](1212 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:09](1203 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:17](1207 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 04:49](1205 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:36, 06:40](1204 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:32, 05:02](1217 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [17:40, 14:59](1214 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:11, 06:39] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [27:51, 13:16](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:13, 12:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 05:23](1128 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:22, 07:29](1000 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:14, 04:17](928 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:58, 07:39](1072 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:53, 03:57](943 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:24, 04:20](888 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:36, 05:25](971 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:45, 02:06](880 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 13:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:23, 02:48](1162 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:55, 01:23](1115 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:45, 01:30](1063 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:11, 13:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:46, 04:35](972 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:12, 06:47] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:28, 04:56](1087 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:35, 04:46](1082 MB) +PASS -- TEST 'conus13km_debug_intel' [20:13, 14:49](1234 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:03, 15:14](933 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:55, 08:55](1168 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:56, 14:57](1308 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:12, 06:38] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:35, 05:01](1137 MB) + +PASS -- COMPILE 'hafsw_intel' [18:12, 14:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:30, 06:25](746 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:41, 07:06](1121 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:44, 07:46](813 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:31, 25:19](851 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [35:39, 29:00](868 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:17, 07:06](499 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:48, 08:30](506 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:01, 03:38](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:47, 09:51](481 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:59, 04:45](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:05, 04:35](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:03, 05:48](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:44, 01:37](399 MB) +PASS -- TEST 'gnv1_nested_intel' [09:39, 04:24](1726 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:12, 07:26] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:05, 14:09](582 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:13, 14:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:25, 12:56](642 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:20, 13:01](732 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:12, 14:33] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:55, 08:42](718 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:12, 13:56] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:23, 07:42](811 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:18, 07:42](798 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:01, 16:29](1203 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:12, 09:49] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:00](1161 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:59](1116 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:53](1025 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:57](1026 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 02:56](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:01](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:20, 03:01](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:59](1021 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:18, 06:44](1025 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:22, 06:28](1008 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 03:00](1145 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:22, 04:26](2452 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:22, 04:24](2451 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 05:38] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 06:38](1084 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 08:21] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 03:03](1150 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:12, 01:23] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 01:04](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:57](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:39](321 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 13:23] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:21, 04:26](1965 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:11, 13:08] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:03, 04:13](1940 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 13:45] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:37, 05:00](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:26, 05:00](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 02:52](1072 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:11, 08:02] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:35, 06:05](1888 MB) + +PASS -- COMPILE 'atmw_intel' [20:11, 14:06] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:27, 02:13](1900 MB) + +PASS -- COMPILE 'atmaero_intel' [20:11, 13:25] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:14, 04:37](1987 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:17, 05:19](1769 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:07, 05:29](1779 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:10, 06:43] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:05, 20:23](4556 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:12, 12:17] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:33, 13:50](1084 MB) SYNOPSIS: -Starting Date/Time: 20240913 12:02:34 -Ending Date/Time: 20240913 14:17:00 -Total Time: 02h:15m:35s +Starting Date/Time: 20240919 08:53:06 +Ending Date/Time: 20240919 11:17:22 +Total Time: 02h:25m:06s Compiles Completed: 42/42 -Tests Completed: 185/186 -Failed Tests: -* TEST cpld_debug_pdlib_p8_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2220/tests/logs/log_orion/run_cpld_debug_pdlib_p8_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ORION REGRESSION TESTING LOG==== -====START OF ORION REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -a859b1acf58f86110b5dfb42c0445b2ea0fa39cb - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1471733 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 07:33] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:10, 30:03](1977 MB) - -SYNOPSIS: -Starting Date/Time: 20240913 14:21:21 -Ending Date/Time: 20240913 15:02:42 -Total Time: 00h:41m:30s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 186/186 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index df6270b162..f4d5157f84 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,20 +1,20 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -a859b1acf58f86110b5dfb42c0445b2ea0fa39cb +e3bd67a093b800f028092d252373abe1b7a7602b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - bc7831aa390c48bb32579384ccce05c32c80de95 CMEPS-interface/CMEPS (remotes/origin/feature/ufs_fire_cpl) + 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) + 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - ede84904196654cdef2dff508cf0bc092d55d420 FV3 (remotes/origin/feature/ufs_fire_cpl) + a9364591091c836984a40107729720705847c195 FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 5c8eb2f6590580a6b8b081f4ca66551406494711 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4357-g5c8eb2f6) + b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -37,238 +37,238 @@ 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-20240909 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_49815 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3481 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:30, 11:20] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:34, 02:17](3104 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:28, 11:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:35, 02:31](1816 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [55:21, 03:12](1843 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [54:01, 03:03](973 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:36, 03:01](1786 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:30, 11:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:33, 01:52](1811 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:16] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [20:42, 03:02](1838 MB) - -PASS -- COMPILE 's2swa_intel' [12:28, 11:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:35, 02:36](3133 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:35, 02:45](3128 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:05, 02:46](3058 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:35, 02:35](3147 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:05, 02:43](3079 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:35, 02:01](3369 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:35, 02:44](3127 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:36, 02:01](3074 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:35, 02:50](3130 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [15:44, 05:22](4123 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [56:19, 04:21](4264 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:35, 02:43](3113 MB) - -PASS -- COMPILE 's2sw_intel' [12:29, 10:54] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:35, 02:43](1834 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:35, 02:47](1891 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:33] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:36, 02:04](1889 MB) - -PASS -- COMPILE 's2s_intel' [12:28, 10:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [15:34, 01:48](2874 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [15:34, 02:24](2877 MB) -PASS -- TEST 'cpld_restart_c48_intel' [10:26, 02:04](2293 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:36, 16:09] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:27, 03:09](3129 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:30, 11:26] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:34, 01:49](1829 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [55:57, 02:06](990 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [55:28, 02:32](1806 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:06] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [13:21, 02:48](1853 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:12, 02:19](566 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:12, 02:17](1466 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:12, 02:16](1469 MB) -PASS -- TEST 'control_latlon_intel' [05:12, 02:08](1473 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:12, 02:14](1472 MB) -PASS -- TEST 'control_c48_intel' [05:11, 02:28](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [05:11, 01:42](692 MB) -PASS -- TEST 'control_c192_intel' [05:12, 02:05](1599 MB) -PASS -- TEST 'control_c384_intel' [05:16, 03:05](1883 MB) -PASS -- TEST 'control_c384gdas_intel' [05:16, 03:43](1064 MB) -PASS -- TEST 'control_stochy_intel' [05:12, 02:28](526 MB) -PASS -- TEST 'control_stochy_restart_intel' [00:42, 02:00](328 MB) -PASS -- TEST 'control_lndp_intel' [04:52, 02:21](525 MB) -PASS -- TEST 'control_iovr4_intel' [04:05, 01:49](519 MB) -PASS -- TEST 'control_iovr5_intel' [03:59, 01:46](521 MB) -PASS -- TEST 'control_p8_intel' [03:55, 02:18](1757 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:54, 02:44](1762 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [00:38, 02:28](1766 MB) -PASS -- TEST 'control_restart_p8_intel' [57:21, 02:28](915 MB) -PASS -- TEST 'control_noqr_p8_intel' [00:13, 02:20](1759 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [53:42, 02:45](924 MB) -PASS -- TEST 'control_decomp_p8_intel' [59:24, 02:23](1755 MB) -PASS -- TEST 'control_2threads_p8_intel' [59:21, 02:36](1851 MB) -PASS -- TEST 'control_p8_lndp_intel' [59:15, 01:59](1768 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [59:09, 03:07](1819 MB) -PASS -- TEST 'control_p8_mynn_intel' [59:06, 02:58](1768 MB) -PASS -- TEST 'merra2_thompson_intel' [59:02, 02:34](1762 MB) -PASS -- TEST 'regional_control_intel' [58:39, 02:05](838 MB) -PASS -- TEST 'regional_restart_intel' [50:50, 01:21](842 MB) -PASS -- TEST 'regional_decomp_intel' [58:37, 01:56](846 MB) -PASS -- TEST 'regional_2threads_intel' [57:27, 01:46](896 MB) -PASS -- TEST 'regional_noquilt_intel' [57:22, 01:22](1168 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [57:17, 02:18](839 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [57:10, 01:13](840 MB) -PASS -- TEST 'regional_wofs_intel' [56:18, 01:14](1569 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:29] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [55:27, 02:55](912 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [52:43, 02:04](1046 MB) -PASS -- TEST 'rap_decomp_intel' [52:41, 02:15](910 MB) -PASS -- TEST 'rap_2threads_intel' [52:32, 02:08](994 MB) -PASS -- TEST 'rap_restart_intel' [44:54, 03:01](776 MB) -PASS -- TEST 'rap_sfcdiff_intel' [52:27, 02:50](912 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [52:17, 02:25](908 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [42:12, 02:39](777 MB) -PASS -- TEST 'hrrr_control_intel' [52:11, 02:05](902 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [52:10, 02:00](904 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [52:10, 02:28](980 MB) -PASS -- TEST 'hrrr_control_restart_intel' [46:00, 02:02](735 MB) -PASS -- TEST 'rrfs_v1beta_intel' [51:56, 02:57](902 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [51:43, 01:37](1867 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [51:39, 01:46](1848 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 07:53] -PASS -- TEST 'control_csawmg_intel' [06:12, 01:31](863 MB) -PASS -- TEST 'control_ras_intel' [06:12, 01:53](561 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 07:57] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [06:12, 01:33](1557 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:27, 08:06] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [51:32, 02:57](1754 MB) -PASS -- TEST 'regional_control_faster_intel' [51:25, 01:22](836 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:25, 07:24] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [50:51, 01:39](1494 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [50:51, 01:48](1502 MB) -PASS -- TEST 'control_stochy_debug_intel' [50:41, 01:42](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [50:29, 02:00](704 MB) -PASS -- TEST 'control_csawmg_debug_intel' [50:16, 01:36](1007 MB) -PASS -- TEST 'control_ras_debug_intel' [49:33, 01:55](708 MB) -PASS -- TEST 'control_diag_debug_intel' [48:04, 02:14](1562 MB) -PASS -- TEST 'control_debug_p8_intel' [47:40, 02:10](1791 MB) -PASS -- TEST 'regional_debug_intel' [47:13, 01:19](888 MB) -PASS -- TEST 'rap_control_debug_intel' [46:14, 01:43](1085 MB) -PASS -- TEST 'hrrr_control_debug_intel' [46:09, 01:55](1079 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [46:02, 01:48](1085 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [46:00, 01:44](1091 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [46:00, 01:46](1085 MB) -PASS -- TEST 'rap_diag_debug_intel' [45:33, 01:31](1169 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [45:15, 01:35](1087 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [45:07, 01:33](1089 MB) -PASS -- TEST 'rap_lndp_debug_intel' [45:01, 01:46](1087 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [44:39, 01:34](1087 MB) -PASS -- TEST 'rap_noah_debug_intel' [44:34, 01:45](1080 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [44:06, 01:36](1082 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [43:32, 01:32](1081 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [43:29, 01:42](1086 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [42:38, 01:53](1087 MB) -PASS -- TEST 'rap_flake_debug_intel' [42:37, 01:42](1086 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [42:16, 02:47](1089 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:27] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [08:13, 01:18](1593 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:25, 07:52] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [42:13, 02:15](919 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [41:58, 02:48](784 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [41:37, 03:11](784 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [41:31, 02:40](838 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [41:29, 03:21](834 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [41:09, 02:35](781 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:57, 02:26](685 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [34:56, 02:14](667 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:57] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [41:06, 02:02](989 MB) -PASS -- TEST 'conus13km_2threads_intel' [36:16, 02:00](995 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [36:00, 01:42](865 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 08:00] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:40, 02:26](815 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:27, 11:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [45:14, 02:21](3099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:54] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [44:13, 02:59](1821 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:41, 02:35](1843 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [24:37, 03:05](979 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [44:14, 02:29](1786 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 11:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [44:14, 02:22](1815 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:26] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [50:21, 02:48](1840 MB) + +PASS -- COMPILE 's2swa_intel' [13:28, 11:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [44:13, 02:34](3130 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [44:13, 02:55](3128 MB) +PASS -- TEST 'cpld_restart_p8_intel' [32:35, 02:20](3057 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [44:13, 02:39](3149 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [32:35, 02:16](3074 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [44:13, 02:27](3368 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [44:13, 02:46](3123 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [44:14, 02:21](3073 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [44:13, 02:56](3128 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [44:22, 06:53](4115 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:36, 05:15](4263 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [44:13, 02:53](3111 MB) + +PASS -- COMPILE 's2sw_intel' [13:28, 11:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [44:12, 01:47](1830 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [44:12, 02:50](1885 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:25, 10:15] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [45:15, 02:57](1896 MB) + +PASS -- COMPILE 's2s_intel' [12:27, 10:15] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [45:13, 01:48](2864 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [45:13, 02:20](2877 MB) +PASS -- TEST 'cpld_restart_c48_intel' [40:01, 02:17](2277 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:33, 16:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [39:08, 03:32](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:12, 02:33](1827 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:57, 02:26](977 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:38, 02:37](1801 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:21, 05:02] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:58, 01:57](1850 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:27, 09:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [34:48, 02:21](572 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [34:48, 02:15](1467 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:48, 02:08](1473 MB) +PASS -- TEST 'control_latlon_intel' [34:48, 02:04](1470 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:48, 02:15](1475 MB) +PASS -- TEST 'control_c48_intel' [34:47, 02:29](1574 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [34:47, 02:00](690 MB) +PASS -- TEST 'control_c192_intel' [34:48, 02:09](1596 MB) +PASS -- TEST 'control_c384_intel' [34:52, 02:34](1879 MB) +PASS -- TEST 'control_c384gdas_intel' [34:25, 03:48](1063 MB) +PASS -- TEST 'control_stochy_intel' [34:19, 01:27](526 MB) +PASS -- TEST 'control_stochy_restart_intel' [30:49, 02:09](330 MB) +PASS -- TEST 'control_lndp_intel' [33:25, 01:31](523 MB) +PASS -- TEST 'control_iovr4_intel' [32:35, 01:49](520 MB) +PASS -- TEST 'control_iovr5_intel' [32:27, 01:54](521 MB) +PASS -- TEST 'control_p8_intel' [32:19, 02:39](1762 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [32:19, 03:12](1759 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [30:11, 02:30](1756 MB) +PASS -- TEST 'control_restart_p8_intel' [25:28, 02:49](910 MB) +PASS -- TEST 'control_noqr_p8_intel' [29:56, 02:25](1758 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [23:26, 02:53](925 MB) +PASS -- TEST 'control_decomp_p8_intel' [28:54, 02:26](1751 MB) +PASS -- TEST 'control_2threads_p8_intel' [28:46, 02:29](1843 MB) +PASS -- TEST 'control_p8_lndp_intel' [28:45, 01:57](1759 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [28:42, 02:59](1812 MB) +PASS -- TEST 'control_p8_mynn_intel' [28:12, 02:40](1771 MB) +PASS -- TEST 'merra2_thompson_intel' [27:53, 02:33](1767 MB) +PASS -- TEST 'regional_control_intel' [27:43, 02:09](838 MB) +PASS -- TEST 'regional_restart_intel' [19:56, 01:22](844 MB) +PASS -- TEST 'regional_decomp_intel' [27:14, 01:57](840 MB) +PASS -- TEST 'regional_2threads_intel' [26:53, 01:53](898 MB) +PASS -- TEST 'regional_noquilt_intel' [26:46, 01:21](1169 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [26:45, 02:19](839 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [25:34, 01:24](838 MB) +PASS -- TEST 'regional_wofs_intel' [25:26, 01:38](1570 MB) + +PASS -- COMPILE 'rrfs_intel' [10:27, 08:32] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [23:39, 02:59](911 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:43, 02:02](1048 MB) +PASS -- TEST 'rap_decomp_intel' [22:21, 02:16](911 MB) +PASS -- TEST 'rap_2threads_intel' [22:21, 02:19](995 MB) +PASS -- TEST 'rap_restart_intel' [13:11, 02:16](776 MB) +PASS -- TEST 'rap_sfcdiff_intel' [21:28, 03:03](909 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [21:25, 02:49](913 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:56, 02:49](780 MB) +PASS -- TEST 'hrrr_control_intel' [21:15, 02:02](905 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [21:08, 01:53](902 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [21:02, 02:19](976 MB) +PASS -- TEST 'hrrr_control_restart_intel' [15:04, 02:07](733 MB) +PASS -- TEST 'rrfs_v1beta_intel' [20:59, 03:07](903 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [20:46, 01:44](1862 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:41, 02:05](1848 MB) + +PASS -- COMPILE 'csawmg_intel' [09:26, 07:56] +PASS -- TEST 'control_csawmg_intel' [35:47, 01:39](864 MB) +PASS -- TEST 'control_ras_intel' [35:47, 01:58](559 MB) + +PASS -- COMPILE 'wam_intel' [09:25, 08:00] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [34:49, 01:36](1563 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:27, 08:07] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [20:30, 02:58](1759 MB) +PASS -- TEST 'regional_control_faster_intel' [20:21, 01:19](840 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:27, 07:40] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:59, 01:39](1495 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [19:52, 01:47](1502 MB) +PASS -- TEST 'control_stochy_debug_intel' [19:47, 01:45](702 MB) +PASS -- TEST 'control_lndp_debug_intel' [19:10, 02:04](702 MB) +PASS -- TEST 'control_csawmg_debug_intel' [18:52, 01:22](1008 MB) +PASS -- TEST 'control_ras_debug_intel' [18:26, 02:03](709 MB) +PASS -- TEST 'control_diag_debug_intel' [17:51, 02:10](1558 MB) +PASS -- TEST 'control_debug_p8_intel' [17:25, 02:17](1800 MB) +PASS -- TEST 'regional_debug_intel' [16:23, 01:27](891 MB) +PASS -- TEST 'rap_control_debug_intel' [15:32, 01:41](1089 MB) +PASS -- TEST 'hrrr_control_debug_intel' [15:21, 01:52](1081 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [15:18, 01:47](1087 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [15:05, 01:41](1084 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:04, 01:42](1088 MB) +PASS -- TEST 'rap_diag_debug_intel' [15:04, 01:37](1171 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:00, 01:38](1088 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:17, 01:37](1089 MB) +PASS -- TEST 'rap_lndp_debug_intel' [14:07, 01:39](1085 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:43, 01:40](1085 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:43, 01:47](1084 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [13:18, 01:42](1082 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:10, 01:27](1081 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [12:55, 01:45](1080 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [12:21, 01:54](1086 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:18, 01:42](1087 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:08, 02:52](1091 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:23, 04:25] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [37:49, 02:11](1581 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:26, 07:51] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:02, 02:19](920 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:33, 02:12](785 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:56, 03:27](784 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:33, 02:09](842 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:30, 03:17](829 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:10, 02:49](781 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:07, 02:31](684 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:00, 01:21](668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:35, 07:52] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:52, 02:07](994 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:50, 01:57](993 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:48, 01:45](864 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:57] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:03, 02:23](815 MB) PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:30] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [38:43, 01:54](957 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [38:26, 02:00](954 MB) -PASS -- TEST 'conus13km_debug_intel' [38:25, 01:55](1042 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [38:24, 01:48](714 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [38:24, 01:21](1045 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [37:54, 01:42](1109 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:25] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [37:45, 01:49](988 MB) - -PASS -- COMPILE 'hafsw_intel' [11:26, 09:20] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [37:41, 03:07](603 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:29, 02:11](949 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:26, 03:03](645 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [37:10, 03:09](671 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:06, 02:22](690 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [36:34, 02:11](374 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [35:10, 03:28](389 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [35:10, 02:33](281 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [35:01, 03:14](367 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [34:57, 02:25](402 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [34:09, 01:52](409 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [33:57, 02:34](481 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [33:49, 01:24](316 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:20, 05:06] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [33:50, 02:18](506 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:24, 09:14] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:14, 02:48](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [32:59, 02:14](705 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:36, 09:13] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [32:51, 02:06](706 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:25, 08:41] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [32:29, 03:10](646 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [32:18, 02:37](630 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:13, 02:09](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:35, 10:30] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [30:53, 02:43](1817 MB) - -PASS -- COMPILE 'atml_intel' [11:28, 09:43] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:20, 05:27] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:31, 08:15] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [30:20, 02:33](3022 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [30:13, 02:23](2905 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [30:13, 02:13](2921 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:33, 04:26] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:41, 02:23](4444 MB) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:44, 01:58](954 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:44, 02:08](954 MB) +PASS -- TEST 'conus13km_debug_intel' [07:35, 01:50](1043 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [07:34, 01:30](716 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:29, 01:18](1049 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [07:25, 01:41](1114 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:23] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:45, 01:56](989 MB) + +PASS -- COMPILE 'hafsw_intel' [11:33, 09:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:47, 03:02](602 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:37, 02:10](945 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:11, 02:46](645 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [06:10, 02:39](671 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:57, 02:31](693 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:46, 02:05](461 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:28, 03:11](392 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:58, 02:38](288 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [04:08, 03:39](364 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:01, 02:35](408 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:51, 01:53](400 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [03:47, 01:53](486 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:05, 01:28](311 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:22, 04:52] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:41, 02:27](506 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:28, 09:06] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [02:36, 02:45](517 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [02:25, 02:41](704 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:29, 09:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [01:16, 02:17](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:27, 08:37] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [00:58, 03:09](639 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [00:56, 03:09](629 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [00:29, 01:24](881 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:31, 09:50] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [00:04, 01:40](1820 MB) + +PASS -- COMPILE 'atml_intel' [10:28, 08:58] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:24, 05:23] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:24, 08:13] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [00:04, 02:20](3023 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [59:32, 02:57](2903 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:30, 02:51](2921 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:21, 04:28] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [59:04, 02:29](4444 MB) SYNOPSIS: -Starting Date/Time: 20240913 16:31:43 -Ending Date/Time: 20240913 17:57:47 -Total Time: 01h:26m:35s +Starting Date/Time: 20240919 12:02:02 +Ending Date/Time: 20240919 13:28:17 +Total Time: 01h:26m:47s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/test_changes.list b/tests/test_changes.list index 509fd8a203..e69de29bb2 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1 +0,0 @@ -cpld_regional_atm_fbh intel From 2ccc549348da37aac51ab44482174dff2bb2912d Mon Sep 17 00:00:00 2001 From: Brian Curtis <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Wed, 25 Sep 2024 08:38:09 -0400 Subject: [PATCH 30/33] Bump libraries on WCOSS2 to ip/4.0.0 w3emc/2.12.0 and all platforms to fms/2024.01 (#2431) * UFSWM - Bump libraries on WCOSS2 to ip/4.0.0 w3emc/2.12.0 and fms/2024.01 * Adjust FMS location and bump ufs_common.lua * Acorn lua update for fms bump, remove ifi library load --- modulefiles/ufs_acorn.intel.lua | 5 +- modulefiles/ufs_common.lua | 2 +- modulefiles/ufs_derecho.gnu.lua | 2 +- modulefiles/ufs_derecho.intel.lua | 2 +- modulefiles/ufs_gaea.intel.lua | 2 +- modulefiles/ufs_hera.gnu.lua | 2 +- modulefiles/ufs_hera.intel.lua | 2 +- modulefiles/ufs_hercules.gnu.lua | 2 +- modulefiles/ufs_hercules.intel.lua | 2 +- modulefiles/ufs_jet.intel.lua | 2 +- modulefiles/ufs_noaacloud.intel.lua | 12 +- modulefiles/ufs_orion.intel.lua | 2 +- modulefiles/ufs_wcoss2.intel.lua | 6 +- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 96 +- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_acorn.log | 576 +++++---- tests/logs/RegressionTests_derecho.log | 546 ++++---- tests/logs/RegressionTests_gaea.log | 548 ++++---- tests/logs/RegressionTests_hera.log | 728 +++++------ tests/logs/RegressionTests_hercules.log | 1119 +++++++++++------ tests/logs/RegressionTests_jet.log | 486 +++---- tests/logs/RegressionTests_orion.log | 548 ++++---- tests/logs/RegressionTests_wcoss2.log | 448 +++---- 24 files changed, 2797 insertions(+), 2441 deletions(-) diff --git a/modulefiles/ufs_acorn.intel.lua b/modulefiles/ufs_acorn.intel.lua index 4257dc8b3f..e259acb835 100644 --- a/modulefiles/ufs_acorn.intel.lua +++ b/modulefiles/ufs_acorn.intel.lua @@ -2,7 +2,7 @@ help([[ Load environment to build UFS on Acorn with Intel compiler ]]) -prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/spack-stack/spack-stack-1.6.0/envs/unified-env-fms-2024.01/install/modulefiles/Core") load("stack-intel") load("stack-cray-mpich") @@ -17,9 +17,6 @@ remove_path("MODULEPATH", "/apps/prod/lmodules/INTEL_cray_mpich/19.1.3.304/cray- load("cmake") load("ufs_common") -prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/UPP_IFI/modulefiles") -load("ifi/20230118-intel-19.1.3.304") - setenv("CC", "cc") setenv("CXX", "CC") setenv("FC", "ftn") diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua index a1c4fcfd18..062fa38449 100644 --- a/modulefiles/ufs_common.lua +++ b/modulefiles/ufs_common.lua @@ -11,7 +11,7 @@ local ufs_modules = { {["netcdf-fortran"] = "4.6.1"}, {["parallelio"] = "2.5.10"}, {["esmf"] = "8.6.0"}, - {["fms"] = "2023.04"}, + {["fms"] = "2024.01"}, {["bacio"] = "2.4.1"}, {["crtm"] = "2.4.0"}, {["g2"] = "3.5.1"}, diff --git a/modulefiles/ufs_derecho.gnu.lua b/modulefiles/ufs_derecho.gnu.lua index 4c21b69b0e..295b5560dc 100644 --- a/modulefiles/ufs_derecho.gnu.lua +++ b/modulefiles/ufs_derecho.gnu.lua @@ -9,7 +9,7 @@ load("mysql/8.0.33") setenv("LMOD_TMOD_FIND_FIRST","yes") prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles_extra") -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") unload("ncarcompilers") stack_gnu_ver=os.getenv("stack_gnu_ver") or "12.2.0" diff --git a/modulefiles/ufs_derecho.intel.lua b/modulefiles/ufs_derecho.intel.lua index 1f3c823f99..f858670436 100644 --- a/modulefiles/ufs_derecho.intel.lua +++ b/modulefiles/ufs_derecho.intel.lua @@ -9,7 +9,7 @@ load("mysql/8.0.33") setenv("LMOD_TMOD_FIND_FIRST","yes") prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles_extra") -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") unload("ncarcompilers") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.10.0" diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index fb2eb49a1b..592eb7461d 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -5,7 +5,7 @@ help([[ whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) -prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index 0b38f9c1f4..4e53200209 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -4,7 +4,7 @@ loads UFS Model prerequisites for Hera/GNU prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/installs/gnu/modulefiles") prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/installs/openmpi/modulefiles") -prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/spack-stack/spack-stack-1.6.0_gnu13/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/spack-stack/spack-stack-1.6.0_gnu13/envs/fms-2024.01/install/modulefiles/Core") stack_gnu_ver=os.getenv("stack_gnu_ver") or "13.3.0" load(pathJoin("stack-gcc", stack_gnu_ver)) diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index 7d3c3b4e27..feaa88e560 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hera/Intel ]]) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_hercules.gnu.lua b/modulefiles/ufs_hercules.gnu.lua index 6645dd3c80..035290a9c7 100644 --- a/modulefiles/ufs_hercules.gnu.lua +++ b/modulefiles/ufs_hercules.gnu.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hercules/GNU ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") -- for mvapich2, need: prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/modulefiles") diff --git a/modulefiles/ufs_hercules.intel.lua b/modulefiles/ufs_hercules.intel.lua index 8f16440134..455ea4d0f4 100644 --- a/modulefiles/ufs_hercules.intel.lua +++ b/modulefiles/ufs_hercules.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hercules/Intel ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index 8e54160be8..63dd53721a 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Jet/Intel ]]) -prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", " /contrib/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_noaacloud.intel.lua b/modulefiles/ufs_noaacloud.intel.lua index 98397ef11c..ef03025c14 100644 --- a/modulefiles/ufs_noaacloud.intel.lua +++ b/modulefiles/ufs_noaacloud.intel.lua @@ -2,13 +2,19 @@ help([[ loads UFS Model prerequisites for NOAA Parallelworks/Intel ]]) -prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/contrib/spack-stack-rocky8/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") +prepend_path("MODULEPATH", "/apps/modules/modulefiles") +prepend_path("PATH", "/contrib/EPIC/bin") +load("gnu") +load("stack-intel") +load("stack-intel-oneapi-mpi") -stack_intel_ver=os.getenv("stack_intel_ver") or "2021.3.0" +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.10.0" load(pathJoin("stack-intel", stack_intel_ver)) -stack_impi_ver=os.getenv("stack_impi_ver") or "2021.3.0" +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.10.0" load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) +unload("gnu") cmake_ver=os.getenv("cmake_ver") or "3.23.1" load(pathJoin("cmake", cmake_ver)) diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index 51cc375df8..e549ec4144 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Orion/Intel ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_wcoss2.intel.lua b/modulefiles/ufs_wcoss2.intel.lua index a2445a9026..983365d6fc 100644 --- a/modulefiles/ufs_wcoss2.intel.lua +++ b/modulefiles/ufs_wcoss2.intel.lua @@ -26,14 +26,14 @@ local ufs_modules = { {["netcdf-C"] = "4.9.2"}, {["pio-C"] = "2.5.10"}, {["esmf-C"] = "8.6.0"}, - {["fms-C"] = "2023.04"}, + {["fms"] = "2024.01"}, {["bacio"] = "2.4.1"}, {["crtm"] = "2.4.0"}, {["g2"] = "3.5.1"}, {["g2tmpl"] = "1.13.0"}, - {["ip"] = "3.3.3"}, + {["ip"] = "4.0.0"}, {["sp"] = "2.3.3"}, - {["w3emc"] = "2.9.2"}, + {["w3emc"] = "2.12.0"}, {["gftl-shared"] = "1.6.1"}, {["mapl-C"] = "2.40.3"}, {["pnetcdf-C"] = "1.12.2"}, diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 6edef2c7e4..54e7e1fe2c 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu Sep 19 10:34:04 UTC 2024 +Tue Sep 24 13:52:59 UTC 2024 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_3253678/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1669225/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 = 302.407527 - 0: The maximum resident set size (KB) = 1441812 + 0: The total amount of wall time = 300.133244 + 0: The maximum resident set size (KB) = 1442744 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_3253678/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1669225/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 = 1009.311079 - 0: The maximum resident set size (KB) = 1431700 + 0: The total amount of wall time = 1004.154973 + 0: The maximum resident set size (KB) = 1435480 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_3253678/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1669225/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 = 275.353504 - 0: The maximum resident set size (KB) = 1438552 + 0: The total amount of wall time = 275.107180 + 0: The maximum resident set size (KB) = 1418248 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_3253678/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1669225/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 = 270.526810 - 0: The maximum resident set size (KB) = 1437944 + 0: The total amount of wall time = 270.874828 + 0: The maximum resident set size (KB) = 1418740 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_3253678/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1669225/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 = 272.184977 - 0: The maximum resident set size (KB) = 1441260 + 0: The total amount of wall time = 282.223804 + 0: The maximum resident set size (KB) = 1416640 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_3253678/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1669225/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 = 273.007924 - 0: The maximum resident set size (KB) = 1441600 + 0: The total amount of wall time = 278.992660 + 0: The maximum resident set size (KB) = 1428428 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_3253678/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1669225/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 = 270.263073 - 0: The maximum resident set size (KB) = 1429548 + 0: The total amount of wall time = 270.863691 + 0: The maximum resident set size (KB) = 1420068 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Sep 19 11:49:05 UTC 2024 -Elapsed time: 01h:15m:02s. Have a nice day! +Tue Sep 24 15:08:30 UTC 2024 +Elapsed time: 01h:15m:58s. 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 409bb4bba4..603c36d977 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,79 +1,9 @@ -Thu Sep 19 09:02:15 UTC 2024 +Tue Sep 24 19:26:13 UTC 2024 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_2883046/dbg_base_dbg_base -Checking test dbg_base results .... -Moving baseline dbg_base files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Moving RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 2403.226127 - 0: The maximum resident set size (KB) = 1541736 - -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_2883046/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2646490/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +65,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 = 652.724686 - 0: The maximum resident set size (KB) = 1530376 + 0: The total amount of wall time = 731.776523 + 0: The maximum resident set size (KB) = 1505896 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_2883046/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2646490/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +135,13 @@ 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 = 668.735610 - 0: The maximum resident set size (KB) = 1518632 + 0: The total amount of wall time = 668.589581 + 0: The maximum resident set size (KB) = 1510092 Test std_base PASS -OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Sep 19 10:34:03 UTC 2024 -Elapsed time: 01h:31m:49s. Have a nice day! +FAILED TESTS: +Test dbg_base failed in run_test failed +OPERATION REQUIREMENT TEST FAILED +Tue Sep 24 22:20:42 UTC 2024 +Elapsed time: 02h:54m:29s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 7c10cbd922..4126d5fd68 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Sep 19 06:26:19 UTC 2024 +Tue Sep 24 16:39:41 UTC 2024 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_3951212/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3755633/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 = 1487.475517 - 0: The maximum resident set size (KB) = 783772 + 0: The total amount of wall time = 1445.966550 + 0: The maximum resident set size (KB) = 766148 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_3951212/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3755633/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 = 2239.533660 - 0: The maximum resident set size (KB) = 711488 + 0: The total amount of wall time = 2197.045041 + 0: The maximum resident set size (KB) = 741516 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_3951212/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3755633/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 = 2256.857916 - 0: The maximum resident set size (KB) = 744788 + 0: The total amount of wall time = 2255.241997 + 0: The maximum resident set size (KB) = 732228 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_3951212/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3755633/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 = 2251.197250 - 0: The maximum resident set size (KB) = 721196 + 0: The total amount of wall time = 2506.849856 + 0: The maximum resident set size (KB) = 700540 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Sep 19 09:02:14 UTC 2024 -Elapsed time: 02h:35m:56s. Have a nice day! +Tue Sep 24 19:21:01 UTC 2024 +Elapsed time: 02h:41m:20s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 2eca4ed07d..0f75f73fa5 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: -e3bd67a093b800f028092d252373abe1b7a7602b +6f4efcb43af3177bb4d8aaccc1a75a61f45d9f80 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -37,268 +37,334 @@ 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-20240909 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1860289 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_961999 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:26, 10:15] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [59:44, 03:29](3362 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:31, 15:44] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [54:39, 03:45](2154 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [31:27, 04:23](2185 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [31:24, 04:10](1300 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:40, 03:22](2258 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:31, 16:02] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [54:39, 01:57](2154 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:52] ( 1524 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [04:50, 04:14](2242 MB) - -PASS -- COMPILE 's2swa_intel' [12:26, 10:36] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [59:43, 02:43](3366 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [59:43, 03:15](3385 MB) -PASS -- TEST 'cpld_restart_p8_intel' [47:36, 02:44](3305 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [59:43, 02:42](3405 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [47:36, 02:21](3322 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [59:43, 03:21](3676 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [59:43, 02:46](3384 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [59:44, 03:32](3511 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [59:43, 02:52](3387 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [59:43, 03:05](3311 MB) - -PASS -- COMPILE 's2sw_intel' [11:25, 09:53] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [00:44, 02:40](2078 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [00:44, 02:57](2091 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:25, 10:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [00:44, 03:11](2056 MB) - -PASS -- COMPILE 's2s_intel' [13:28, 11:55] ( 2 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [58:40, 02:39](2887 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [58:40, 02:42](2896 MB) -PASS -- TEST 'cpld_restart_c48_intel' [51:06, 02:51](2309 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:40] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [54:37, 03:02](3388 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 15:44] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [54:37, 02:08](2167 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:51, 02:24](1339 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:00, 02:40](2288 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:33] ( 1524 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:29, 02:06](2280 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:08] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [50:20, 02:04](689 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [50:20, 01:57](1587 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [50:20, 02:04](1593 MB) -PASS -- TEST 'control_latlon_intel' [50:20, 01:26](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [50:20, 01:54](1607 MB) -PASS -- TEST 'control_c48_intel' [50:19, 02:10](1593 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [50:19, 02:01](713 MB) -PASS -- TEST 'control_c192_intel' [50:20, 02:18](1853 MB) -PASS -- TEST 'control_c384_intel' [50:24, 02:45](3276 MB) -PASS -- TEST 'control_c384gdas_intel' [50:24, 04:01](2445 MB) -PASS -- TEST 'control_stochy_intel' [50:20, 02:07](666 MB) -PASS -- TEST 'control_stochy_restart_intel' [45:48, 01:32](465 MB) -PASS -- TEST 'control_lndp_intel' [49:37, 01:57](644 MB) -PASS -- TEST 'control_iovr4_intel' [48:44, 01:22](662 MB) -PASS -- TEST 'control_iovr5_intel' [48:22, 01:34](643 MB) -PASS -- TEST 'control_p8_intel' [47:37, 02:53](1877 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [47:36, 03:27](1856 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [47:22, 02:56](1903 MB) -PASS -- TEST 'control_restart_p8_intel' [28:00, 03:35](1033 MB) -PASS -- TEST 'control_noqr_p8_intel' [45:34, 02:04](1899 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [25:57, 02:52](1026 MB) -PASS -- TEST 'control_decomp_p8_intel' [45:21, 02:58](1875 MB) -PASS -- TEST 'control_2threads_p8_intel' [43:44, 02:57](1986 MB) -PASS -- TEST 'control_p8_lndp_intel' [42:18, 01:30](1906 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [41:56, 02:53](1958 MB) -PASS -- TEST 'control_p8_mynn_intel' [40:21, 02:50](1905 MB) -PASS -- TEST 'merra2_thompson_intel' [40:11, 03:24](1884 MB) -PASS -- TEST 'regional_control_intel' [39:27, 01:23](859 MB) -PASS -- TEST 'regional_restart_intel' [22:23, 01:57](849 MB) -PASS -- TEST 'regional_decomp_intel' [39:18, 01:35](863 MB) -PASS -- TEST 'regional_2threads_intel' [38:03, 01:37](1252 MB) -PASS -- TEST 'regional_noquilt_intel' [35:53, 01:41](1194 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [34:27, 01:12](869 MB) -PASS -- TEST 'regional_wofs_intel' [34:15, 01:44](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:28] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [33:22, 03:42](1049 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [30:35, 01:54](1732 MB) -PASS -- TEST 'rap_decomp_intel' [29:45, 03:06](1049 MB) -PASS -- TEST 'rap_2threads_intel' [29:03, 03:16](1131 MB) -PASS -- TEST 'rap_restart_intel' [16:53, 03:25](863 MB) -PASS -- TEST 'rap_sfcdiff_intel' [28:00, 03:43](1030 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [27:47, 02:42](1026 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [15:32, 03:36](863 MB) -PASS -- TEST 'hrrr_control_intel' [26:45, 04:10](1041 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [26:36, 03:45](1041 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [26:17, 03:13](1269 MB) -PASS -- TEST 'hrrr_control_restart_intel' [16:05, 01:52](815 MB) -PASS -- TEST 'rrfs_v1beta_intel' [25:36, 03:07](1042 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [25:34, 02:22](1988 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:37, 01:32](1977 MB) - -PASS -- COMPILE 'csawmg_intel' [10:23, 08:13] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [23:51, 01:23](1000 MB) -PASS -- TEST 'control_ras_intel' [23:51, 01:59](682 MB) - -PASS -- COMPILE 'wam_intel' [10:23, 08:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [23:06, 02:06](1676 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:33, 08:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [22:14, 02:50](1872 MB) -PASS -- TEST 'regional_control_faster_intel' [22:07, 01:54](857 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:30, 07:18] ( 883 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [21:56, 01:43](1628 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:20, 01:55](1657 MB) -PASS -- TEST 'control_stochy_debug_intel' [21:17, 02:07](835 MB) -PASS -- TEST 'control_lndp_debug_intel' [21:11, 02:08](852 MB) -PASS -- TEST 'control_csawmg_debug_intel' [18:36, 01:27](1137 MB) -PASS -- TEST 'control_ras_debug_intel' [18:13, 01:55](839 MB) -PASS -- TEST 'control_diag_debug_intel' [17:01, 02:10](1711 MB) -PASS -- TEST 'control_debug_p8_intel' [16:53, 02:12](1920 MB) -PASS -- TEST 'regional_debug_intel' [16:30, 01:59](937 MB) -PASS -- TEST 'rap_control_debug_intel' [16:29, 01:24](1215 MB) -PASS -- TEST 'hrrr_control_debug_intel' [16:05, 01:41](1228 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [15:17, 01:37](1232 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [15:08, 02:01](1230 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:01, 02:00](1232 MB) -PASS -- TEST 'rap_diag_debug_intel' [14:18, 02:30](1316 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:12, 01:35](1216 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:51, 01:47](1215 MB) -PASS -- TEST 'rap_lndp_debug_intel' [13:44, 01:58](1216 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:38, 02:03](1232 MB) -PASS -- TEST 'rap_noah_debug_intel' [13:12, 01:59](1209 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [12:55, 01:23](1215 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:57, 01:23](1227 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [11:55, 01:43](1227 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:47, 01:28](1217 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:41, 01:26](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:32, 03:19](1239 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:24, 04:49] ( 838 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:59, 02:16](1742 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:27, 08:12] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:57, 01:52](1612 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:07, 03:26](925 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:07, 04:24](923 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:06, 03:35](982 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:57, 04:33](1122 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:29, 04:24](919 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [57:44, 03:05](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [58:57, 02:06](783 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:30, 08:19] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:44, 01:51](1106 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:31, 01:23](1468 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:20, 01:34](947 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [19:33, 08:18] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:57, 01:51](953 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:26, 04:48] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:56, 01:27](1092 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 02:05](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [05:38, 01:30](1185 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [05:33, 01:31](869 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [05:29, 01:31](1546 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:20, 01:38](1282 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:28, 04:43] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:13, 01:32](1115 MB) - -PASS -- COMPILE 'hafsw_intel' [18:32, 09:35] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:13, 02:58](1803 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:07, 01:31](2153 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [04:37, 02:45](1279 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [04:34, 02:28](1434 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [04:22, 02:31](1462 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [03:43, 01:53](1002 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:07, 02:55](1336 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [01:13, 02:37](1200 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [00:25, 04:06](2123 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [00:04, 02:30](1037 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:37, 02:14](1039 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:35, 02:24](1668 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:05, 01:59](1226 MB) -PASS -- TEST 'gnv1_nested_intel' [58:57, 04:22](1953 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [16:30, 05:22] ( 1466 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [58:26, 02:24](1722 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:17] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:47, 02:45](1713 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [54:51, 02:35](1892 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [51:07, 09:19] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [49:54, 02:39](1893 MB) - -PASS -- COMPILE 'hafs_all_intel' [59:15, 09:05] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [40:56, 02:46](1275 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [40:56, 02:46](1256 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [40:54, 01:33](898 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [00:17, 09:10] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [39:48, 01:40](768 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [32:20, 01:24](760 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [39:48, 01:37](649 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [39:48, 01:31](651 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [39:48, 01:51](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [39:48, 01:31](770 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [39:48, 01:58](771 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [39:48, 01:40](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [39:49, 02:17](870 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [39:49, 02:06](856 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [39:48, 01:33](770 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [39:08, 01:33](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [39:06, 02:14](2036 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:34, 09:23] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [22:30, 01:25](769 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [07:26, 01:04] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [30:28, 01:46](678 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [30:28, 01:43](815 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [26:56, 02:05](815 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:32, 09:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [21:19, 02:40](2012 MB) - -PASS -- COMPILE 'atml_intel' [12:31, 09:16] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [22:33, 03:08](2263 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [22:33, 03:10](2259 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [13:04, 01:53](1409 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:23, 05:29] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [25:23, 03:05](2298 MB) - -PASS -- COMPILE 'atmw_intel' [08:27, 08:47] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [22:17, 03:31](1992 MB) - -PASS -- COMPILE 'atmaero_intel' [06:24, 08:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [22:21, 02:52](3282 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [22:21, 03:04](3055 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [22:21, 03:06](3048 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [23:37, 04:48] ( 883 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:15, 02:27](4881 MB) +PASS -- COMPILE 's2swa_32bit_intel' [24:38, 22:48] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [59:30, 03:17](3349 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:28, 12:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [09:39, 04:10](2159 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [48:31, 03:38](2187 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [47:20, 03:38](1301 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [09:40, 03:04](2257 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:36, 21:23] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [01:32, 01:39](2147 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:36, 21:18] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [01:33, 03:54](2226 MB) + +PASS -- COMPILE 's2swa_intel' [17:32, 15:48] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [06:35, 02:20](3358 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:35, 02:35](3374 MB) +PASS -- TEST 'cpld_restart_p8_intel' [54:52, 03:11](3292 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [06:35, 02:03](3372 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [54:52, 03:11](3309 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [06:35, 02:02](3655 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:35, 02:24](3363 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:36, 03:08](3501 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:35, 02:45](3374 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:35, 02:55](3298 MB) + +PASS -- COMPILE 's2sw_intel' [21:36, 19:56] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [02:31, 01:57](2065 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [02:31, 03:09](2070 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:34] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:41, 03:13](2074 MB) + +PASS -- COMPILE 's2s_intel' [11:25, 09:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:41, 01:57](2879 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [12:41, 02:35](2893 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:11, 02:19](2305 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:33, 15:33] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [06:35, 02:53](3372 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:39, 21:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [00:29, 02:36](2162 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:47, 02:36](1337 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [37:41, 02:31](2262 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [24:40, 22:29] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:32, 02:07](2286 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [21:35, 19:26] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [50:05, 02:04](684 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [50:05, 01:37](1583 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [50:05, 01:33](1590 MB) +PASS -- TEST 'control_latlon_intel' [49:27, 01:22](1588 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:52, 02:10](1592 MB) +PASS -- TEST 'control_c48_intel' [46:17, 02:35](1584 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [45:32, 02:21](708 MB) +PASS -- TEST 'control_c192_intel' [45:33, 02:24](1840 MB) +PASS -- TEST 'control_c384_intel' [44:15, 03:14](3261 MB) +PASS -- TEST 'control_c384gdas_intel' [43:53, 04:21](2437 MB) +PASS -- TEST 'control_stochy_intel' [43:11, 02:03](643 MB) +PASS -- TEST 'control_stochy_restart_intel' [30:32, 01:19](444 MB) +PASS -- TEST 'control_lndp_intel' [39:26, 01:57](640 MB) +PASS -- TEST 'control_iovr4_intel' [39:16, 02:09](653 MB) +PASS -- TEST 'control_iovr5_intel' [39:01, 01:48](652 MB) +PASS -- TEST 'control_p8_intel' [38:25, 03:07](1875 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [37:37, 03:15](1891 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [37:36, 03:02](1873 MB) +PASS -- TEST 'control_restart_p8_intel' [24:57, 03:15](1025 MB) +PASS -- TEST 'control_noqr_p8_intel' [37:33, 02:27](1869 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [24:48, 03:09](1056 MB) +PASS -- TEST 'control_decomp_p8_intel' [36:07, 02:25](1890 MB) +PASS -- TEST 'control_2threads_p8_intel' [35:01, 03:24](1975 MB) +PASS -- TEST 'control_p8_lndp_intel' [34:54, 01:45](1892 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [34:24, 03:45](1926 MB) +PASS -- TEST 'control_p8_mynn_intel' [33:55, 03:29](1905 MB) +PASS -- TEST 'merra2_thompson_intel' [33:32, 03:52](1880 MB) +PASS -- TEST 'regional_control_intel' [33:29, 01:25](858 MB) +PASS -- TEST 'regional_restart_intel' [18:29, 01:22](857 MB) +PASS -- TEST 'regional_decomp_intel' [33:25, 01:25](853 MB) +PASS -- TEST 'regional_2threads_intel' [32:23, 02:01](1235 MB) +PASS -- TEST 'regional_noquilt_intel' [31:38, 01:52](1187 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [29:50, 02:08](859 MB) +PASS -- TEST 'regional_wofs_intel' [28:11, 01:23](1585 MB) + +PASS -- COMPILE 'rrfs_intel' [17:30, 15:21] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [52:08, 03:23](1042 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [52:09, 01:42](1731 MB) +PASS -- TEST 'rap_decomp_intel' [52:08, 02:57](1026 MB) +PASS -- TEST 'rap_2threads_intel' [52:08, 03:30](1126 MB) +PASS -- TEST 'rap_restart_intel' [27:29, 03:29](857 MB) +PASS -- TEST 'rap_sfcdiff_intel' [52:08, 03:32](1025 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [52:08, 03:56](1042 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [27:19, 03:04](856 MB) +PASS -- TEST 'hrrr_control_intel' [52:08, 03:20](1022 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [52:08, 04:08](1018 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [52:09, 03:19](1263 MB) +PASS -- TEST 'hrrr_control_restart_intel' [27:13, 01:27](809 MB) +PASS -- TEST 'rrfs_v1beta_intel' [52:08, 03:30](1035 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [52:08, 01:50](1998 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [52:08, 02:20](1990 MB) + +PASS -- COMPILE 'csawmg_intel' [13:28, 12:06] +PASS -- TEST 'control_csawmg_intel' [53:06, 02:08](954 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_ras_intel' [, ]( MB) + +PASS -- COMPILE 'wam_intel' [12:27, 10:39] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [54:08, 02:14](1689 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:24] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [52:06, 03:46](1889 MB) +PASS -- TEST 'regional_control_faster_intel' [52:05, 01:14](845 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:30, 12:22] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [24:14, 02:11](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [24:08, 02:04](1648 MB) +PASS -- TEST 'control_stochy_debug_intel' [23:58, 02:13](850 MB) +PASS -- TEST 'control_lndp_debug_intel' [23:41, 01:54](826 MB) +PASS -- TEST 'control_csawmg_debug_intel' [23:05, 02:03](1130 MB) +PASS -- TEST 'control_ras_debug_intel' [21:57, 01:39](851 MB) +PASS -- TEST 'control_diag_debug_intel' [21:36, 01:57](1688 MB) +PASS -- TEST 'control_debug_p8_intel' [21:33, 02:11](1914 MB) +PASS -- TEST 'regional_debug_intel' [21:07, 01:59](943 MB) +PASS -- TEST 'rap_control_debug_intel' [20:38, 01:28](1204 MB) +PASS -- TEST 'hrrr_control_debug_intel' [19:55, 01:30](1218 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [19:52, 02:15](1228 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [19:51, 01:47](1209 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:34, 01:44](1222 MB) +PASS -- TEST 'rap_diag_debug_intel' [19:03, 02:32](1290 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:35, 01:40](1229 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:16, 01:47](1212 MB) +PASS -- TEST 'rap_lndp_debug_intel' [18:11, 01:38](1209 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [18:03, 01:57](1205 MB) +PASS -- TEST 'rap_noah_debug_intel' [17:57, 02:03](1225 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [17:57, 01:35](1207 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:52, 01:26](1224 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [17:25, 01:52](1200 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [17:08, 01:49](1226 MB) +PASS -- TEST 'rap_flake_debug_intel' [16:36, 01:59](1204 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:27, 03:37](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:27, 07:17] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:59, 01:22](1714 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:31, 11:36] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:44, 02:30](1604 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:35, 02:53](897 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:12, 05:11](913 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:49, 03:07](980 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:23, 04:43](1114 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:55, 04:51](894 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:28, 03:34](785 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 02:07](773 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:33, 15:42] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [13:38, 02:07](1101 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:27, 01:26](1462 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:48, 01:53](941 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:27, 11:40] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:06, 01:55](944 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:23, 07:33] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:04, 01:27](1084 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:19, 01:21](1082 MB) +PASS -- TEST 'conus13km_debug_intel' [11:16, 02:20](1195 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [11:15, 02:16](870 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:03, 01:20](1533 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:41, 01:43](1263 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:21, 06:41] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:01, 01:26](1133 MB) + +PASS -- COMPILE 'hafsw_intel' [41:58, 09:19] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:46, 03:10](1803 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:39, 01:37](2145 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 02:50](1266 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [09:24, 02:25](1303 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:18, 03:07](1451 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:23, 02:11](996 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:28, 03:07](1323 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:31, 02:53](1190 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:03, 04:09](2151 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:30, 02:33](1034 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:13, 02:24](1036 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [03:15, 02:09](1659 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:39, 02:15](1217 MB) +PASS -- TEST 'gnv1_nested_intel' [02:29, 04:37](1955 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [36:52, 05:23] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:31, 02:37](1731 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [38:55, 09:14] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [00:01, 02:33](1708 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [59:03, 01:55](1885 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [38:55, 09:15] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [59:02, 02:51](1887 MB) + +PASS -- COMPILE 'hafs_all_intel' [51:09, 08:55] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [53:52, 03:03](1270 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [53:52, 02:46](1251 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:50, 01:21](906 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [51:10, 09:07] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [52:36, 01:57](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [45:08, 01:37](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [48:11, 01:24](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [48:11, 01:28](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [46:49, 01:48](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [46:00, 01:16](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [45:35, 01:34](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [45:17, 01:53](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [45:06, 01:54](863 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [43:46, 02:37](854 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [42:46, 01:59](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [42:05, 01:37](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [41:28, 01:17](2030 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [52:11, 09:12] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [41:15, 01:19](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [44:00, 01:01] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [58:45, 02:12](677 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [58:03, 01:46](815 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [41:10, 01:58](816 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [52:11, 09:27] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [40:51, 02:10](2006 MB) + +PASS -- COMPILE 'atml_intel' [50:06, 09:09] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [40:26, 03:37](2254 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [39:53, 03:14](2254 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [28:26, 02:02](1397 MB) + +PASS -- COMPILE 'atml_debug_intel' [24:40, 05:30] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [39:51, 03:00](2298 MB) + +PASS -- COMPILE 'atmw_intel' [30:47, 08:39] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:27, 03:05](1976 MB) + +PASS -- COMPILE 'atmaero_intel' [30:47, 08:33] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [38:04, 02:40](3250 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [37:42, 02:29](3041 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [37:36, 02:37](3053 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [26:42, 04:45] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [39:36, 02:35](4805 MB) SYNOPSIS: -Starting Date/Time: 20240918 13:47:32 -Ending Date/Time: 20240918 16:01:35 -Total Time: 02h:14m:30s +Starting Date/Time: 20240921 13:35:34 +Ending Date/Time: 20240921 15:50:26 +Total Time: 02h:15m:19s Compiles Completed: 37/37 -Tests Completed: 176/176 +Tests Completed: 175/176 +Failed Tests: +* TEST control_ras_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/BrianCurtis-NOAA/ufs-weather-model/wcoss2_lib_bump/tests/logs/log_acorn/run_control_ras_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ACORN REGRESSION TESTING LOG==== +====START OF ACORN REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +ac821add06a576dcd9f87b18c2d72d34913a84a1 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) + 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + a9364591091c836984a40107729720705847c195 FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_606589 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-n) - RUN SINGLE TEST: control_ras + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:07] +PASS -- TEST 'control_ras_intel' [11:00, 01:48](674 MB) + +SYNOPSIS: +Starting Date/Time: 20240923 12:39:40 +Ending Date/Time: 20240923 12:54:27 +Total Time: 00h:14m:56s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 68df2e6d28..97923cf0b8 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: -4ac63b06501f964ea8feb3cb82fe4bd948d23093 +ce118b02fad212ff25d1995f8d323e41b841d615 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -37,286 +37,286 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_33930 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_83096 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [24:23, 23:06] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:28, 06:38](3199 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:24, 25:17] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:48, 14:50](1911 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:08, 16:15](1948 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:16, 08:06](1076 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:49, 16:39](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:24, 24:59] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:26, 14:26](1905 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:19, 13:22] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:53, 23:43](1946 MB) - -PASS -- COMPILE 's2swa_intel' [24:23, 22:39] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:46, 08:31](3221 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:05, 08:20](3236 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:28, 05:01](3148 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:44, 08:21](3252 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:29, 04:58](3181 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:23, 07:48](3746 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:37, 08:19](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:23, 06:38](3530 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:55, 08:15](3235 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:41, 09:52](3818 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:11, 06:53](3616 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:38, 09:54](4515 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [30:21, 06:50](4668 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:11, 06:09](3210 MB) - -PASS -- COMPILE 's2sw_intel' [23:22, 20:57] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:33, 05:54](1921 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:54, 08:07](1976 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:20, 13:19] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:49, 12:41](3303 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:19, 12:27] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:33, 08:47](1953 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:21, 17:42] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:50, 05:15](1987 MB) - -PASS -- COMPILE 's2s_intel' [19:21, 17:46] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:07, 05:54](2881 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:10, 02:31](2890 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:36, 01:39](2306 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:20, 25:14] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:37, 08:13](3238 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:19, 23:47] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:52, 14:53](1935 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:01, 08:01](1092 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:50, 16:55](1903 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:16, 12:21] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:31, 24:38](1948 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:17, 14:52] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:34, 03:27](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:09, 02:43](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:29, 02:47](1566 MB) -PASS -- TEST 'control_latlon_intel' [05:06, 02:42](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:08, 02:45](1562 MB) -PASS -- TEST 'control_c48_intel' [12:05, 09:14](1592 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:44, 05:15](712 MB) -PASS -- TEST 'control_c192_intel' [14:01, 10:00](1694 MB) -PASS -- TEST 'control_c384_intel' [18:42, 11:26](1978 MB) -PASS -- TEST 'control_c384gdas_intel' [18:27, 07:18](1172 MB) -PASS -- TEST 'control_stochy_intel' [03:46, 01:26](623 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:49, 00:53](437 MB) -PASS -- TEST 'control_lndp_intel' [03:42, 01:27](625 MB) -PASS -- TEST 'control_iovr4_intel' [04:49, 02:12](617 MB) -PASS -- TEST 'control_iovr5_intel' [04:43, 02:07](622 MB) -PASS -- TEST 'control_p8_intel' [06:33, 03:35](1855 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:32, 03:06](1852 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:33, 03:38](1850 MB) -PASS -- TEST 'control_restart_p8_intel' [05:24, 02:26](1004 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:37, 03:42](1856 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:20, 02:28](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:53, 03:53](1847 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:47, 03:32](1936 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:45, 06:04](1858 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:54, 04:01](1904 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:55, 03:26](1866 MB) -PASS -- TEST 'merra2_thompson_intel' [06:52, 03:40](1861 MB) -PASS -- TEST 'regional_control_intel' [08:08, 04:56](858 MB) -PASS -- TEST 'regional_restart_intel' [05:56, 03:01](863 MB) -PASS -- TEST 'regional_decomp_intel' [08:05, 05:11](859 MB) -PASS -- TEST 'regional_noquilt_intel' [08:06, 04:52](1191 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:06, 04:56](858 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 04:59](863 MB) -PASS -- TEST 'regional_wofs_intel' [07:52, 05:41](1590 MB) - -PASS -- COMPILE 'rrfs_intel' [15:16, 13:31] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:25, 06:14](1006 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:48, 03:52](1154 MB) -PASS -- TEST 'rap_decomp_intel' [09:25, 06:26](1001 MB) -PASS -- TEST 'rap_2threads_intel' [09:25, 05:46](1093 MB) -PASS -- TEST 'rap_restart_intel' [06:15, 03:15](878 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:28, 06:09](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:28, 06:25](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:15, 04:40](880 MB) -PASS -- TEST 'hrrr_control_intel' [06:12, 03:14](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:12, 03:20](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:12, 02:52](1076 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:39, 01:49](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:29, 06:02](998 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:02, 07:27](1963 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:01, 07:13](1955 MB) - -PASS -- COMPILE 'csawmg_intel' [14:16, 12:21] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:01, 06:38](958 MB) -PASS -- TEST 'control_ras_intel' [05:40, 02:52](655 MB) - -PASS -- COMPILE 'wam_intel' [14:16, 12:01] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:04, 10:19](1648 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:15, 12:29] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:26, 03:12](1854 MB) -PASS -- TEST 'regional_control_faster_intel' [06:55, 04:44](862 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:15, 15:22] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:05, 02:13](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:57, 02:07](1611 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:35, 03:02](812 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:40](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:03, 04:45](1115 MB) -PASS -- TEST 'control_ras_debug_intel' [04:34, 02:40](818 MB) -PASS -- TEST 'control_diag_debug_intel' [06:21, 02:39](1669 MB) -PASS -- TEST 'control_debug_p8_intel' [06:06, 03:01](1899 MB) -PASS -- TEST 'regional_debug_intel' [19:03, 16:38](924 MB) -PASS -- TEST 'rap_control_debug_intel' [07:33, 04:57](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:38, 04:38](1187 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 04:44](1190 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:44](1192 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:36, 04:45](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:41, 05:02](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 04:49](1191 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:39, 04:50](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:39, 04:46](1194 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:34, 04:44](1192 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:39, 04:45](1190 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 04:42](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:33](1185 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:29, 04:43](1186 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 05:50](1198 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:34, 05:07](1185 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:10, 08:17](1198 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:14, 08:01] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:01, 12:09](1698 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:16, 11:56] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 03:31](1018 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:05, 05:11](880 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:03, 02:48](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:07, 04:47](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:11, 02:31](932 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:01, 02:55](878 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:07, 03:56](790 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 01:33](771 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:16, 11:50] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:40, 01:58](1074 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:24, 01:08](1070 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:30, 01:14](963 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 12:00] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:00, 03:42](900 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:16, 08:28] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 04:46](1064 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 04:29](1064 MB) -PASS -- TEST 'conus13km_debug_intel' [18:08, 14:12](1146 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:05, 13:53](831 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:48, 08:05](1143 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:52, 13:47](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:16, 08:16] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:35, 05:05](1090 MB) - -PASS -- COMPILE 'hafsw_intel' [21:15, 19:04] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:26, 04:40](700 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:51, 05:20](1049 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:52, 06:31](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 10:59](772 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:43, 12:01](795 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:29, 04:43](471 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:38, 05:47](487 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:54, 02:20](386 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:28, 06:14](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:02, 03:24](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:38, 03:06](503 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:24, 03:55](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:15](421 MB) -PASS -- TEST 'gnv1_nested_intel' [08:19, 04:13](1710 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:16, 09:53] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:14, 12:16](623 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:18, 18:17] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:28, 07:16](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:32, 07:20](682 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:22, 19:45] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:40, 05:23](673 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:15, 16:36] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:38, 05:44](737 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:44, 05:43](724 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:15, 16:17](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:13, 09:18] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 02:32](756 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:42, 01:33](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:37, 02:23](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:38, 02:25](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:40, 02:25](651 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:36, 02:31](768 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:37, 02:30](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:31, 02:22](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:00, 05:44](698 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:08, 05:45](681 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:31](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:49, 03:58](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:41, 03:57](1970 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 06:43] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:29, 05:13](753 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:14, 09:17] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:39, 02:29](756 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:13, 02:55] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:14](306 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 01:13](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:34, 00:51](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:18, 14:46] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:52, 04:02](1914 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:17, 13:16] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:29, 03:49](1899 MB) - -PASS -- COMPILE 'atml_intel' [17:14, 15:13] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:58, 06:51](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:51, 07:20](1886 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:03, 04:03](1039 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:13, 11:27] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:42, 06:20](1926 MB) - -PASS -- COMPILE 'atmw_intel' [16:14, 14:28] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:26, 02:16](1884 MB) - -PASS -- COMPILE 'atmaero_intel' [15:14, 13:24] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:31, 04:27](3128 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:44, 04:20](3002 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:07, 04:27](3014 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:14, 09:00] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:06, 22:02](4553 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:14, 11:50] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:37, 08:05](807 MB) +PASS -- COMPILE 's2swa_32bit_intel' [26:21, 24:44] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:40, 06:42](3203 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:22, 26:41] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:09, 14:46](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:22, 15:57](1941 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:21, 08:07](1064 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:26, 16:48](1885 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [28:22, 26:40] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:35, 14:37](1910 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:17, 15:15] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:03, 23:41](1936 MB) + +PASS -- COMPILE 's2swa_intel' [26:20, 24:30] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:47, 08:18](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:06, 08:20](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:49, 05:06](3148 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:47, 08:14](3252 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:02, 05:05](3178 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:32, 07:42](3746 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:32, 08:08](3220 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:18, 06:48](3535 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:03, 08:20](3231 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:34, 09:52](3819 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [31:58, 07:03](3613 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [31:03, 09:51](4513 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [32:22, 06:50](4671 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:10, 06:19](3211 MB) + +PASS -- COMPILE 's2sw_intel' [24:20, 22:35] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:38, 05:56](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:49, 08:04](1984 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:17, 14:57] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:07, 12:54](3300 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:17, 14:11] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:56, 08:46](1966 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [21:20, 19:02] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:52, 04:59](1987 MB) + +PASS -- COMPILE 's2s_intel' [21:24, 19:37] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:13, 06:00](2881 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:14, 02:44](2888 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:21, 01:50](2306 MB) + +PASS -- COMPILE 's2swa_faster_intel' [28:27, 26:50] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:30, 08:03](3248 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:25, 23:45] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:47, 14:56](1931 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:17, 08:10](1105 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:02, 16:56](1898 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:18, 12:51] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:42, 24:17](1948 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:26, 15:14] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:47, 03:32](665 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:18, 02:48](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:36, 02:46](1571 MB) +PASS -- TEST 'control_latlon_intel' [06:15, 02:43](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:07, 02:49](1566 MB) +PASS -- TEST 'control_c48_intel' [12:07, 09:21](1586 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:42, 05:20](712 MB) +PASS -- TEST 'control_c192_intel' [13:49, 10:01](1697 MB) +PASS -- TEST 'control_c384_intel' [20:09, 11:22](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [17:15, 07:15](1176 MB) +PASS -- TEST 'control_stochy_intel' [03:38, 01:33](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:39, 00:56](436 MB) +PASS -- TEST 'control_lndp_intel' [03:35, 01:24](623 MB) +PASS -- TEST 'control_iovr4_intel' [04:38, 02:10](622 MB) +PASS -- TEST 'control_iovr5_intel' [04:37, 02:14](617 MB) +PASS -- TEST 'control_p8_intel' [07:19, 03:37](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:58, 03:02](1864 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:47, 03:42](1853 MB) +PASS -- TEST 'control_restart_p8_intel' [05:28, 02:23](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:46, 03:36](1848 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:19, 02:16](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:35, 03:40](1842 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:35, 03:30](1941 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:47, 05:58](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:47, 04:04](1909 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:55, 03:08](1864 MB) +PASS -- TEST 'merra2_thompson_intel' [09:30, 03:22](1864 MB) +PASS -- TEST 'regional_control_intel' [08:03, 04:58](858 MB) +PASS -- TEST 'regional_restart_intel' [07:51, 03:07](860 MB) +PASS -- TEST 'regional_decomp_intel' [08:04, 05:08](864 MB) +PASS -- TEST 'regional_noquilt_intel' [07:57, 04:47](1189 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:59, 04:52](863 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:53, 04:54](862 MB) +PASS -- TEST 'regional_wofs_intel' [07:56, 05:40](1592 MB) + +PASS -- COMPILE 'rrfs_intel' [16:18, 14:21] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:32, 06:12](1006 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:23, 03:49](1159 MB) +PASS -- TEST 'rap_decomp_intel' [10:48, 06:29](1003 MB) +PASS -- TEST 'rap_2threads_intel' [09:32, 05:47](1090 MB) +PASS -- TEST 'rap_restart_intel' [07:22, 03:13](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:36, 06:16](1001 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:36, 06:27](1004 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:16, 04:41](878 MB) +PASS -- TEST 'hrrr_control_intel' [07:20, 03:18](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:24, 03:23](1001 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:13, 02:51](1079 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:40, 01:45](827 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:34, 06:07](1002 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:07, 07:31](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:06, 07:13](1954 MB) + +PASS -- COMPILE 'csawmg_intel' [15:24, 13:14] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:02, 06:28](962 MB) +PASS -- TEST 'control_ras_intel' [05:31, 02:57](657 MB) + +PASS -- COMPILE 'wam_intel' [15:20, 12:53] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:09, 10:17](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:19, 12:58] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:35, 03:11](1856 MB) +PASS -- TEST 'regional_control_faster_intel' [07:54, 04:45](862 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [18:25, 16:24] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:03, 02:20](1612 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:16, 02:08](1605 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:36, 02:52](810 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:32, 02:40](809 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:57, 04:44](1115 MB) +PASS -- TEST 'control_ras_debug_intel' [07:36, 02:39](816 MB) +PASS -- TEST 'control_diag_debug_intel' [08:36, 02:46](1661 MB) +PASS -- TEST 'control_debug_p8_intel' [10:00, 03:13](1896 MB) +PASS -- TEST 'regional_debug_intel' [19:58, 16:32](920 MB) +PASS -- TEST 'rap_control_debug_intel' [10:39, 04:43](1186 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:39, 04:38](1184 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:34, 04:40](1191 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [11:30, 04:44](1191 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:34, 04:43](1190 MB) +PASS -- TEST 'rap_diag_debug_intel' [12:30, 04:54](1273 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:32, 04:55](1190 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:41, 04:56](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [11:39, 04:44](1199 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:31, 04:45](1194 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:31, 04:35](1185 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [11:30, 04:44](1191 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:37, 07:32](1188 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:28, 04:39](1187 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [12:33, 05:51](1195 MB) +PASS -- TEST 'rap_flake_debug_intel' [14:37, 04:44](1190 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [19:04, 07:59](1190 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:21, 08:45] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:43, 12:10](1698 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:18, 12:02] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [19:15, 03:41](1015 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:04, 05:11](879 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:21, 02:49](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [15:53, 04:50](937 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [56:07, 02:33](931 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [16:02, 02:55](876 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:14, 03:56](788 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [27:22, 01:39](772 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:16, 12:21] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [22:26, 01:55](1075 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:17, 01:00](1072 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [18:52, 01:19](961 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 12:32] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:53, 03:50](901 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:16, 08:53] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [19:29, 04:32](1066 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [31:30, 04:36](1067 MB) +PASS -- TEST 'conus13km_debug_intel' [41:34, 13:57](1147 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [42:24, 14:04](831 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [19:22, 08:01](1146 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:13, 14:19](1214 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:15, 08:34] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [31:21, 04:43](1091 MB) + +PASS -- COMPILE 'hafsw_intel' [21:16, 18:49] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:28, 04:45](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [25:45, 05:20](1056 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:37, 06:34](752 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [21:23, 11:08](775 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:47, 12:14](801 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:23, 04:39](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:25, 05:52](487 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [16:00, 02:21](388 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [28:55, 06:21](454 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:06, 03:19](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:12, 03:05](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [20:27, 04:00](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:32, 01:16](419 MB) +PASS -- TEST 'gnv1_nested_intel' [31:00, 04:14](1707 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [12:14, 10:13] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:30, 12:24](623 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:17, 18:27] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:35, 07:17](627 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:44, 07:26](686 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [22:17, 19:52] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:31, 05:30](675 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:17, 17:31] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:13, 05:46](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 05:55](725 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:24, 16:12](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:14, 09:22] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [17:36, 02:33](768 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:36, 01:38](746 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:27, 02:24](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [18:30, 02:29](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:22, 02:27](653 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [18:33, 02:34](756 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:29, 02:32](767 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [18:28, 02:24](651 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [21:45, 05:45](697 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [22:37, 05:40](680 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [16:25, 02:30](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [18:38, 04:06](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [19:43, 03:58](2035 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 06:47] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [19:36, 05:20](752 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [33:45, 09:52] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:31, 02:30](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [24:48, 03:12] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [18:24, 01:25](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [18:16, 01:27](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [17:43, 00:50](457 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:48, 14:46] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [41:08, 04:02](1916 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [33:55, 14:02] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [37:43, 04:01](1899 MB) + +PASS -- COMPILE 'atml_intel' [30:50, 15:45] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [23:42, 07:22](1887 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [23:43, 07:25](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [15:03, 04:32](1034 MB) + +PASS -- COMPILE 'atml_debug_intel' [26:35, 12:19] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [18:50, 06:12](1928 MB) + +PASS -- COMPILE 'atmw_intel' [25:54, 15:17] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [39:37, 02:18](1880 MB) + +PASS -- COMPILE 'atmaero_intel' [24:52, 13:57] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [29:03, 04:24](3130 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:54, 04:27](3004 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:31, 04:29](3022 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [17:38, 09:29] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [35:59, 22:20](4546 MB) + +PASS -- COMPILE 'atm_fbh_intel' [18:48, 12:26] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [23:51, 08:11](814 MB) SYNOPSIS: -Starting Date/Time: 20240919 07:53:20 -Ending Date/Time: 20240919 09:42:54 -Total Time: 01h:50m:32s +Starting Date/Time: 20240920 08:26:12 +Ending Date/Time: 20240920 14:44:43 +Total Time: 06h:20m:53s Compiles Completed: 42/42 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 69dff2601c..1c8f6a1453 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a04244cbba4aaa7cd72d1546981457f04bea51e1 +34893eceee4525f5276fb3408f7432d3dc195032 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -37,287 +37,287 @@ 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-20240909 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_159670 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_79027 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:15, 18:43] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:25, 08:35](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:14, 21:54] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:41, 13:58](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:38, 14:11](1944 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:35, 06:48](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:37, 15:37](1891 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:12, 23:24] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:52, 13:53](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:14, 14:04] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [36:36, 25:58](1941 MB) - -PASS -- COMPILE 's2swa_intel' [21:11, 19:35] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:03, 10:24](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:12, 10:25](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [13:34, 06:24](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:05, 10:19](3252 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:47, 06:04](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:11, 08:59](3471 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:54, 10:08](3224 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:11, 08:51](3169 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:12, 10:14](3226 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:07, 10:05](3447 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:43, 06:34](3607 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:10, 10:00](4206 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:04, 06:04](4362 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:48, 08:11](3212 MB) - -PASS -- COMPILE 's2sw_intel' [20:15, 18:24] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:43, 06:12](1923 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:08, 08:51](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:14, 13:30] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:41, 14:31](3283 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:13, 12:51] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:41, 09:18](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:14, 16:13] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:53, 05:29](1992 MB) - -PASS -- COMPILE 's2s_intel' [18:14, 16:39] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [13:26, 05:33](2872 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [09:36, 01:57](2883 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:15, 01:07](2296 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:11, 20:54] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:52, 10:08](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:12, 22:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:36, 15:09](1923 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:48, 08:07](1098 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:37, 17:29](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:12, 15:25] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:26, 27:50](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:12, 14:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:51, 03:45](663 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:23, 03:45](1562 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:21, 03:52](1575 MB) -PASS -- TEST 'control_latlon_intel' [08:13, 03:19](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:23, 03:52](1565 MB) -PASS -- TEST 'control_c48_intel' [14:30, 09:52](1578 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:11, 05:44](699 MB) -PASS -- TEST 'control_c192_intel' [18:22, 11:33](1686 MB) -PASS -- TEST 'control_c384_intel' [31:45, 23:37](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [23:37, 14:44](1153 MB) -PASS -- TEST 'control_stochy_intel' [03:51, 01:58](620 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:31, 01:01](424 MB) -PASS -- TEST 'control_lndp_intel' [03:51, 02:02](619 MB) -PASS -- TEST 'control_iovr4_intel' [06:56, 02:58](618 MB) -PASS -- TEST 'control_iovr5_intel' [09:38, 02:40](618 MB) -PASS -- TEST 'control_p8_intel' [11:12, 03:41](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:34, 03:34](1862 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:10, 03:44](1860 MB) -PASS -- TEST 'control_restart_p8_intel' [05:06, 02:23](1012 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:02, 03:44](1853 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:15, 02:23](1021 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:11, 03:44](1847 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:11, 03:36](1942 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:50, 06:23](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:08, 04:11](1910 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:11, 03:38](1859 MB) -PASS -- TEST 'merra2_thompson_intel' [08:20, 04:04](1855 MB) -PASS -- TEST 'regional_control_intel' [07:42, 04:43](849 MB) -PASS -- TEST 'regional_restart_intel' [04:44, 02:33](854 MB) -PASS -- TEST 'regional_decomp_intel' [07:37, 05:05](849 MB) -PASS -- TEST 'regional_2threads_intel' [05:44, 02:54](993 MB) -PASS -- TEST 'regional_noquilt_intel' [06:44, 04:36](1179 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:47, 04:35](850 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:34, 04:40](857 MB) -PASS -- TEST 'regional_wofs_intel' [07:45, 06:04](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [16:12, 14:09] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:08, 06:50](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 03:44](1145 MB) -PASS -- TEST 'rap_decomp_intel' [10:05, 07:17](1004 MB) -PASS -- TEST 'rap_2threads_intel' [09:04, 06:23](1085 MB) -PASS -- TEST 'rap_restart_intel' [06:20, 03:27](872 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:05, 06:56](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:12, 07:30](1002 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:17, 04:53](871 MB) -PASS -- TEST 'hrrr_control_intel' [06:04, 03:49](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:03, 03:55](998 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:07, 03:05](1073 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:45, 02:03](827 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:12, 07:08](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:40, 08:40](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:31, 08:25](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [15:15, 13:33] -PASS -- TEST 'control_csawmg_intel' [08:41, 06:56](959 MB) -PASS -- TEST 'control_ras_intel' [06:34, 03:26](652 MB) - -PASS -- COMPILE 'wam_intel' [15:15, 12:53] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:24, 11:50](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:12, 14:01] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:27, 03:08](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [06:53, 04:26](846 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 14:50] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:13, 02:49](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:09, 02:41](1591 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:10](794 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:59](792 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:13](1096 MB) -PASS -- TEST 'control_ras_debug_intel' [04:29, 02:49](800 MB) -PASS -- TEST 'control_diag_debug_intel' [04:54, 02:58](1653 MB) -PASS -- TEST 'control_debug_p8_intel' [04:45, 03:00](1890 MB) -PASS -- TEST 'regional_debug_intel' [18:44, 16:11](886 MB) -PASS -- TEST 'rap_control_debug_intel' [06:35, 05:04](1179 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:46, 04:54](1169 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:31, 05:12](1176 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:06](1176 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:33, 05:04](1173 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:18](1258 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:33, 05:11](1173 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:34, 05:08](1176 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:38, 05:12](1178 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:37, 05:22](1173 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:37, 04:56](1169 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 05:06](1176 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:39, 08:24](1169 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:37, 05:13](1172 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:35, 06:25](1179 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:35, 05:23](1175 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:10, 08:32](1178 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:13, 10:48] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:11, 13:33](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 13:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:18, 03:41](1012 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:08, 05:56](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:00, 03:53](878 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:53, 05:27](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:08, 02:44](925 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:04, 03:47](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:55, 04:08](776 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:34, 01:38](760 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:47] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:19, 02:34](1083 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:59, 00:59](1063 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:00, 01:32](961 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:08, 04:38](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 10:24] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 05:15](1052 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:31, 04:48](1052 MB) -PASS -- TEST 'conus13km_debug_intel' [17:15, 14:55](1135 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:13, 14:37](807 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:00, 08:12](1111 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:37, 14:49](1200 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:11, 10:09] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 05:18](1078 MB) - -PASS -- COMPILE 'hafsw_intel' [19:12, 17:10] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:28, 04:47](688 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:46, 03:59](1036 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:47, 07:28](732 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:21, 11:35](760 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:45, 12:35](779 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:16, 05:01](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:36, 06:15](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:11, 02:30](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:03, 06:51](430 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:09, 03:35](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:14, 03:13](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:17, 04:08](557 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:46, 01:13](396 MB) -PASS -- TEST 'gnv1_nested_intel' [13:06, 05:18](1700 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:12, 12:13] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:13, 12:14](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:14, 16:11] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:20, 07:04](598 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:20, 07:14](775 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 16:49] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:07, 05:26](778 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:11, 15:49] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:34, 05:49](718 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:20, 06:10](708 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:17, 20:01](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:14, 13:34] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:34, 02:36](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:00](755 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:31, 02:26](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:27, 02:35](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:58, 02:29](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:28, 02:34](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:54, 02:36](765 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:30, 02:27](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:05, 06:08](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 05:52](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:28, 02:35](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:30, 04:39](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:33, 04:40](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:13, 08:25] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:27](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:14, 12:58] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:53, 02:32](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:15, 03:22] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:52, 02:53](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:49, 01:26](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:55, 01:01](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:13, 15:02] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:49, 04:34](1919 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:16, 14:24] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:36, 05:07](1907 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 14:47] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:55, 07:53](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:34, 08:40](1882 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [16:46, 04:14](1036 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:13, 11:56] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:39, 07:02](1907 MB) - -PASS -- COMPILE 'atmw_intel' [17:16, 15:15] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:56, 02:19](1888 MB) - -PASS -- COMPILE 'atmaero_intel' [16:14, 14:04] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:04, 06:10](3122 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:15, 07:00](3006 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:03, 06:43](3018 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:12, 11:31] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:49, 18:11](4486 MB) - -PASS -- COMPILE 'atm_fbh_intel' [15:14, 13:40] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:00, 08:56](800 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:13, 20:22] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:10, 08:17](3188 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:15, 24:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 13:44](1910 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:40, 14:48](1925 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [19:52, 06:50](1070 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:23, 15:04](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:16, 22:28] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:59, 13:20](1906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:11, 14:21] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:43, 25:33](1938 MB) + +PASS -- COMPILE 's2swa_intel' [21:12, 19:25] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:03, 11:09](3212 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:50, 10:28](3210 MB) +PASS -- TEST 'cpld_restart_p8_intel' [23:55, 06:13](3136 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:40, 10:54](3234 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [24:13, 06:33](3159 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:28, 08:28](3453 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:40, 10:01](3208 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:44, 08:55](3154 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:01, 10:12](3211 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:02, 09:56](3441 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [25:29, 06:38](3595 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:27, 09:19](4191 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:19, 06:01](4348 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:54, 08:31](3196 MB) + +PASS -- COMPILE 's2sw_intel' [20:11, 18:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:36, 05:58](1925 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:43, 08:44](1978 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:11, 14:24] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [18:25, 14:09](3271 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:11, 14:15] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:35, 09:06](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:12, 17:03] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:41, 05:20](1988 MB) + +PASS -- COMPILE 's2s_intel' [18:11, 16:56] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:14, 05:32](2865 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:28, 01:55](2875 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:09, 01:09](2287 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:13, 22:09] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [26:03, 10:00](3211 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:15, 23:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:10, 15:24](1922 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:31, 07:13](1095 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:33, 17:10](1902 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:12, 14:35] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:27, 27:53](1951 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:13, 16:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [18:31, 03:56](663 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [22:19, 03:22](1561 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:15, 03:53](1564 MB) +PASS -- TEST 'control_latlon_intel' [22:06, 03:38](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:18, 03:36](1571 MB) +PASS -- TEST 'control_c48_intel' [28:48, 09:57](1576 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [24:06, 05:42](697 MB) +PASS -- TEST 'control_c192_intel' [28:01, 11:11](1690 MB) +PASS -- TEST 'control_c384_intel' [40:22, 23:39](1957 MB) +PASS -- TEST 'control_c384gdas_intel' [30:21, 14:29](1150 MB) +PASS -- TEST 'control_stochy_intel' [11:42, 02:01](618 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:37, 01:13](423 MB) +PASS -- TEST 'control_lndp_intel' [10:45, 01:52](617 MB) +PASS -- TEST 'control_iovr4_intel' [13:48, 02:57](616 MB) +PASS -- TEST 'control_iovr5_intel' [13:36, 02:51](616 MB) +PASS -- TEST 'control_p8_intel' [14:27, 03:45](1857 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [13:32, 03:21](1857 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:20, 03:48](1856 MB) +PASS -- TEST 'control_restart_p8_intel' [05:17, 02:03](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:15, 04:00](1856 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:12, 02:36](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:25, 04:03](1848 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:12, 03:29](1930 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:54, 06:33](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:29, 04:34](1907 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:41, 03:32](1864 MB) +PASS -- TEST 'merra2_thompson_intel' [08:13, 03:57](1858 MB) +PASS -- TEST 'regional_control_intel' [07:40, 05:03](849 MB) +PASS -- TEST 'regional_restart_intel' [05:46, 02:49](846 MB) +PASS -- TEST 'regional_decomp_intel' [07:40, 04:59](848 MB) +PASS -- TEST 'regional_2threads_intel' [06:03, 03:02](987 MB) +PASS -- TEST 'regional_noquilt_intel' [06:40, 04:45](1170 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:51, 04:35](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 04:45](849 MB) +PASS -- TEST 'regional_wofs_intel' [08:47, 06:16](1573 MB) + +PASS -- COMPILE 'rrfs_intel' [16:14, 14:49] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:17, 06:55](998 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:21, 03:47](1128 MB) +PASS -- TEST 'rap_decomp_intel' [22:24, 07:11](995 MB) +PASS -- TEST 'rap_2threads_intel' [10:17, 06:08](1080 MB) +PASS -- TEST 'rap_restart_intel' [06:04, 03:25](865 MB) +PASS -- TEST 'rap_sfcdiff_intel' [22:22, 06:58](997 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [21:24, 07:16](998 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:15, 04:52](864 MB) +PASS -- TEST 'hrrr_control_intel' [10:17, 04:09](994 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:32, 04:58](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [17:20, 03:09](1070 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:39, 01:59](820 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:05, 07:49](991 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:04, 08:49](1950 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:04, 08:49](1942 MB) + +PASS -- COMPILE 'csawmg_intel' [16:12, 14:30] +PASS -- TEST 'control_csawmg_intel' [10:04, 06:57](955 MB) +PASS -- TEST 'control_ras_intel' [06:53, 03:43](652 MB) + +PASS -- COMPILE 'wam_intel' [16:11, 14:02] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:17, 11:51](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:11, 15:26] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:17, 03:17](1856 MB) +PASS -- TEST 'regional_control_faster_intel' [06:42, 04:30](845 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:12, 14:55] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:11, 02:52](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:04, 03:02](1590 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:09](791 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:36, 02:53](791 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:15](1091 MB) +PASS -- TEST 'control_ras_debug_intel' [05:29, 02:50](800 MB) +PASS -- TEST 'control_diag_debug_intel' [05:49, 03:13](1650 MB) +PASS -- TEST 'control_debug_p8_intel' [05:45, 03:01](1875 MB) +PASS -- TEST 'regional_debug_intel' [19:48, 16:13](884 MB) +PASS -- TEST 'rap_control_debug_intel' [08:35, 05:01](1171 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:35, 05:04](1166 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 05:09](1168 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:33, 05:07](1168 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:27, 05:11](1171 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:39, 05:34](1259 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:35, 05:20](1169 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:31, 05:26](1171 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:33, 05:07](1171 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 05:20](1171 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:39, 04:52](1167 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:39, 05:08](1171 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:56](1171 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:32, 05:01](1165 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:31, 06:05](1170 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:36, 04:59](1171 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:17, 08:32](1176 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:12, 11:24] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:11, 13:20](1679 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:12, 15:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:13, 03:31](1007 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:08, 05:50](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:13, 03:37](871 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:14, 05:18](931 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:12, 02:53](918 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:03, 03:43](872 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:59, 04:12](773 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:39, 01:43](754 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:11, 15:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:23, 02:12](1076 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:56, 01:00](1053 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:02, 01:26](953 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:13, 15:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:07, 04:28](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [14:12, 12:30] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 04:59](1049 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 05:16](1045 MB) +PASS -- TEST 'conus13km_debug_intel' [17:09, 14:09](1130 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:06, 14:37](803 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:01, 08:26](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:58, 14:38](1199 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:12, 11:26] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:33, 05:00](1070 MB) + +PASS -- COMPILE 'hafsw_intel' [20:12, 18:39] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:25, 04:50](682 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:44, 04:02](1029 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:48, 07:21](727 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:27, 11:48](762 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:08, 12:33](777 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:20, 05:12](464 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:36, 06:16](477 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:34, 02:29](364 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:05, 07:05](436 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:09, 03:45](493 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:16, 03:31](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:15, 04:07](553 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:46, 01:15](395 MB) +PASS -- TEST 'gnv1_nested_intel' [12:29, 05:07](1696 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:11, 13:43] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:18, 12:36](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:14, 17:07] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:17, 07:16](597 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:32, 07:08](777 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [22:11, 20:50] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:53, 05:30](778 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:15, 17:37] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [15:29, 05:58](721 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:19, 05:57](704 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:20, 20:28](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:12, 12:50] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:33, 02:36](752 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:36, 01:35](741 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [10:26, 02:27](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:32, 02:27](650 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [18:29, 02:31](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [18:34, 02:35](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [17:30, 02:37](752 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [17:29, 02:30](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [21:26, 06:07](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:09, 05:53](680 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [16:26, 02:34](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:25, 04:38](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [18:30, 04:39](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:12, 08:25] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [18:31, 05:30](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [16:14, 14:05] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [15:29, 02:33](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 03:43] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [14:05, 01:49](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:53, 01:13](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:57, 01:07](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 15:32] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:33, 04:12](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:11, 14:14] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [14:32, 04:02](1895 MB) + +PASS -- COMPILE 'atml_intel' [17:12, 15:26] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:05, 07:36](1889 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [16:04, 07:18](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:03, 04:12](1031 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:11, 12:50] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:49, 06:25](1918 MB) + +PASS -- COMPILE 'atmw_intel' [17:13, 15:47] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:06, 02:28](1879 MB) + +PASS -- COMPILE 'atmaero_intel' [17:15, 14:57] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [13:39, 06:19](3108 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [13:37, 06:44](2993 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:25, 06:58](3007 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [14:11, 12:39] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:36, 18:21](4361 MB) + +PASS -- COMPILE 'atm_fbh_intel' [16:14, 14:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:51, 08:57](797 MB) SYNOPSIS: -Starting Date/Time: 20240918 23:35:48 -Ending Date/Time: 20240919 01:30:37 -Total Time: 01h:55m:53s +Starting Date/Time: 20240920 15:26:28 +Ending Date/Time: 20240920 17:29:12 +Total Time: 02h:04m:00s Compiles Completed: 42/42 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 60f1b9f054..2a303310d1 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -9e7771572ae0e1b5f6c71e6bc0e1e8f79b7af8b5 +b95e609779120a4b25ff8dfad685996d7be80821 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -26,376 +26,376 @@ 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-20240909 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3988882 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3789171 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:12, 12:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:23, 06:34](3332 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:12, 16:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:05, 17:24](1974 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:26, 18:09](2155 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:18, 08:22](1286 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:57, 19:41](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 16:33] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:44, 17:06](1962 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:54] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:00, 23:54](1939 MB) - -PASS -- COMPILE 's2swa_intel' [15:12, 12:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:19, 07:48](3355 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:26, 07:38](3339 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:22, 04:28](3271 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:19, 07:43](3388 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:22, 04:19](3291 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:19, 07:22](3644 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:15, 07:52](3326 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:14, 06:12](3237 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:24, 07:44](3370 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:16, 10:24](3535 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 06:31](3611 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:50, 08:53](4301 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:40, 06:09](4384 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:13, 05:38](3342 MB) - -PASS -- COMPILE 's2sw_intel' [14:12, 12:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:59, 05:49](1979 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:04, 07:34](2037 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:12, 06:06] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:56, 13:30](3413 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:25] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:04, 09:14](2010 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:41] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:58, 04:21](2053 MB) - -PASS -- COMPILE 's2s_intel' [13:12, 11:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:39, 07:45](3033 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:40, 02:45](3043 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:41, 01:34](2481 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:51] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:23, 07:19](3367 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:25] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:13, 17:33](2024 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:10, 08:20](1283 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:07, 20:01](1948 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 05:41] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:12, 26:41](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:51] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:25, 03:26](706 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:51, 03:12](1596 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:50, 03:16](1597 MB) -PASS -- TEST 'control_latlon_intel' [06:44, 03:16](1598 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:17](1597 MB) -PASS -- TEST 'control_c48_intel' [13:51, 11:28](1724 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:29](859 MB) -PASS -- TEST 'control_c192_intel' [15:06, 12:01](1737 MB) -PASS -- TEST 'control_c384_intel' [18:13, 13:46](1987 MB) -PASS -- TEST 'control_c384gdas_intel' [12:54, 08:21](1389 MB) -PASS -- TEST 'control_stochy_intel' [03:21, 01:40](661 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:24, 01:01](507 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:35](657 MB) -PASS -- TEST 'control_iovr4_intel' [04:21, 02:31](659 MB) -PASS -- TEST 'control_iovr5_intel' [04:23, 02:29](667 MB) -PASS -- TEST 'control_p8_intel' [05:54, 03:42](1869 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:09](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:50, 03:41](1883 MB) -PASS -- TEST 'control_restart_p8_intel' [03:44, 02:01](1132 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:46, 03:36](1877 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:56, 02:00](1166 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:44, 03:43](1874 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:44, 03:29](1958 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:44, 06:31](1893 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:47, 04:03](1953 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:52, 03:05](1901 MB) -PASS -- TEST 'merra2_thompson_intel' [05:51, 03:21](1902 MB) -PASS -- TEST 'regional_control_intel' [07:36, 05:20](1094 MB) -PASS -- TEST 'regional_restart_intel' [04:38, 02:54](1085 MB) -PASS -- TEST 'regional_decomp_intel' [07:35, 05:38](1092 MB) -PASS -- TEST 'regional_2threads_intel' [05:33, 03:24](1091 MB) -PASS -- TEST 'regional_noquilt_intel' [07:38, 05:18](1394 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:36, 05:21](1091 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:25](1099 MB) -PASS -- TEST 'regional_wofs_intel' [08:35, 06:53](1914 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 10:31] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:40, 07:49](1107 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:07, 04:08](1248 MB) -PASS -- TEST 'rap_decomp_intel' [10:34, 08:09](1038 MB) -PASS -- TEST 'rap_2threads_intel' [09:35, 07:23](1165 MB) -PASS -- TEST 'rap_restart_intel' [05:42, 04:03](1098 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:39, 07:46](1098 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:36, 08:10](1033 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:45, 05:53](1126 MB) -PASS -- TEST 'hrrr_control_intel' [05:46, 03:59](1044 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 04:06](1034 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:32, 03:40](1105 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:12](1002 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:43, 07:42](1095 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:25](1986 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:10](2055 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 09:58] -PASS -- TEST 'control_csawmg_intel' [08:35, 06:14](1024 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:18](759 MB) - -PASS -- COMPILE 'csawmg_gnu' [08:12, 04:19] -PASS -- TEST 'control_csawmg_gnu' [11:35, 08:22](746 MB) - -PASS -- COMPILE 'wam_intel' [12:12, 10:09] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:48, 11:21](1678 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 10:09] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:48, 02:45](1891 MB) -PASS -- TEST 'regional_control_faster_intel' [06:33, 04:50](1092 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 07:37] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:38, 02:10](1622 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:39, 02:10](1619 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:21, 03:05](833 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:44](831 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:37, 04:20](1140 MB) -PASS -- TEST 'control_ras_debug_intel' [04:21, 02:53](836 MB) -PASS -- TEST 'control_diag_debug_intel' [04:44, 02:51](1679 MB) -PASS -- TEST 'control_debug_p8_intel' [04:38, 02:50](1898 MB) -PASS -- TEST 'regional_debug_intel' [19:38, 17:47](1097 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 05:01](1217 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:49](1213 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:59](1217 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:55](1217 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:54](1214 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:35, 05:24](1302 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:03](1217 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:09](1216 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:00](1222 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:57](1227 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:53](1216 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 05:03](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 08:06](1213 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:56](1217 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:55](1218 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:57](1217 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:42, 08:36](1228 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 04:00] -PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:19](728 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:41] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:49, 13:27](1695 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:47] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:04, 03:53](1125 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:27](1048 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:38, 03:25](993 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:35, 06:12](1091 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:30, 03:13](958 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:38](930 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:46, 05:00](1031 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:25, 01:54](931 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:59, 02:10](1194 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:54](1117 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:20](1098 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:09](985 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:57] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:56](1097 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 05:02](1092 MB) -PASS -- TEST 'conus13km_debug_intel' [17:45, 15:10](1230 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:59](932 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 08:25](1164 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:53](1301 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:48] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 05:06](1147 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 11:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:02](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:19](1094 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:25, 06:59](809 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:19, 13:31](849 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:40, 15:14](867 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:08, 05:29](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:43](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:49, 02:44](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:34, 07:13](473 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:42](521 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:59, 03:32](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:08](581 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:18](400 MB) -PASS -- TEST 'gnv1_nested_intel' [07:35, 04:14](1741 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:57] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 13:22](588 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:21] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:05, 08:55](658 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 08:51](695 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:30, 06:32](727 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 10:46] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:31](811 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:43](799 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:59, 16:18](1218 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:27] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:54](1170 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:40](1114 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:45](1044 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:23, 02:39](1031 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:41](1025 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:44](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:45](1169 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:38](1039 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:55, 06:13](1075 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:41, 06:29](1061 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:46](1157 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 04:13](2451 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:21, 03:59](2462 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:14] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:22, 06:30](1080 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:46] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:46](1158 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:08] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:30, 00:46](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 00:54](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](322 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:36] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:22, 03:50](1945 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:18] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 03:36](1933 MB) - -PASS -- COMPILE 'atml_intel' [12:13, 10:40] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:05, 04:25](1868 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:00, 04:29](1867 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:43, 02:30](1099 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 05:57] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:57, 05:53](1902 MB) - -PASS -- COMPILE 'atmw_intel' [12:13, 10:57] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:56](1937 MB) - -PASS -- COMPILE 'atmaero_intel' [12:12, 10:42] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:56, 04:24](3207 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:57, 04:56](3108 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:47, 04:58](3127 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:35] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:31] -PASS -- TEST 'control_c48_gnu' [11:42, 09:17](1511 MB) -PASS -- TEST 'control_stochy_gnu' [05:26, 03:34](499 MB) -PASS -- TEST 'control_ras_gnu' [06:23, 04:57](506 MB) -PASS -- TEST 'control_p8_gnu' [08:07, 05:12](1457 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:59, 05:09](1458 MB) -PASS -- TEST 'control_flake_gnu' [12:25, 10:27](540 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:17] -PASS -- TEST 'rap_control_gnu' [12:33, 10:50](843 MB) -PASS -- TEST 'rap_decomp_gnu' [12:31, 11:04](812 MB) -PASS -- TEST 'rap_2threads_gnu' [11:44, 10:04](921 MB) -PASS -- TEST 'rap_restart_gnu' [07:41, 05:34](578 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:49, 10:55](813 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:33, 11:10](815 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:41, 07:59](580 MB) -PASS -- TEST 'hrrr_control_gnu' [07:43, 05:37](812 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:39, 05:45](834 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:50, 05:05](911 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:35, 05:40](813 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:28, 02:59](564 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:30, 02:55](659 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:46, 10:32](809 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:29] -PASS -- TEST 'control_diag_debug_gnu' [03:49, 01:41](1275 MB) -PASS -- TEST 'regional_debug_gnu' [13:39, 11:26](743 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:39](827 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:27, 02:38](825 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:37](826 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:23, 02:36](830 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:46, 02:53](912 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:25, 04:04](821 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:42](827 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:38](821 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:24, 01:37](461 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:47](450 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:36](1433 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:24, 02:35](823 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:23, 02:50](824 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:43, 04:25](831 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:33] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:06] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:32, 09:26](716 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:42, 04:55](709 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:40, 08:39](751 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:33, 04:40](751 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:35, 05:18](706 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:36, 07:03](556 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:25, 02:37](539 MB) -PASS -- TEST 'conus13km_control_gnu' [06:26, 03:15](876 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:47, 05:37](875 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:45, 01:49](559 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:45] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:43, 05:39](728 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:27, 02:32](719 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:24, 02:33](718 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:48, 07:06](894 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:43, 07:10](582 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 06:58](897 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:45, 07:06](962 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:31] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:28, 02:36](748 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 16:29] - -PASS -- COMPILE 's2s_gnu' [18:11, 16:09] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [17:10, 14:27](1520 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:08] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 16:18] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:59, 19:49](1471 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:58] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:45] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:01](696 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:20](1090 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:09, 06:35](3310 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:27] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:10, 17:37](1974 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 18:13](2158 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 08:26](1260 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:09, 19:42](1857 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:12, 17:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:53, 17:19](1935 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:09] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:04, 23:51](1925 MB) + +PASS -- COMPILE 's2swa_intel' [15:11, 13:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:20, 07:40](3339 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:32, 07:36](3361 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:23, 04:18](3261 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:20, 07:49](3350 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:23, 04:22](3276 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:21, 07:17](3643 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:19, 07:54](3307 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:21, 06:16](3222 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:32, 07:41](3330 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:19, 10:25](3528 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:49, 06:39](3623 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:12, 09:10](4278 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:17, 05:46](4374 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:18, 05:32](3311 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 12:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:08, 05:50](1992 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:12, 07:24](2011 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:12] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:07, 13:41](3401 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:50] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:01, 09:17](2007 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:30] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:16, 04:32](2038 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 11:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:54, 07:54](3038 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 02:43](3027 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:58, 01:35](2490 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:56] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:28, 07:20](3355 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:54] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:19, 17:33](2007 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:23, 08:28](1271 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:04, 20:08](1918 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 06:16] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:21, 26:17](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:18] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:25, 03:23](704 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 03:15](1581 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:19](1596 MB) +PASS -- TEST 'control_latlon_intel' [05:41, 03:14](1575 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 03:15](1585 MB) +PASS -- TEST 'control_c48_intel' [13:42, 11:29](1719 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:27, 06:30](849 MB) +PASS -- TEST 'control_c192_intel' [14:17, 12:03](1761 MB) +PASS -- TEST 'control_c384_intel' [17:23, 13:56](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [13:13, 08:11](1373 MB) +PASS -- TEST 'control_stochy_intel' [03:28, 01:38](654 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:02](509 MB) +PASS -- TEST 'control_lndp_intel' [03:25, 01:34](658 MB) +PASS -- TEST 'control_iovr4_intel' [04:26, 02:30](649 MB) +PASS -- TEST 'control_iovr5_intel' [04:25, 02:32](656 MB) +PASS -- TEST 'control_p8_intel' [05:56, 03:46](1857 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:56, 03:09](1854 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:42](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [04:51, 02:05](1119 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:44](1872 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:53, 02:00](1164 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:47, 03:47](1874 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:46, 03:34](1963 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:42, 06:31](1890 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:51, 04:09](1925 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:11](1905 MB) +PASS -- TEST 'merra2_thompson_intel' [05:52, 03:28](1903 MB) +PASS -- TEST 'regional_control_intel' [07:38, 05:22](1088 MB) +PASS -- TEST 'regional_restart_intel' [05:36, 03:02](1080 MB) +PASS -- TEST 'regional_decomp_intel' [07:33, 05:42](1082 MB) +PASS -- TEST 'regional_2threads_intel' [05:38, 03:26](1087 MB) +PASS -- TEST 'regional_noquilt_intel' [07:43, 05:17](1385 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:23](1087 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:19](1084 MB) +PASS -- TEST 'regional_wofs_intel' [08:36, 07:01](1897 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 10:53] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:45, 07:54](1101 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:21, 04:13](1245 MB) +PASS -- TEST 'rap_decomp_intel' [10:44, 08:12](1029 MB) +PASS -- TEST 'rap_2threads_intel' [09:45, 07:22](1166 MB) +PASS -- TEST 'rap_restart_intel' [06:49, 04:07](1104 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:47, 07:47](1108 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:44, 08:14](1033 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:48, 05:51](1136 MB) +PASS -- TEST 'hrrr_control_intel' [06:45, 04:01](1041 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:45, 04:06](1022 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:48, 03:41](1099 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:13](990 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:55, 07:42](1099 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:32, 09:25](1963 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 09:04](2056 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:51] +PASS -- TEST 'control_csawmg_intel' [08:47, 06:13](1028 MB) +PASS -- TEST 'control_ras_intel' [05:24, 03:18](743 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:10, 04:15] +PASS -- TEST 'control_csawmg_gnu' [10:49, 08:26](739 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 10:26] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:46, 11:26](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:48] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:58, 02:52](1884 MB) +PASS -- TEST 'regional_control_faster_intel' [07:37, 04:56](1076 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:43] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:43, 02:13](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:10](1615 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:20, 03:10](825 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:49](832 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:22](1135 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:55](833 MB) +PASS -- TEST 'control_diag_debug_intel' [05:47, 02:50](1687 MB) +PASS -- TEST 'control_debug_p8_intel' [05:40, 02:45](1892 MB) +PASS -- TEST 'regional_debug_intel' [19:38, 17:48](1133 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 05:02](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:54](1215 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 05:02](1215 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 05:08](1207 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:07](1210 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:29](1296 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:12](1212 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 05:17](1209 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:01](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 05:05](1212 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:53](1209 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 05:05](1209 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 08:24](1213 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:59](1210 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:24, 06:27](1192 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:23, 05:03](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:40, 08:39](1216 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:18] +PASS -- TEST 'control_csawmg_debug_gnu' [04:46, 02:22](714 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:12, 05:45] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:45, 13:44](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:03, 03:57](1119 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:30](1044 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:36, 03:27](976 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:34, 06:11](1082 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:11](954 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:37](931 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:54](1021 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:24, 01:52](920 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:57, 02:09](1191 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:50, 00:57](1106 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:16](1098 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:03] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:17](978 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:05] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:22, 05:02](1089 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:56](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [17:49, 15:23](1234 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:45, 15:28](931 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:43, 08:29](1149 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 15:13](1297 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:35] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:23, 05:12](1106 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 11:32] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:06](731 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:08](1095 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:27, 07:01](817 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:14, 13:34](847 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:31, 15:22](864 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:16, 05:29](490 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:59](506 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 02:41](379 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:02, 07:22](464 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 03:44](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:56, 03:29](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:18](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:10](400 MB) +PASS -- TEST 'gnv1_nested_intel' [07:29, 04:12](1729 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:37] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:49, 13:19](588 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:19] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:55, 08:45](640 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:04, 08:53](733 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:43] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:25, 06:28](720 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:56] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:12, 06:33](822 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:09, 06:35](793 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:53, 16:04](1213 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:35] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:41](1161 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:37](1101 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:39](1037 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:37](1025 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:37](1032 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:35](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:42](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:31](1033 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:18, 06:18](1068 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:14, 06:13](1048 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:40](1163 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 03:52](2464 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:52](2463 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:27] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:27](1084 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:40] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:41](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:20] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:45](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:52](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:32](326 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:01] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:03, 03:42](1984 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:26] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:53, 03:35](1958 MB) + +PASS -- COMPILE 'atml_intel' [12:12, 11:01] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:58, 04:23](1846 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:55, 04:19](1855 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:39, 02:25](1077 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 05:50] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:50, 05:52](1893 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:27] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:43, 01:52](1915 MB) + +PASS -- COMPILE 'atmaero_intel' [12:10, 10:28] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:52, 04:05](3198 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:53, 04:53](3094 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:41, 05:12](3112 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:41] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:42] +PASS -- TEST 'control_c48_gnu' [11:36, 09:11](1508 MB) +PASS -- TEST 'control_stochy_gnu' [05:21, 03:22](493 MB) +PASS -- TEST 'control_ras_gnu' [06:21, 04:48](497 MB) +PASS -- TEST 'control_p8_gnu' [07:58, 05:11](1455 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:54, 05:06](1456 MB) +PASS -- TEST 'control_flake_gnu' [12:21, 10:31](531 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:10, 04:29] +PASS -- TEST 'rap_control_gnu' [12:29, 10:50](811 MB) +PASS -- TEST 'rap_decomp_gnu' [12:31, 11:06](811 MB) +PASS -- TEST 'rap_2threads_gnu' [11:35, 09:43](919 MB) +PASS -- TEST 'rap_restart_gnu' [07:40, 05:37](577 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:39, 10:53](846 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:39, 11:04](840 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:43, 08:04](577 MB) +PASS -- TEST 'hrrr_control_gnu' [07:34, 05:43](805 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:34, 05:35](827 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:38, 05:03](911 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:38](804 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:25, 02:56](563 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:24, 02:49](650 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:58, 10:28](841 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:43] +PASS -- TEST 'control_diag_debug_gnu' [03:43, 01:37](1269 MB) +PASS -- TEST 'regional_debug_gnu' [13:34, 11:53](752 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:39](818 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:20, 02:35](816 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:38](819 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:39](822 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:36, 02:47](904 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:20, 04:08](820 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:38](825 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:37](818 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:34](454 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:44](449 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:40](1429 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:43](818 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:54](819 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:45, 04:24](820 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:36] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:08] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:35, 09:28](699 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:39, 04:56](693 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:39, 08:31](742 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:32, 04:30](746 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 05:05](697 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:40, 06:56](548 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:33, 02:35](529 MB) +PASS -- TEST 'conus13km_control_gnu' [05:58, 03:14](866 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:42, 05:42](871 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:44, 01:55](558 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:34] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:41, 05:46](725 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 06:44] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:36](708 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:29](709 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:48, 07:04](884 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:47, 07:16](575 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 07:47](886 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:42, 07:05](949 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:42] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:37](737 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:30] + +PASS -- COMPILE 's2s_gnu' [18:12, 16:11] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:00, 11:00](1499 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:08] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 15:53] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:58, 23:00](1455 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:56] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:35] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:25, 02:57](697 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:28, 11:40](1082 MB) SYNOPSIS: -Starting Date/Time: 20240917 23:56:35 -Ending Date/Time: 20240918 01:39:45 -Total Time: 01h:43m:27s +Starting Date/Time: 20240920 14:14:41 +Ending Date/Time: 20240920 16:00:24 +Total Time: 01h:46m:04s Compiles Completed: 58/58 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 82a91d427e..266a62f75d 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,33 +1,68 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -9e7771572ae0e1b5f6c71e6bc0e1e8f79b7af8b5 +c1728190d100b0c3924807bf950e747998706f4f Submodule hashes used in testing: +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 05:03](1736 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:52, 09:08](2548 MB) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQPASS -- TEST 'cpld_decomp_p8_intel' [09:06, 08:16](2181 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:30, 06:56](2092 MB) + (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) + 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICEPASS -- TEST 'cpld_control_ciceC_p8_intel' [08:33, 07:51](2193 MB) + (CICE6.0.0-373-g635d9a1) + 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepackPASS -- TEST 'cpld_control_c192_p8_intel' [17:19, 15:51](2960 MB) + (Icepack1.1.0-191-g4c87095) + dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPSPASS -- TEST 'cpld_restart_c192_p8_intel' [07:39, 05:52](2904 MB) + (cmeps_v0.4.1-2310-gdc977bc) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModulesPASS -- TEST 'cpld_bmark_p8_intel' [14:15, 09:50](3805 MB) + (v1.0.0-28-gcabd775) + a9364591091c836984a40107729720705847c195 FV3PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:18, 05:21](3633 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:38, 05:07](2143 MB) + (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework +PASS -- COMPILE 's2sw_intel' [12:10, 12:10] + (2024-07-11-dev) + b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physicsPASS -- TEST 'cpld_control_noaero_p8_intel' [08:02, 07:19](2008 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:33, 06:59](2062 MB) + (EP4-873-gb6c43335) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp +PASS -- COMPILE 's2swa_debug_intel' [07:50, 07:50] + (v1.6) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/uppPASS -- TEST 'cpld_debug_p8_intel' [12:48, 12:03](2231 MB) + (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART +PASS -- COMPILE 's2sw_debug_intel' [06:50, 06:50] + (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 08:21](2044 MB) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 +PASS -- COMPILE 's2s_aoflux_intel' [11:02, 11:02] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:13, 04:26](2065 MB) + +PASS -- COMPILE 's2s_intel' [11:01, 11:01] +PASS -- TEST 'cpld_control_c48_intel' [06:26, 05:57](3026 MB) + (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-srcPASS -- TEST 'cpld_warmstart_c48_intel' [02:35, 02:05](3031 MB) + (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-FortranPASS -- TEST 'cpld_restart_c48_intel' [01:32, 01:15](2482 MB) + (29e64d6) + +PASS -- COMPILE 's2swa_faster_intel' [12:52, 12:51] 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3PASS -- TEST 'cpld_control_p8_faster_intel' [08:49, 08:07](2199 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:23, 16:22] + (6.07.1-346-g7f548c79) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behaviorPASS -- TEST 'cpld_control_pdlib_p8_intel' [14:55, 14:14](2061 MB) + (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physicsPASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:41, 06:55](1400 MB) + (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -37,377 +72,697 @@ 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-20240909 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_594867 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3463251 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:12, 15:30](1986 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:09, 05:09] + +PASS -- COMPILE 's2swa_32bit_intel' [12:44, 12:44] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:34, 23:52](2002 MB) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:40, 07:47](2137 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:00, 09:00] + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:08, 22:08] +PASS -- TEST 'control_flake_intel' [03:07, 02:52](712 MB) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:23, 13:29](1995 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:02, 02:43](1572 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:10, 14:14](2276 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:07, 02:46](1590 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:46, 06:33](1349 MB) +PASS -- TEST 'control_latlon_intel' [02:58, 02:40](1595 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:03, 15:11](1902 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:53](1598 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:22, 17:21] +PASS -- TEST 'control_c48_intel' [11:00, 10:38](1706 MB) +PASS -- TEST 'cpld_control_sfs_intel' [13:44, 13:16](1980 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:29, 06:16](836 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:52, 07:51] +PASS -- TEST 'control_c192_intel' [11:04, 10:30](1770 MB) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:48, 21:57](1968 MB) +PASS -- TEST 'control_c384_intel' [13:20, 12:13](2024 MB) + +PASS -- COMPILE 's2swa_intel' [12:58, 12:58] +PASS -- TEST 'control_c384gdas_intel' [08:44, 07:15](1506 MB) +PASS -- TEST 'cpld_control_p8_intel' [09:16, 08:25](2205 MB) +PASS -- TEST 'control_stochy_intel' [01:43, 01:26](671 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:34, 08:53](2204 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:54](530 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:12, 05:13](1950 MB) +PASS -- TEST 'control_lndp_intel' [01:38, 01:22](663 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:55, 08:10](2213 MB) +PASS -- TEST 'control_iovr4_intel' [02:21, 02:11](656 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 05:03](1736 MB) +PASS -- TEST 'control_iovr5_intel' [02:18, 02:07](662 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:52, 09:08](2548 MB) +PASS -- TEST 'control_p8_intel' [03:44, 03:12](1877 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:06, 08:16](2181 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:24, 02:45](1896 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:30, 06:56](2092 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:44, 03:05](1890 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:33, 07:51](2193 MB) +PASS -- TEST 'control_restart_p8_intel' [02:35, 01:53](1152 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:19, 15:51](2960 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:36, 03:05](1871 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:39, 05:52](2904 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:34, 01:52](1202 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:15, 09:50](3805 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:59, 03:19](1880 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:18, 05:21](3633 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:27, 02:58](1955 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:38, 05:07](2143 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:03, 05:38](1886 MB) + +PASS -- COMPILE 's2sw_intel' [12:10, 12:10] +PASS -- TEST 'control_p8_rrtmgp_intel' [05:00, 04:16](1971 MB) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:02, 07:19](2008 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:28, 02:44](1903 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:33, 06:59](2062 MB) +PASS -- TEST 'merra2_thompson_intel' [03:57, 03:14](1897 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:50, 07:50] +PASS -- TEST 'regional_control_intel' [05:25, 05:09](1181 MB) +PASS -- TEST 'cpld_debug_p8_intel' [12:48, 12:03](2231 MB) +PASS -- TEST 'regional_restart_intel' [02:57, 02:39](1154 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:50, 06:50] +PASS -- TEST 'regional_decomp_intel' [05:14, 04:57](1169 MB) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 08:21](2044 MB) +PASS -- TEST 'regional_2threads_intel' [03:15, 03:00](1143 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:02, 11:02] +PASS -- TEST 'regional_noquilt_intel' [04:46, 04:30](1514 MB) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:13, 04:26](2065 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:11, 04:44](1199 MB) + +PASS -- COMPILE 's2s_intel' [11:01, 11:01] +PASS -- TEST 'regional_2dwrtdecomp_intel' [04:50, 04:35](1193 MB) +PASS -- TEST 'cpld_control_c48_intel' [06:26, 05:57](3026 MB) +PASS -- TEST 'regional_wofs_intel' [06:16, 05:58](2083 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:35, 02:05](3031 MB) + +PASS -- COMPILE 'rrfs_intel' [08:57, 08:57] +PASS -- TEST 'cpld_restart_c48_intel' [01:32, 01:15](2482 MB) +PASS -- TEST 'rap_control_intel' [07:16, 06:42](1210 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:52, 12:51] +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:30, 03:55](1365 MB) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:49, 08:07](2199 MB) +PASS -- TEST 'rap_decomp_intel' [07:52, 07:08](1130 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:23, 16:22] +PASS -- TEST 'rap_2threads_intel' [06:50, 06:17](1370 MB) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:55, 14:14](2061 MB) +PASS -- TEST 'rap_restart_intel' [04:13, 03:41](1127 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:41, 06:55](1400 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:09, 06:32](1201 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:12, 15:30](1986 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:32, 06:58](1144 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:09, 05:09] +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:56, 05:10](1203 MB) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:34, 23:52](2002 MB) +PASS -- TEST 'hrrr_control_intel' [04:03, 03:27](1072 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:09, 03:33](1036 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:00, 09:00] +PASS -- TEST 'hrrr_control_2threads_intel' [04:46, 04:05](1107 MB) +PASS -- TEST 'control_flake_intel' [03:07, 02:52](712 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:14, 01:54](1025 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:02, 02:43](1572 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:10, 06:28](1200 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:07, 02:46](1590 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:00, 07:48](2002 MB) +PASS -- TEST 'control_latlon_intel' [02:58, 02:40](1595 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:49, 07:31](2175 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:53](1598 MB) + +PASS -- TEST 'control_c48_intel' [11:00, 10:38](1706 MB) +PASS -- COMPILE 'csawmg_intel' [09:13, 09:12] +PASS -- TEST 'control_c48.v2.sfc_intel' [06:29, 06:16](836 MB) +PASS -- TEST 'control_csawmg_intel' [05:53, 05:38](1038 MB) +PASS -- TEST 'control_c192_intel' [11:04, 10:30](1770 MB) +PASS -- TEST 'control_ras_intel' [03:06, 02:56](844 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:15, 04:14] +PASS -- TEST 'control_c384_intel' [13:20, 12:13](2024 MB) +PASS -- TEST 'control_csawmg_gnu' [09:52, 09:38](1055 MB) +PASS -- TEST 'control_c384gdas_intel' [08:44, 07:15](1506 MB) + +PASS -- COMPILE 'wam_intel' [08:24, 08:24] +PASS -- TEST 'control_stochy_intel' [01:43, 01:26](671 MB) +PASS -- TEST 'control_wam_intel' [10:22, 10:00](1657 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:54](530 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:28, 08:27] +PASS -- TEST 'control_lndp_intel' [01:38, 01:22](663 MB) +PASS -- TEST 'control_p8_faster_intel' [03:27, 02:40](1892 MB) +PASS -- TEST 'control_iovr4_intel' [02:21, 02:11](656 MB) +PASS -- TEST 'regional_control_faster_intel' [04:43, 04:27](1186 MB) +PASS -- TEST 'control_iovr5_intel' [02:18, 02:07](662 MB) +PASS -- TEST 'control_p8_intel' [03:44, 03:12](1877 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 07:07] +PASS -- TEST 'control_p8.v2.sfc_intel' [03:24, 02:45](1896 MB) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:32, 02:08](1616 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:44, 03:05](1890 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:30, 02:00](1629 MB) +PASS -- TEST 'control_restart_p8_intel' [02:35, 01:53](1152 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:13](843 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:36, 03:05](1871 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:39, 02:29](841 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:34, 01:52](1202 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:26, 04:07](1155 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:59, 03:19](1880 MB) +PASS -- TEST 'control_ras_debug_intel' [02:42, 02:30](841 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:27, 02:58](1955 MB) +PASS -- TEST 'control_diag_debug_intel' [02:50, 02:24](1698 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:03, 05:38](1886 MB) +PASS -- TEST 'control_debug_p8_intel' [03:52, 03:26](1908 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:00, 04:16](1971 MB) +PASS -- TEST 'regional_debug_intel' [16:43, 16:23](1144 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:28, 02:44](1903 MB) +PASS -- TEST 'rap_control_debug_intel' [04:39, 04:20](1220 MB) +PASS -- TEST 'merra2_thompson_intel' [03:57, 03:14](1897 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:32, 04:15](1211 MB) +PASS -- TEST 'regional_control_intel' [05:25, 05:09](1181 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:45, 04:28](1223 MB) +PASS -- TEST 'regional_restart_intel' [02:57, 02:39](1154 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:32, 04:25](1233 MB) +PASS -- TEST 'regional_decomp_intel' [05:14, 04:57](1169 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:40, 04:26](1218 MB) +PASS -- TEST 'regional_2threads_intel' [03:15, 03:00](1143 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:41, 04:28](1313 MB) +PASS -- TEST 'regional_noquilt_intel' [04:46, 04:30](1514 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:38, 04:25](1217 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:11, 04:44](1199 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:42, 04:33](1218 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [04:50, 04:35](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:27, 04:20](1210 MB) +PASS -- TEST 'regional_wofs_intel' [06:16, 05:58](2083 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:28, 04:20](1220 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:15](1224 MB) + +PASS -- COMPILE 'rrfs_intel' [08:57, 08:57] +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:20, 04:12](1235 MB) +PASS -- TEST 'rap_control_intel' [07:16, 06:42](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:43, 07:26](1218 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:30, 03:55](1365 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:45, 04:31](1227 MB) +PASS -- TEST 'rap_decomp_intel' [07:52, 07:08](1130 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:25, 05:14](1229 MB) +PASS -- TEST 'rap_2threads_intel' [06:50, 06:17](1370 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:28, 04:19](1226 MB) +PASS -- TEST 'rap_restart_intel' [04:13, 03:41](1127 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:58, 07:18](1220 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:09, 06:32](1201 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:22, 04:22] +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:32, 06:58](1144 MB) +PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 03:14](1039 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:56, 05:10](1203 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:18, 04:18] +PASS -- TEST 'hrrr_control_intel' [04:03, 03:27](1072 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:09, 03:33](1036 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:11, 09:10] +PASS -- TEST 'hrrr_control_2threads_intel' [04:46, 04:05](1107 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:53, 03:17](1222 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:14, 01:54](1025 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:25, 05:44](1142 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:10, 06:28](1200 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:06, 03:13](1015 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:00, 07:48](2002 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:56, 05:18](1277 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:49, 07:31](2175 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:36, 02:41](1034 MB) + +PASS -- COMPILE 'csawmg_intel' [09:13, 09:12] +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:57, 03:14](983 MB) +PASS -- TEST 'control_csawmg_intel' [05:53, 05:38](1038 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:03, 04:21](1096 MB) +PASS -- TEST 'control_ras_intel' [03:06, 02:56](844 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:54, 01:42](951 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:15, 04:14] + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:18, 09:17] +PASS -- TEST 'control_csawmg_gnu' [09:52, 09:38](1055 MB) +PASS -- TEST 'conus13km_control_intel' [02:43, 02:03](1276 MB) + +PASS -- COMPILE 'wam_intel' [08:24, 08:24] +PASS -- TEST 'conus13km_2threads_intel' [01:26, 00:56](1191 MB) +PASS -- TEST 'control_wam_intel' [10:22, 10:00](1657 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:24](1139 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:28, 08:27] + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:42, 08:41] +PASS -- TEST 'control_p8_faster_intel' [03:27, 02:40](1892 MB) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 04:10](1072 MB) +PASS -- TEST 'regional_control_faster_intel' [04:43, 04:27](1186 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:58, 03:57] + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 07:07] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:09, 04:43](1110 MB) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:32, 02:08](1616 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:44, 04:36](1103 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:30, 02:00](1629 MB) +PASS -- TEST 'conus13km_debug_intel' [14:50, 14:22](1344 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:13](843 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:35, 15:03](1003 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:39, 02:29](841 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:42, 11:12](1246 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:26, 04:07](1155 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:55, 14:22](1420 MB) +PASS -- TEST 'control_ras_debug_intel' [02:42, 02:30](841 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:15, 04:14] +PASS -- TEST 'control_diag_debug_intel' [02:50, 02:24](1698 MB) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:35, 04:19](1167 MB) +PASS -- TEST 'control_debug_p8_intel' [03:52, 03:26](1908 MB) + +PASS -- COMPILE 'hafsw_intel' [10:01, 10:01] +PASS -- TEST 'regional_debug_intel' [16:43, 16:23](1144 MB) +PASS -- TEST 'hafs_regional_atm_intel' [06:36, 05:33](864 MB) +PASS -- TEST 'rap_control_debug_intel' [04:39, 04:20](1220 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:29, 05:13](1259 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:32, 04:15](1211 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:11, 06:59](930 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:45, 04:28](1223 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:05, 14:04](967 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:32, 04:25](1233 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:47, 15:38](985 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:40, 04:26](1218 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:18, 05:39](593 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:41, 04:28](1313 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:07, 07:02](599 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:38, 04:25](1217 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:02, 02:33](429 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:42, 04:33](1218 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:24, 07:41](558 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:27, 04:20](1210 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:56, 04:19](607 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:28, 04:20](1220 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 04:01](593 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:15](1224 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:41, 05:02](655 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:20, 04:12](1235 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:32, 01:14](445 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:43, 07:26](1218 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:42, 04:41] +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:45, 04:31](1227 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:17, 12:34](636 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:25, 05:14](1229 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:28, 04:19](1226 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:14, 10:13] +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:58, 07:18](1220 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:51, 15:11](752 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:22, 04:22] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:24, 16:30](836 MB) +PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 03:14](1039 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:33, 10:32] + +PASS -- COMPILE 'wam_debug_intel' [04:18, 04:18] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:01, 09:44](814 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:17, 11:16] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:11, 09:10] +PASS -- TEST 'hafs_regional_docn_intel' [06:27, 05:37](929 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:53, 03:17](1222 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:52, 05:55](905 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:25, 05:44](1142 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:07, 16:32](1350 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:06, 03:13](1015 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:40, 06:40] +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:56, 05:18](1277 MB) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:18, 02:12](1141 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:36, 02:41](1034 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:21, 01:16](1106 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:57, 03:14](983 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:04, 02:58](1022 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:03, 04:21](1096 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:09, 03:01](1024 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:54, 01:42](951 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:01, 02:56](1014 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:18, 09:17] +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:12, 02:07](1160 MB) +PASS -- TEST 'conus13km_control_intel' [02:43, 02:03](1276 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:06, 03:01](1139 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:26, 00:56](1191 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:11, 02:06](1016 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:24](1139 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:34, 04:57](1167 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:42, 08:41] +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:27, 04:52](1167 MB) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 04:10](1072 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:05, 03:00](1153 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:58, 03:57] +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:06, 03:00](2397 MB) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:09, 04:43](1110 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:23, 03:17](2458 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:44, 04:36](1103 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:08, 03:07] +PASS -- TEST 'conus13km_debug_intel' [14:50, 14:22](1344 MB) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:38, 09:31](1065 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:35, 15:03](1003 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:30, 05:29] +PASS -- TEST 'conus13km_debug_2threads_intel' [11:42, 11:12](1246 MB) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:10](1165 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:55, 14:22](1420 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:15, 04:14] + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:48, 00:48] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:35, 04:19](1167 MB) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 01:13](339 MB) + +PASS -- COMPILE 'hafsw_intel' [10:01, 10:01] +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:29, 01:13](573 MB) +PASS -- TEST 'hafs_regional_atm_intel' [06:36, 05:33](864 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:48, 00:36](572 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:29, 05:13](1259 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:27, 09:26] +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:11, 06:59](930 MB) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 04:19](2019 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:05, 14:04](967 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:37, 08:36] +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:47, 15:38](985 MB) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:07, 03:23](1994 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:18, 05:39](593 MB) + +PASS -- COMPILE 'atml_intel' [09:26, 09:25] +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:07, 07:02](599 MB) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:48, 06:51](1897 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:02, 02:33](429 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 07:11](1887 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:24, 07:41](558 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:30, 04:06](1149 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:56, 04:19](607 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:41, 04:40] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 04:01](593 MB) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:04, 06:14](1910 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:41, 05:02](655 MB) + +PASS -- COMPILE 'atmw_intel' [09:29, 09:29] +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:32, 01:14](445 MB) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:06, 02:20](1937 MB) + +PASS -- COMPILE 'atmaero_intel' [08:38, 08:38] + +PASS -- COMPILE 'hafsw_debug_intel' [04:42, 04:41] +PASS -- TEST 'atmaero_control_p8_intel' [05:15, 04:26](2001 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:17, 12:34](636 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:24, 04:34](1779 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:14, 10:13] +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:12, 04:33](1787 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:51, 15:11](752 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:06, 04:05] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:24, 16:30](836 MB) +PASS -- TEST 'regional_atmaq_debug_intel' [17:55, 16:38](4513 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:33, 10:32] + +PASS -- COMPILE 'atm_gnu' [04:19, 04:19] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:01, 09:44](814 MB) +PASS -- TEST 'control_c48_gnu' [08:30, 08:06](1522 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:17, 11:16] +PASS -- TEST 'control_stochy_gnu' [02:41, 02:30](722 MB) +PASS -- TEST 'hafs_regional_docn_intel' [06:27, 05:37](929 MB) +PASS -- TEST 'control_ras_gnu' [04:08, 03:58](720 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:52, 05:55](905 MB) +PASS -- TEST 'control_p8_gnu' [05:59, 05:19](1701 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:07, 16:32](1350 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:47, 05:10](1720 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:40, 06:40] +PASS -- TEST 'control_flake_gnu' [04:46, 04:37](805 MB) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:18, 02:12](1141 MB) + +PASS -- COMPILE 'rrfs_gnu' [03:56, 03:56] +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:21, 01:16](1106 MB) +PASS -- TEST 'rap_control_gnu' [08:40, 08:03](1076 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:04, 02:58](1022 MB) +PASS -- TEST 'rap_decomp_gnu' [08:49, 08:14](1074 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:09, 03:01](1024 MB) +PASS -- TEST 'rap_2threads_gnu' [07:56, 07:19](1129 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:01, 02:56](1014 MB) +PASS -- TEST 'rap_restart_gnu' [04:53, 04:08](878 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:12, 02:07](1160 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:52, 08:12](1074 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:06, 03:01](1139 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:14, 08:36](1072 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:11, 02:06](1016 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:58, 06:16](876 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:34, 04:57](1167 MB) +PASS -- TEST 'hrrr_control_gnu' [04:52, 04:08](1061 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:27, 04:52](1167 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:47, 04:16](1127 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:05, 03:00](1153 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:23, 03:44](1015 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:06, 03:00](2397 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:01, 04:22](1058 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:23, 03:17](2458 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:36, 02:16](877 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:08, 03:07] +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:36, 02:09](923 MB) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:38, 09:31](1065 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:55, 08:11](1069 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:30, 05:29] + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:12, 06:12] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:10](1165 MB) +PASS -- TEST 'control_diag_debug_gnu' [01:38, 01:15](1617 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:48, 00:48] +PASS -- TEST 'regional_debug_gnu' [06:55, 06:37](1107 MB) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 01:13](339 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:04](1087 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:29, 01:13](573 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:06, 01:56](1082 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:48, 00:36](572 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:10, 01:59](1092 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:27, 09:26] +PASS -- TEST 'hrrr_c3_debug_gnu' [02:07, 01:59](1096 MB) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 04:19](2019 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:14](1261 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:37, 08:36] +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:21, 03:15](1086 MB) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:07, 03:23](1994 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:10, 02:04](1090 MB) + +PASS -- COMPILE 'atml_intel' [09:26, 09:25] +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:07, 01:59](1083 MB) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:48, 06:51](1897 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:26, 01:16](718 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 07:11](1887 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:33, 01:23](716 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:30, 04:06](1149 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:43, 01:20](1717 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:41, 04:40] +PASS -- TEST 'rap_flake_debug_gnu' [02:13, 02:01](1092 MB) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:04, 06:14](1910 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:09](1093 MB) + +PASS -- COMPILE 'atmw_intel' [09:29, 09:29] +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [03:58, 03:24](1092 MB) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:06, 02:20](1937 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:53, 02:53] +PASS -- TEST 'control_wam_debug_gnu' [06:15, 05:53](1555 MB) + +PASS -- COMPILE 'atmaero_intel' [08:38, 08:38] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 04:10] +PASS -- TEST 'atmaero_control_p8_intel' [05:15, 04:26](2001 MB) +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:14, 07:40](953 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:24, 04:34](1779 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:55, 04:09](940 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:12, 04:33](1787 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:34, 06:57](957 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:06, 04:05] +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:13, 03:28](872 MB) +PASS -- TEST 'regional_atmaq_debug_intel' [17:55, 16:38](4513 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:08, 04:10](941 MB) + +PASS -- COMPILE 'atm_gnu' [04:19, 04:19] +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:48, 06:15](855 MB) +PASS -- TEST 'control_c48_gnu' [08:30, 08:06](1522 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:35, 02:14](851 MB) +PASS -- TEST 'control_stochy_gnu' [02:41, 02:30](722 MB) +PASS -- TEST 'conus13km_control_gnu' [03:13, 02:40](1255 MB) +PASS -- TEST 'control_ras_gnu' [04:08, 03:58](720 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:25, 01:05](1163 MB) +PASS -- TEST 'control_p8_gnu' [05:59, 05:19](1701 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:53, 01:32](924 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:47, 05:10](1720 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:25, 09:25] +PASS -- TEST 'control_flake_gnu' [04:46, 04:37](805 MB) +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:50, 04:31](980 MB) + +PASS -- COMPILE 'rrfs_gnu' [03:56, 03:56] + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:18, 06:17] +PASS -- TEST 'rap_control_gnu' [08:40, 08:03](1076 MB) +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:16, 02:03](969 MB) +PASS -- TEST 'rap_decomp_gnu' [08:49, 08:14](1074 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:20, 02:10](959 MB) +PASS -- TEST 'rap_2threads_gnu' [07:56, 07:19](1129 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:09, 05:49](1276 MB) +PASS -- TEST 'rap_restart_gnu' [04:53, 04:08](878 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 06:05](946 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:52, 08:12](1074 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:22, 03:57](1182 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:14, 08:36](1072 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:33, 05:46](1344 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:58, 06:16](876 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:06, 07:06] +PASS -- TEST 'hrrr_control_gnu' [04:52, 04:08](1061 MB) +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 01:59](995 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:47, 04:16](1127 MB) + +PASS -- COMPILE 's2swa_gnu' [16:58, 16:58] +PASS -- TEST 'hrrr_control_2threads_gnu' [04:23, 03:44](1015 MB) + +PASS -- COMPILE 's2s_gnu' [16:03, 16:03] +PASS -- TEST 'hrrr_control_decomp_gnu' [05:01, 04:22](1058 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:34, 08:52](2711 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:36, 02:16](877 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:41, 03:41] +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:36, 02:09](923 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:03, 16:02] +PASS -- TEST 'rrfs_v1beta_gnu' [08:55, 08:11](1069 MB) +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:54, 26:07](2905 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:12, 06:12] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:08, 03:08] +PASS -- TEST 'control_diag_debug_gnu' [01:38, 01:15](1617 MB) +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:05, 12:23](3023 MB) +PASS -- TEST 'regional_debug_gnu' [06:55, 06:37](1107 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:19, 16:19] +PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:04](1087 MB) +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [06:24, 06:19](754 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:06, 01:56](1082 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:26, 08:26] +PASS -- TEST 'hrrr_gf_debug_gnu' [02:10, 01:59](1092 MB) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:15, 10:00](1084 MB) + +SYNOPSIS: +Starting Date/Time: 20240920 08:25:25 +Ending Date/Time: 20240920 14:17:45 +Total Time: 05h:52m:28s +Compiles Completed: 58/58 +Tests Completed: 245/245 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. -PASS -- COMPILE 's2swa_32bit_intel' [11:15, 11:15] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:32, 07:47](2147 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:40, 16:40] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:12, 13:24](1995 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:07, 14:08](2289 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:36, 06:52](1360 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:26, 15:33](1914 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:07, 16:07] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:43, 13:07](1988 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:00, 06:00] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:02, 22:07](1973 MB) - -PASS -- COMPILE 's2swa_intel' [11:16, 11:16] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:53, 08:04](2216 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:51, 08:00](2225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:10, 04:29](1957 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:10, 08:14](2230 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:50, 05:05](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:04, 09:16](2564 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:44, 08:06](2196 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:18, 06:46](2126 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 08:54](2223 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:38, 15:22](2991 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:39, 05:54](2926 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [13:07, 08:09](3840 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:38, 05:52](3646 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:44, 05:08](2164 MB) - -PASS -- COMPILE 's2sw_intel' [10:27, 10:26] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:40, 07:10](2022 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:32, 06:50](2084 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:12, 05:12] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:52, 12:05](2245 MB) - -PASS -- COMPILE 's2sw_debug_intel' [04:44, 04:44] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:09, 09:26](2060 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:24, 09:23] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:49, 04:07](2077 MB) - -PASS -- COMPILE 's2s_intel' [09:51, 09:51] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:23, 05:54](3039 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:28, 02:01](3026 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:26, 01:08](2488 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:05, 12:05] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:39, 07:51](2212 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:43, 15:43] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:31, 13:57](2078 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:53, 07:01](1404 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:06, 16:21](2008 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:13, 05:13] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:35, 22:54](2023 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:25, 09:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:25, 03:12](714 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:08, 02:41](1602 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:17, 02:46](1598 MB) -PASS -- TEST 'control_latlon_intel' [02:57, 02:42](1583 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:50](1594 MB) -PASS -- TEST 'control_c48_intel' [10:55, 10:31](1718 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:01, 05:49](839 MB) -PASS -- TEST 'control_c192_intel' [10:45, 10:11](1771 MB) -PASS -- TEST 'control_c384_intel' [13:19, 12:13](2013 MB) -PASS -- TEST 'control_c384gdas_intel' [09:00, 07:23](1510 MB) -PASS -- TEST 'control_stochy_intel' [01:37, 01:25](676 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:12, 00:54](553 MB) -PASS -- TEST 'control_lndp_intel' [01:32, 01:21](671 MB) -PASS -- TEST 'control_iovr4_intel' [02:17, 02:08](669 MB) -PASS -- TEST 'control_iovr5_intel' [02:26, 02:13](669 MB) -PASS -- TEST 'control_p8_intel' [03:56, 03:18](1873 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:18, 03:24](1906 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:58, 03:05](1894 MB) -PASS -- TEST 'control_restart_p8_intel' [02:18, 01:52](1150 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:38, 03:03](1890 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:18, 01:46](1219 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:56, 03:14](1886 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:07, 03:18](1963 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:14, 05:46](1885 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:18, 03:35](1980 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:16, 02:43](1912 MB) -PASS -- TEST 'merra2_thompson_intel' [04:30, 03:41](1919 MB) -PASS -- TEST 'regional_control_intel' [04:49, 04:34](1209 MB) -PASS -- TEST 'regional_restart_intel' [03:03, 02:48](1179 MB) -PASS -- TEST 'regional_decomp_intel' [05:03, 04:49](1186 MB) -PASS -- TEST 'regional_2threads_intel' [03:14, 02:58](1159 MB) -PASS -- TEST 'regional_noquilt_intel' [04:54, 04:32](1523 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [04:59, 04:36](1200 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:11, 04:56](1199 MB) -PASS -- TEST 'regional_wofs_intel' [06:50, 06:30](2072 MB) - -PASS -- COMPILE 'rrfs_intel' [08:49, 08:49] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:38, 06:51](1198 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:59, 03:33](1363 MB) -PASS -- TEST 'rap_decomp_intel' [08:08, 07:28](1141 MB) -PASS -- TEST 'rap_2threads_intel' [07:11, 06:33](1355 MB) -PASS -- TEST 'rap_restart_intel' [05:34, 03:55](1142 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:33, 07:38](1206 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:07, 09:12](1142 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:53, 05:29](1185 MB) -PASS -- TEST 'hrrr_control_intel' [05:33, 04:23](1070 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:52, 03:44](1037 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:15, 04:30](1115 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:18, 02:11](1034 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:39, 07:31](1194 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:27, 07:55](2011 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:08, 07:41](2165 MB) - -PASS -- COMPILE 'csawmg_intel' [07:55, 07:55] -PASS -- TEST 'control_csawmg_intel' [06:22, 06:06](1044 MB) -PASS -- TEST 'control_ras_intel' [03:24, 03:10](830 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:00, 04:00] -PASS -- TEST 'control_csawmg_gnu' [08:49, 08:33](1063 MB) - -PASS -- COMPILE 'wam_intel' [09:19, 09:19] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:08, 09:45](1664 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:46, 08:46] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:29, 02:48](1897 MB) -PASS -- TEST 'regional_control_faster_intel' [04:41, 04:23](1194 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:39, 06:38] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:43, 02:19](1621 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:42, 02:19](1623 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:01, 02:52](845 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:41, 02:32](851 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:43, 04:26](1161 MB) -PASS -- TEST 'control_ras_debug_intel' [02:43, 02:28](859 MB) -PASS -- TEST 'control_diag_debug_intel' [02:59, 02:36](1704 MB) -PASS -- TEST 'control_debug_p8_intel' [03:35, 03:08](1911 MB) -PASS -- TEST 'regional_debug_intel' [17:39, 17:17](1144 MB) -PASS -- TEST 'rap_control_debug_intel' [04:29, 04:21](1226 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:50, 04:39](1218 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:09, 04:57](1240 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 05:10](1243 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:50, 04:41](1235 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:54, 04:38](1322 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:06, 04:57](1229 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:10, 04:57](1238 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:02, 04:49](1243 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:46, 04:38](1233 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:18, 05:07](1233 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:57, 04:47](1235 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:51, 07:44](1227 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:45, 04:37](1229 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:42, 05:31](1241 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:59, 04:47](1237 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 07:59](1228 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:37, 04:36] -PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 03:09](1048 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:20, 04:20] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:49, 08:48] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:01, 03:21](1239 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:32, 05:48](1169 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:48, 02:56](1032 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:08, 05:22](1281 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:33, 02:40](1040 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:48, 03:03](998 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:55, 04:08](1104 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:12, 01:47](958 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:18, 08:18] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:20, 01:51](1295 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:19, 00:50](1194 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:04](1141 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:28, 08:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:12, 03:49](1084 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:19, 04:19] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:21, 04:08](1109 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:16, 04:01](1108 MB) -PASS -- TEST 'conus13km_debug_intel' [13:01, 12:30](1358 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:50, 12:21](1004 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:31, 07:05](1249 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:40, 12:22](1423 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:07, 04:07] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:41, 04:32](1163 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 10:11] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:14, 05:20](853 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:16, 05:03](1261 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:27, 06:23](916 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:54, 14:00](965 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:23, 15:17](990 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:30, 05:43](600 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:03, 06:57](604 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:09, 02:36](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:17, 07:35](545 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:14, 03:45](606 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:18, 03:38](610 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:35, 04:51](665 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:31, 01:12](446 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:39, 04:38] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:48, 12:04](643 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:00, 09:59] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:38, 16:44](747 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:41, 15:49](833 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:46, 09:46] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:36, 10:22](823 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:24, 10:24] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:35, 05:42](920 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:25, 05:31](917 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:03, 16:29](1339 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:02, 06:01] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:05, 03:00](1147 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:48, 01:43](1108 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:10, 02:05](1018 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:04, 02:56](1024 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:01, 02:54](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:15, 02:11](1168 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:06, 03:00](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:10, 02:04](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:31, 04:55](1180 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:30, 04:54](1154 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:01, 02:58](1145 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:07, 03:59](2488 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:08, 03:03](2408 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:03, 03:03] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:18, 05:13](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:16, 06:16] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:59, 02:55](1142 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:45, 00:44] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:12, 00:56](332 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:04, 00:50](575 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:47, 00:32](573 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:42, 08:42] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:27, 03:46](2035 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:35, 08:35] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:48, 03:13](1999 MB) - -PASS -- COMPILE 'atml_intel' [09:40, 09:40] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:43, 05:55](1896 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 06:11](1903 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:32, 03:09](1133 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:32, 05:32] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:51, 06:00](1926 MB) - -PASS -- COMPILE 'atmw_intel' [09:18, 09:17] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:20, 02:34](1924 MB) - -PASS -- COMPILE 'atmaero_intel' [08:57, 08:57] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:54, 04:07](2011 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:08, 04:29](1794 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:59, 05:29](1809 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:12, 04:12] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [17:43, 16:31](4573 MB) - -PASS -- COMPILE 'atm_gnu' [04:14, 04:13] -PASS -- TEST 'control_c48_gnu' [11:38, 11:13](1530 MB) -PASS -- TEST 'control_stochy_gnu' [02:36, 02:24](726 MB) -PASS -- TEST 'control_ras_gnu' [04:01, 03:53](736 MB) -PASS -- TEST 'control_p8_gnu' [04:52, 04:12](1703 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:46, 04:13](1710 MB) -PASS -- TEST 'control_flake_gnu' [04:47, 04:36](816 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:31, 04:30] -PASS -- TEST 'rap_control_gnu' [08:57, 08:21](1084 MB) -PASS -- TEST 'rap_decomp_gnu' [08:50, 08:11](1086 MB) -PASS -- TEST 'rap_2threads_gnu' [07:51, 07:16](1140 MB) -PASS -- TEST 'rap_restart_gnu' [04:55, 04:16](889 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:32, 07:58](1083 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:07, 08:23](1084 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:02, 06:16](888 MB) -PASS -- TEST 'hrrr_control_gnu' [04:47, 04:04](1071 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:42, 04:10](1138 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [17:27, 16:47](1029 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:48, 04:09](1071 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:20, 02:11](895 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:29, 02:09](938 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:43, 07:58](1079 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:23, 06:23] -PASS -- TEST 'control_diag_debug_gnu' [01:40, 01:16](1631 MB) -PASS -- TEST 'regional_debug_gnu' [07:03, 06:48](1155 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:04, 01:57](1106 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:19, 02:04](1093 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:14, 02:04](1100 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:23, 02:11](1101 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:22, 02:08](1273 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:15, 03:06](1101 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:05, 01:56](1101 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:08, 02:01](1096 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:18, 01:12](725 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:39, 01:27](723 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:49, 01:23](1723 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:16, 02:07](1101 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:30, 02:20](1106 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:17, 03:40](1104 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:04, 05:04] -PASS -- TEST 'control_wam_debug_gnu' [05:34, 05:11](1559 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:07, 06:06] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:25, 07:53](961 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:58, 04:04](949 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:45, 07:07](982 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:37, 03:49](898 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:57, 04:13](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:29, 05:50](867 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:30, 02:09](863 MB) -PASS -- TEST 'conus13km_control_gnu' [03:06, 02:40](1268 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:27, 01:07](1174 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:49, 01:30](936 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:14, 11:13] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:56, 04:32](987 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:50, 08:49] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:07, 02:00](975 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:12, 01:58](969 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:08, 05:41](1283 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:08, 05:45](958 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [03:32, 03:18](1195 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:50, 05:34](1357 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:58, 08:58] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:03, 01:57](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [20:27, 20:27] - -PASS -- COMPILE 's2s_gnu' [20:03, 20:02] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:29, 08:50](3091 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:21, 04:21] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:40, 17:40] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:43, 26:02](3025 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:16, 03:16] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:55, 12:18](3064 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:45, 15:45] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:29, 03:22](763 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:20, 08:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:05, 09:48](1085 MB) +Result: SUCCESS + +====END OF HERCULES REGRESSION TESTING LOG==== +PASS -- TEST 'hrrr_c3_debug_gnu' [02:07, 01:59](1096 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:14](1261 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:21, 03:15](1086 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:10, 02:04](1090 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:07, 01:59](1083 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:26, 01:16](718 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:33, 01:23](716 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:43, 01:20](1717 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:13, 02:01](1092 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:09](1093 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [03:58, 03:24](1092 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:53, 02:53] +PASS -- TEST 'control_wam_debug_gnu' [06:15, 05:53](1555 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 04:10] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:14, 07:40](953 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:55, 04:09](940 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:34, 06:57](957 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:13, 03:28](872 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:08, 04:10](941 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:48, 06:15](855 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:35, 02:14](851 MB) +PASS -- TEST 'conus13km_control_gnu' [03:13, 02:40](1255 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:25, 01:05](1163 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:53, 01:32](924 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:25, 09:25] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:50, 04:31](980 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:18, 06:17] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:16, 02:03](969 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:20, 02:10](959 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:09, 05:49](1276 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 06:05](946 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:22, 03:57](1182 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:33, 05:46](1344 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:06, 07:06] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 01:59](995 MB) + +PASS -- COMPILE 's2swa_gnu' [16:58, 16:58] + +PASS -- COMPILE 's2s_gnu' [16:03, 16:03] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:34, 08:52](2711 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:41, 03:41] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:03, 16:02] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:54, 26:07](2905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:08, 03:08] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:05, 12:23](3023 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:19, 16:19] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [06:24, 06:19](754 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:26, 08:26] +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:15, 10:00](1084 MB) SYNOPSIS: -Starting Date/Time: 20240917 19:00:54 -Ending Date/Time: 20240917 23:06:40 -Total Time: 04h:06m:31s +Starting Date/Time: 20240920 09:14:54 +Ending Date/Time: 20240920 14:17:46 +Total Time: 05h:02m:59s Compiles Completed: 58/58 Tests Completed: 245/245 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index d7b20d75c5..a97a0ea0c6 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -a04244cbba4aaa7cd72d1546981457f04bea51e1 +34893eceee4525f5276fb3408f7432d3dc195032 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -37,256 +37,256 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4071792 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1641237 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [51:30, 42:19] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:33, 08:12](1988 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [58:31, 48:45] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [58:22, 20:45](1895 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:26, 22:24](2023 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:08, 10:29](1141 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [58:22, 23:54](1857 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [59:31, 50:07] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [57:04, 20:22](1888 MB) - -PASS -- COMPILE 's2swa_intel' [53:30, 43:23] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [49:21, 09:55](2024 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:35, 09:50](2069 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:18, 05:27](1722 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [49:24, 09:49](2089 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:20, 05:33](1746 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [46:16, 09:15](2324 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [49:14, 10:00](2044 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [45:34, 08:17](2002 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [46:38, 09:42](2062 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [46:24, 07:01](2024 MB) - -PASS -- COMPILE 's2sw_intel' [49:30, 40:06] ( 1 warnings 1284 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [34:28, 07:29](1896 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [37:39, 09:20](1983 MB) - -PASS -- COMPILE 's2swa_debug_intel' [32:14, 06:13] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [31:24, 16:29](2110 MB) - -PASS -- COMPILE 's2sw_debug_intel' [30:14, 05:53] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [26:10, 11:21](1932 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:22, 36:28] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:37, 05:30](1983 MB) - -PASS -- COMPILE 's2s_intel' [14:21, 37:09] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:52, 10:16](3012 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:54, 03:28](3004 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:56](2458 MB) - -PASS -- COMPILE 's2swa_faster_intel' [08:32, 32:19] ( 1 warnings 1615 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:34, 09:22](2078 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [01:22, 47:10] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:19, 20:53](1932 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:12, 10:40](1122 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:17, 23:54](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [20:14, 05:59] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:13, 33:18](1935 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:15, 37:26] ( 1 warnings 1126 remarks ) -PASS -- TEST 'control_flake_intel' [07:30, 04:30](648 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:09, 04:24](1534 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:12, 04:33](1548 MB) -PASS -- TEST 'control_latlon_intel' [10:04, 04:26](1535 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:11, 04:32](1543 MB) -PASS -- TEST 'control_c48_intel' [26:19, 18:03](1703 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [15:38, 10:19](831 MB) -PASS -- TEST 'control_c192_intel' [18:26, 15:57](1685 MB) -PASS -- TEST 'control_c384_intel' [29:19, 23:04](1813 MB) -PASS -- TEST 'control_c384gdas_intel' [21:08, 13:25](1010 MB) -PASS -- TEST 'control_stochy_intel' [04:30, 02:15](601 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:27, 01:18](438 MB) -PASS -- TEST 'control_lndp_intel' [04:30, 02:10](608 MB) -PASS -- TEST 'control_iovr4_intel' [06:33, 03:23](602 MB) -PASS -- TEST 'control_iovr5_intel' [06:32, 03:23](605 MB) -PASS -- TEST 'control_p8_intel' [11:25, 05:02](1819 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:36, 04:00](1843 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:21, 04:38](1828 MB) -PASS -- TEST 'control_restart_p8_intel' [04:54, 02:39](1054 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:23, 04:52](1828 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:54, 02:35](1073 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:26, 04:55](1821 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:16, 04:29](1916 MB) -PASS -- TEST 'control_p8_lndp_intel' [14:11, 08:45](1823 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:23, 05:12](1886 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:24, 04:08](1845 MB) -PASS -- TEST 'merra2_thompson_intel' [07:20, 04:29](1848 MB) -PASS -- TEST 'regional_control_intel' [13:03, 07:16](1016 MB) -PASS -- TEST 'regional_restart_intel' [06:35, 03:47](1010 MB) -PASS -- TEST 'regional_decomp_intel' [14:03, 07:25](998 MB) -PASS -- TEST 'regional_2threads_intel' [07:01, 04:33](993 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [13:42, 07:02](1000 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:37, 06:59](1003 MB) - -PASS -- COMPILE 'rrfs_intel' [38:16, 36:33] ( 3 warnings 1102 remarks ) -PASS -- TEST 'rap_control_intel' [13:49, 10:20](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:12, 05:45](1180 MB) -PASS -- TEST 'rap_decomp_intel' [13:48, 10:55](988 MB) -PASS -- TEST 'rap_2threads_intel' [12:56, 09:50](1078 MB) -PASS -- TEST 'rap_restart_intel' [07:45, 05:13](986 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:56, 10:14](995 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:47, 10:49](984 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:47, 07:31](995 MB) -PASS -- TEST 'hrrr_control_intel' [08:45, 05:22](983 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:47, 05:29](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:52, 04:55](1052 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:47](913 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:04, 10:13](995 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:35, 12:41](1940 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:35, 12:19](1935 MB) - -PASS -- COMPILE 'csawmg_intel' [36:15, 34:16] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:47, 08:03](974 MB) -PASS -- TEST 'control_ras_intel' [06:26, 04:18](672 MB) - -PASS -- COMPILE 'wam_intel' [36:15, 34:42] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [16:43, 14:13](1628 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [42:15, 36:38] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:55, 03:35](1842 MB) -PASS -- TEST 'regional_control_faster_intel' [08:38, 06:31](1003 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:21] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:47, 02:52](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:52, 03:05](1570 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:28, 03:43](777 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:27, 03:19](784 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:41, 05:33](1095 MB) -PASS -- TEST 'control_ras_debug_intel' [06:28, 03:23](787 MB) -PASS -- TEST 'control_diag_debug_intel' [06:49, 03:30](1635 MB) -PASS -- TEST 'control_debug_p8_intel' [06:50, 03:23](1863 MB) -PASS -- TEST 'regional_debug_intel' [25:50, 22:12](1040 MB) -PASS -- TEST 'rap_control_debug_intel' [09:30, 06:16](1165 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:30, 06:07](1163 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:30, 06:13](1168 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:30, 06:18](1160 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:30, 06:17](1162 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:41, 06:31](1258 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:30, 06:22](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:28, 06:23](1163 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:26, 06:09](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:05](1168 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:26, 06:00](1163 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 06:08](1163 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:27, 10:04](1158 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:28, 06:01](1163 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 07:23](1165 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:25, 06:04](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:49, 10:39](1174 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:03] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:56, 16:33](1644 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [33:13, 30:22] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:02, 05:05](1052 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:39, 08:09](908 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:45, 04:20](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:39, 07:52](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:45, 04:02](910 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:38, 04:35](863 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:11](898 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:27, 02:19](848 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [35:14, 32:00] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:51, 02:48](1109 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:13](1048 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:31](1022 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:16, 31:18] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:53, 05:28](914 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:10] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 06:06](1045 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:26, 05:58](1041 MB) -PASS -- TEST 'conus13km_debug_intel' [20:57, 18:42](1153 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:54, 19:07](895 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:49, 10:52](1097 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:49, 18:45](1220 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 04:53] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:28, 06:06](1094 MB) - -PASS -- COMPILE 'hafsw_intel' [41:17, 38:47] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:22, 06:49](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:15](1066 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:37, 09:11](750 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:29, 16:04](789 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:41, 17:56](807 MB) -PASS -- TEST 'gnv1_nested_intel' [10:57, 06:20](1666 MB) - -PASS -- COMPILE 'hafs_all_intel' [37:19, 35:19] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:27, 08:28](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:29, 08:25](743 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:18] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:33](1071 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:09](1048 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:28](936 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:33](941 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:33](934 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:33](1077 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:35](1080 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:30](931 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:20, 07:42](896 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:19, 07:37](856 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:35](1077 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 05:14](2426 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:25, 05:26](2415 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:26] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:22, 08:05](1019 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:15, 08:20] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:32](1070 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:49] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:34, 01:17](239 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:04](266 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:26, 00:41](260 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:17, 35:54] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:07, 04:48](1913 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [36:18, 35:03] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:12, 04:35](1895 MB) - -PASS -- COMPILE 'atml_intel' [38:17, 36:41] ( 8 warnings 1167 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:13, 05:48](1863 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:12, 05:47](1868 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:45, 03:10](1069 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:04] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:12, 07:21](1882 MB) - -PASS -- COMPILE 'atmw_intel' [39:16, 37:23] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:57, 02:19](1860 MB) - -PASS -- COMPILE 'atmaero_intel' [37:15, 34:57] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:02, 05:15](1949 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:06, 06:18](1719 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:51, 06:19](1739 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:15, 31:16] ( 3 warnings 996 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:38, 15:13](1026 MB) +PASS -- COMPILE 's2swa_32bit_intel' [56:32, 42:24] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:36, 08:20](2017 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [02:34, 48:11] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:26, 20:46](1893 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [57:33, 22:21](2012 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [45:26, 09:54](1138 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:16, 23:47](1842 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [07:35, 53:08] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:04, 20:20](1881 MB) + +PASS -- COMPILE 's2swa_intel' [57:32, 43:02] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:24, 10:03](2073 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:38, 09:54](2061 MB) +PASS -- TEST 'cpld_restart_p8_intel' [36:20, 05:27](1715 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:24, 10:06](2078 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [36:20, 05:31](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:19, 09:30](2318 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:17, 10:09](2056 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:35, 08:28](2011 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:40, 10:04](2066 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:36, 07:14](2038 MB) + +PASS -- COMPILE 's2sw_intel' [55:32, 40:33] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:36, 07:43](1906 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:39, 09:48](1959 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:21, 06:17] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [51:42, 16:28](2081 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:21, 06:16] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [46:28, 11:21](1931 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [44:24, 36:12] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [26:47, 05:33](1960 MB) + +PASS -- COMPILE 's2s_intel' [40:24, 37:20] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [30:14, 10:18](3015 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [23:12, 03:25](3017 MB) +PASS -- TEST 'cpld_restart_c48_intel' [13:19, 01:55](2460 MB) + +PASS -- COMPILE 's2swa_faster_intel' [30:34, 32:32] ( 1 warnings 1615 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [34:35, 09:28](2071 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:24, 46:56] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [55:39, 20:52](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [46:26, 10:18](1128 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [59:23, 24:09](1903 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [40:17, 05:55] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [49:34, 33:22](1927 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [58:31, 37:36] ( 1 warnings 1126 remarks ) +PASS -- TEST 'control_flake_intel' [39:19, 04:34](648 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [50:54, 04:19](1534 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [38:58, 04:31](1531 MB) +PASS -- TEST 'control_latlon_intel' [50:45, 04:18](1531 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [50:45, 04:33](1545 MB) +PASS -- TEST 'control_c48_intel' [04:53, 18:08](1698 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [56:36, 10:12](828 MB) +PASS -- TEST 'control_c192_intel' [51:16, 16:08](1693 MB) +PASS -- TEST 'control_c384_intel' [55:00, 24:08](1820 MB) +PASS -- TEST 'control_c384gdas_intel' [46:32, 13:38](1005 MB) +PASS -- TEST 'control_stochy_intel' [10:13, 02:10](603 MB) +PASS -- TEST 'control_stochy_restart_intel' [49:30, 01:33](438 MB) +PASS -- TEST 'control_lndp_intel' [37:01, 02:02](602 MB) +PASS -- TEST 'control_iovr4_intel' [34:47, 03:20](598 MB) +PASS -- TEST 'control_iovr5_intel' [32:42, 03:19](593 MB) +PASS -- TEST 'control_p8_intel' [34:39, 04:49](1823 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [33:22, 04:04](1841 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [33:50, 04:47](1831 MB) +PASS -- TEST 'control_restart_p8_intel' [59:26, 03:06](1044 MB) +PASS -- TEST 'control_noqr_p8_intel' [33:42, 04:43](1825 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [59:26, 03:28](1069 MB) +PASS -- TEST 'control_decomp_p8_intel' [33:15, 05:19](1823 MB) +PASS -- TEST 'control_2threads_p8_intel' [32:39, 04:35](1910 MB) +PASS -- TEST 'control_p8_lndp_intel' [36:20, 08:40](1824 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [37:29, 05:21](1902 MB) +PASS -- TEST 'control_p8_mynn_intel' [36:47, 04:08](1845 MB) +PASS -- TEST 'merra2_thompson_intel' [36:37, 04:24](1841 MB) +PASS -- TEST 'regional_control_intel' [37:54, 07:14](1012 MB) +PASS -- TEST 'regional_restart_intel' [35:58, 04:30](1005 MB) +PASS -- TEST 'regional_decomp_intel' [35:46, 07:43](1006 MB) +PASS -- TEST 'regional_2threads_intel' [28:58, 04:33](995 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [30:54, 07:12](1004 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [30:46, 07:18](1013 MB) + +PASS -- COMPILE 'rrfs_intel' [56:30, 37:06] ( 3 warnings 1102 remarks ) +PASS -- TEST 'rap_control_intel' [30:00, 10:06](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [41:29, 05:55](1163 MB) +PASS -- TEST 'rap_decomp_intel' [30:02, 10:41](985 MB) +PASS -- TEST 'rap_2threads_intel' [29:04, 09:44](1072 MB) +PASS -- TEST 'rap_restart_intel' [04:45, 05:47](982 MB) +PASS -- TEST 'rap_sfcdiff_intel' [29:07, 10:13](991 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [30:00, 10:53](988 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:33, 07:56](993 MB) +PASS -- TEST 'hrrr_control_intel' [31:32, 05:13](987 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [31:32, 05:20](974 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [31:32, 04:46](1044 MB) +PASS -- TEST 'hrrr_control_restart_intel' [54:04, 03:07](915 MB) +PASS -- TEST 'rrfs_v1beta_intel' [36:12, 09:58](979 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [31:38, 12:37](1938 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [31:00, 12:14](1934 MB) + +PASS -- COMPILE 'csawmg_intel' [49:24, 34:13] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [29:46, 08:19](970 MB) +PASS -- TEST 'control_ras_intel' [26:19, 04:28](669 MB) + +PASS -- COMPILE 'wam_intel' [09:20, 34:58] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [34:46, 14:33](1610 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [01:21, 36:28] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [39:10, 03:45](1832 MB) +PASS -- TEST 'regional_control_faster_intel' [53:41, 06:35](1009 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [29:45, 08:41] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [52:40, 03:22](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [48:55, 03:15](1564 MB) +PASS -- TEST 'control_stochy_debug_intel' [50:31, 04:07](781 MB) +PASS -- TEST 'control_lndp_debug_intel' [50:31, 03:47](781 MB) +PASS -- TEST 'control_csawmg_debug_intel' [51:05, 06:01](1093 MB) +PASS -- TEST 'control_ras_debug_intel' [45:54, 04:01](785 MB) +PASS -- TEST 'control_diag_debug_intel' [45:35, 03:54](1640 MB) +PASS -- TEST 'control_debug_p8_intel' [42:55, 04:06](1855 MB) +PASS -- TEST 'regional_debug_intel' [58:58, 22:41](1031 MB) +PASS -- TEST 'rap_control_debug_intel' [42:59, 06:31](1159 MB) +PASS -- TEST 'hrrr_control_debug_intel' [03:38, 06:26](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [03:31, 06:42](1170 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [03:42, 06:50](1164 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [02:33, 06:37](1171 MB) +PASS -- TEST 'rap_diag_debug_intel' [02:40, 06:45](1244 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [58:26, 06:35](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:22, 06:34](1161 MB) +PASS -- TEST 'rap_lndp_debug_intel' [59:07, 06:33](1171 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [58:32, 06:43](1168 MB) +PASS -- TEST 'rap_noah_debug_intel' [41:57, 06:41](1156 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [40:06, 06:48](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [43:14, 10:33](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [38:37, 06:45](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:13, 07:46](1171 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:40, 06:38](1161 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:54, 11:18](1170 MB) + +PASS -- COMPILE 'wam_debug_intel' [25:42, 05:25] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:03, 17:38](1650 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [55:38, 30:27] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:20, 07:10](1040 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:09, 08:43](900 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:09, 04:46](870 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:58, 08:14](948 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:01, 04:24](902 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:51, 04:59](847 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [46:55, 06:19](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [47:58, 02:29](842 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [57:38, 32:00] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:40, 04:36](1099 MB) +PASS -- TEST 'conus13km_2threads_intel' [48:23, 01:17](1034 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [47:10, 01:39](1006 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:45, 31:11] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:18, 05:50](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [39:15, 05:22] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [25:19, 06:25](1034 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [14:00, 06:19](1035 MB) +PASS -- TEST 'conus13km_debug_intel' [24:14, 19:16](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:14, 19:18](852 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:19, 11:22](1092 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:12, 19:12](1210 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [36:15, 05:13] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:57, 06:35](1089 MB) + +PASS -- COMPILE 'hafsw_intel' [21:43, 39:45] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [58:51, 07:06](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:01, 06:34](1060 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [01:38, 10:19](750 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [07:55, 16:28](787 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [40:29, 18:10](805 MB) +PASS -- TEST 'gnv1_nested_intel' [52:40, 06:22](1672 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:41, 36:11] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [04:53, 08:55](747 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:01, 09:02](739 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [42:43, 08:31] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [21:30, 04:00](1076 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [25:31, 02:22](1037 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [48:35, 03:37](934 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [48:33, 03:39](930 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [48:34, 03:40](936 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [48:28, 03:44](1054 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [45:21, 03:45](1075 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [44:41, 03:15](930 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [48:31, 07:50](888 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [47:44, 07:44](848 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [41:02, 03:43](1076 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [40:43, 05:09](2371 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [26:29, 05:12](2421 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [37:42, 03:32] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [29:26, 08:16](1026 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [58:02, 08:39] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [44:29, 03:34](1068 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [57:28, 02:14] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [22:39, 01:26](244 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [43:38, 01:06](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [16:33, 00:46](262 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:33, 36:09] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [36:29, 04:49](1917 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [03:30, 35:45] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [35:09, 04:39](1886 MB) + +PASS -- COMPILE 'atml_intel' [00:30, 38:12] ( 8 warnings 1167 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [35:12, 05:52](1855 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [35:11, 05:49](1855 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [53:09, 03:16](1062 MB) + +PASS -- COMPILE 'atml_debug_intel' [31:15, 06:13] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [23:25, 07:17](1889 MB) + +PASS -- COMPILE 'atmw_intel' [17:25, 36:27] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [40:04, 02:23](1868 MB) + +PASS -- COMPILE 'atmaero_intel' [08:21, 35:30] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [25:59, 05:15](1927 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [28:00, 06:19](1707 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:58, 06:26](1719 MB) + +PASS -- COMPILE 'atm_fbh_intel' [02:21, 31:21] ( 3 warnings 996 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [40:33, 15:16](1023 MB) SYNOPSIS: -Starting Date/Time: 20240919 03:36:02 -Ending Date/Time: 20240919 09:46:13 -Total Time: 06h:10m:46s +Starting Date/Time: 20240920 21:26:38 +Ending Date/Time: 20240921 18:44:18 +Total Time: 21h:18m:25s Compiles Completed: 37/37 Tests Completed: 165/165 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 70cc1e8185..4183a07a11 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: -4ac63b06501f964ea8feb3cb82fe4bd948d23093 +ce118b02fad212ff25d1995f8d323e41b841d615 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -37,287 +37,287 @@ 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-20240909 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3988982 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3636759 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:11, 16:39] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:33, 14:36](2092 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 19:54] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:39, 18:08](1950 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [51:42, 19:56](2124 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [42:32, 10:41](1237 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:39, 19:59](1874 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:31] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:01, 17:46](1949 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:10, 09:12] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:43, 28:13](1933 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 16:37] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [23:35, 14:38](2155 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:44, 14:44](2153 MB) -PASS -- TEST 'cpld_restart_p8_intel' [34:03, 07:59](1806 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [23:35, 14:41](2169 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [35:07, 08:04](1708 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [22:32, 13:38](2428 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [23:35, 14:24](2144 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [18:32, 12:30](2047 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:44, 14:12](2153 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [23:35, 16:28](2720 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [35:40, 08:55](2715 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:49, 10:57](3685 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [39:31, 07:11](3508 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:28, 06:12](2100 MB) - -PASS -- COMPILE 's2sw_intel' [19:11, 16:46] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [21:19, 13:45](1980 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:18, 07:54](2046 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:10, 09:12] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:16, 13:36](2186 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:10, 08:24] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:18, 09:09](1999 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 14:59] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:14, 04:45](2043 MB) - -PASS -- COMPILE 's2s_intel' [19:11, 16:48] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [16:09, 08:44](3041 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [11:06, 03:27](3032 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:02, 01:52](2487 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:59] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [21:52, 14:53](2148 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:07, 18:19](2009 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [34:44, 09:56](1240 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:39, 20:43](1931 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:19] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:11, 29:57](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:11, 13:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [31:34, 03:50](698 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [30:50, 03:38](1574 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [29:51, 03:40](1583 MB) -PASS -- TEST 'control_latlon_intel' [29:39, 03:36](1579 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [30:55, 03:33](1580 MB) -PASS -- TEST 'control_c48_intel' [51:56, 14:49](1715 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [43:50, 08:08](846 MB) -PASS -- TEST 'control_c192_intel' [38:59, 13:31](1750 MB) -PASS -- TEST 'control_c384_intel' [43:27, 16:58](1990 MB) -PASS -- TEST 'control_c384gdas_intel' [37:12, 09:58](1342 MB) -PASS -- TEST 'control_stochy_intel' [37:34, 02:27](649 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:43, 01:25](479 MB) -PASS -- TEST 'control_lndp_intel' [34:29, 02:12](648 MB) -PASS -- TEST 'control_iovr4_intel' [31:32, 03:14](649 MB) -PASS -- TEST 'control_iovr5_intel' [30:46, 03:31](649 MB) -PASS -- TEST 'control_p8_intel' [30:14, 04:39](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [29:26, 04:12](1880 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [23:33, 04:41](1876 MB) -PASS -- TEST 'control_restart_p8_intel' [11:40, 02:29](1094 MB) -PASS -- TEST 'control_noqr_p8_intel' [22:21, 04:53](1864 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [11:53, 02:41](1127 MB) -PASS -- TEST 'control_decomp_p8_intel' [18:26, 05:21](1862 MB) -PASS -- TEST 'control_2threads_p8_intel' [17:12, 04:46](1955 MB) -PASS -- TEST 'control_p8_lndp_intel' [20:42, 08:11](1869 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [18:44, 05:56](1949 MB) -PASS -- TEST 'control_p8_mynn_intel' [15:02, 04:16](1892 MB) -PASS -- TEST 'merra2_thompson_intel' [12:49, 04:25](1889 MB) -PASS -- TEST 'regional_control_intel' [14:46, 07:19](1081 MB) -PASS -- TEST 'regional_restart_intel' [07:45, 03:59](1078 MB) -PASS -- TEST 'regional_decomp_intel' [15:44, 07:41](1073 MB) -PASS -- TEST 'regional_2threads_intel' [11:51, 06:00](1071 MB) -PASS -- TEST 'regional_noquilt_intel' [10:50, 07:02](1382 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:16, 07:14](1068 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:40, 07:13](1087 MB) -PASS -- TEST 'regional_wofs_intel' [11:51, 08:18](1907 MB) - -PASS -- COMPILE 'rrfs_intel' [16:11, 13:21] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [37:28, 08:36](1058 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [34:04, 05:26](1250 MB) -PASS -- TEST 'rap_decomp_intel' [38:04, 08:52](1023 MB) -PASS -- TEST 'rap_2threads_intel' [23:23, 08:47](1154 MB) -PASS -- TEST 'rap_restart_intel' [08:44, 04:32](1037 MB) -PASS -- TEST 'rap_sfcdiff_intel' [37:28, 08:28](1051 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:02, 08:48](1028 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:42, 06:19](1070 MB) -PASS -- TEST 'hrrr_control_intel' [07:44, 05:08](1026 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:18, 04:31](1018 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [15:02, 04:17](1083 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:27, 02:29](940 MB) -PASS -- TEST 'rrfs_v1beta_intel' [18:42, 08:42](1044 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [18:38, 10:12](1983 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:40, 10:02](2021 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:33] -PASS -- TEST 'control_csawmg_intel' [20:39, 06:37](1018 MB) -PASS -- TEST 'control_ras_intel' [18:24, 03:31](709 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:42] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [26:48, 12:45](1653 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 13:28] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [12:24, 03:23](1873 MB) -PASS -- TEST 'regional_control_faster_intel' [12:12, 06:34](1076 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 10:18] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:33, 02:22](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:14, 02:23](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [10:33, 03:14](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [10:24, 02:56](818 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:43, 04:54](1132 MB) -PASS -- TEST 'control_ras_debug_intel' [09:28, 02:51](828 MB) -PASS -- TEST 'control_diag_debug_intel' [08:57, 02:56](1671 MB) -PASS -- TEST 'control_debug_p8_intel' [09:50, 04:13](1896 MB) -PASS -- TEST 'regional_debug_intel' [25:51, 18:25](1096 MB) -PASS -- TEST 'rap_control_debug_intel' [10:50, 05:00](1209 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:36, 05:28](1201 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:30, 05:33](1212 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:26, 05:42](1214 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:34, 05:33](1205 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:37, 05:40](1285 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:26, 05:51](1208 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:42](1213 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:27, 05:40](1210 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:22, 05:23](1208 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:57](1212 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:09](1203 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:17](1207 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 04:49](1205 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:36, 06:40](1204 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:32, 05:02](1217 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [17:40, 14:59](1214 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:11, 06:39] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [27:51, 13:16](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:13, 12:23] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 05:23](1128 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:22, 07:29](1000 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:14, 04:17](928 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:58, 07:39](1072 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:53, 03:57](943 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:24, 04:20](888 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:36, 05:25](971 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:45, 02:06](880 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 13:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:23, 02:48](1162 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:55, 01:23](1115 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:45, 01:30](1063 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:11, 13:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:46, 04:35](972 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:12, 06:47] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:28, 04:56](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:35, 04:46](1082 MB) -PASS -- TEST 'conus13km_debug_intel' [20:13, 14:49](1234 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:03, 15:14](933 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:55, 08:55](1168 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:56, 14:57](1308 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:12, 06:38] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:35, 05:01](1137 MB) - -PASS -- COMPILE 'hafsw_intel' [18:12, 14:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:30, 06:25](746 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:41, 07:06](1121 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:44, 07:46](813 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:31, 25:19](851 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [35:39, 29:00](868 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:17, 07:06](499 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:48, 08:30](506 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:01, 03:38](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:47, 09:51](481 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:59, 04:45](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:05, 04:35](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:03, 05:48](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:44, 01:37](399 MB) -PASS -- TEST 'gnv1_nested_intel' [09:39, 04:24](1726 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:12, 07:26] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:05, 14:09](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:13, 14:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:25, 12:56](642 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:20, 13:01](732 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:12, 14:33] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:55, 08:42](718 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:12, 13:56] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:23, 07:42](811 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:18, 07:42](798 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:01, 16:29](1203 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:12, 09:49] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:00](1161 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:59](1116 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:53](1025 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:57](1026 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 02:56](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:01](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:20, 03:01](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:59](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:18, 06:44](1025 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:22, 06:28](1008 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 03:00](1145 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:22, 04:26](2452 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:22, 04:24](2451 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 05:38] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 06:38](1084 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 08:21] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 03:03](1150 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:12, 01:23] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 01:04](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:57](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:39](321 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 13:23] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:21, 04:26](1965 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:11, 13:08] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:03, 04:13](1940 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 13:45] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:37, 05:00](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:26, 05:00](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 02:52](1072 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:11, 08:02] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:35, 06:05](1888 MB) - -PASS -- COMPILE 'atmw_intel' [20:11, 14:06] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:27, 02:13](1900 MB) - -PASS -- COMPILE 'atmaero_intel' [20:11, 13:25] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:14, 04:37](1987 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:17, 05:19](1769 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:07, 05:29](1779 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:10, 06:43] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:05, 20:23](4556 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:12, 12:17] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:33, 13:50](1084 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:12, 17:50] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:32, 14:03](2085 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 22:13] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:41, 18:10](1948 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:16, 19:06](2136 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:00, 08:59](1208 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:40, 20:45](1863 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 22:39] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:44, 17:48](1939 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 09:04] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:51, 28:04](1932 MB) + +PASS -- COMPILE 's2swa_intel' [20:12, 18:50] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:32, 14:30](2137 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:40, 14:49](2137 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:43, 08:00](1791 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:31, 14:51](2155 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:43, 07:58](1692 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:37, 13:32](2424 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:31, 14:21](2122 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:33, 12:19](2045 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:45, 15:00](2142 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:37, 16:21](2701 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [17:06, 12:27](2716 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:14, 11:27](3680 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:34, 06:47](3487 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:36, 06:04](2099 MB) + +PASS -- COMPILE 's2sw_intel' [19:11, 17:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:13, 13:47](1968 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:25, 08:03](2036 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:11, 09:10] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:14, 13:41](2170 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:48] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:11, 09:21](1998 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:11, 16:12] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:30, 05:00](2035 MB) + +PASS -- COMPILE 's2s_intel' [18:11, 16:20] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:00, 08:43](3023 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:03, 04:16](3032 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:12, 02:15](2485 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:11, 17:23] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:30, 15:30](2134 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 20:21] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:13, 18:15](2009 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:32, 09:08](1247 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:13, 20:54](1928 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:13] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:13, 29:51](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:32, 03:44](685 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:48, 03:33](1569 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:49, 03:39](1577 MB) +PASS -- TEST 'control_latlon_intel' [05:43, 03:29](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 03:34](1572 MB) +PASS -- TEST 'control_c48_intel' [16:54, 14:40](1689 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:33, 08:11](830 MB) +PASS -- TEST 'control_c192_intel' [15:02, 13:03](1742 MB) +PASS -- TEST 'control_c384_intel' [19:49, 16:40](1977 MB) +PASS -- TEST 'control_c384gdas_intel' [13:37, 09:57](1331 MB) +PASS -- TEST 'control_stochy_intel' [03:26, 01:48](637 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:39, 01:06](478 MB) +PASS -- TEST 'control_lndp_intel' [03:27, 01:43](646 MB) +PASS -- TEST 'control_iovr4_intel' [04:30, 02:41](636 MB) +PASS -- TEST 'control_iovr5_intel' [04:29, 02:44](630 MB) +PASS -- TEST 'control_p8_intel' [09:13, 04:06](1861 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:10, 03:36](1880 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:33, 04:04](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [05:14, 02:23](1081 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:16, 04:09](1856 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:29, 02:22](1133 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:23, 04:10](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:11, 04:24](1950 MB) +PASS -- TEST 'control_p8_lndp_intel' [12:52, 07:15](1862 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:37, 04:56](1930 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:32, 03:30](1880 MB) +PASS -- TEST 'merra2_thompson_intel' [09:44, 03:51](1876 MB) +PASS -- TEST 'regional_control_intel' [11:37, 06:31](1072 MB) +PASS -- TEST 'regional_restart_intel' [05:36, 03:37](1065 MB) +PASS -- TEST 'regional_decomp_intel' [12:33, 06:49](1071 MB) +PASS -- TEST 'regional_2threads_intel' [08:38, 04:44](1065 MB) +PASS -- TEST 'regional_noquilt_intel' [09:37, 06:26](1369 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:41, 06:31](1069 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:36, 06:31](1071 MB) +PASS -- TEST 'regional_wofs_intel' [12:38, 08:01](1896 MB) + +PASS -- COMPILE 'rrfs_intel' [14:10, 13:00] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:15, 08:32](1046 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:09, 05:13](1253 MB) +PASS -- TEST 'rap_decomp_intel' [12:15, 08:44](1013 MB) +PASS -- TEST 'rap_2threads_intel' [11:29, 08:44](1158 MB) +PASS -- TEST 'rap_restart_intel' [08:29, 04:27](1033 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:27, 08:32](1050 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:30, 09:16](1016 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:29, 06:20](1066 MB) +PASS -- TEST 'hrrr_control_intel' [07:26, 04:20](1021 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:09, 04:29](1009 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:09, 04:13](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:37, 02:22](943 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:28, 08:20](1041 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:34, 10:12](1979 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:33, 09:53](2012 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:34] +PASS -- TEST 'control_csawmg_intel' [09:38, 06:35](1019 MB) +PASS -- TEST 'control_ras_intel' [05:23, 03:29](716 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:25] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:35, 12:47](1642 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:12, 12:54] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:31, 03:22](1878 MB) +PASS -- TEST 'regional_control_faster_intel' [08:36, 06:19](1063 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:59] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:47, 02:21](1600 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:43, 02:20](1602 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:12](819 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:54](814 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:16](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [04:25, 02:50](824 MB) +PASS -- TEST 'control_diag_debug_intel' [04:41, 02:43](1675 MB) +PASS -- TEST 'control_debug_p8_intel' [04:47, 02:46](1893 MB) +PASS -- TEST 'regional_debug_intel' [19:41, 17:12](1087 MB) +PASS -- TEST 'rap_control_debug_intel' [06:22, 04:58](1201 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:53](1189 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:59](1207 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:59](1205 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 04:56](1200 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:31, 05:13](1285 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:09](1197 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:20](1198 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:22, 05:06](1201 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:57](1204 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:58](1199 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:55](1200 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:08](1196 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:30, 05:04](1195 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 05:57](1203 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:20, 05:03](1201 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:33](1207 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:11, 06:33] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:45, 13:12](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:11, 12:32] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 05:03](1123 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:16, 07:14](993 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:42, 03:45](923 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:52, 07:26](1063 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:24, 03:45](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:05, 03:59](892 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:25, 05:24](961 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:43, 02:02](872 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:51, 02:42](1164 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:15](1107 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:32](1060 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:48] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:47, 04:40](966 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:36] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:04](1072 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:50](1076 MB) +PASS -- TEST 'conus13km_debug_intel' [16:49, 14:41](1224 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:45, 15:30](924 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:45, 08:42](1166 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:43, 14:47](1288 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 07:37] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 05:01](1132 MB) + +PASS -- COMPILE 'hafsw_intel' [18:11, 15:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:18, 06:11](737 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:27, 06:32](1112 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:23, 07:36](817 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [27:14, 24:32](845 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:33, 28:12](870 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:06, 07:15](495 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:29, 08:34](498 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:58, 03:30](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:32, 09:46](477 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:54, 04:48](521 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:02, 04:29](517 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:57, 05:48](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:31, 01:35](399 MB) +PASS -- TEST 'gnv1_nested_intel' [14:19, 04:22](1728 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:11, 08:09] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:05, 13:07](578 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 14:09] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:14, 12:58](653 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:07, 13:01](721 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:23] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:17, 09:03](702 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:11, 14:31] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [15:15, 07:38](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:12, 09:59](767 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:59, 16:24](1204 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:19, 03:01](1154 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:57](1112 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:19, 02:52](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:18, 02:54](1022 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:17, 02:57](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 03:01](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:01](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:18, 02:52](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:15, 06:33](1013 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:32](998 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:01](1149 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:20](2385 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:27](2454 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:54] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:40](1082 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 09:42] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 03:00](1156 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 01:23] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:33, 01:02](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 01:00](321 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:38](324 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 13:55] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:11, 04:08](1961 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 12:59] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:04, 03:58](1948 MB) + +PASS -- COMPILE 'atml_intel' [17:11, 14:17] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 05:09](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:27, 05:10](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 02:49](1057 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:11, 07:45] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:26, 06:06](1888 MB) + +PASS -- COMPILE 'atmw_intel' [17:11, 13:56] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:16, 02:13](1896 MB) + +PASS -- COMPILE 'atmaero_intel' [16:11, 13:25] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:15, 04:45](1972 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:12, 05:20](1750 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:07, 05:29](1772 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:11, 06:43] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:57, 20:26](4494 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:11, 12:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:30, 13:54](1076 MB) SYNOPSIS: -Starting Date/Time: 20240919 08:53:06 -Ending Date/Time: 20240919 11:17:22 -Total Time: 02h:25m:06s +Starting Date/Time: 20240920 09:01:01 +Ending Date/Time: 20240920 10:49:03 +Total Time: 01h:49m:18s Compiles Completed: 42/42 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index f4d5157f84..d36c5c7ea2 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: -e3bd67a093b800f028092d252373abe1b7a7602b +ce118b02fad212ff25d1995f8d323e41b841d615 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -37,238 +37,238 @@ 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-20240909 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3481 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97123 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:27, 11:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [45:14, 02:21](3099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:54] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [44:13, 02:59](1821 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:41, 02:35](1843 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [24:37, 03:05](979 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [44:14, 02:29](1786 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 11:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [44:14, 02:22](1815 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:26] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [50:21, 02:48](1840 MB) - -PASS -- COMPILE 's2swa_intel' [13:28, 11:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [44:13, 02:34](3130 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [44:13, 02:55](3128 MB) -PASS -- TEST 'cpld_restart_p8_intel' [32:35, 02:20](3057 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [44:13, 02:39](3149 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [32:35, 02:16](3074 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [44:13, 02:27](3368 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [44:13, 02:46](3123 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [44:14, 02:21](3073 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [44:13, 02:56](3128 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [44:22, 06:53](4115 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:36, 05:15](4263 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [44:13, 02:53](3111 MB) - -PASS -- COMPILE 's2sw_intel' [13:28, 11:18] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [44:12, 01:47](1830 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [44:12, 02:50](1885 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:25, 10:15] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [45:15, 02:57](1896 MB) - -PASS -- COMPILE 's2s_intel' [12:27, 10:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [45:13, 01:48](2864 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [45:13, 02:20](2877 MB) -PASS -- TEST 'cpld_restart_c48_intel' [40:01, 02:17](2277 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:33, 16:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [39:08, 03:32](3132 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:33] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [33:03, 02:30](3084 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:28, 12:08] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [33:00, 02:51](1814 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:37, 03:12](1834 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:14, 02:35](972 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [33:01, 03:23](1780 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:28, 11:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [33:00, 02:06](1814 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:18] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [39:10, 02:54](1835 MB) + +PASS -- COMPILE 's2swa_intel' [13:26, 11:36] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [33:04, 02:34](3121 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:04, 02:57](3117 MB) +PASS -- TEST 'cpld_restart_p8_intel' [21:33, 02:09](3040 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [33:04, 02:33](3137 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [21:32, 02:07](3062 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [33:03, 02:25](3358 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [33:03, 02:37](3113 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [33:05, 02:05](3058 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:04, 02:55](3115 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [33:12, 06:42](4109 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:44, 06:08](4257 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [33:04, 02:49](3096 MB) + +PASS -- COMPILE 's2sw_intel' [12:27, 11:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [34:04, 02:44](1828 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [34:04, 02:47](1884 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:25, 10:17] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [34:05, 03:01](1889 MB) + +PASS -- COMPILE 's2s_intel' [12:26, 10:12] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [34:03, 01:48](2859 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [34:03, 02:31](2869 MB) +PASS -- TEST 'cpld_restart_c48_intel' [28:46, 02:17](2288 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:33, 16:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [28:57, 02:55](3118 MB) PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:12, 02:33](1827 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:57, 02:26](977 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:38, 02:37](1801 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:21, 05:02] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:58, 01:57](1850 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:27, 09:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [34:48, 02:21](572 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [34:48, 02:15](1467 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:48, 02:08](1473 MB) -PASS -- TEST 'control_latlon_intel' [34:48, 02:04](1470 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:48, 02:15](1475 MB) -PASS -- TEST 'control_c48_intel' [34:47, 02:29](1574 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [34:47, 02:00](690 MB) -PASS -- TEST 'control_c192_intel' [34:48, 02:09](1596 MB) -PASS -- TEST 'control_c384_intel' [34:52, 02:34](1879 MB) -PASS -- TEST 'control_c384gdas_intel' [34:25, 03:48](1063 MB) -PASS -- TEST 'control_stochy_intel' [34:19, 01:27](526 MB) -PASS -- TEST 'control_stochy_restart_intel' [30:49, 02:09](330 MB) -PASS -- TEST 'control_lndp_intel' [33:25, 01:31](523 MB) -PASS -- TEST 'control_iovr4_intel' [32:35, 01:49](520 MB) -PASS -- TEST 'control_iovr5_intel' [32:27, 01:54](521 MB) -PASS -- TEST 'control_p8_intel' [32:19, 02:39](1762 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [32:19, 03:12](1759 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [30:11, 02:30](1756 MB) -PASS -- TEST 'control_restart_p8_intel' [25:28, 02:49](910 MB) -PASS -- TEST 'control_noqr_p8_intel' [29:56, 02:25](1758 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [23:26, 02:53](925 MB) -PASS -- TEST 'control_decomp_p8_intel' [28:54, 02:26](1751 MB) -PASS -- TEST 'control_2threads_p8_intel' [28:46, 02:29](1843 MB) -PASS -- TEST 'control_p8_lndp_intel' [28:45, 01:57](1759 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [28:42, 02:59](1812 MB) -PASS -- TEST 'control_p8_mynn_intel' [28:12, 02:40](1771 MB) -PASS -- TEST 'merra2_thompson_intel' [27:53, 02:33](1767 MB) -PASS -- TEST 'regional_control_intel' [27:43, 02:09](838 MB) -PASS -- TEST 'regional_restart_intel' [19:56, 01:22](844 MB) -PASS -- TEST 'regional_decomp_intel' [27:14, 01:57](840 MB) -PASS -- TEST 'regional_2threads_intel' [26:53, 01:53](898 MB) -PASS -- TEST 'regional_noquilt_intel' [26:46, 01:21](1169 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [26:45, 02:19](839 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [25:34, 01:24](838 MB) -PASS -- TEST 'regional_wofs_intel' [25:26, 01:38](1570 MB) - -PASS -- COMPILE 'rrfs_intel' [10:27, 08:32] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [23:39, 02:59](911 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:43, 02:02](1048 MB) -PASS -- TEST 'rap_decomp_intel' [22:21, 02:16](911 MB) -PASS -- TEST 'rap_2threads_intel' [22:21, 02:19](995 MB) -PASS -- TEST 'rap_restart_intel' [13:11, 02:16](776 MB) -PASS -- TEST 'rap_sfcdiff_intel' [21:28, 03:03](909 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [21:25, 02:49](913 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:56, 02:49](780 MB) -PASS -- TEST 'hrrr_control_intel' [21:15, 02:02](905 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [21:08, 01:53](902 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [21:02, 02:19](976 MB) -PASS -- TEST 'hrrr_control_restart_intel' [15:04, 02:07](733 MB) -PASS -- TEST 'rrfs_v1beta_intel' [20:59, 03:07](903 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [20:46, 01:44](1862 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:41, 02:05](1848 MB) - -PASS -- COMPILE 'csawmg_intel' [09:26, 07:56] -PASS -- TEST 'control_csawmg_intel' [35:47, 01:39](864 MB) -PASS -- TEST 'control_ras_intel' [35:47, 01:58](559 MB) - -PASS -- COMPILE 'wam_intel' [09:25, 08:00] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [34:49, 01:36](1563 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:27, 08:07] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [20:30, 02:58](1759 MB) -PASS -- TEST 'regional_control_faster_intel' [20:21, 01:19](840 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:27, 07:40] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:59, 01:39](1495 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [19:52, 01:47](1502 MB) -PASS -- TEST 'control_stochy_debug_intel' [19:47, 01:45](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [19:10, 02:04](702 MB) -PASS -- TEST 'control_csawmg_debug_intel' [18:52, 01:22](1008 MB) -PASS -- TEST 'control_ras_debug_intel' [18:26, 02:03](709 MB) -PASS -- TEST 'control_diag_debug_intel' [17:51, 02:10](1558 MB) -PASS -- TEST 'control_debug_p8_intel' [17:25, 02:17](1800 MB) -PASS -- TEST 'regional_debug_intel' [16:23, 01:27](891 MB) -PASS -- TEST 'rap_control_debug_intel' [15:32, 01:41](1089 MB) -PASS -- TEST 'hrrr_control_debug_intel' [15:21, 01:52](1081 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [15:18, 01:47](1087 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [15:05, 01:41](1084 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:04, 01:42](1088 MB) -PASS -- TEST 'rap_diag_debug_intel' [15:04, 01:37](1171 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:00, 01:38](1088 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:17, 01:37](1089 MB) -PASS -- TEST 'rap_lndp_debug_intel' [14:07, 01:39](1085 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:43, 01:40](1085 MB) -PASS -- TEST 'rap_noah_debug_intel' [13:43, 01:47](1084 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:18, 01:42](1082 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:10, 01:27](1081 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [12:55, 01:45](1080 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:21, 01:54](1086 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:18, 01:42](1087 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:08, 02:52](1091 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:23, 04:25] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [37:49, 02:11](1581 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:26, 07:51] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:02, 02:19](920 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:33, 02:12](785 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:56, 03:27](784 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:33, 02:09](842 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:30, 03:17](829 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:10, 02:49](781 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:07, 02:31](684 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:00, 01:21](668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:35, 07:52] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:52, 02:07](994 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:50, 01:57](993 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:48, 01:45](864 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:57] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:03, 02:23](815 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:30] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:44, 01:58](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:44, 02:08](954 MB) -PASS -- TEST 'conus13km_debug_intel' [07:35, 01:50](1043 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [07:34, 01:30](716 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:29, 01:18](1049 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [07:25, 01:41](1114 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:23] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:45, 01:56](989 MB) - -PASS -- COMPILE 'hafsw_intel' [11:33, 09:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:47, 03:02](602 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:37, 02:10](945 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:11, 02:46](645 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [06:10, 02:39](671 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:57, 02:31](693 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:46, 02:05](461 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:28, 03:11](392 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:58, 02:38](288 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [04:08, 03:39](364 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:01, 02:35](408 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:51, 01:53](400 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [03:47, 01:53](486 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:05, 01:28](311 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:22, 04:52] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:41, 02:27](506 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:28, 09:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [02:36, 02:45](517 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [02:25, 02:41](704 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:29, 09:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [01:16, 02:17](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:27, 08:37] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [00:58, 03:09](639 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [00:56, 03:09](629 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [00:29, 01:24](881 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:31, 09:50] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [00:04, 01:40](1820 MB) - -PASS -- COMPILE 'atml_intel' [10:28, 08:58] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:24, 05:23] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:24, 08:13] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [00:04, 02:20](3023 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [59:32, 02:57](2903 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:30, 02:51](2921 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:21, 04:28] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [59:04, 02:29](4444 MB) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:00, 02:05](1824 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:15, 02:06](996 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:46, 02:43](1803 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:07] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [59:20, 02:04](1852 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:26, 08:58] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [23:38, 02:29](570 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [23:38, 02:11](1465 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [23:38, 02:04](1469 MB) +PASS -- TEST 'control_latlon_intel' [23:38, 02:05](1474 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:38, 02:13](1470 MB) +PASS -- TEST 'control_c48_intel' [23:37, 01:39](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [23:37, 01:44](690 MB) +PASS -- TEST 'control_c192_intel' [23:38, 02:10](1595 MB) +PASS -- TEST 'control_c384_intel' [23:42, 03:17](1890 MB) +PASS -- TEST 'control_c384gdas_intel' [23:32, 03:56](1065 MB) +PASS -- TEST 'control_stochy_intel' [23:24, 01:32](523 MB) +PASS -- TEST 'control_stochy_restart_intel' [19:45, 01:59](332 MB) +PASS -- TEST 'control_lndp_intel' [23:17, 01:36](526 MB) +PASS -- TEST 'control_iovr4_intel' [22:20, 01:49](518 MB) +PASS -- TEST 'control_iovr5_intel' [22:18, 01:48](521 MB) +PASS -- TEST 'control_p8_intel' [21:36, 02:20](1760 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [21:12, 02:55](1756 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [21:11, 02:27](1759 MB) +PASS -- TEST 'control_restart_p8_intel' [15:09, 02:49](911 MB) +PASS -- TEST 'control_noqr_p8_intel' [19:45, 02:20](1757 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [12:57, 02:54](919 MB) +PASS -- TEST 'control_decomp_p8_intel' [19:08, 02:04](1753 MB) +PASS -- TEST 'control_2threads_p8_intel' [17:57, 02:30](1839 MB) +PASS -- TEST 'control_p8_lndp_intel' [17:51, 02:04](1762 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [17:50, 02:38](1812 MB) +PASS -- TEST 'control_p8_mynn_intel' [17:45, 02:46](1766 MB) +PASS -- TEST 'merra2_thompson_intel' [17:41, 02:40](1761 MB) +PASS -- TEST 'regional_control_intel' [17:38, 02:04](842 MB) +PASS -- TEST 'regional_restart_intel' [09:50, 01:15](835 MB) +PASS -- TEST 'regional_decomp_intel' [17:22, 01:46](836 MB) +PASS -- TEST 'regional_2threads_intel' [16:56, 01:54](891 MB) +PASS -- TEST 'regional_noquilt_intel' [16:13, 01:21](1170 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [15:52, 02:20](841 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [15:33, 02:05](841 MB) +PASS -- TEST 'regional_wofs_intel' [14:44, 01:20](1566 MB) + +PASS -- COMPILE 'rrfs_intel' [10:25, 08:26] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [14:37, 03:08](906 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:34, 02:07](1048 MB) +PASS -- TEST 'rap_decomp_intel' [13:45, 02:18](901 MB) +PASS -- TEST 'rap_2threads_intel' [11:33, 02:09](988 MB) +PASS -- TEST 'rap_restart_intel' [03:48, 02:16](774 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:15, 02:58](899 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:13, 02:45](898 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [00:46, 02:44](770 MB) +PASS -- TEST 'hrrr_control_intel' [10:59, 02:22](899 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:59, 03:11](900 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:41, 02:27](976 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:02](728 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:30, 03:09](892 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:45, 01:47](1855 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:35, 01:58](1848 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 07:52] +PASS -- TEST 'control_csawmg_intel' [24:40, 01:41](857 MB) +PASS -- TEST 'control_ras_intel' [24:40, 01:52](555 MB) + +PASS -- COMPILE 'wam_intel' [09:26, 07:55] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:29, 01:23](1552 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:26, 08:14] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [09:29, 02:52](1752 MB) +PASS -- TEST 'regional_control_faster_intel' [09:25, 02:00](839 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:26, 07:38] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:18, 01:40](1497 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:17, 01:45](1489 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:53, 01:40](697 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:44, 02:02](695 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:42, 02:17](996 MB) +PASS -- TEST 'control_ras_debug_intel' [07:15, 01:59](703 MB) +PASS -- TEST 'control_diag_debug_intel' [07:13, 02:10](1557 MB) +PASS -- TEST 'control_debug_p8_intel' [05:46, 02:14](1783 MB) +PASS -- TEST 'regional_debug_intel' [05:20, 01:16](874 MB) +PASS -- TEST 'rap_control_debug_intel' [04:58, 01:41](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:22, 01:47](1074 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:14, 01:36](1077 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:11, 01:37](1074 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [03:29, 01:42](1074 MB) +PASS -- TEST 'rap_diag_debug_intel' [03:29, 01:31](1161 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [03:23, 01:38](1075 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [02:56, 01:33](1076 MB) +PASS -- TEST 'rap_lndp_debug_intel' [02:37, 01:36](1080 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [02:22, 01:40](1078 MB) +PASS -- TEST 'rap_noah_debug_intel' [02:15, 01:43](1073 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [01:42, 01:42](1071 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [01:39, 01:32](1071 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [01:25, 01:43](1068 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [01:02, 01:57](1077 MB) +PASS -- TEST 'rap_flake_debug_intel' [00:46, 01:39](1081 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [00:03, 02:54](1079 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:23] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [26:39, 02:18](1580 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:26, 07:41] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [59:53, 02:17](911 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [59:50, 03:16](777 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [59:46, 03:09](780 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [58:52, 02:45](837 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [58:52, 03:05](828 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [57:21, 03:18](777 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [50:20, 02:31](675 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [53:00, 01:20](660 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 07:52] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [57:19, 02:05](988 MB) +PASS -- TEST 'conus13km_2threads_intel' [52:13, 01:54](989 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [52:09, 01:41](860 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 07:55] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [56:43, 02:23](805 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:33] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [56:42, 01:52](956 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [56:40, 01:54](953 MB) +PASS -- TEST 'conus13km_debug_intel' [55:53, 01:39](1040 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [55:48, 01:27](711 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [55:48, 02:02](1042 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [55:25, 01:39](1108 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:21, 04:21] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [55:23, 01:56](978 MB) + +PASS -- COMPILE 'hafsw_intel' [11:27, 09:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [55:11, 02:44](598 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [54:50, 01:26](941 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [54:47, 02:24](644 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [54:11, 03:17](672 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [53:58, 03:07](696 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [53:38, 01:59](374 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [53:11, 03:18](386 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [52:45, 02:30](327 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [52:33, 03:15](366 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [52:24, 02:26](407 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [52:08, 01:51](399 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [51:51, 01:46](469 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [51:04, 01:25](329 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:53] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [50:23, 02:05](498 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:25, 09:07] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [50:21, 02:44](515 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [49:55, 02:25](701 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:16] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [49:28, 03:06](702 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:25, 08:39] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [49:10, 02:57](638 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [49:05, 02:53](616 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [48:16, 01:32](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:31, 10:12] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [48:16, 02:41](1814 MB) + +PASS -- COMPILE 'atml_intel' [10:31, 08:53] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:25, 05:26] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:30, 08:17] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [47:39, 02:19](3012 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [47:24, 02:44](2900 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [47:22, 02:43](2906 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:25, 04:27] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [46:37, 02:41](4377 MB) SYNOPSIS: -Starting Date/Time: 20240919 12:02:02 -Ending Date/Time: 20240919 13:28:17 -Total Time: 01h:26m:47s +Starting Date/Time: 20240920 13:13:13 +Ending Date/Time: 20240920 14:42:02 +Total Time: 01h:29m:26s Compiles Completed: 33/33 Tests Completed: 156/156 From bad50ef5023860c992b75cb72722cba9bb428ceb Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Tue, 1 Oct 2024 14:24:06 -0400 Subject: [PATCH 31/33] Support IntelLLVM compiler (#2224) * UFSWM - Add support for Intel LLVM compiler * CICE - Add support for Intel LLVM compiler * FV3 - Add support for Intel LLVM compiler * ccpp-physics - Add support for Intel LLVM compiler * atmos_cubed_sphere - Add support for Intel LLVM compiler * upp - Add support for Intel LLVM compiler * WW3 - Add support for Intel LLVM compiler --- .gitignore | 1 + CICE-interface/CICE | 2 +- CICE-interface/CMakeLists.txt | 225 ++--- FV3 | 2 +- HYCOM-interface/CMakeLists.txt | 14 +- MOM6-interface/CMakeLists.txt | 9 +- WW3 | 2 +- cmake/IntelLLVM.cmake | 60 ++ cmake/configure_gaea.intelllvm.cmake | 2 + driver/UFS.F90 | 7 +- modulefiles/ufs_gaea.intelllvm.lua | 40 + modulefiles/ufs_hera.intelllvm.lua | 33 + modulefiles/ufs_hercules.intelllvm.lua | 30 + modulefiles/ufs_orion.intelllvm.lua | 30 + tests/ci/repo_check.sh | 2 +- tests/compile.sh | 12 +- tests/fv3_conf/compile_slurm.IN_orion | 1 + tests/logs/RegressionTests_acorn.log | 592 ++++++------ tests/logs/RegressionTests_derecho.log | 567 ++++++------ tests/logs/RegressionTests_gaea.log | 565 ++++++----- tests/logs/RegressionTests_hera.log | 726 +++++++-------- tests/logs/RegressionTests_hercules.log | 1134 ++++++++--------------- tests/logs/RegressionTests_jet.log | 507 +++++----- tests/logs/RegressionTests_orion.log | 633 +++++++------ tests/logs/RegressionTests_wcoss2.log | 468 +++++----- tests/rt.sh | 4 +- tests/rt_intelllvm.conf | 324 +++++++ tests/rt_utils.sh | 3 +- tests/run_test.sh | 6 +- tests/tests/cpld_debug_gfsv17 | 3 + tests/tests/cpld_debug_pdlib_p8 | 9 + tests/tests/regional_debug | 4 + 32 files changed, 3113 insertions(+), 2904 deletions(-) create mode 100644 cmake/IntelLLVM.cmake create mode 100644 cmake/configure_gaea.intelllvm.cmake create mode 100644 modulefiles/ufs_gaea.intelllvm.lua create mode 100644 modulefiles/ufs_hera.intelllvm.lua create mode 100644 modulefiles/ufs_hercules.intelllvm.lua create mode 100644 modulefiles/ufs_orion.intelllvm.lua create mode 100644 tests/rt_intelllvm.conf diff --git a/.gitignore b/.gitignore index bf7d81b1c6..d29bb32d85 100644 --- a/.gitignore +++ b/.gitignore @@ -72,6 +72,7 @@ tests/fv3_conf/compile_slurm.IN tests/fv3_conf/compile_qsub.IN tests/fv3_conf/fv3_slurm.IN tests/fv3_conf/fv3_qsub.IN +tests/rt_temp.conf build*.log* rocoto_workflow* fail_compile_* diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 635d9a100a..5e57a89cf5 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 635d9a100a736bd8d14ad091e879d5da6e4eb2bd +Subproject commit 5e57a89cf533fe98352bcfd1a464b1d50713274d diff --git a/CICE-interface/CMakeLists.txt b/CICE-interface/CMakeLists.txt index c04165ab09..b027e1d3e2 100644 --- a/CICE-interface/CMakeLists.txt +++ b/CICE-interface/CMakeLists.txt @@ -1,107 +1,118 @@ -### CICE Fortran compiler flags -if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -fbacktrace") - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fconvert=big-endian -ffree-line-length-none ") - if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz") - endif() - set(CMAKE_Fortran_FLAGS_RELEASE "-O2") - set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -Wall -Wextra -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) - set(CMAKE_Fortran_LINK_FLAGS "" ) -elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte") - set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") - set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created -init=snan,arrays") - set(CMAKE_Fortran_LINK_FLAGS "") -else() - message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") -endif() - -### CICE C compiler flags -if(CMAKE_C_COMPILER_ID MATCHES "GNU") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") - set(CMAKE_C_FLAGS_RELEASE "-O3") - set(CMAKE_C_FLAGS_DEBUG "-O0") - set(CMAKE_C_LINK_FLAGS "") -elseif(CMAKE_C_COMPILER_ID MATCHES "Intel") - set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -traceback") - set( CMAKE_C_FLAGS_RELEASE "-O2 -fp-model precise") - set( CMAKE_C_FLAGS_DEBUG "-O0 -ftrapuv") - set( CMAKE_C_LINK_FLAGS "") -elseif(CMAKE_C_COMPILER_ID MATCHES "Clang") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") - set( CMAKE_C_FLAGS_RELEASE "-O3" ) - set( CMAKE_C_FLAGS_DEBUG "-O0" ) - set( CMAKE_C_LINK_FLAGS "" ) -else() - message(WARNING "C compiler with ID ${CMAKE_C_COMPILER_ID} will be used with CMake default options") -endif() - -# Configuration Options -set(CICE_IO "PIO" CACHE STRING "CICE OPTIONS: Choose IO options.") -set_property(CACHE CICE_IO PROPERTY STRINGS "NetCDF" "PIO" "Binary") - -# Too many files to list, so include them via this file -include("cice_files.cmake") - -# Collect source files for library -list(APPEND lib_src_files - ${cice_shared_files} - ${cice_shared_files_c} - ${icepack_files} - ${cice_mpi_comm_files} - ${cice_nuopc_cmeps_driver_files} - ${cice_cdeps_inline_files}) - -list(APPEND _cice_defs FORTRANUNDERSCORE - coupled) - -# Select IO source files based on CICE_IO -if(CICE_IO MATCHES "NetCDF") - list(APPEND lib_src_files ${cice_netcdf_io_files}) - list(APPEND _cice_defs USE_NETCDF) -elseif(CICE_IO MATCHES "PIO") - list(APPEND lib_src_files ${cice_pio2_io_files}) - list(APPEND _cice_defs USE_NETCDF) -elseif(CICE_IO MATCHES "Binary") - list(APPEND lib_src_files ${cice_binary_io_files}) -endif() - -### Create target library and set PUBLIC interfaces on the library -add_library(cice STATIC ${lib_src_files}) -set_target_properties(cice PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_compile_definitions(cice PUBLIC "${_cice_defs}") -target_include_directories(cice PUBLIC $ - $) -target_link_libraries(cice PUBLIC esmf) -if(CICE_IO MATCHES "^(NetCDF|PIO)$") - target_link_libraries(cice PUBLIC NetCDF::NetCDF_Fortran) - if(CICE_IO MATCHES "PIO") - target_link_libraries(cice PUBLIC PIO::PIO_Fortran) - endif() -endif() -if(OpenMP_Fortran_FOUND) - target_link_libraries(cice PRIVATE OpenMP::OpenMP_Fortran) -endif() - -# ice prescribed -add_dependencies(cice cdeps::cdeps) -target_compile_definitions(cice PUBLIC "DISABLE_FoX") -target_link_libraries(cice PUBLIC cdeps::cdeps) - -############################################################################### -### Install -############################################################################### - -install( - TARGETS cice - EXPORT cice-config - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib - COMPONENT Library) - -install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}/CICE) - -install(EXPORT cice-config - DESTINATION lib/cmake) +### CICE Fortran compiler flags +if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -fbacktrace") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fconvert=big-endian -ffree-line-length-none ") + if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz") + endif() + set(CMAKE_Fortran_FLAGS_RELEASE "-O2") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -Wall -Wextra -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) + set(CMAKE_Fortran_LINK_FLAGS "" ) +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^(Intel)$") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created -init=snan,arrays") + set(CMAKE_Fortran_LINK_FLAGS "") +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^(IntelLLVM)$") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created -init=snan,arrays") + set(CMAKE_Fortran_LINK_FLAGS "") +else() + message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") +endif() + +### CICE C compiler flags +if(CMAKE_C_COMPILER_ID MATCHES "GNU") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") + set(CMAKE_C_FLAGS_RELEASE "-O3") + set(CMAKE_C_FLAGS_DEBUG "-O0") + set(CMAKE_C_LINK_FLAGS "") +elseif(CMAKE_C_COMPILER_ID MATCHES "^(Intel)$") + set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -traceback") + set( CMAKE_C_FLAGS_RELEASE "-O2 -fp-model precise") + set( CMAKE_C_FLAGS_DEBUG "-O0 -ftrapuv") + set( CMAKE_C_LINK_FLAGS "") +elseif(CMAKE_C_COMPILER_ID MATCHES "^(IntelLLVM)$") + set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -traceback") + set( CMAKE_C_FLAGS_RELEASE "-O2 -fp-model precise") + set( CMAKE_C_FLAGS_DEBUG "-O0") + set( CMAKE_C_LINK_FLAGS "") +elseif(CMAKE_C_COMPILER_ID MATCHES "Clang") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") + set( CMAKE_C_FLAGS_RELEASE "-O3" ) + set( CMAKE_C_FLAGS_DEBUG "-O0" ) + set( CMAKE_C_LINK_FLAGS "" ) +else() + message(WARNING "C compiler with ID ${CMAKE_C_COMPILER_ID} will be used with CMake default options") +endif() + +# Configuration Options +set(CICE_IO "PIO" CACHE STRING "CICE OPTIONS: Choose IO options.") +set_property(CACHE CICE_IO PROPERTY STRINGS "NetCDF" "PIO" "Binary") + +# Too many files to list, so include them via this file +include("cice_files.cmake") + +# Collect source files for library +list(APPEND lib_src_files + ${cice_shared_files} + ${cice_shared_files_c} + ${icepack_files} + ${cice_mpi_comm_files} + ${cice_nuopc_cmeps_driver_files} + ${cice_cdeps_inline_files}) + +list(APPEND _cice_defs FORTRANUNDERSCORE + coupled) + +# Select IO source files based on CICE_IO +if(CICE_IO MATCHES "NetCDF") + list(APPEND lib_src_files ${cice_netcdf_io_files}) + list(APPEND _cice_defs USE_NETCDF) +elseif(CICE_IO MATCHES "PIO") + list(APPEND lib_src_files ${cice_pio2_io_files}) + list(APPEND _cice_defs USE_NETCDF) +elseif(CICE_IO MATCHES "Binary") + list(APPEND lib_src_files ${cice_binary_io_files}) +endif() + +### Create target library and set PUBLIC interfaces on the library +add_library(cice STATIC ${lib_src_files}) +set_target_properties(cice PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_compile_definitions(cice PUBLIC "${_cice_defs}") +target_include_directories(cice PUBLIC $ + $) +target_link_libraries(cice PUBLIC esmf) +if(CICE_IO MATCHES "^(NetCDF|PIO)$") + target_link_libraries(cice PUBLIC NetCDF::NetCDF_Fortran) + if(CICE_IO MATCHES "PIO") + target_link_libraries(cice PUBLIC PIO::PIO_Fortran) + endif() +endif() +if(OpenMP_Fortran_FOUND) + target_link_libraries(cice PRIVATE OpenMP::OpenMP_Fortran) +endif() + +# ice prescribed +add_dependencies(cice cdeps::cdeps) +target_compile_definitions(cice PUBLIC "DISABLE_FoX") +target_link_libraries(cice PUBLIC cdeps::cdeps) + +############################################################################### +### Install +############################################################################### + +install( + TARGETS cice + EXPORT cice-config + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + COMPONENT Library) + +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}/CICE) + +install(EXPORT cice-config + DESTINATION lib/cmake) diff --git a/FV3 b/FV3 index a936459109..1aba87cb30 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a9364591091c836984a40107729720705847c195 +Subproject commit 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 diff --git a/HYCOM-interface/CMakeLists.txt b/HYCOM-interface/CMakeLists.txt index 3a5fcdaefa..7debdcbc61 100644 --- a/HYCOM-interface/CMakeLists.txt +++ b/HYCOM-interface/CMakeLists.txt @@ -8,7 +8,12 @@ if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(CMAKE_Fortran_FLAGS_RELEASE "-O3") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) set(CMAKE_Fortran_LINK_FLAGS "") -elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^(Intel)$") + set(CMAKE_Fortran_FLAGS "-g -traceback -mcmodel=small -r8 ${HYCOM_Extra_FORTRAN_FLAGS}") + set(CMAKE_Fortran_FLAGS_RELEASE "-O3 -fp-model source -warn nogeneral") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check all -fpe0 -ftrapuv -link_mpi=dbg -init=snan,arrays") + set(CMAKE_Fortran_LINK_FLAGS "-V ${CMAKE_Fortran_FLAGS} -static-intel") +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^(IntelLLVM)$") set(CMAKE_Fortran_FLAGS "-g -traceback -mcmodel=small -r8 ${HYCOM_Extra_FORTRAN_FLAGS}") set(CMAKE_Fortran_FLAGS_RELEASE "-O3 -fp-model source -warn nogeneral") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check all -fpe0 -ftrapuv -link_mpi=dbg -init=snan,arrays") @@ -23,11 +28,16 @@ if(CMAKE_C_COMPILER_ID MATCHES "GNU") set(CMAKE_C_FLAGS_RELEASE "-O3") set(CMAKE_C_FLAGS_DEBUG "-O0") set(CMAKE_C_LINK_FLAGS "") -elseif(CMAKE_C_COMPILER_ID MATCHES "Intel") +elseif(CMAKE_C_COMPILER_ID MATCHES "^(Intel)$") set(CMAKE_C_FLAGS "-g -traceback -mcmodel=small ${HYCOM_Extra_C_FLAGS}") set(CMAKE_C_FLAGS_RELEASE "-O") set(CMAKE_C_FLAGS_DEBUG "-O0 -ftrapuv") set(CMAKE_C_LINK_FLAGS "-V ${CMAKE_C_FLAGS} -static-intel") +elseif(CMAKE_C_COMPILER_ID MATCHES "^(IntelLLVM)$") + set(CMAKE_C_FLAGS "-g -traceback -mcmodel=small ${HYCOM_Extra_C_FLAGS}") + set(CMAKE_C_FLAGS_RELEASE "-O") + set(CMAKE_C_FLAGS_DEBUG "-O0") + set(CMAKE_C_LINK_FLAGS "-V ${CMAKE_C_FLAGS} -static-intel") else() message(WARNING "C compiler with ID ${CMAKE_C_COMPILER_ID} will be used with CMake default options") endif() diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index f3cf811ec2..57f9f7b8c9 100644 --- a/MOM6-interface/CMakeLists.txt +++ b/MOM6-interface/CMakeLists.txt @@ -6,13 +6,20 @@ if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(CMAKE_Fortran_FLAGS_RELEASE "-O2") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) set(CMAKE_Fortran_LINK_FLAGS "") -elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^(Intel)$") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -i4 -r8") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -sox") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -fp-model source") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -init=snan,arrays") set(CMAKE_Fortran_LINK_FLAGS "") +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^(IntelLLVM)$") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -i4 -r8") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -fp-model precise") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -init=snan,arrays") + set(CMAKE_Fortran_LINK_FLAGS "") else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") endif() diff --git a/WW3 b/WW3 index 7f548c795a..c7004b658b 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 7f548c795a348bbb0fe4967dd25692c79036dc73 +Subproject commit c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd diff --git a/cmake/IntelLLVM.cmake b/cmake/IntelLLVM.cmake new file mode 100644 index 0000000000..963eaabace --- /dev/null +++ b/cmake/IntelLLVM.cmake @@ -0,0 +1,60 @@ +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback -fpp -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -align array64byte -qno-opt-dynamic-align") +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -qno-opt-dynamic-align -fp-model precise") + +# warning #5462: Global name too long. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 5462") + +# remark #7712: This variable has not been used. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 7712") + +# remark #8291: Recommended relationship between field width 'W' and the number of fractional digits 'D' in this edit descriptor is 'W>=D+7'. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 8291") + +# warning #5194: Source line truncated. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 5194") + +if(CMAKE_Platform STREQUAL "derecho.intel") + set(CMAKE_Fortran_LINK_FLAGS "-Wl,--copy-dt-needed-entries") +endif() + +if(NOT 32BIT) + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -real-size 64") +endif() + +if(DEBUG) + add_definitions(-DDEBUG) + set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug minimal -ftrapuv -init=snan,arrays") + set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -ftrapuv") +else() + if(FASTER) + set(CMAKE_Fortran_FLAGS_RELEASE "-O3 -fp-model precise -assume buffered_stdout -fno-alias -align all -debug minimal -qoverride-limits -ftz") + set(CMAKE_C_FLAGS_RELEASE "-O3 -fp-model precise -debug minimal -qoverride-limits -ftz") + else() + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -qoverride-limits") + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -fp-model precise") + set(CMAKE_C_FLAGS_RELEASE "-O2 -debug minimal") + endif() + if(AVX2) + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -march=core-avx2") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -march=core-avx2") + elseif(SIMDMULTIARCH) + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -axSSE4.2,CORE-AVX2") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -axSSE4.2,CORE-AVX2") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -mcmodel=medium") + elseif(AVX) + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -march=core-avx-i") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -march=core-avx-i") + endif() +endif() + +if(APPLE) + # The linker on macOS does not include `common symbols` by default + # Passing the -c flag includes them and fixes an error with undefined symbols + set(CMAKE_Fortran_ARCHIVE_FINISH " -c ") +endif() + +# This must be last, to override all other optimization settings. +if(DISABLE_FMA) + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -no-fma") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -no-fma") +endif() diff --git a/cmake/configure_gaea.intelllvm.cmake b/cmake/configure_gaea.intelllvm.cmake new file mode 100644 index 0000000000..42e6486231 --- /dev/null +++ b/cmake/configure_gaea.intelllvm.cmake @@ -0,0 +1,2 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) +set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) diff --git a/driver/UFS.F90 b/driver/UFS.F90 index 26501a124b..2571dbd9ec 100644 --- a/driver/UFS.F90 +++ b/driver/UFS.F90 @@ -32,6 +32,8 @@ PROGRAM UFS ! !----------------------------------------------------------------------- ! + use, intrinsic :: iso_fortran_env, only : compiler_version + USE MPI USE ESMF ! @@ -127,9 +129,10 @@ PROGRAM UFS ! if (mype == 0) then call w3tagb('ufs-weather-model',0,0,0,'np23') + write(*,'(A,A)') 'Compiler version: ', compiler_version() // new_line("") call MPI_Get_library_version(library_version, resultlen, rc) - write(*,'(A,A)') 'MPI Library = ', library_version(1:resultlen) - write(*,'(A,I0,A,I0)')'MPI Version = ', mpi_version,'.',mpi_subversion + write(*,'(A,A)') 'MPI Library: ', library_version(1:resultlen) + write(*,'(A,I0,A,I0)')'MPI Version: ', mpi_version,'.',mpi_subversion endif ! !----------------------------------------------------------------------- diff --git a/modulefiles/ufs_gaea.intelllvm.lua b/modulefiles/ufs_gaea.intelllvm.lua new file mode 100644 index 0000000000..f91a712d27 --- /dev/null +++ b/modulefiles/ufs_gaea.intelllvm.lua @@ -0,0 +1,40 @@ +help([[ + This module loads libraries required for building and running UFS Weather Model + on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. +]]) + +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) + +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" +load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) + +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +load("ufs_common") + +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +unload("darshan-runtime") +unload("cray-libsci") + +unload("intel-classic/2023.1.0") +load("intel-oneapi/2023.1.0") + +setenv("I_MPI_CC", "icx") +setenv("I_MPI_CXX", "icpx") +setenv("I_MPI_F90", "ifx") + +setenv("CC","cc") +setenv("CXX","CC") +setenv("FC","ftn") +setenv("CMAKE_Platform","gaea.intelllvm") diff --git a/modulefiles/ufs_hera.intelllvm.lua b/modulefiles/ufs_hera.intelllvm.lua new file mode 100644 index 0000000000..49e9f2b4a9 --- /dev/null +++ b/modulefiles/ufs_hera.intelllvm.lua @@ -0,0 +1,33 @@ +help([[ +loads UFS Model prerequisites for Hera/IntelLLVM +]]) + +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.1" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) + +load("gnu") +load("intel/2023.2.0") + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +load("ufs_common") + +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +setenv("I_MPI_CC", "icx") +setenv("I_MPI_CXX", "icpx") +setenv("I_MPI_FC", "ifx") + +setenv("CC", "mpicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpifc") +setenv("CMAKE_Platform", "hera.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_hercules.intelllvm.lua b/modulefiles/ufs_hercules.intelllvm.lua new file mode 100644 index 0000000000..5fb97a59fc --- /dev/null +++ b/modulefiles/ufs_hercules.intelllvm.lua @@ -0,0 +1,30 @@ +help([[ +loads UFS Model prerequisites for Hercules/IntelLLVM +]]) + +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.9.0" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +load("ufs_common") + +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +setenv("I_MPI_CC", "icx") +setenv("I_MPI_CXX", "icpx") +setenv("I_MPI_F90", "ifx") + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "hercules.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_orion.intelllvm.lua b/modulefiles/ufs_orion.intelllvm.lua new file mode 100644 index 0000000000..81f6a07b52 --- /dev/null +++ b/modulefiles/ufs_orion.intelllvm.lua @@ -0,0 +1,30 @@ +help([[ +loads UFS Model prerequisites for OrionLLVM/Intel +]]) + +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.9.0" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +load("ufs_common") + +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +setenv("I_MPI_CC", "icx") +setenv("I_MPI_CXX", "icpx") +setenv("I_MPI_F90", "ifx") + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "orion.intel") + +whatis("Description: UFS build environment") diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh index 7f5deb31c8..140f500cce 100755 --- a/tests/ci/repo_check.sh +++ b/tests/ci/repo_check.sh @@ -40,7 +40,7 @@ branches[mom6]='dev/emc' pathes[mom6]='MOM6-interface/MOM6' urls[cice]='https://github.com/NOAA-EMC/CICE' -branches[cice]='emc/develop' +branches[cice]='develop' pathes[cice]='CICE-interface/CICE' urls[ww3]='https://github.com/NOAA-EMC/WW3' diff --git a/tests/compile.sh b/tests/compile.sh index 8ab0f60b82..99b9919f25 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -95,12 +95,14 @@ export SUITES set -ex # Valid applications -if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then - CMAKE_FLAGS+=" -DMOM6SOLO=ON" -fi +if [[ ${MACHINE_ID} != gaea ]] || [[ ${RT_COMPILER} != intelllvm ]]; then # skip MOM6SOLO on gaea with intelllvm + if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then + CMAKE_FLAGS+=" -DMOM6SOLO=ON" + fi -if [[ "${MAKE_OPT}" == *"-DAPP=NG-GODAS"* ]]; then - CMAKE_FLAGS+=" -DMOM6SOLO=ON" + if [[ "${MAKE_OPT}" == *"-DAPP=NG-GODAS"* ]]; then + CMAKE_FLAGS+=" -DMOM6SOLO=ON" + fi fi CMAKE_FLAGS=$(set -e; trim "${CMAKE_FLAGS}") diff --git a/tests/fv3_conf/compile_slurm.IN_orion b/tests/fv3_conf/compile_slurm.IN_orion index 619ca76905..717861beb3 100644 --- a/tests/fv3_conf/compile_slurm.IN_orion +++ b/tests/fv3_conf/compile_slurm.IN_orion @@ -6,6 +6,7 @@ #SBATCH --partition=@[PARTITION] #SBATCH --nodes=1 #SBATCH --ntasks-per-node=8 +#SBATCH --mem-per-cpu=8G #SBATCH --time=60 #SBATCH --job-name="@[JBNME]" diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 0f75f73fa5..5aff31b620 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,31 +1,31 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -6f4efcb43af3177bb4d8aaccc1a75a61f45d9f80 +68d3b0fab6b1da5c139a03ba5190abdf5d3b2adf Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) + b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -37,334 +37,268 @@ 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-20240909 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_961999 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2713788 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [24:38, 22:48] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [59:30, 03:17](3349 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:28, 12:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [09:39, 04:10](2159 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [48:31, 03:38](2187 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [47:20, 03:38](1301 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [09:40, 03:04](2257 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:36, 21:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [01:32, 01:39](2147 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:36, 21:18] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [01:33, 03:54](2226 MB) - -PASS -- COMPILE 's2swa_intel' [17:32, 15:48] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [06:35, 02:20](3358 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:35, 02:35](3374 MB) -PASS -- TEST 'cpld_restart_p8_intel' [54:52, 03:11](3292 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [06:35, 02:03](3372 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [54:52, 03:11](3309 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [06:35, 02:02](3655 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:35, 02:24](3363 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:36, 03:08](3501 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:35, 02:45](3374 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:35, 02:55](3298 MB) - -PASS -- COMPILE 's2sw_intel' [21:36, 19:56] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [02:31, 01:57](2065 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [02:31, 03:09](2070 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:34] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:41, 03:13](2074 MB) - -PASS -- COMPILE 's2s_intel' [11:25, 09:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:41, 01:57](2879 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [12:41, 02:35](2893 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:11, 02:19](2305 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:33, 15:33] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [06:35, 02:53](3372 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:39, 21:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [00:29, 02:36](2162 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:47, 02:36](1337 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [37:41, 02:31](2262 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [24:40, 22:29] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:32, 02:07](2286 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [21:35, 19:26] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [50:05, 02:04](684 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [50:05, 01:37](1583 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [50:05, 01:33](1590 MB) -PASS -- TEST 'control_latlon_intel' [49:27, 01:22](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:52, 02:10](1592 MB) -PASS -- TEST 'control_c48_intel' [46:17, 02:35](1584 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [45:32, 02:21](708 MB) -PASS -- TEST 'control_c192_intel' [45:33, 02:24](1840 MB) -PASS -- TEST 'control_c384_intel' [44:15, 03:14](3261 MB) -PASS -- TEST 'control_c384gdas_intel' [43:53, 04:21](2437 MB) -PASS -- TEST 'control_stochy_intel' [43:11, 02:03](643 MB) -PASS -- TEST 'control_stochy_restart_intel' [30:32, 01:19](444 MB) -PASS -- TEST 'control_lndp_intel' [39:26, 01:57](640 MB) -PASS -- TEST 'control_iovr4_intel' [39:16, 02:09](653 MB) -PASS -- TEST 'control_iovr5_intel' [39:01, 01:48](652 MB) -PASS -- TEST 'control_p8_intel' [38:25, 03:07](1875 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [37:37, 03:15](1891 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [37:36, 03:02](1873 MB) -PASS -- TEST 'control_restart_p8_intel' [24:57, 03:15](1025 MB) -PASS -- TEST 'control_noqr_p8_intel' [37:33, 02:27](1869 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [24:48, 03:09](1056 MB) -PASS -- TEST 'control_decomp_p8_intel' [36:07, 02:25](1890 MB) -PASS -- TEST 'control_2threads_p8_intel' [35:01, 03:24](1975 MB) -PASS -- TEST 'control_p8_lndp_intel' [34:54, 01:45](1892 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [34:24, 03:45](1926 MB) -PASS -- TEST 'control_p8_mynn_intel' [33:55, 03:29](1905 MB) -PASS -- TEST 'merra2_thompson_intel' [33:32, 03:52](1880 MB) -PASS -- TEST 'regional_control_intel' [33:29, 01:25](858 MB) -PASS -- TEST 'regional_restart_intel' [18:29, 01:22](857 MB) -PASS -- TEST 'regional_decomp_intel' [33:25, 01:25](853 MB) -PASS -- TEST 'regional_2threads_intel' [32:23, 02:01](1235 MB) -PASS -- TEST 'regional_noquilt_intel' [31:38, 01:52](1187 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [29:50, 02:08](859 MB) -PASS -- TEST 'regional_wofs_intel' [28:11, 01:23](1585 MB) - -PASS -- COMPILE 'rrfs_intel' [17:30, 15:21] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [52:08, 03:23](1042 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [52:09, 01:42](1731 MB) -PASS -- TEST 'rap_decomp_intel' [52:08, 02:57](1026 MB) -PASS -- TEST 'rap_2threads_intel' [52:08, 03:30](1126 MB) -PASS -- TEST 'rap_restart_intel' [27:29, 03:29](857 MB) -PASS -- TEST 'rap_sfcdiff_intel' [52:08, 03:32](1025 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [52:08, 03:56](1042 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [27:19, 03:04](856 MB) -PASS -- TEST 'hrrr_control_intel' [52:08, 03:20](1022 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [52:08, 04:08](1018 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [52:09, 03:19](1263 MB) -PASS -- TEST 'hrrr_control_restart_intel' [27:13, 01:27](809 MB) -PASS -- TEST 'rrfs_v1beta_intel' [52:08, 03:30](1035 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [52:08, 01:50](1998 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [52:08, 02:20](1990 MB) - -PASS -- COMPILE 'csawmg_intel' [13:28, 12:06] -PASS -- TEST 'control_csawmg_intel' [53:06, 02:08](954 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_ras_intel' [, ]( MB) - -PASS -- COMPILE 'wam_intel' [12:27, 10:39] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [54:08, 02:14](1689 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:24] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [52:06, 03:46](1889 MB) -PASS -- TEST 'regional_control_faster_intel' [52:05, 01:14](845 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:30, 12:22] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [24:14, 02:11](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [24:08, 02:04](1648 MB) -PASS -- TEST 'control_stochy_debug_intel' [23:58, 02:13](850 MB) -PASS -- TEST 'control_lndp_debug_intel' [23:41, 01:54](826 MB) -PASS -- TEST 'control_csawmg_debug_intel' [23:05, 02:03](1130 MB) -PASS -- TEST 'control_ras_debug_intel' [21:57, 01:39](851 MB) -PASS -- TEST 'control_diag_debug_intel' [21:36, 01:57](1688 MB) -PASS -- TEST 'control_debug_p8_intel' [21:33, 02:11](1914 MB) -PASS -- TEST 'regional_debug_intel' [21:07, 01:59](943 MB) -PASS -- TEST 'rap_control_debug_intel' [20:38, 01:28](1204 MB) -PASS -- TEST 'hrrr_control_debug_intel' [19:55, 01:30](1218 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [19:52, 02:15](1228 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [19:51, 01:47](1209 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:34, 01:44](1222 MB) -PASS -- TEST 'rap_diag_debug_intel' [19:03, 02:32](1290 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:35, 01:40](1229 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:16, 01:47](1212 MB) -PASS -- TEST 'rap_lndp_debug_intel' [18:11, 01:38](1209 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [18:03, 01:57](1205 MB) -PASS -- TEST 'rap_noah_debug_intel' [17:57, 02:03](1225 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [17:57, 01:35](1207 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:52, 01:26](1224 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [17:25, 01:52](1200 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [17:08, 01:49](1226 MB) -PASS -- TEST 'rap_flake_debug_intel' [16:36, 01:59](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:27, 03:37](1211 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:27, 07:17] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:59, 01:22](1714 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:31, 11:36] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:44, 02:30](1604 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:35, 02:53](897 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:12, 05:11](913 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:49, 03:07](980 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:23, 04:43](1114 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:55, 04:51](894 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:28, 03:34](785 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 02:07](773 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:33, 15:42] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [13:38, 02:07](1101 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:27, 01:26](1462 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:48, 01:53](941 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:27, 11:40] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:06, 01:55](944 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:23, 07:33] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:04, 01:27](1084 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:19, 01:21](1082 MB) -PASS -- TEST 'conus13km_debug_intel' [11:16, 02:20](1195 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [11:15, 02:16](870 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:03, 01:20](1533 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:41, 01:43](1263 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:21, 06:41] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:01, 01:26](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [41:58, 09:19] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:46, 03:10](1803 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:39, 01:37](2145 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 02:50](1266 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [09:24, 02:25](1303 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:18, 03:07](1451 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:23, 02:11](996 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:28, 03:07](1323 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:31, 02:53](1190 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:03, 04:09](2151 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:30, 02:33](1034 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:13, 02:24](1036 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [03:15, 02:09](1659 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:39, 02:15](1217 MB) -PASS -- TEST 'gnv1_nested_intel' [02:29, 04:37](1955 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [36:52, 05:23] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:31, 02:37](1731 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [38:55, 09:14] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [00:01, 02:33](1708 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [59:03, 01:55](1885 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [38:55, 09:15] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [59:02, 02:51](1887 MB) - -PASS -- COMPILE 'hafs_all_intel' [51:09, 08:55] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [53:52, 03:03](1270 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [53:52, 02:46](1251 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:50, 01:21](906 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [51:10, 09:07] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [52:36, 01:57](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [45:08, 01:37](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [48:11, 01:24](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [48:11, 01:28](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [46:49, 01:48](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [46:00, 01:16](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [45:35, 01:34](766 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [45:17, 01:53](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [45:06, 01:54](863 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [43:46, 02:37](854 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [42:46, 01:59](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [42:05, 01:37](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [41:28, 01:17](2030 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [52:11, 09:12] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [41:15, 01:19](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [44:00, 01:01] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [58:45, 02:12](677 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [58:03, 01:46](815 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [41:10, 01:58](816 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [52:11, 09:27] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [40:51, 02:10](2006 MB) - -PASS -- COMPILE 'atml_intel' [50:06, 09:09] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [40:26, 03:37](2254 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [39:53, 03:14](2254 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [28:26, 02:02](1397 MB) - -PASS -- COMPILE 'atml_debug_intel' [24:40, 05:30] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [39:51, 03:00](2298 MB) - -PASS -- COMPILE 'atmw_intel' [30:47, 08:39] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:27, 03:05](1976 MB) - -PASS -- COMPILE 'atmaero_intel' [30:47, 08:33] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [38:04, 02:40](3250 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [37:42, 02:29](3041 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [37:36, 02:37](3053 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [26:42, 04:45] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [39:36, 02:35](4805 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 09:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [33:36, 02:39](3343 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 11:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [31:34, 03:42](2145 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:07, 03:27](2174 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:17, 03:50](1311 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:35, 02:58](2256 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 11:27] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [31:34, 01:59](2144 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [24:38, 22:29] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [19:37, 04:05](2227 MB) + +PASS -- COMPILE 's2swa_intel' [21:35, 20:12] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [23:25, 02:29](3375 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:25, 02:40](3375 MB) +PASS -- TEST 'cpld_restart_p8_intel' [00:53, 03:08](3287 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [23:25, 02:28](3391 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [00:53, 02:47](3314 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [23:25, 03:01](3657 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [23:25, 03:08](3363 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [23:26, 01:59](3499 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:25, 03:25](3353 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [23:25, 03:04](3298 MB) + +PASS -- COMPILE 's2sw_intel' [37:52, 36:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:24, 01:57](2076 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:17, 03:01](2071 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:25, 11:08] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:35, 03:10](2071 MB) + +PASS -- COMPILE 's2s_intel' [11:25, 09:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [33:35, 01:52](2877 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [33:35, 02:33](2891 MB) +PASS -- TEST 'cpld_restart_c48_intel' [28:03, 02:04](2304 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:41, 24:15] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:33, 02:43](3358 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:38, 21:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:36, 03:00](2144 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [45:30, 02:27](1322 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:38, 02:07](2261 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:24] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:15, 01:49](2292 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:25, 08:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [23:11, 01:23](703 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [23:11, 01:49](1599 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [23:11, 01:47](1607 MB) +PASS -- TEST 'control_latlon_intel' [23:11, 02:07](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:11, 01:54](1587 MB) +PASS -- TEST 'control_c48_intel' [23:10, 02:07](1582 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [23:10, 01:41](705 MB) +PASS -- TEST 'control_c192_intel' [23:11, 02:20](1855 MB) +PASS -- TEST 'control_c384_intel' [23:15, 02:40](3248 MB) +PASS -- TEST 'control_c384gdas_intel' [23:15, 03:51](2442 MB) +PASS -- TEST 'control_stochy_intel' [23:11, 01:21](656 MB) +PASS -- TEST 'control_stochy_restart_intel' [18:33, 01:29](462 MB) +PASS -- TEST 'control_lndp_intel' [23:11, 01:29](637 MB) +PASS -- TEST 'control_iovr4_intel' [23:11, 01:35](633 MB) +PASS -- TEST 'control_iovr5_intel' [23:11, 01:36](638 MB) +PASS -- TEST 'control_p8_intel' [23:11, 02:05](1890 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [23:11, 03:00](1877 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [23:11, 02:55](1891 MB) +PASS -- TEST 'control_restart_p8_intel' [59:53, 02:43](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [23:11, 03:15](1877 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [00:10, 02:49](1053 MB) +PASS -- TEST 'control_decomp_p8_intel' [17:31, 03:14](1869 MB) +PASS -- TEST 'control_2threads_p8_intel' [15:13, 02:15](1976 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:20, 01:30](1872 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:05, 03:26](1948 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:07, 03:03](1884 MB) +PASS -- TEST 'merra2_thompson_intel' [09:07, 03:26](1877 MB) +PASS -- TEST 'regional_control_intel' [08:51, 01:36](864 MB) +PASS -- TEST 'regional_restart_intel' [52:51, 02:01](855 MB) +PASS -- TEST 'regional_decomp_intel' [03:32, 01:14](859 MB) +PASS -- TEST 'regional_2threads_intel' [03:21, 01:32](1228 MB) +PASS -- TEST 'regional_noquilt_intel' [02:37, 01:46](1182 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [02:09, 01:50](855 MB) +PASS -- TEST 'regional_wofs_intel' [02:08, 02:03](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [20:35, 19:25] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [01:49, 03:34](1040 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [00:45, 02:26](1731 MB) +PASS -- TEST 'rap_decomp_intel' [00:32, 02:50](1045 MB) +PASS -- TEST 'rap_2threads_intel' [00:24, 02:28](1121 MB) +PASS -- TEST 'rap_restart_intel' [47:46, 03:45](858 MB) +PASS -- TEST 'rap_sfcdiff_intel' [59:06, 03:39](1038 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [57:25, 03:28](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [43:32, 03:59](857 MB) +PASS -- TEST 'hrrr_control_intel' [57:25, 03:40](1017 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [56:47, 03:11](1015 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [55:37, 03:51](1261 MB) +PASS -- TEST 'hrrr_control_restart_intel' [45:57, 01:30](825 MB) +PASS -- TEST 'rrfs_v1beta_intel' [55:29, 03:46](1017 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [55:27, 01:53](1999 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [55:12, 02:16](1970 MB) + +PASS -- COMPILE 'csawmg_intel' [18:33, 16:23] +PASS -- TEST 'control_csawmg_intel' [55:08, 02:19](974 MB) +PASS -- TEST 'control_ras_intel' [53:51, 01:24](674 MB) + +PASS -- COMPILE 'wam_intel' [18:33, 16:53] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [53:15, 01:58](1672 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:24, 09:44] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [52:25, 03:06](1879 MB) +PASS -- TEST 'regional_control_faster_intel' [51:08, 01:31](854 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:27, 12:30] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [50:40, 01:24](1620 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [50:40, 02:05](1623 MB) +PASS -- TEST 'control_stochy_debug_intel' [50:16, 01:33](846 MB) +PASS -- TEST 'control_lndp_debug_intel' [49:58, 01:29](849 MB) +PASS -- TEST 'control_csawmg_debug_intel' [48:37, 01:25](1130 MB) +PASS -- TEST 'control_ras_debug_intel' [48:37, 02:08](834 MB) +PASS -- TEST 'control_diag_debug_intel' [47:46, 01:46](1711 MB) +PASS -- TEST 'control_debug_p8_intel' [47:46, 01:54](1924 MB) +PASS -- TEST 'regional_debug_intel' [46:18, 01:11](922 MB) +PASS -- TEST 'rap_control_debug_intel' [45:57, 01:30](1231 MB) +PASS -- TEST 'hrrr_control_debug_intel' [45:45, 01:58](1200 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [44:05, 01:22](1229 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [43:45, 01:24](1210 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [43:32, 02:05](1205 MB) +PASS -- TEST 'rap_diag_debug_intel' [43:27, 01:59](1290 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [42:35, 01:56](1212 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [42:12, 02:08](1213 MB) +PASS -- TEST 'rap_lndp_debug_intel' [42:08, 01:18](1228 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:06, 01:37](1205 MB) +PASS -- TEST 'rap_noah_debug_intel' [42:03, 01:43](1203 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [41:55, 01:45](1207 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [41:47, 01:32](1206 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [41:46, 01:27](1200 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [41:32, 01:22](1226 MB) +PASS -- TEST 'rap_flake_debug_intel' [41:22, 01:18](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:49, 03:44](1230 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:20, 05:24] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [40:39, 02:10](1711 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [47:04, 07:46] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [34:18, 01:36](1605 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [34:17, 03:00](896 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [34:17, 03:20](897 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [34:17, 03:51](975 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [34:18, 04:08](1120 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [34:17, 04:06](890 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:44, 03:22](805 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [26:06, 02:14](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [47:02, 07:50] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [33:20, 01:32](1102 MB) +PASS -- TEST 'conus13km_2threads_intel' [26:08, 01:54](1461 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [26:07, 01:35](941 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [46:03, 07:48] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [33:16, 01:42](944 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [52:08, 10:55] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:03, 01:44](1084 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [22:52, 01:20](1081 MB) +PASS -- TEST 'conus13km_debug_intel' [22:10, 01:44](1172 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [22:08, 01:41](844 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [22:01, 01:56](1536 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:54, 01:30](1263 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:08, 10:19] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [21:32, 01:40](1112 MB) + +PASS -- COMPILE 'hafsw_intel' [48:05, 08:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [24:56, 02:30](1799 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:56, 01:43](2142 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [24:54, 02:35](1265 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [24:54, 02:58](1301 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:55, 03:01](1455 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:54, 02:02](1000 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [24:55, 03:01](1308 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [24:55, 02:50](1189 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [24:58, 04:12](2159 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [24:54, 02:06](1032 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [24:54, 02:23](1034 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [24:56, 02:17](1661 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [24:55, 01:37](1219 MB) +PASS -- TEST 'gnv1_nested_intel' [24:53, 04:03](1955 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [44:00, 05:18] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:02, 02:31](1771 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [51:07, 12:41] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:30, 02:07](1711 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:29, 02:37](1889 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [45:00, 08:52] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:59, 02:40](1890 MB) + +PASS -- COMPILE 'hafs_all_intel' [48:03, 14:02] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [18:36, 02:41](1263 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:25, 02:55](1246 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:40, 01:24](905 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:25, 08:58] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:50, 01:21](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [16:23, 01:57](742 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:50, 02:08](646 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [23:50, 01:28](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [23:50, 01:27](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [23:50, 01:48](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:12, 01:50](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [14:20, 01:53](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:07, 01:42](863 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:59, 01:48](846 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [12:17, 02:03](752 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [11:43, 01:38](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [11:28, 01:22](2030 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [18:31, 12:50] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [11:05, 01:33](753 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [10:24, 03:50] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [10:34, 01:43](668 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [09:56, 01:14](813 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:21, 02:03](812 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:29, 13:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:57, 02:30](2015 MB) + +PASS -- COMPILE 'atml_intel' [10:23, 08:28] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:07, 03:23](2258 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:39, 03:53](2256 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [56:12, 02:10](1387 MB) + +PASS -- COMPILE 'atml_debug_intel' [30:43, 05:03] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [53:13, 03:08](2281 MB) + +PASS -- COMPILE 'atmw_intel' [34:48, 08:22] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [49:02, 03:30](1981 MB) + +PASS -- COMPILE 'atmaero_intel' [33:47, 08:11] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [49:53, 02:55](3247 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [49:53, 03:09](3022 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:53, 03:07](3035 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [30:43, 04:28] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [52:58, 02:48](4785 MB) SYNOPSIS: -Starting Date/Time: 20240921 13:35:34 -Ending Date/Time: 20240921 15:50:26 -Total Time: 02h:15m:19s +Starting Date/Time: 20240927 14:14:41 +Ending Date/Time: 20240927 16:34:56 +Total Time: 02h:20m:42s Compiles Completed: 37/37 -Tests Completed: 175/176 -Failed Tests: -* TEST control_ras_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/BrianCurtis-NOAA/ufs-weather-model/wcoss2_lib_bump/tests/logs/log_acorn/run_control_ras_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ACORN REGRESSION TESTING LOG==== -====START OF ACORN REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -ac821add06a576dcd9f87b18c2d72d34913a84a1 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_606589 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-n) - RUN SINGLE TEST: control_ras - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:07] -PASS -- TEST 'control_ras_intel' [11:00, 01:48](674 MB) - -SYNOPSIS: -Starting Date/Time: 20240923 12:39:40 -Ending Date/Time: 20240923 12:54:27 -Total Time: 00h:14m:56s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 176/176 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 97923cf0b8..dcbb03e63a 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,31 +1,31 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -ce118b02fad212ff25d1995f8d323e41b841d615 +7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) + b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -37,286 +37,285 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_83096 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_36907 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [26:21, 24:44] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:40, 06:42](3203 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:22, 26:41] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:09, 14:46](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:22, 15:57](1941 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:21, 08:07](1064 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:26, 16:48](1885 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [28:22, 26:40] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:35, 14:37](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:17, 15:15] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:03, 23:41](1936 MB) - -PASS -- COMPILE 's2swa_intel' [26:20, 24:30] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:47, 08:18](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:06, 08:20](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:49, 05:06](3148 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:47, 08:14](3252 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:02, 05:05](3178 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:32, 07:42](3746 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:32, 08:08](3220 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:18, 06:48](3535 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:03, 08:20](3231 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:34, 09:52](3819 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [31:58, 07:03](3613 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [31:03, 09:51](4513 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [32:22, 06:50](4671 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:10, 06:19](3211 MB) - -PASS -- COMPILE 's2sw_intel' [24:20, 22:35] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:38, 05:56](1921 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:49, 08:04](1984 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:17, 14:57] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:07, 12:54](3300 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:17, 14:11] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:56, 08:46](1966 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [21:20, 19:02] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:52, 04:59](1987 MB) - -PASS -- COMPILE 's2s_intel' [21:24, 19:37] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:13, 06:00](2881 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:14, 02:44](2888 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:21, 01:50](2306 MB) - -PASS -- COMPILE 's2swa_faster_intel' [28:27, 26:50] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:30, 08:03](3248 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:25, 23:45] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:47, 14:56](1931 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:17, 08:10](1105 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:02, 16:56](1898 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:18, 12:51] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:42, 24:17](1948 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:26, 15:14] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:47, 03:32](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:18, 02:48](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:36, 02:46](1571 MB) -PASS -- TEST 'control_latlon_intel' [06:15, 02:43](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:07, 02:49](1566 MB) -PASS -- TEST 'control_c48_intel' [12:07, 09:21](1586 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:42, 05:20](712 MB) -PASS -- TEST 'control_c192_intel' [13:49, 10:01](1697 MB) -PASS -- TEST 'control_c384_intel' [20:09, 11:22](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [17:15, 07:15](1176 MB) -PASS -- TEST 'control_stochy_intel' [03:38, 01:33](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:39, 00:56](436 MB) -PASS -- TEST 'control_lndp_intel' [03:35, 01:24](623 MB) -PASS -- TEST 'control_iovr4_intel' [04:38, 02:10](622 MB) -PASS -- TEST 'control_iovr5_intel' [04:37, 02:14](617 MB) -PASS -- TEST 'control_p8_intel' [07:19, 03:37](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:58, 03:02](1864 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:47, 03:42](1853 MB) -PASS -- TEST 'control_restart_p8_intel' [05:28, 02:23](1007 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:46, 03:36](1848 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:19, 02:16](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:35, 03:40](1842 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:35, 03:30](1941 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:47, 05:58](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:47, 04:04](1909 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:55, 03:08](1864 MB) -PASS -- TEST 'merra2_thompson_intel' [09:30, 03:22](1864 MB) -PASS -- TEST 'regional_control_intel' [08:03, 04:58](858 MB) -PASS -- TEST 'regional_restart_intel' [07:51, 03:07](860 MB) -PASS -- TEST 'regional_decomp_intel' [08:04, 05:08](864 MB) -PASS -- TEST 'regional_noquilt_intel' [07:57, 04:47](1189 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:59, 04:52](863 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:53, 04:54](862 MB) -PASS -- TEST 'regional_wofs_intel' [07:56, 05:40](1592 MB) - -PASS -- COMPILE 'rrfs_intel' [16:18, 14:21] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:32, 06:12](1006 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:23, 03:49](1159 MB) -PASS -- TEST 'rap_decomp_intel' [10:48, 06:29](1003 MB) -PASS -- TEST 'rap_2threads_intel' [09:32, 05:47](1090 MB) -PASS -- TEST 'rap_restart_intel' [07:22, 03:13](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:36, 06:16](1001 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:36, 06:27](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:16, 04:41](878 MB) -PASS -- TEST 'hrrr_control_intel' [07:20, 03:18](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:24, 03:23](1001 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:13, 02:51](1079 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 01:45](827 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:34, 06:07](1002 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:07, 07:31](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:06, 07:13](1954 MB) - -PASS -- COMPILE 'csawmg_intel' [15:24, 13:14] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:02, 06:28](962 MB) -PASS -- TEST 'control_ras_intel' [05:31, 02:57](657 MB) - -PASS -- COMPILE 'wam_intel' [15:20, 12:53] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:09, 10:17](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:19, 12:58] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:35, 03:11](1856 MB) -PASS -- TEST 'regional_control_faster_intel' [07:54, 04:45](862 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [18:25, 16:24] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:03, 02:20](1612 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:16, 02:08](1605 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:36, 02:52](810 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:32, 02:40](809 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:57, 04:44](1115 MB) -PASS -- TEST 'control_ras_debug_intel' [07:36, 02:39](816 MB) -PASS -- TEST 'control_diag_debug_intel' [08:36, 02:46](1661 MB) -PASS -- TEST 'control_debug_p8_intel' [10:00, 03:13](1896 MB) -PASS -- TEST 'regional_debug_intel' [19:58, 16:32](920 MB) -PASS -- TEST 'rap_control_debug_intel' [10:39, 04:43](1186 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:39, 04:38](1184 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:34, 04:40](1191 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [11:30, 04:44](1191 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:34, 04:43](1190 MB) -PASS -- TEST 'rap_diag_debug_intel' [12:30, 04:54](1273 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:32, 04:55](1190 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:41, 04:56](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [11:39, 04:44](1199 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:31, 04:45](1194 MB) -PASS -- TEST 'rap_noah_debug_intel' [11:31, 04:35](1185 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [11:30, 04:44](1191 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:37, 07:32](1188 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:28, 04:39](1187 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:33, 05:51](1195 MB) -PASS -- TEST 'rap_flake_debug_intel' [14:37, 04:44](1190 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [19:04, 07:59](1190 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:21, 08:45] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:43, 12:10](1698 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:18, 12:02] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [19:15, 03:41](1015 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:04, 05:11](879 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:21, 02:49](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [15:53, 04:50](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [56:07, 02:33](931 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [16:02, 02:55](876 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:14, 03:56](788 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [27:22, 01:39](772 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:16, 12:21] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [22:26, 01:55](1075 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:17, 01:00](1072 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [18:52, 01:19](961 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 12:32] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:53, 03:50](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:16, 08:53] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [19:29, 04:32](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [31:30, 04:36](1067 MB) -PASS -- TEST 'conus13km_debug_intel' [41:34, 13:57](1147 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [42:24, 14:04](831 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [19:22, 08:01](1146 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:13, 14:19](1214 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:15, 08:34] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [31:21, 04:43](1091 MB) - -PASS -- COMPILE 'hafsw_intel' [21:16, 18:49] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:28, 04:45](702 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [25:45, 05:20](1056 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:37, 06:34](752 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [21:23, 11:08](775 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:47, 12:14](801 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:23, 04:39](465 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:25, 05:52](487 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [16:00, 02:21](388 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [28:55, 06:21](454 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:06, 03:19](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:12, 03:05](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [20:27, 04:00](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:32, 01:16](419 MB) -PASS -- TEST 'gnv1_nested_intel' [31:00, 04:14](1707 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:14, 10:13] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:30, 12:24](623 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:17, 18:27] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:35, 07:17](627 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:44, 07:26](686 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [22:17, 19:52] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:31, 05:30](675 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:17, 17:31] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:13, 05:46](735 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 05:55](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:24, 16:12](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:14, 09:22] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [17:36, 02:33](768 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:36, 01:38](746 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:27, 02:24](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [18:30, 02:29](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:22, 02:27](653 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [18:33, 02:34](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:29, 02:32](767 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [18:28, 02:24](651 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [21:45, 05:45](697 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [22:37, 05:40](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [16:25, 02:30](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [18:38, 04:06](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [19:43, 03:58](2035 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 06:47] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [19:36, 05:20](752 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [33:45, 09:52] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:31, 02:30](769 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [24:48, 03:12] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [18:24, 01:25](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [18:16, 01:27](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [17:43, 00:50](457 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:48, 14:46] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [41:08, 04:02](1916 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [33:55, 14:02] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [37:43, 04:01](1899 MB) - -PASS -- COMPILE 'atml_intel' [30:50, 15:45] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [23:42, 07:22](1887 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [23:43, 07:25](1890 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [15:03, 04:32](1034 MB) - -PASS -- COMPILE 'atml_debug_intel' [26:35, 12:19] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [18:50, 06:12](1928 MB) - -PASS -- COMPILE 'atmw_intel' [25:54, 15:17] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [39:37, 02:18](1880 MB) - -PASS -- COMPILE 'atmaero_intel' [24:52, 13:57] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [29:03, 04:24](3130 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:54, 04:27](3004 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:31, 04:29](3022 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [17:38, 09:29] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [35:59, 22:20](4546 MB) - -PASS -- COMPILE 'atm_fbh_intel' [18:48, 12:26] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [23:51, 08:11](814 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [29:58, 29:57] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:18, 07:43](3198 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:37, 28:31] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:06, 14:55](1916 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:41, 17:52](1949 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:48, 09:51](1064 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:56, 16:45](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:43, 27:35] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:03, 14:42](1910 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [20:10, 20:08] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:26, 23:45](1936 MB) + +PASS -- COMPILE 's2swa_intel' [29:34, 29:34] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:44, 08:54](3223 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:57, 08:50](3221 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:39, 05:38](3148 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:26, 09:09](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:53, 05:37](3179 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:04, 08:19](3749 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:21, 08:39](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:05, 07:17](3546 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:50, 08:54](3232 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:16, 10:27](3815 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:17, 07:35](3621 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:33, 10:46](4511 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:55, 07:50](4656 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:51, 06:16](3209 MB) + +PASS -- COMPILE 's2sw_intel' [26:44, 26:44] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:07, 07:03](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:56, 08:19](1986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [18:37, 18:36] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:47, 13:42](3302 MB) + +PASS -- COMPILE 's2sw_debug_intel' [18:13, 18:13] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:36, 09:35](1960 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [22:57, 22:56] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:11, 05:55](1983 MB) + +PASS -- COMPILE 's2s_intel' [23:18, 23:17] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:51, 05:26](2885 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:18, 02:05](2896 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:31, 01:12](2305 MB) + +PASS -- COMPILE 's2swa_faster_intel' [29:50, 29:50] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:34, 08:23](3233 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [27:46, 27:45] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:35, 14:57](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:43, 10:33](1095 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:04, 17:55](1894 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:48, 16:47] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:36, 24:38](1955 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:10, 17:10] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:56, 03:38](671 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:51](1568 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:51, 02:54](1568 MB) +PASS -- TEST 'control_latlon_intel' [03:36, 02:54](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:20, 02:41](1569 MB) +PASS -- TEST 'control_c48_intel' [10:23, 09:17](1589 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:13, 05:27](711 MB) +PASS -- TEST 'control_c192_intel' [11:30, 10:09](1692 MB) +PASS -- TEST 'control_c384_intel' [15:53, 12:09](1980 MB) +PASS -- TEST 'control_c384gdas_intel' [12:13, 07:51](1177 MB) +PASS -- TEST 'control_stochy_intel' [02:02, 01:45](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:45, 01:11](437 MB) +PASS -- TEST 'control_lndp_intel' [02:08, 01:42](626 MB) +PASS -- TEST 'control_iovr4_intel' [02:57, 02:22](618 MB) +PASS -- TEST 'control_iovr5_intel' [02:49, 02:23](619 MB) +PASS -- TEST 'control_p8_intel' [06:47, 04:48](1865 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:01, 04:04](1855 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:48, 04:41](1868 MB) +PASS -- TEST 'control_restart_p8_intel' [04:33, 02:20](1009 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:24, 03:37](1852 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:52](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:55, 03:57](1855 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:26, 03:39](1934 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:29, 06:15](1857 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:36, 03:51](1911 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:03, 03:15](1868 MB) +PASS -- TEST 'merra2_thompson_intel' [06:41, 03:52](1864 MB) +PASS -- TEST 'regional_control_intel' [05:27, 04:29](862 MB) +PASS -- TEST 'regional_restart_intel' [03:41, 02:49](862 MB) +PASS -- TEST 'regional_decomp_intel' [05:57, 05:03](863 MB) +PASS -- TEST 'regional_noquilt_intel' [05:34, 04:36](1188 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:47, 04:46](869 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:52, 04:54](864 MB) +PASS -- TEST 'regional_wofs_intel' [06:48, 06:01](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [15:50, 15:50] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:00, 06:36](1004 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:22, 04:14](1142 MB) +PASS -- TEST 'rap_decomp_intel' [09:00, 06:51](1003 MB) +PASS -- TEST 'rap_2threads_intel' [07:54, 06:10](1087 MB) +PASS -- TEST 'rap_restart_intel' [05:10, 03:37](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:30, 08:22](1004 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:56, 08:38](1001 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:23, 05:44](877 MB) +PASS -- TEST 'hrrr_control_intel' [06:58, 05:28](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:11, 05:35](1001 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:39, 05:03](1077 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:42, 01:53](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:24, 08:15](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:13, 08:43](1953 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:49, 08:24](1944 MB) + +PASS -- COMPILE 'csawmg_intel' [14:26, 14:26] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:51, 07:02](961 MB) +PASS -- TEST 'control_ras_intel' [03:38, 03:12](659 MB) + +PASS -- COMPILE 'wam_intel' [13:44, 13:43] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:38, 10:24](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:39, 14:39] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:29, 04:15](1863 MB) +PASS -- TEST 'regional_control_faster_intel' [05:24, 04:32](862 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:51, 17:51] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:34, 02:34](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:35, 02:30](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:29, 03:06](809 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:24, 03:00](812 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:01, 05:17](1113 MB) +PASS -- TEST 'control_ras_debug_intel' [02:57, 02:44](817 MB) +PASS -- TEST 'control_diag_debug_intel' [04:13, 03:08](1666 MB) +PASS -- TEST 'control_debug_p8_intel' [04:27, 03:45](1898 MB) +PASS -- TEST 'regional_debug_intel' [16:53, 16:13](933 MB) +PASS -- TEST 'rap_control_debug_intel' [05:09, 04:55](1194 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:03, 04:48](1187 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 05:00](1192 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:13, 04:58](1191 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 04:58](1194 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:16](1280 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:38, 04:59](1195 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:54, 05:11](1187 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:34, 05:13](1200 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:59](1196 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:53](1188 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 04:56](1191 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 07:57](1188 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:08, 04:50](1184 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:58, 05:35](1193 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:10, 04:52](1196 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:35, 08:09](1193 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:36, 09:35] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [13:39, 12:58](1690 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:05, 14:05] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:42, 04:08](1015 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:14, 05:34](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:13, 03:03](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:14, 05:00](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:58, 02:47](932 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:14](877 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:41, 04:11](789 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 02:00](767 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 14:11] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:36, 02:32](1070 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:28](1074 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:35, 01:32](964 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:19, 14:18] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:56, 03:56](903 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:57, 09:57] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:04, 04:45](1067 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:56, 04:36](1066 MB) +PASS -- TEST 'conus13km_debug_intel' [15:11, 14:14](1143 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:11, 14:12](847 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:26, 08:35](1144 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:13, 14:20](1215 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:32, 09:32] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 05:01](1097 MB) + +PASS -- COMPILE 'hafsw_intel' [22:14, 22:14] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:24, 05:12](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:04, 06:31](1052 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:17, 07:27](762 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:24, 11:40](771 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:17, 12:33](792 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:02, 04:46](468 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:25, 06:10](483 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:20, 02:27](384 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:29, 06:40](455 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:13, 03:31](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:05, 03:16](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:07, 04:08](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:36, 01:16](422 MB) +PASS -- TEST 'gnv1_nested_intel' [07:36, 04:42](1711 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:15, 13:15] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:40, 13:06](617 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:28, 21:27] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [08:41, 07:37](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [08:41, 07:35](682 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [23:16, 23:15] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:56, 06:06](674 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:31, 19:31] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:23, 06:27](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:26](723 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:28, 16:21](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:01, 12:01] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:42, 02:35](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:48, 01:38](744 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:34, 02:27](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:33, 02:27](648 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:42, 02:34](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:54, 02:41](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:55, 02:43](756 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:47, 02:35](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:22](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:39, 05:58](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:55, 02:49](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:43, 04:26](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:44, 04:20](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:40, 08:40] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:19, 05:10](752 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:29, 11:28] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:58, 02:49](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:53, 03:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 02:03](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:40, 02:21](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:17, 01:02](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:30, 16:28] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:54, 05:20](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:36, 16:36] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 04:33](1895 MB) + +PASS -- COMPILE 'atml_intel' [18:03, 18:03] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:54, 09:23](1891 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:35, 09:09](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:25, 05:19](1032 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:45, 14:45] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:23, 08:14](1925 MB) + +PASS -- COMPILE 'atmw_intel' [17:59, 17:58] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:20, 03:10](1875 MB) + +PASS -- COMPILE 'atmaero_intel' [16:33, 16:33] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:43, 05:26](3129 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:20, 04:32](3010 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:56, 04:43](3018 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:47, 11:47] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:39, 22:50](4541 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:59, 14:58] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:54, 08:21](815 MB) SYNOPSIS: -Starting Date/Time: 20240920 08:26:12 -Ending Date/Time: 20240920 14:44:43 -Total Time: 06h:20m:53s +Starting Date/Time: 20240926 09:23:49 +Ending Date/Time: 20240927 03:11:02 +Total Time: 17h:49m:31s Compiles Completed: 42/42 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 1c8f6a1453..325f22a95e 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,31 +1,31 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -34893eceee4525f5276fb3408f7432d3dc195032 +7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) + b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -37,287 +37,286 @@ 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-20240909 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_79027 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_93375 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:13, 20:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:10, 08:17](3188 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:15, 24:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 13:44](1910 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:40, 14:48](1925 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [19:52, 06:50](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:23, 15:04](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:16, 22:28] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:59, 13:20](1906 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:11, 14:21] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:43, 25:33](1938 MB) - -PASS -- COMPILE 's2swa_intel' [21:12, 19:25] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:03, 11:09](3212 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:50, 10:28](3210 MB) -PASS -- TEST 'cpld_restart_p8_intel' [23:55, 06:13](3136 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:40, 10:54](3234 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [24:13, 06:33](3159 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:28, 08:28](3453 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:40, 10:01](3208 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:44, 08:55](3154 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:01, 10:12](3211 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:02, 09:56](3441 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [25:29, 06:38](3595 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:27, 09:19](4191 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:19, 06:01](4348 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:54, 08:31](3196 MB) - -PASS -- COMPILE 's2sw_intel' [20:11, 18:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:36, 05:58](1925 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:43, 08:44](1978 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:11, 14:24] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [18:25, 14:09](3271 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:11, 14:15] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:35, 09:06](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:12, 17:03] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:41, 05:20](1988 MB) - -PASS -- COMPILE 's2s_intel' [18:11, 16:56] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:14, 05:32](2865 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:28, 01:55](2875 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:09, 01:09](2287 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:13, 22:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [26:03, 10:00](3211 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:15, 23:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:10, 15:24](1922 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:31, 07:13](1095 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:33, 17:10](1902 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:12, 14:35] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:27, 27:53](1951 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:13, 16:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [18:31, 03:56](663 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [22:19, 03:22](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:15, 03:53](1564 MB) -PASS -- TEST 'control_latlon_intel' [22:06, 03:38](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:18, 03:36](1571 MB) -PASS -- TEST 'control_c48_intel' [28:48, 09:57](1576 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [24:06, 05:42](697 MB) -PASS -- TEST 'control_c192_intel' [28:01, 11:11](1690 MB) -PASS -- TEST 'control_c384_intel' [40:22, 23:39](1957 MB) -PASS -- TEST 'control_c384gdas_intel' [30:21, 14:29](1150 MB) -PASS -- TEST 'control_stochy_intel' [11:42, 02:01](618 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:37, 01:13](423 MB) -PASS -- TEST 'control_lndp_intel' [10:45, 01:52](617 MB) -PASS -- TEST 'control_iovr4_intel' [13:48, 02:57](616 MB) -PASS -- TEST 'control_iovr5_intel' [13:36, 02:51](616 MB) -PASS -- TEST 'control_p8_intel' [14:27, 03:45](1857 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [13:32, 03:21](1857 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:20, 03:48](1856 MB) -PASS -- TEST 'control_restart_p8_intel' [05:17, 02:03](1005 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:15, 04:00](1856 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:12, 02:36](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:25, 04:03](1848 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:12, 03:29](1930 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:54, 06:33](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:29, 04:34](1907 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:41, 03:32](1864 MB) -PASS -- TEST 'merra2_thompson_intel' [08:13, 03:57](1858 MB) -PASS -- TEST 'regional_control_intel' [07:40, 05:03](849 MB) -PASS -- TEST 'regional_restart_intel' [05:46, 02:49](846 MB) -PASS -- TEST 'regional_decomp_intel' [07:40, 04:59](848 MB) -PASS -- TEST 'regional_2threads_intel' [06:03, 03:02](987 MB) -PASS -- TEST 'regional_noquilt_intel' [06:40, 04:45](1170 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:51, 04:35](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 04:45](849 MB) -PASS -- TEST 'regional_wofs_intel' [08:47, 06:16](1573 MB) - -PASS -- COMPILE 'rrfs_intel' [16:14, 14:49] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:17, 06:55](998 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:21, 03:47](1128 MB) -PASS -- TEST 'rap_decomp_intel' [22:24, 07:11](995 MB) -PASS -- TEST 'rap_2threads_intel' [10:17, 06:08](1080 MB) -PASS -- TEST 'rap_restart_intel' [06:04, 03:25](865 MB) -PASS -- TEST 'rap_sfcdiff_intel' [22:22, 06:58](997 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [21:24, 07:16](998 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:15, 04:52](864 MB) -PASS -- TEST 'hrrr_control_intel' [10:17, 04:09](994 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:32, 04:58](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [17:20, 03:09](1070 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:39, 01:59](820 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:05, 07:49](991 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:04, 08:49](1950 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:04, 08:49](1942 MB) - -PASS -- COMPILE 'csawmg_intel' [16:12, 14:30] -PASS -- TEST 'control_csawmg_intel' [10:04, 06:57](955 MB) -PASS -- TEST 'control_ras_intel' [06:53, 03:43](652 MB) - -PASS -- COMPILE 'wam_intel' [16:11, 14:02] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:17, 11:51](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:11, 15:26] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:17, 03:17](1856 MB) -PASS -- TEST 'regional_control_faster_intel' [06:42, 04:30](845 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:12, 14:55] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:11, 02:52](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:04, 03:02](1590 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:09](791 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:36, 02:53](791 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:15](1091 MB) -PASS -- TEST 'control_ras_debug_intel' [05:29, 02:50](800 MB) -PASS -- TEST 'control_diag_debug_intel' [05:49, 03:13](1650 MB) -PASS -- TEST 'control_debug_p8_intel' [05:45, 03:01](1875 MB) -PASS -- TEST 'regional_debug_intel' [19:48, 16:13](884 MB) -PASS -- TEST 'rap_control_debug_intel' [08:35, 05:01](1171 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:35, 05:04](1166 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 05:09](1168 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:33, 05:07](1168 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:27, 05:11](1171 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:39, 05:34](1259 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:35, 05:20](1169 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:31, 05:26](1171 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:33, 05:07](1171 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 05:20](1171 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:39, 04:52](1167 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:39, 05:08](1171 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:56](1171 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:32, 05:01](1165 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:31, 06:05](1170 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:36, 04:59](1171 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:17, 08:32](1176 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:12, 11:24] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:11, 13:20](1679 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:12, 15:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:13, 03:31](1007 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:08, 05:50](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:13, 03:37](871 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:14, 05:18](931 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:12, 02:53](918 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:03, 03:43](872 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:59, 04:12](773 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:39, 01:43](754 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:11, 15:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:23, 02:12](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:56, 01:00](1053 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:02, 01:26](953 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:13, 15:23] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:07, 04:28](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [14:12, 12:30] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 04:59](1049 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 05:16](1045 MB) -PASS -- TEST 'conus13km_debug_intel' [17:09, 14:09](1130 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:06, 14:37](803 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:01, 08:26](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:58, 14:38](1199 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:12, 11:26] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:33, 05:00](1070 MB) - -PASS -- COMPILE 'hafsw_intel' [20:12, 18:39] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:25, 04:50](682 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:44, 04:02](1029 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:48, 07:21](727 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:27, 11:48](762 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:08, 12:33](777 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:20, 05:12](464 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:36, 06:16](477 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:34, 02:29](364 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:05, 07:05](436 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:09, 03:45](493 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:16, 03:31](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:15, 04:07](553 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:46, 01:15](395 MB) -PASS -- TEST 'gnv1_nested_intel' [12:29, 05:07](1696 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:11, 13:43] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:18, 12:36](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:14, 17:07] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:17, 07:16](597 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:32, 07:08](777 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [22:11, 20:50] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:53, 05:30](778 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:15, 17:37] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [15:29, 05:58](721 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:19, 05:57](704 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:20, 20:28](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:12, 12:50] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:33, 02:36](752 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:36, 01:35](741 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [10:26, 02:27](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:32, 02:27](650 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [18:29, 02:31](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [18:34, 02:35](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [17:30, 02:37](752 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [17:29, 02:30](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [21:26, 06:07](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:09, 05:53](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [16:26, 02:34](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:25, 04:38](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [18:30, 04:39](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:12, 08:25] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [18:31, 05:30](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [16:14, 14:05] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [15:29, 02:33](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 03:43] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [14:05, 01:49](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:53, 01:13](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:57, 01:07](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 15:32] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:33, 04:12](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:11, 14:14] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [14:32, 04:02](1895 MB) - -PASS -- COMPILE 'atml_intel' [17:12, 15:26] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:05, 07:36](1889 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [16:04, 07:18](1890 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:03, 04:12](1031 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:11, 12:50] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:49, 06:25](1918 MB) - -PASS -- COMPILE 'atmw_intel' [17:13, 15:47] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:06, 02:28](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [17:15, 14:57] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [13:39, 06:19](3108 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [13:37, 06:44](2993 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:25, 06:58](3007 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [14:11, 12:39] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:36, 18:21](4361 MB) - -PASS -- COMPILE 'atm_fbh_intel' [16:14, 14:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:51, 08:57](797 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:17, 20:14] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:35, 08:22](3188 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:13, 22:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:11, 14:01](1910 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:27, 15:51](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [17:54, 08:28](1070 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:52, 15:12](1879 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:13, 25:22] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:13, 13:56](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:13, 16:08] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:09, 26:05](1934 MB) + +PASS -- COMPILE 's2swa_intel' [24:13, 22:50] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:24, 10:12](3211 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:24, 10:07](3208 MB) +PASS -- TEST 'cpld_restart_p8_intel' [18:53, 07:35](3135 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:24, 10:25](3234 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [18:53, 07:19](3157 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:01, 08:34](3452 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:46, 09:55](3208 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:01, 08:44](3156 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:23, 09:59](3210 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:57, 10:07](3433 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [20:55, 08:04](3592 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:26, 09:34](4191 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:52, 06:14](4348 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:48, 08:00](3193 MB) + +PASS -- COMPILE 's2sw_intel' [24:13, 22:40] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:03, 06:16](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:01, 08:48](1971 MB) + +PASS -- COMPILE 's2swa_debug_intel' [20:16, 18:13] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [19:47, 14:24](3271 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:15, 13:32] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:15, 09:06](1946 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [22:17, 20:12] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:32, 05:25](1987 MB) + +PASS -- COMPILE 's2s_intel' [23:13, 21:10] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:39, 05:33](2864 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:39, 01:58](2874 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:50, 01:10](2287 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:13, 22:11] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [22:01, 10:39](3212 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [28:13, 26:21] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:06, 15:17](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:10, 07:19](1098 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:15, 17:46](1906 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:12, 15:42] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:14, 27:51](1952 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [19:15, 17:06] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [12:46, 03:51](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [15:34, 04:53](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:33, 04:41](1564 MB) +PASS -- TEST 'control_latlon_intel' [15:19, 04:39](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:32, 04:22](1571 MB) +PASS -- TEST 'control_c48_intel' [18:52, 10:04](1576 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [15:26, 06:40](698 MB) +PASS -- TEST 'control_c192_intel' [17:23, 11:24](1690 MB) +PASS -- TEST 'control_c384_intel' [32:36, 24:06](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [25:27, 14:43](1150 MB) +PASS -- TEST 'control_stochy_intel' [10:31, 02:02](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:00, 01:01](425 MB) +PASS -- TEST 'control_lndp_intel' [10:26, 01:53](617 MB) +PASS -- TEST 'control_iovr4_intel' [10:36, 02:38](616 MB) +PASS -- TEST 'control_iovr5_intel' [10:03, 02:41](618 MB) +PASS -- TEST 'control_p8_intel' [10:10, 03:54](1857 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:30, 03:33](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:09, 04:05](1858 MB) +PASS -- TEST 'control_restart_p8_intel' [06:18, 02:05](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:07, 03:53](1856 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:33, 01:58](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:57, 03:56](1847 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:59, 03:38](1931 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:25, 06:55](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:07, 04:19](1906 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:09, 03:27](1864 MB) +PASS -- TEST 'merra2_thompson_intel' [09:06, 03:48](1857 MB) +PASS -- TEST 'regional_control_intel' [09:15, 05:02](856 MB) +PASS -- TEST 'regional_restart_intel' [05:39, 02:35](848 MB) +PASS -- TEST 'regional_decomp_intel' [06:56, 04:51](847 MB) +PASS -- TEST 'regional_2threads_intel' [04:53, 02:54](989 MB) +PASS -- TEST 'regional_noquilt_intel' [08:13, 04:46](1172 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:26, 05:09](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:23, 04:46](849 MB) +PASS -- TEST 'regional_wofs_intel' [09:29, 06:24](1572 MB) + +PASS -- COMPILE 'rrfs_intel' [16:12, 14:06] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:55, 06:59](995 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:07, 04:06](1130 MB) +PASS -- TEST 'rap_decomp_intel' [14:44, 07:34](996 MB) +PASS -- TEST 'rap_2threads_intel' [12:03, 06:23](1080 MB) +PASS -- TEST 'rap_restart_intel' [06:57, 03:29](866 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:07, 07:04](998 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:07, 07:38](999 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:48, 05:06](865 MB) +PASS -- TEST 'hrrr_control_intel' [14:42, 03:56](994 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [14:45, 03:53](1001 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [14:55, 03:14](1071 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:17, 02:00](822 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:28, 06:53](993 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:09, 08:57](1951 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:09, 08:30](1941 MB) + +PASS -- COMPILE 'csawmg_intel' [15:13, 13:22] +PASS -- TEST 'control_csawmg_intel' [18:30, 07:04](954 MB) +PASS -- TEST 'control_ras_intel' [05:59, 03:26](652 MB) + +PASS -- COMPILE 'wam_intel' [17:15, 15:30] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:38, 12:20](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:15, 15:32] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [09:24, 03:49](1855 MB) +PASS -- TEST 'regional_control_faster_intel' [08:18, 04:38](846 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:16, 15:07] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:03, 03:05](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:46, 03:00](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:53, 03:14](790 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:52, 02:52](788 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:02, 04:41](1094 MB) +PASS -- TEST 'control_ras_debug_intel' [06:22, 02:55](799 MB) +PASS -- TEST 'control_diag_debug_intel' [05:50, 03:04](1653 MB) +PASS -- TEST 'control_debug_p8_intel' [06:18, 03:12](1877 MB) +PASS -- TEST 'regional_debug_intel' [19:16, 16:31](886 MB) +PASS -- TEST 'rap_control_debug_intel' [07:39, 05:03](1173 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:52, 05:09](1169 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:32, 05:11](1170 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:48, 05:29](1170 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:40, 05:24](1173 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:55, 05:49](1263 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:44, 05:44](1172 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:44, 05:41](1174 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:43, 05:50](1174 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:31, 05:45](1174 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:46, 05:22](1170 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:39, 05:29](1174 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:40, 08:42](1172 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:04, 05:05](1168 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:15, 05:59](1173 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:46, 05:12](1173 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:30, 08:45](1179 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:11, 11:19] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [23:51, 13:20](1678 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:12, 15:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:49, 03:40](999 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:37, 05:59](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:31, 03:51](871 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 05:24](931 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:29, 02:46](921 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:29, 03:40](872 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:11, 04:30](775 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [12:15, 02:04](754 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:14, 14:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:51, 02:26](1076 MB) +PASS -- TEST 'conus13km_2threads_intel' [10:46, 00:59](1055 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [12:14, 01:45](953 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:12, 15:35] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:37, 04:26](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 11:46] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:37, 05:22](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:38, 05:00](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [18:02, 14:48](1128 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:43, 14:45](801 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:27, 08:17](1109 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:54, 14:49](1197 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:16, 12:43] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:38, 05:07](1072 MB) + +PASS -- COMPILE 'hafsw_intel' [22:15, 20:59] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [15:56, 04:40](685 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:20, 03:51](1035 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:07, 07:24](730 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [22:50, 11:30](764 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:03, 12:44](774 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:49, 05:03](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:02, 06:23](478 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [14:04, 02:34](367 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:09, 07:19](428 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:39, 03:51](495 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:57, 03:49](492 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:51, 04:11](551 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:39, 01:18](396 MB) +PASS -- TEST 'gnv1_nested_intel' [20:23, 07:00](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [18:15, 16:26] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:51, 12:24](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:12, 18:22] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:40, 07:36](595 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:39, 07:59](776 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:12, 19:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:51, 05:50](779 MB) + +PASS -- COMPILE 'hafs_all_intel' [21:12, 19:39] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [15:49, 06:40](720 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:52, 06:09](701 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:35, 20:07](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:13, 13:27] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:33, 02:43](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:44, 01:38](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:11, 02:31](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:56, 02:30](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:47, 02:29](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:50, 02:39](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:52, 02:36](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:46, 02:34](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:57, 05:57](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:49, 05:53](680 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:44, 02:40](767 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:02, 04:40](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:37, 04:41](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:13, 09:39] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:40, 05:30](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [17:15, 15:43] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:33, 02:36](766 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:47] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:15, 01:52](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:14, 01:32](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:12, 00:44](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:14, 17:13] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:02, 04:27](1911 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [20:13, 18:30] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:16, 04:17](1895 MB) + +PASS -- COMPILE 'atml_intel' [18:13, 16:40] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [15:46, 08:24](1887 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [15:44, 08:27](1889 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [11:24, 04:03](1028 MB) + +PASS -- COMPILE 'atml_debug_intel' [17:12, 15:13] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [13:22, 06:55](1918 MB) + +PASS -- COMPILE 'atmw_intel' [21:12, 19:39] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:29, 03:24](1880 MB) + +PASS -- COMPILE 'atmaero_intel' [18:15, 16:32] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:33, 07:08](3107 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:25, 07:17](2993 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:00, 07:21](3007 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [15:12, 13:07] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [39:05, 18:05](4419 MB) + +PASS -- COMPILE 'atm_fbh_intel' [17:12, 15:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:07, 08:58](796 MB) SYNOPSIS: -Starting Date/Time: 20240920 15:26:28 -Ending Date/Time: 20240920 17:29:12 -Total Time: 02h:04m:00s +Starting Date/Time: 20240926 19:58:08 +Ending Date/Time: 20240926 22:19:21 +Total Time: 02h:24m:06s Compiles Completed: 42/42 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 2a303310d1..561bffd671 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,20 +1,20 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -b95e609779120a4b25ff8dfad685996d7be80821 +7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) + bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) + f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -26,376 +26,376 @@ 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-20240909 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3789171 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_927600 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:09, 06:35](3310 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:27] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:10, 17:37](1974 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 18:13](2158 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 08:26](1260 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:09, 19:42](1857 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:12, 17:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:53, 17:19](1935 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:09] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:04, 23:51](1925 MB) - -PASS -- COMPILE 's2swa_intel' [15:11, 13:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:20, 07:40](3339 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:32, 07:36](3361 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:23, 04:18](3261 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:20, 07:49](3350 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:23, 04:22](3276 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:21, 07:17](3643 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:19, 07:54](3307 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:21, 06:16](3222 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:32, 07:41](3330 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:19, 10:25](3528 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:49, 06:39](3623 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:12, 09:10](4278 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:17, 05:46](4374 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:18, 05:32](3311 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 12:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:08, 05:50](1992 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:12, 07:24](2011 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:12] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:07, 13:41](3401 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:12, 13:54] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:19, 06:25](3306 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:43] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:07, 17:26](1952 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:25, 18:17](2159 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 08:31](1268 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:01, 19:37](1855 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 16:51] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:51, 17:17](1937 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:01] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:11, 25:09](1889 MB) + +PASS -- COMPILE 's2swa_intel' [15:12, 13:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:15, 07:38](3329 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:24, 07:44](3344 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:22, 04:25](3247 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:16, 07:45](3344 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:12, 04:25](3267 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:12, 07:28](3640 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:13, 07:52](3324 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:15, 06:26](3190 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:23, 07:45](3316 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:11, 10:29](3520 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:05, 06:26](3621 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:25, 09:00](4325 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:34, 06:00](4382 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:13, 05:34](3300 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 11:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:12, 05:45](1981 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:20, 07:23](2016 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:08] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:03, 14:17](3402 MB) PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:50] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:01, 09:17](2007 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:30] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:16, 04:32](2038 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 11:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:54, 07:54](3038 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 02:43](3027 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:58, 01:35](2490 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:56] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:28, 07:20](3355 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:54] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:19, 17:33](2007 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:23, 08:28](1271 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:04, 20:08](1918 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 06:16] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:21, 26:17](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:18] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:25, 03:23](704 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 03:15](1581 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:19](1596 MB) -PASS -- TEST 'control_latlon_intel' [05:41, 03:14](1575 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 03:15](1585 MB) -PASS -- TEST 'control_c48_intel' [13:42, 11:29](1719 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:27, 06:30](849 MB) -PASS -- TEST 'control_c192_intel' [14:17, 12:03](1761 MB) -PASS -- TEST 'control_c384_intel' [17:23, 13:56](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [13:13, 08:11](1373 MB) -PASS -- TEST 'control_stochy_intel' [03:28, 01:38](654 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:02](509 MB) -PASS -- TEST 'control_lndp_intel' [03:25, 01:34](658 MB) -PASS -- TEST 'control_iovr4_intel' [04:26, 02:30](649 MB) -PASS -- TEST 'control_iovr5_intel' [04:25, 02:32](656 MB) -PASS -- TEST 'control_p8_intel' [05:56, 03:46](1857 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:56, 03:09](1854 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:42](1866 MB) -PASS -- TEST 'control_restart_p8_intel' [04:51, 02:05](1119 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:44](1872 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:53, 02:00](1164 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:47, 03:47](1874 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:46, 03:34](1963 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:42, 06:31](1890 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:51, 04:09](1925 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:11](1905 MB) -PASS -- TEST 'merra2_thompson_intel' [05:52, 03:28](1903 MB) -PASS -- TEST 'regional_control_intel' [07:38, 05:22](1088 MB) -PASS -- TEST 'regional_restart_intel' [05:36, 03:02](1080 MB) -PASS -- TEST 'regional_decomp_intel' [07:33, 05:42](1082 MB) -PASS -- TEST 'regional_2threads_intel' [05:38, 03:26](1087 MB) -PASS -- TEST 'regional_noquilt_intel' [07:43, 05:17](1385 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:23](1087 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:19](1084 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 07:01](1897 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 10:53] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:45, 07:54](1101 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:21, 04:13](1245 MB) -PASS -- TEST 'rap_decomp_intel' [10:44, 08:12](1029 MB) -PASS -- TEST 'rap_2threads_intel' [09:45, 07:22](1166 MB) -PASS -- TEST 'rap_restart_intel' [06:49, 04:07](1104 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:47, 07:47](1108 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:44, 08:14](1033 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:48, 05:51](1136 MB) -PASS -- TEST 'hrrr_control_intel' [06:45, 04:01](1041 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:45, 04:06](1022 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:48, 03:41](1099 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:13](990 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:55, 07:42](1099 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:32, 09:25](1963 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 09:04](2056 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:51] -PASS -- TEST 'control_csawmg_intel' [08:47, 06:13](1028 MB) -PASS -- TEST 'control_ras_intel' [05:24, 03:18](743 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:10, 04:15] -PASS -- TEST 'control_csawmg_gnu' [10:49, 08:26](739 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 10:26] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:46, 11:26](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:48] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:58, 02:52](1884 MB) -PASS -- TEST 'regional_control_faster_intel' [07:37, 04:56](1076 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:43] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:43, 02:13](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:10](1615 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:20, 03:10](825 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:49](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:22](1135 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:55](833 MB) -PASS -- TEST 'control_diag_debug_intel' [05:47, 02:50](1687 MB) -PASS -- TEST 'control_debug_p8_intel' [05:40, 02:45](1892 MB) -PASS -- TEST 'regional_debug_intel' [19:38, 17:48](1133 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 05:02](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:54](1215 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 05:02](1215 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 05:08](1207 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:07](1210 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:29](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:12](1212 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 05:17](1209 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:01](1217 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 05:05](1212 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:53](1209 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 05:05](1209 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 08:24](1213 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:59](1210 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:24, 06:27](1192 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:23, 05:03](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:40, 08:39](1216 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:18] -PASS -- TEST 'control_csawmg_debug_gnu' [04:46, 02:22](714 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:12, 05:45] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:45, 13:44](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:03, 03:57](1119 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:30](1044 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:36, 03:27](976 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:34, 06:11](1082 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:11](954 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:37](931 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:54](1021 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:24, 01:52](920 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:57, 02:09](1191 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:50, 00:57](1106 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:16](1098 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:03] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:17](978 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:05] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:22, 05:02](1089 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:56](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [17:49, 15:23](1234 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:45, 15:28](931 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:43, 08:29](1149 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 15:13](1297 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:35] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:23, 05:12](1106 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 11:32] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:06](731 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:08](1095 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:27, 07:01](817 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:14, 13:34](847 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:31, 15:22](864 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:16, 05:29](490 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:59](506 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 02:41](379 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:02, 07:22](464 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 03:44](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:56, 03:29](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:18](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:10](400 MB) -PASS -- TEST 'gnv1_nested_intel' [07:29, 04:12](1729 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:37] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:49, 13:19](588 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:19] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:55, 08:45](640 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:04, 08:53](733 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:43] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:25, 06:28](720 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:56] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:12, 06:33](822 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:09, 06:35](793 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:53, 16:04](1213 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:35] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:41](1161 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:37](1101 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:39](1037 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:37](1025 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:37](1032 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:35](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:42](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:31](1033 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:18, 06:18](1068 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:14, 06:13](1048 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:40](1163 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 03:52](2464 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:52](2463 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:27] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:27](1084 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 06:40] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:41](1151 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:20] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:45](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:52](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:32](326 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:01] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:03, 03:42](1984 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:26] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:53, 03:35](1958 MB) - -PASS -- COMPILE 'atml_intel' [12:12, 11:01] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:58, 04:23](1846 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:55, 04:19](1855 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:39, 02:25](1077 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 05:50] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:50, 05:52](1893 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:27] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:43, 01:52](1915 MB) - -PASS -- COMPILE 'atmaero_intel' [12:10, 10:28] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:52, 04:05](3198 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:53, 04:53](3094 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:41, 05:12](3112 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:41] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:42] -PASS -- TEST 'control_c48_gnu' [11:36, 09:11](1508 MB) -PASS -- TEST 'control_stochy_gnu' [05:21, 03:22](493 MB) -PASS -- TEST 'control_ras_gnu' [06:21, 04:48](497 MB) -PASS -- TEST 'control_p8_gnu' [07:58, 05:11](1455 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:54, 05:06](1456 MB) -PASS -- TEST 'control_flake_gnu' [12:21, 10:31](531 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 04:29] -PASS -- TEST 'rap_control_gnu' [12:29, 10:50](811 MB) -PASS -- TEST 'rap_decomp_gnu' [12:31, 11:06](811 MB) -PASS -- TEST 'rap_2threads_gnu' [11:35, 09:43](919 MB) -PASS -- TEST 'rap_restart_gnu' [07:40, 05:37](577 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:39, 10:53](846 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:39, 11:04](840 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:43, 08:04](577 MB) -PASS -- TEST 'hrrr_control_gnu' [07:34, 05:43](805 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:34, 05:35](827 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:38, 05:03](911 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:38](804 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:25, 02:56](563 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:24, 02:49](650 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:58, 10:28](841 MB) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:01, 09:50](2000 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:15, 11:14] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:15, 04:28](2023 MB) + +PASS -- COMPILE 's2s_intel' [13:15, 11:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:57, 07:45](3037 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 02:45](3038 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:45, 01:36](2473 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:02] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:28, 07:37](3349 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:08] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:11, 17:25](1993 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:34, 08:25](1271 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:16, 20:08](1936 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 07:05] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:18, 25:59](1954 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:27, 03:29](704 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:42, 03:13](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 03:19](1590 MB) +PASS -- TEST 'control_latlon_intel' [05:43, 03:14](1582 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:16](1584 MB) +PASS -- TEST 'control_c48_intel' [13:47, 11:34](1726 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:31](854 MB) +PASS -- TEST 'control_c192_intel' [14:16, 12:03](1753 MB) +PASS -- TEST 'control_c384_intel' [17:05, 13:42](1997 MB) +PASS -- TEST 'control_c384gdas_intel' [12:44, 08:22](1381 MB) +PASS -- TEST 'control_stochy_intel' [03:25, 01:41](658 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:33, 01:08](496 MB) +PASS -- TEST 'control_lndp_intel' [03:25, 01:34](656 MB) +PASS -- TEST 'control_iovr4_intel' [04:29, 02:40](653 MB) +PASS -- TEST 'control_iovr5_intel' [04:27, 02:30](651 MB) +PASS -- TEST 'control_p8_intel' [06:02, 03:43](1875 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:04, 03:10](1890 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:00, 03:39](1881 MB) +PASS -- TEST 'control_restart_p8_intel' [04:53, 02:03](1131 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:56, 03:40](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:59, 02:03](1158 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:52, 03:47](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:52, 03:32](1966 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:46, 06:37](1864 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:56, 04:11](1945 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:00, 03:08](1898 MB) +PASS -- TEST 'merra2_thompson_intel' [05:55, 03:27](1899 MB) +PASS -- TEST 'regional_control_intel' [07:41, 05:25](1084 MB) +PASS -- TEST 'regional_restart_intel' [04:38, 02:53](1088 MB) +PASS -- TEST 'regional_decomp_intel' [07:38, 05:41](1079 MB) +PASS -- TEST 'regional_2threads_intel' [05:40, 03:25](1083 MB) +PASS -- TEST 'regional_noquilt_intel' [07:41, 05:20](1395 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:42, 05:18](1089 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:23](1094 MB) +PASS -- TEST 'regional_wofs_intel' [08:39, 06:57](1897 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:18] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:47, 07:48](1103 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:11, 04:09](1247 MB) +PASS -- TEST 'rap_decomp_intel' [10:47, 08:11](1026 MB) +PASS -- TEST 'rap_2threads_intel' [09:53, 07:22](1175 MB) +PASS -- TEST 'rap_restart_intel' [06:45, 04:03](1097 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:52, 07:44](1098 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:52, 08:12](1030 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:48, 05:54](1125 MB) +PASS -- TEST 'hrrr_control_intel' [06:46, 04:02](1037 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:46, 04:09](1025 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:46, 03:40](1098 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:13](997 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:58, 07:43](1091 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:37, 09:42](1980 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:40, 09:19](2046 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 10:14] +PASS -- TEST 'control_csawmg_intel' [09:45, 06:08](1019 MB) +PASS -- TEST 'control_ras_intel' [06:25, 03:19](747 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:26] +PASS -- TEST 'control_csawmg_gnu' [10:39, 08:30](735 MB) + +PASS -- COMPILE 'wam_intel' [11:12, 09:57] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:52, 11:26](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:14] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:56, 02:51](1879 MB) +PASS -- TEST 'regional_control_faster_intel' [06:38, 04:55](1093 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 08:10] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:46, 02:22](1616 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:45, 02:17](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:07](826 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:48](833 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:37, 04:23](1130 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 03:02](834 MB) +PASS -- TEST 'control_diag_debug_intel' [04:47, 02:51](1701 MB) +PASS -- TEST 'control_debug_p8_intel' [05:45, 02:42](1905 MB) +PASS -- TEST 'regional_debug_intel' [19:41, 17:22](1099 MB) +PASS -- TEST 'rap_control_debug_intel' [07:25, 05:05](1220 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:11](1205 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 05:11](1206 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:27, 05:08](1204 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:26, 05:11](1207 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:53, 05:20](1301 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:12](1214 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 05:20](1208 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:35, 05:20](1213 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:33, 05:18](1203 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:33, 05:13](1214 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:32, 05:16](1201 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 08:19](1213 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 05:04](1211 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 06:21](1214 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:24, 05:05](1209 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:43, 08:50](1218 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:20] +PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:26](713 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:43] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:57, 13:46](1673 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:06, 03:56](1125 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:39, 06:30](1061 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:43, 03:25](975 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 06:12](1085 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:33, 03:26](951 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:40](927 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:41, 04:51](1012 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:52](929 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:12, 09:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:56, 02:09](1184 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:47, 00:55](1105 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:13](1084 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:13](968 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:00] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:01](1091 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 05:00](1085 MB) +PASS -- TEST 'conus13km_debug_intel' [18:03, 15:19](1231 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:03, 15:19](960 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:56, 08:15](1159 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:59, 14:51](1304 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:56] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 05:03](1141 MB) + +PASS -- COMPILE 'hafsw_intel' [13:13, 11:45] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:23, 05:01](726 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:40, 05:52](1096 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 06:55](817 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:24, 13:25](845 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:39, 15:28](873 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 05:29](489 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:46](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:42](366 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:10, 07:14](467 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:38](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:28](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:54, 04:03](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:11](397 MB) +PASS -- TEST 'gnv1_nested_intel' [07:42, 04:01](1745 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:27] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:00, 12:59](589 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:13, 11:21] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:05, 08:47](646 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:06, 08:50](734 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:30] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:28, 06:23](717 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:13, 10:50] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:18, 06:32](817 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:35](792 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:58, 16:16](1220 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:44] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:46](1159 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:42](1089 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:38](1043 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:37](1028 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:38](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:44](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:39](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:35](1039 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:34, 06:18](1068 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:23, 06:14](1047 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:39](1163 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:21, 03:57](2453 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:57](2505 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:30] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:29](1082 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 07:02] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:46](1152 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:03] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:54](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:27, 00:56](326 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:39](321 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:13, 11:19] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:13, 03:49](1974 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:02, 03:45](1935 MB) + +PASS -- COMPILE 'atml_intel' [12:14, 11:01] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:11, 04:25](1832 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 04:26](1827 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:51, 02:28](1099 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:23] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:00, 05:55](1859 MB) + +PASS -- COMPILE 'atmw_intel' [12:12, 10:56] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:54, 02:00](1906 MB) + +PASS -- COMPILE 'atmaero_intel' [12:12, 10:30] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:02, 04:18](3168 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:58](3091 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:47, 05:16](3097 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:43] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:10, 04:37] +PASS -- TEST 'control_c48_gnu' [11:48, 09:26](1505 MB) +PASS -- TEST 'control_stochy_gnu' [05:26, 03:32](489 MB) +PASS -- TEST 'control_ras_gnu' [06:24, 04:55](502 MB) +PASS -- TEST 'control_p8_gnu' [08:08, 05:21](1451 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:01, 05:16](1426 MB) +PASS -- TEST 'control_flake_gnu' [12:29, 10:25](532 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:12, 04:18] +PASS -- TEST 'rap_control_gnu' [12:38, 10:54](806 MB) +PASS -- TEST 'rap_decomp_gnu' [12:37, 11:06](805 MB) +PASS -- TEST 'rap_2threads_gnu' [11:43, 09:58](917 MB) +PASS -- TEST 'rap_restart_gnu' [07:46, 05:39](570 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:40, 10:57](838 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:40, 11:22](810 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:47, 08:07](593 MB) +PASS -- TEST 'hrrr_control_gnu' [07:43, 05:45](837 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:38, 05:42](793 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:37, 05:12](903 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:36, 05:46](840 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [06:31, 02:55](555 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:30, 02:53](645 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:49, 10:50](834 MB) PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:43] -PASS -- TEST 'control_diag_debug_gnu' [03:43, 01:37](1269 MB) -PASS -- TEST 'regional_debug_gnu' [13:34, 11:53](752 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:39](818 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:20, 02:35](816 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:38](819 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:39](822 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:36, 02:47](904 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:20, 04:08](820 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:38](825 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:37](818 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:34](454 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:44](449 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:40](1429 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:43](818 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:54](819 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:45, 04:24](820 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:36] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:08] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:35, 09:28](699 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:39, 04:56](693 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:39, 08:31](742 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:32, 04:30](746 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 05:05](697 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:40, 06:56](548 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:33, 02:35](529 MB) -PASS -- TEST 'conus13km_control_gnu' [05:58, 03:14](866 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:42, 05:42](871 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:44, 01:55](558 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:34] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:41, 05:46](725 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 06:44] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:36](708 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:29](709 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:48, 07:04](884 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:47, 07:16](575 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 07:47](886 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:42, 07:05](949 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:42] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:37](737 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:30] - -PASS -- COMPILE 's2s_gnu' [18:12, 16:11] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:00, 11:00](1499 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:08] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 15:53] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:58, 23:00](1455 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:56] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:35] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:25, 02:57](697 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:28, 11:40](1082 MB) +PASS -- TEST 'control_diag_debug_gnu' [03:58, 01:44](1261 MB) +PASS -- TEST 'regional_debug_gnu' [12:49, 10:51](735 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:29, 02:46](816 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:31, 02:39](811 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:26, 02:41](816 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:24, 02:37](819 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:40, 02:55](895 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:26, 04:13](810 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:25, 02:50](818 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:51](804 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:46](447 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:56](441 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:41, 01:43](1430 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:25, 02:44](810 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [05:23, 02:58](811 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:42, 04:26](817 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:27] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:29] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:32, 09:25](694 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:39, 05:01](688 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:42, 08:35](740 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:35, 04:31](737 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:34, 05:01](690 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:38, 07:11](548 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:31, 02:33](531 MB) +PASS -- TEST 'conus13km_control_gnu' [05:59, 03:10](866 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:48, 05:55](863 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:46, 01:49](554 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 10:00] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:40, 05:46](717 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:13, 06:41] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:24, 02:38](709 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:26, 02:34](700 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:52, 06:54](877 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [10:49, 07:16](568 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:45, 08:10](877 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:43, 07:01](945 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:13, 06:48] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:25, 02:39](724 MB) + +PASS -- COMPILE 's2swa_gnu' [18:14, 16:33] + +PASS -- COMPILE 's2s_gnu' [17:14, 16:04] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:09, 11:16](1496 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:13] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:13, 16:08] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:02, 20:12](1454 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:04] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 15:34] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 02:59](695 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:30, 11:20](1081 MB) SYNOPSIS: -Starting Date/Time: 20240920 14:14:41 -Ending Date/Time: 20240920 16:00:24 -Total Time: 01h:46m:04s +Starting Date/Time: 20240926 15:12:04 +Ending Date/Time: 20240926 16:56:59 +Total Time: 01h:45m:12s Compiles Completed: 58/58 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 266a62f75d..0ecc92b7ae 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,69 +1,33 @@ -====START OF HERCULES REGRESSION TESTING LOG==== +====START OF hercules REGRESSION TESTING LOG==== UFSWM hash used in testing: -c1728190d100b0c3924807bf950e747998706f4f +7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 Submodule hashes used in testing: -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 05:03](1736 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:52, 09:08](2548 MB) 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQPASS -- TEST 'cpld_decomp_p8_intel' [09:06, 08:16](2181 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:30, 06:56](2092 MB) - (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICEPASS -- TEST 'cpld_control_ciceC_p8_intel' [08:33, 07:51](2193 MB) - (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepackPASS -- TEST 'cpld_control_c192_p8_intel' [17:19, 15:51](2960 MB) - (Icepack1.1.0-191-g4c87095) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPSPASS -- TEST 'cpld_restart_c192_p8_intel' [07:39, 05:52](2904 MB) - (cmeps_v0.4.1-2310-gdc977bc) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModulesPASS -- TEST 'cpld_bmark_p8_intel' [14:15, 09:50](3805 MB) - (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:18, 05:21](3633 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:38, 05:07](2143 MB) - (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework -PASS -- COMPILE 's2sw_intel' [12:10, 12:10] - (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physicsPASS -- TEST 'cpld_control_noaero_p8_intel' [08:02, 07:19](2008 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:33, 06:59](2062 MB) - (EP4-873-gb6c43335) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp -PASS -- COMPILE 's2swa_debug_intel' [07:50, 07:50] - (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/uppPASS -- TEST 'cpld_debug_p8_intel' [12:48, 12:03](2231 MB) - (upp_v10.2.0-218-g81b38a88) + bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) + b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART -PASS -- COMPILE 's2sw_debug_intel' [06:50, 06:50] - (sdr_v2.1.2.6-119-g0414229) +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 08:21](2044 MB) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 -PASS -- COMPILE 's2s_aoflux_intel' [11:02, 11:02] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:13, 04:26](2065 MB) - -PASS -- COMPILE 's2s_intel' [11:01, 11:01] -PASS -- TEST 'cpld_control_c48_intel' [06:26, 05:57](3026 MB) - (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-srcPASS -- TEST 'cpld_warmstart_c48_intel' [02:35, 02:05](3031 MB) - (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-FortranPASS -- TEST 'cpld_restart_c48_intel' [01:32, 01:15](2482 MB) - (29e64d6) - -PASS -- COMPILE 's2swa_faster_intel' [12:52, 12:51] + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3PASS -- TEST 'cpld_control_p8_faster_intel' [08:49, 08:07](2199 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:23, 16:22] - (6.07.1-346-g7f548c79) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behaviorPASS -- TEST 'cpld_control_pdlib_p8_intel' [14:55, 14:14](2061 MB) - (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physicsPASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:41, 06:55](1400 MB) - (ufs-v2.0.0-219-gfad2fe9) - + 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: [Times](Memory) are at the end of each compile/test in format [MM:SS](Size). @@ -72,704 +36,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-20240909 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3463251 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_3825702 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:12, 15:30](1986 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:09, 05:09] - -PASS -- COMPILE 's2swa_32bit_intel' [12:44, 12:44] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:34, 23:52](2002 MB) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:40, 07:47](2137 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:00, 09:00] - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:08, 22:08] -PASS -- TEST 'control_flake_intel' [03:07, 02:52](712 MB) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:23, 13:29](1995 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:02, 02:43](1572 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:10, 14:14](2276 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:07, 02:46](1590 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:46, 06:33](1349 MB) -PASS -- TEST 'control_latlon_intel' [02:58, 02:40](1595 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:03, 15:11](1902 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:53](1598 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:22, 17:21] -PASS -- TEST 'control_c48_intel' [11:00, 10:38](1706 MB) -PASS -- TEST 'cpld_control_sfs_intel' [13:44, 13:16](1980 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:29, 06:16](836 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:52, 07:51] -PASS -- TEST 'control_c192_intel' [11:04, 10:30](1770 MB) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:48, 21:57](1968 MB) -PASS -- TEST 'control_c384_intel' [13:20, 12:13](2024 MB) - -PASS -- COMPILE 's2swa_intel' [12:58, 12:58] -PASS -- TEST 'control_c384gdas_intel' [08:44, 07:15](1506 MB) -PASS -- TEST 'cpld_control_p8_intel' [09:16, 08:25](2205 MB) -PASS -- TEST 'control_stochy_intel' [01:43, 01:26](671 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:34, 08:53](2204 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:54](530 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:12, 05:13](1950 MB) -PASS -- TEST 'control_lndp_intel' [01:38, 01:22](663 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:55, 08:10](2213 MB) -PASS -- TEST 'control_iovr4_intel' [02:21, 02:11](656 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 05:03](1736 MB) -PASS -- TEST 'control_iovr5_intel' [02:18, 02:07](662 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:52, 09:08](2548 MB) -PASS -- TEST 'control_p8_intel' [03:44, 03:12](1877 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:06, 08:16](2181 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:24, 02:45](1896 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:30, 06:56](2092 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:44, 03:05](1890 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:33, 07:51](2193 MB) -PASS -- TEST 'control_restart_p8_intel' [02:35, 01:53](1152 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:19, 15:51](2960 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:36, 03:05](1871 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:39, 05:52](2904 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:34, 01:52](1202 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:15, 09:50](3805 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:59, 03:19](1880 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:18, 05:21](3633 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:27, 02:58](1955 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:38, 05:07](2143 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:03, 05:38](1886 MB) - -PASS -- COMPILE 's2sw_intel' [12:10, 12:10] -PASS -- TEST 'control_p8_rrtmgp_intel' [05:00, 04:16](1971 MB) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:02, 07:19](2008 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:28, 02:44](1903 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:33, 06:59](2062 MB) -PASS -- TEST 'merra2_thompson_intel' [03:57, 03:14](1897 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:50, 07:50] -PASS -- TEST 'regional_control_intel' [05:25, 05:09](1181 MB) -PASS -- TEST 'cpld_debug_p8_intel' [12:48, 12:03](2231 MB) -PASS -- TEST 'regional_restart_intel' [02:57, 02:39](1154 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:50, 06:50] -PASS -- TEST 'regional_decomp_intel' [05:14, 04:57](1169 MB) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 08:21](2044 MB) -PASS -- TEST 'regional_2threads_intel' [03:15, 03:00](1143 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:02, 11:02] -PASS -- TEST 'regional_noquilt_intel' [04:46, 04:30](1514 MB) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:13, 04:26](2065 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:11, 04:44](1199 MB) - -PASS -- COMPILE 's2s_intel' [11:01, 11:01] -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:50, 04:35](1193 MB) -PASS -- TEST 'cpld_control_c48_intel' [06:26, 05:57](3026 MB) -PASS -- TEST 'regional_wofs_intel' [06:16, 05:58](2083 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:35, 02:05](3031 MB) - -PASS -- COMPILE 'rrfs_intel' [08:57, 08:57] -PASS -- TEST 'cpld_restart_c48_intel' [01:32, 01:15](2482 MB) -PASS -- TEST 'rap_control_intel' [07:16, 06:42](1210 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:52, 12:51] -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:30, 03:55](1365 MB) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:49, 08:07](2199 MB) -PASS -- TEST 'rap_decomp_intel' [07:52, 07:08](1130 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:23, 16:22] -PASS -- TEST 'rap_2threads_intel' [06:50, 06:17](1370 MB) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:55, 14:14](2061 MB) -PASS -- TEST 'rap_restart_intel' [04:13, 03:41](1127 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:41, 06:55](1400 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:09, 06:32](1201 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:12, 15:30](1986 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:32, 06:58](1144 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:09, 05:09] -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:56, 05:10](1203 MB) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:34, 23:52](2002 MB) -PASS -- TEST 'hrrr_control_intel' [04:03, 03:27](1072 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:09, 03:33](1036 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:00, 09:00] -PASS -- TEST 'hrrr_control_2threads_intel' [04:46, 04:05](1107 MB) -PASS -- TEST 'control_flake_intel' [03:07, 02:52](712 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:14, 01:54](1025 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:02, 02:43](1572 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:10, 06:28](1200 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:07, 02:46](1590 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:00, 07:48](2002 MB) -PASS -- TEST 'control_latlon_intel' [02:58, 02:40](1595 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:49, 07:31](2175 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:53](1598 MB) - -PASS -- TEST 'control_c48_intel' [11:00, 10:38](1706 MB) -PASS -- COMPILE 'csawmg_intel' [09:13, 09:12] -PASS -- TEST 'control_c48.v2.sfc_intel' [06:29, 06:16](836 MB) -PASS -- TEST 'control_csawmg_intel' [05:53, 05:38](1038 MB) -PASS -- TEST 'control_c192_intel' [11:04, 10:30](1770 MB) -PASS -- TEST 'control_ras_intel' [03:06, 02:56](844 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:15, 04:14] -PASS -- TEST 'control_c384_intel' [13:20, 12:13](2024 MB) -PASS -- TEST 'control_csawmg_gnu' [09:52, 09:38](1055 MB) -PASS -- TEST 'control_c384gdas_intel' [08:44, 07:15](1506 MB) - -PASS -- COMPILE 'wam_intel' [08:24, 08:24] -PASS -- TEST 'control_stochy_intel' [01:43, 01:26](671 MB) -PASS -- TEST 'control_wam_intel' [10:22, 10:00](1657 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:54](530 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:28, 08:27] -PASS -- TEST 'control_lndp_intel' [01:38, 01:22](663 MB) -PASS -- TEST 'control_p8_faster_intel' [03:27, 02:40](1892 MB) -PASS -- TEST 'control_iovr4_intel' [02:21, 02:11](656 MB) -PASS -- TEST 'regional_control_faster_intel' [04:43, 04:27](1186 MB) -PASS -- TEST 'control_iovr5_intel' [02:18, 02:07](662 MB) -PASS -- TEST 'control_p8_intel' [03:44, 03:12](1877 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 07:07] -PASS -- TEST 'control_p8.v2.sfc_intel' [03:24, 02:45](1896 MB) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:32, 02:08](1616 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:44, 03:05](1890 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:30, 02:00](1629 MB) -PASS -- TEST 'control_restart_p8_intel' [02:35, 01:53](1152 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:13](843 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:36, 03:05](1871 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:39, 02:29](841 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:34, 01:52](1202 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:26, 04:07](1155 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:59, 03:19](1880 MB) -PASS -- TEST 'control_ras_debug_intel' [02:42, 02:30](841 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:27, 02:58](1955 MB) -PASS -- TEST 'control_diag_debug_intel' [02:50, 02:24](1698 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:03, 05:38](1886 MB) -PASS -- TEST 'control_debug_p8_intel' [03:52, 03:26](1908 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:00, 04:16](1971 MB) -PASS -- TEST 'regional_debug_intel' [16:43, 16:23](1144 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:28, 02:44](1903 MB) -PASS -- TEST 'rap_control_debug_intel' [04:39, 04:20](1220 MB) -PASS -- TEST 'merra2_thompson_intel' [03:57, 03:14](1897 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:32, 04:15](1211 MB) -PASS -- TEST 'regional_control_intel' [05:25, 05:09](1181 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:45, 04:28](1223 MB) -PASS -- TEST 'regional_restart_intel' [02:57, 02:39](1154 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:32, 04:25](1233 MB) -PASS -- TEST 'regional_decomp_intel' [05:14, 04:57](1169 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:40, 04:26](1218 MB) -PASS -- TEST 'regional_2threads_intel' [03:15, 03:00](1143 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:41, 04:28](1313 MB) -PASS -- TEST 'regional_noquilt_intel' [04:46, 04:30](1514 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:38, 04:25](1217 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:11, 04:44](1199 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:42, 04:33](1218 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:50, 04:35](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:27, 04:20](1210 MB) -PASS -- TEST 'regional_wofs_intel' [06:16, 05:58](2083 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:28, 04:20](1220 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:15](1224 MB) - -PASS -- COMPILE 'rrfs_intel' [08:57, 08:57] -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:20, 04:12](1235 MB) -PASS -- TEST 'rap_control_intel' [07:16, 06:42](1210 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:43, 07:26](1218 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:30, 03:55](1365 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:45, 04:31](1227 MB) -PASS -- TEST 'rap_decomp_intel' [07:52, 07:08](1130 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:25, 05:14](1229 MB) -PASS -- TEST 'rap_2threads_intel' [06:50, 06:17](1370 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:28, 04:19](1226 MB) -PASS -- TEST 'rap_restart_intel' [04:13, 03:41](1127 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:58, 07:18](1220 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:09, 06:32](1201 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:22, 04:22] -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:32, 06:58](1144 MB) -PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 03:14](1039 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:56, 05:10](1203 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:18, 04:18] -PASS -- TEST 'hrrr_control_intel' [04:03, 03:27](1072 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:09, 03:33](1036 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:11, 09:10] -PASS -- TEST 'hrrr_control_2threads_intel' [04:46, 04:05](1107 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:53, 03:17](1222 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:14, 01:54](1025 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:25, 05:44](1142 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:10, 06:28](1200 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:06, 03:13](1015 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:00, 07:48](2002 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:56, 05:18](1277 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:49, 07:31](2175 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:36, 02:41](1034 MB) - -PASS -- COMPILE 'csawmg_intel' [09:13, 09:12] -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:57, 03:14](983 MB) -PASS -- TEST 'control_csawmg_intel' [05:53, 05:38](1038 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:03, 04:21](1096 MB) -PASS -- TEST 'control_ras_intel' [03:06, 02:56](844 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:54, 01:42](951 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:15, 04:14] - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:18, 09:17] -PASS -- TEST 'control_csawmg_gnu' [09:52, 09:38](1055 MB) -PASS -- TEST 'conus13km_control_intel' [02:43, 02:03](1276 MB) - -PASS -- COMPILE 'wam_intel' [08:24, 08:24] -PASS -- TEST 'conus13km_2threads_intel' [01:26, 00:56](1191 MB) -PASS -- TEST 'control_wam_intel' [10:22, 10:00](1657 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:24](1139 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:28, 08:27] - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:42, 08:41] -PASS -- TEST 'control_p8_faster_intel' [03:27, 02:40](1892 MB) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 04:10](1072 MB) -PASS -- TEST 'regional_control_faster_intel' [04:43, 04:27](1186 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:58, 03:57] - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 07:07] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:09, 04:43](1110 MB) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:32, 02:08](1616 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:44, 04:36](1103 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:30, 02:00](1629 MB) -PASS -- TEST 'conus13km_debug_intel' [14:50, 14:22](1344 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:13](843 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:35, 15:03](1003 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:39, 02:29](841 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:42, 11:12](1246 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:26, 04:07](1155 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:55, 14:22](1420 MB) -PASS -- TEST 'control_ras_debug_intel' [02:42, 02:30](841 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:15, 04:14] -PASS -- TEST 'control_diag_debug_intel' [02:50, 02:24](1698 MB) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:35, 04:19](1167 MB) -PASS -- TEST 'control_debug_p8_intel' [03:52, 03:26](1908 MB) - -PASS -- COMPILE 'hafsw_intel' [10:01, 10:01] -PASS -- TEST 'regional_debug_intel' [16:43, 16:23](1144 MB) -PASS -- TEST 'hafs_regional_atm_intel' [06:36, 05:33](864 MB) -PASS -- TEST 'rap_control_debug_intel' [04:39, 04:20](1220 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:29, 05:13](1259 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:32, 04:15](1211 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:11, 06:59](930 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:45, 04:28](1223 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:05, 14:04](967 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:32, 04:25](1233 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:47, 15:38](985 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:40, 04:26](1218 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:18, 05:39](593 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:41, 04:28](1313 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:07, 07:02](599 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:38, 04:25](1217 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:02, 02:33](429 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:42, 04:33](1218 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:24, 07:41](558 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:27, 04:20](1210 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:56, 04:19](607 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:28, 04:20](1220 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 04:01](593 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:15](1224 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:41, 05:02](655 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:20, 04:12](1235 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:32, 01:14](445 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:43, 07:26](1218 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:42, 04:41] -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:45, 04:31](1227 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:17, 12:34](636 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:25, 05:14](1229 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:28, 04:19](1226 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:14, 10:13] -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:58, 07:18](1220 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:51, 15:11](752 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:22, 04:22] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:24, 16:30](836 MB) -PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 03:14](1039 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:33, 10:32] - -PASS -- COMPILE 'wam_debug_intel' [04:18, 04:18] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:01, 09:44](814 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:17, 11:16] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:11, 09:10] -PASS -- TEST 'hafs_regional_docn_intel' [06:27, 05:37](929 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:53, 03:17](1222 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:52, 05:55](905 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:25, 05:44](1142 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:07, 16:32](1350 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:06, 03:13](1015 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:40, 06:40] -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:56, 05:18](1277 MB) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:18, 02:12](1141 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:36, 02:41](1034 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:21, 01:16](1106 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:57, 03:14](983 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:04, 02:58](1022 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:03, 04:21](1096 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:09, 03:01](1024 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:54, 01:42](951 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:01, 02:56](1014 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:18, 09:17] -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:12, 02:07](1160 MB) -PASS -- TEST 'conus13km_control_intel' [02:43, 02:03](1276 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:06, 03:01](1139 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:26, 00:56](1191 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:11, 02:06](1016 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:24](1139 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:34, 04:57](1167 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:42, 08:41] -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:27, 04:52](1167 MB) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 04:10](1072 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:05, 03:00](1153 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:58, 03:57] -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:06, 03:00](2397 MB) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:09, 04:43](1110 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:23, 03:17](2458 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:44, 04:36](1103 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:08, 03:07] -PASS -- TEST 'conus13km_debug_intel' [14:50, 14:22](1344 MB) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:38, 09:31](1065 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:35, 15:03](1003 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:30, 05:29] -PASS -- TEST 'conus13km_debug_2threads_intel' [11:42, 11:12](1246 MB) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:10](1165 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:55, 14:22](1420 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:15, 04:14] - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:48, 00:48] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:35, 04:19](1167 MB) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 01:13](339 MB) - -PASS -- COMPILE 'hafsw_intel' [10:01, 10:01] -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:29, 01:13](573 MB) -PASS -- TEST 'hafs_regional_atm_intel' [06:36, 05:33](864 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:48, 00:36](572 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:29, 05:13](1259 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:27, 09:26] -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:11, 06:59](930 MB) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 04:19](2019 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:05, 14:04](967 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:37, 08:36] -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:47, 15:38](985 MB) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:07, 03:23](1994 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:18, 05:39](593 MB) - -PASS -- COMPILE 'atml_intel' [09:26, 09:25] -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:07, 07:02](599 MB) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:48, 06:51](1897 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:02, 02:33](429 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 07:11](1887 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:24, 07:41](558 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:30, 04:06](1149 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:56, 04:19](607 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:41, 04:40] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 04:01](593 MB) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:04, 06:14](1910 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:41, 05:02](655 MB) - -PASS -- COMPILE 'atmw_intel' [09:29, 09:29] -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:32, 01:14](445 MB) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:06, 02:20](1937 MB) - -PASS -- COMPILE 'atmaero_intel' [08:38, 08:38] - -PASS -- COMPILE 'hafsw_debug_intel' [04:42, 04:41] -PASS -- TEST 'atmaero_control_p8_intel' [05:15, 04:26](2001 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:17, 12:34](636 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:24, 04:34](1779 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:14, 10:13] -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:12, 04:33](1787 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:51, 15:11](752 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:06, 04:05] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:24, 16:30](836 MB) -PASS -- TEST 'regional_atmaq_debug_intel' [17:55, 16:38](4513 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:33, 10:32] - -PASS -- COMPILE 'atm_gnu' [04:19, 04:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:01, 09:44](814 MB) -PASS -- TEST 'control_c48_gnu' [08:30, 08:06](1522 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:17, 11:16] -PASS -- TEST 'control_stochy_gnu' [02:41, 02:30](722 MB) -PASS -- TEST 'hafs_regional_docn_intel' [06:27, 05:37](929 MB) -PASS -- TEST 'control_ras_gnu' [04:08, 03:58](720 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:52, 05:55](905 MB) -PASS -- TEST 'control_p8_gnu' [05:59, 05:19](1701 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:07, 16:32](1350 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:47, 05:10](1720 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:40, 06:40] -PASS -- TEST 'control_flake_gnu' [04:46, 04:37](805 MB) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:18, 02:12](1141 MB) - -PASS -- COMPILE 'rrfs_gnu' [03:56, 03:56] -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:21, 01:16](1106 MB) -PASS -- TEST 'rap_control_gnu' [08:40, 08:03](1076 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:04, 02:58](1022 MB) -PASS -- TEST 'rap_decomp_gnu' [08:49, 08:14](1074 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:09, 03:01](1024 MB) -PASS -- TEST 'rap_2threads_gnu' [07:56, 07:19](1129 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:01, 02:56](1014 MB) -PASS -- TEST 'rap_restart_gnu' [04:53, 04:08](878 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:12, 02:07](1160 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:52, 08:12](1074 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:06, 03:01](1139 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:14, 08:36](1072 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:11, 02:06](1016 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:58, 06:16](876 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:34, 04:57](1167 MB) -PASS -- TEST 'hrrr_control_gnu' [04:52, 04:08](1061 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:27, 04:52](1167 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:47, 04:16](1127 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:05, 03:00](1153 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:23, 03:44](1015 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:06, 03:00](2397 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:01, 04:22](1058 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:23, 03:17](2458 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:36, 02:16](877 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:08, 03:07] -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:36, 02:09](923 MB) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:38, 09:31](1065 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:55, 08:11](1069 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:30, 05:29] - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:12, 06:12] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:10](1165 MB) -PASS -- TEST 'control_diag_debug_gnu' [01:38, 01:15](1617 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:48, 00:48] -PASS -- TEST 'regional_debug_gnu' [06:55, 06:37](1107 MB) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 01:13](339 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:04](1087 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:29, 01:13](573 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:06, 01:56](1082 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:48, 00:36](572 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:10, 01:59](1092 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:27, 09:26] -PASS -- TEST 'hrrr_c3_debug_gnu' [02:07, 01:59](1096 MB) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 04:19](2019 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:14](1261 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:37, 08:36] -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:21, 03:15](1086 MB) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:07, 03:23](1994 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:10, 02:04](1090 MB) - -PASS -- COMPILE 'atml_intel' [09:26, 09:25] -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:07, 01:59](1083 MB) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:48, 06:51](1897 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:26, 01:16](718 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 07:11](1887 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:33, 01:23](716 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:30, 04:06](1149 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:43, 01:20](1717 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:41, 04:40] -PASS -- TEST 'rap_flake_debug_gnu' [02:13, 02:01](1092 MB) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:04, 06:14](1910 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:09](1093 MB) - -PASS -- COMPILE 'atmw_intel' [09:29, 09:29] -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [03:58, 03:24](1092 MB) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:06, 02:20](1937 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:53, 02:53] -PASS -- TEST 'control_wam_debug_gnu' [06:15, 05:53](1555 MB) - -PASS -- COMPILE 'atmaero_intel' [08:38, 08:38] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 04:10] -PASS -- TEST 'atmaero_control_p8_intel' [05:15, 04:26](2001 MB) -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:14, 07:40](953 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:24, 04:34](1779 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:55, 04:09](940 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:12, 04:33](1787 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:34, 06:57](957 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:06, 04:05] -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:13, 03:28](872 MB) -PASS -- TEST 'regional_atmaq_debug_intel' [17:55, 16:38](4513 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:08, 04:10](941 MB) - -PASS -- COMPILE 'atm_gnu' [04:19, 04:19] -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:48, 06:15](855 MB) -PASS -- TEST 'control_c48_gnu' [08:30, 08:06](1522 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:35, 02:14](851 MB) -PASS -- TEST 'control_stochy_gnu' [02:41, 02:30](722 MB) -PASS -- TEST 'conus13km_control_gnu' [03:13, 02:40](1255 MB) -PASS -- TEST 'control_ras_gnu' [04:08, 03:58](720 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:25, 01:05](1163 MB) -PASS -- TEST 'control_p8_gnu' [05:59, 05:19](1701 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:53, 01:32](924 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:47, 05:10](1720 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:25, 09:25] -PASS -- TEST 'control_flake_gnu' [04:46, 04:37](805 MB) -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:50, 04:31](980 MB) - -PASS -- COMPILE 'rrfs_gnu' [03:56, 03:56] - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:18, 06:17] -PASS -- TEST 'rap_control_gnu' [08:40, 08:03](1076 MB) -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:16, 02:03](969 MB) -PASS -- TEST 'rap_decomp_gnu' [08:49, 08:14](1074 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:20, 02:10](959 MB) -PASS -- TEST 'rap_2threads_gnu' [07:56, 07:19](1129 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:09, 05:49](1276 MB) -PASS -- TEST 'rap_restart_gnu' [04:53, 04:08](878 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 06:05](946 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:52, 08:12](1074 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:22, 03:57](1182 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:14, 08:36](1072 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:33, 05:46](1344 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:58, 06:16](876 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:06, 07:06] -PASS -- TEST 'hrrr_control_gnu' [04:52, 04:08](1061 MB) -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 01:59](995 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:47, 04:16](1127 MB) - -PASS -- COMPILE 's2swa_gnu' [16:58, 16:58] -PASS -- TEST 'hrrr_control_2threads_gnu' [04:23, 03:44](1015 MB) - -PASS -- COMPILE 's2s_gnu' [16:03, 16:03] -PASS -- TEST 'hrrr_control_decomp_gnu' [05:01, 04:22](1058 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:34, 08:52](2711 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:36, 02:16](877 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:41, 03:41] -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:36, 02:09](923 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:03, 16:02] -PASS -- TEST 'rrfs_v1beta_gnu' [08:55, 08:11](1069 MB) -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:54, 26:07](2905 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:12, 06:12] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:08, 03:08] -PASS -- TEST 'control_diag_debug_gnu' [01:38, 01:15](1617 MB) -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:05, 12:23](3023 MB) -PASS -- TEST 'regional_debug_gnu' [06:55, 06:37](1107 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:19, 16:19] -PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:04](1087 MB) -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [06:24, 06:19](754 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:06, 01:56](1082 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:26, 08:26] -PASS -- TEST 'hrrr_gf_debug_gnu' [02:10, 01:59](1092 MB) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:15, 10:00](1084 MB) +* (-e) - USE ECFLOW + +PASS -- COMPILE s2swa_32bit_intel [14:13, 13:04](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [12:07, 08:44] (2129476 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [22:14, 20:51](1 warnings,10 remarks) +PASS -- TEST cpld_control_gfsv17_intel [17:17, 13:50] (1996444 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [17:44, 14:44] (2314092 MB) +PASS -- TEST cpld_restart_gfsv17_intel [09:47, 06:37] (1347624 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [18:14, 15:10] (1903184 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [22:14, 21:10](1 warnings,10 remarks) +PASS -- TEST cpld_control_sfs_intel [15:11, 13:07] (1975060 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [10:13, 08:37](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [25:51, 22:43] (1971436 MB) + +PASS -- COMPILE s2swa_intel [16:13, 14:22](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_intel [12:15, 08:35] (2201332 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [12:30, 08:42] (2208824 MB) +PASS -- TEST cpld_restart_p8_intel [09:39, 05:29] (1968488 MB) +PASS -- TEST cpld_control_qr_p8_intel [12:13, 08:58] (2217140 MB) +PASS -- TEST cpld_restart_qr_p8_intel [08:40, 05:17] (1736548 MB) +PASS -- TEST cpld_2threads_p8_intel [14:32, 10:12] (2542268 MB) +PASS -- TEST cpld_decomp_p8_intel [13:32, 09:09] (2187760 MB) +PASS -- TEST cpld_mpi_p8_intel [11:34, 07:30] (2100684 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [12:29, 08:36] (2199960 MB) +PASS -- TEST cpld_control_c192_p8_intel [20:22, 16:15] (2973616 MB) +PASS -- TEST cpld_restart_c192_p8_intel [10:54, 05:59] (2908160 MB) +PASS -- TEST cpld_bmark_p8_intel [19:56, 10:16] (3825132 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [17:28, 06:18] (3632344 MB) +PASS -- TEST cpld_s2sa_p8_intel [10:52, 06:23] (2140084 MB) + +PASS -- COMPILE s2sw_intel [15:14, 13:41](1 warnings,10 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [10:55, 07:26] (2013068 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [11:11, 07:48] (2067552 MB) + +PASS -- COMPILE s2swa_debug_intel [09:13, 08:00](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_p8_intel [16:27, 12:25] (2230568 MB) + +PASS -- COMPILE s2sw_debug_intel [09:12, 07:37](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [12:16, 08:57] (2038220 MB) + +PASS -- COMPILE s2s_aoflux_intel [13:13, 11:59],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [08:15, 04:46] (2063776 MB) + +PASS -- COMPILE s2s_intel [11:12, 09:32](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [09:17, 06:37] (3041640 MB) +PASS -- TEST cpld_warmstart_c48_intel [05:10, 02:19] (3024484 MB) +PASS -- TEST cpld_restart_c48_intel [05:11, 02:07] (2484276 MB) + +PASS -- COMPILE s2swa_faster_intel [14:11, 12:19](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_faster_intel [11:42, 08:14] (2206048 MB) + +PASS -- COMPILE s2sw_pdlib_intel [17:11, 15:21](1 warnings,10 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [16:25, 14:08] (2061288 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [10:19, 07:18] (1413124 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [18:17, 15:48] (1995160 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [06:11, 04:53](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [27:21, 23:47] (2003608 MB) + +PASS -- COMPILE atm_dyn32_intel [10:13, 09:07](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [05:41, 03:30] (713316 MB) +PASS -- TEST control_CubedSphereGrid_intel [05:04, 02:51] (1599668 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [05:06, 02:50] (1591260 MB) +PASS -- TEST control_latlon_intel [04:57, 02:46] (1591628 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [05:05, 02:46] (1588488 MB) +PASS -- TEST control_c48_intel [13:02, 10:18] (1709600 MB) +PASS -- TEST control_c48.v2.sfc_intel [07:40, 06:08] (842352 MB) +PASS -- TEST control_c192_intel [13:20, 10:16] (1774788 MB) +PASS -- TEST control_c384_intel [16:05, 12:11] (2016644 MB) +PASS -- TEST control_c384gdas_intel [14:35, 10:28] (1507904 MB) +PASS -- TEST control_stochy_intel [03:32, 02:01] (671736 MB) +PASS -- TEST control_stochy_restart_intel [02:38, 01:09] (544124 MB) +PASS -- TEST control_lndp_intel [03:31, 01:59] (659224 MB) +PASS -- TEST control_iovr4_intel [04:33, 02:57] (656220 MB) +PASS -- TEST control_iovr5_intel [04:30, 02:41] (658744 MB) +PASS -- TEST control_p8_intel [06:29, 03:54] (1877156 MB) +PASS -- TEST control_p8.v2.sfc_intel [07:33, 04:21] (1909492 MB) +PASS -- TEST control_p8_ugwpv1_intel [06:23, 03:27] (1896460 MB) +PASS -- TEST control_restart_p8_intel [04:03, 01:53] (1151408 MB) +PASS -- TEST control_noqr_p8_intel [06:17, 03:16] (1878172 MB) +PASS -- TEST control_restart_noqr_p8_intel [04:10, 01:54] (1208024 MB) +PASS -- TEST control_decomp_p8_intel [07:15, 03:59] (1877208 MB) +PASS -- TEST control_2threads_p8_intel [07:14, 03:42] (1965372 MB) +PASS -- TEST control_p8_lndp_intel [09:45, 06:37] (1884624 MB) +PASS -- TEST control_p8_rrtmgp_intel [08:04, 05:22] (1958276 MB) +PASS -- TEST control_p8_mynn_intel [05:08, 02:49] (1909964 MB) +PASS -- TEST merra2_thompson_intel [07:21, 04:53] (1904708 MB) +PASS -- TEST regional_control_intel [06:42, 04:43] (1191344 MB) +PASS -- TEST regional_restart_intel [04:36, 02:40] (1171860 MB) +PASS -- TEST regional_decomp_intel [07:40, 05:11] (1181564 MB) +PASS -- TEST regional_2threads_intel [06:36, 04:05] (1149168 MB) +PASS -- TEST regional_noquilt_intel [06:43, 04:31] (1520988 MB) +PASS -- TEST regional_netcdf_parallel_intel [06:46, 04:36] (1194224 MB) +PASS -- TEST regional_2dwrtdecomp_intel [06:38, 04:44] (1196004 MB) +PASS -- TEST regional_wofs_intel [09:37, 08:04] (2072220 MB) + +PASS -- COMPILE rrfs_intel [10:11, 08:52](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [09:58, 07:19] (1232848 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [05:58, 03:29] (1351800 MB) +PASS -- TEST rap_decomp_intel [09:52, 07:38] (1153952 MB) +PASS -- TEST rap_2threads_intel [10:02, 07:11] (1363244 MB) +PASS -- TEST rap_restart_intel [06:21, 03:53] (1140820 MB) +PASS -- TEST rap_sfcdiff_intel [10:03, 07:17] (1220476 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [10:16, 07:32] (1145440 MB) +PASS -- TEST rap_sfcdiff_restart_intel [08:15, 05:19] (1211988 MB) +PASS -- TEST hrrr_control_intel [06:02, 03:30] (1049924 MB) +PASS -- TEST hrrr_control_decomp_intel [05:46, 03:42] (1050588 MB) +PASS -- TEST hrrr_control_2threads_intel [05:45, 03:15] (1106432 MB) +PASS -- TEST hrrr_control_restart_intel [03:27, 02:04] (1017336 MB) +PASS -- TEST rrfs_v1beta_intel [09:09, 06:48] (1206312 MB) +PASS -- TEST rrfs_v1nssl_intel [12:36, 10:30] (1989120 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [11:29, 09:48] (2189692 MB) + +PASS -- COMPILE csawmg_intel [09:11, 07:47] +PASS -- TEST control_csawmg_intel [08:38, 06:16] (1046312 MB) +PASS -- TEST control_ras_intel [05:27, 03:30] (843472 MB) + +PASS -- COMPILE csawmg_gnu [06:11, 04:13] +PASS -- TEST control_csawmg_gnu [10:47, 08:04] (1074316 MB) + +PASS -- COMPILE wam_intel [10:10, 08:34],1 remarks) +PASS -- TEST control_wam_intel [11:52, 09:55] (1657144 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [10:11, 08:55],1 remarks) +PASS -- TEST control_p8_faster_intel [05:12, 02:30] (1905120 MB) +PASS -- TEST regional_control_faster_intel [07:36, 05:03] (1182052 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [08:10, 06:51](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [03:39, 01:52] (1626508 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [03:45, 01:49] (1630816 MB) +PASS -- TEST control_stochy_debug_intel [04:28, 02:37] (841496 MB) +PASS -- TEST control_lndp_debug_intel [04:20, 02:20] (834536 MB) +PASS -- TEST control_csawmg_debug_intel [05:36, 03:58] (1144800 MB) +PASS -- TEST control_ras_debug_intel [04:21, 02:19] (843980 MB) +PASS -- TEST control_diag_debug_intel [04:41, 02:14] (1692432 MB) +PASS -- TEST control_debug_p8_intel [04:45, 02:12] (1913116 MB) +PASS -- TEST regional_debug_intel [16:36, 14:48] (1144984 MB) +PASS -- TEST rap_control_debug_intel [05:21, 04:08] (1218776 MB) +PASS -- TEST hrrr_control_debug_intel [05:30, 04:06] (1222376 MB) +PASS -- TEST hrrr_gf_debug_intel [05:30, 04:03] (1218284 MB) +PASS -- TEST hrrr_c3_debug_intel [06:25, 04:11] (1229240 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [06:25, 04:10] (1220288 MB) +PASS -- TEST rap_diag_debug_intel [06:38, 04:25] (1310584 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [06:23, 04:13] (1225392 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [06:28, 04:10] (1231676 MB) +PASS -- TEST rap_lndp_debug_intel [06:28, 04:11] (1225528 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [06:27, 04:10] (1226548 MB) +PASS -- TEST rap_noah_debug_intel [06:27, 04:03] (1221748 MB) +PASS -- TEST rap_sfcdiff_debug_intel [06:25, 04:05] (1236060 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:30, 06:44] (1233080 MB) +PASS -- TEST rrfs_v1beta_debug_intel [06:24, 04:11] (1213276 MB) +PASS -- TEST rap_clm_lake_debug_intel [06:27, 04:57] (1231052 MB) +PASS -- TEST rap_flake_debug_intel [05:30, 04:08] (1218576 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [09:09, 07:08] (1227812 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [06:10, 04:22] +PASS -- TEST control_csawmg_debug_gnu [03:49, 02:08] (1038092 MB) + +PASS -- COMPILE wam_debug_intel [06:11, 04:12](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [11:11, 08:57](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [06:01, 03:19] (1231840 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [08:00, 05:21] (1142036 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [05:22, 02:54] (1041952 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [07:11, 05:09] (1277536 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [05:18, 02:43] (1027240 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [05:40, 03:03] (982340 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [05:58, 04:09] (1079168 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [03:26, 01:34] (949800 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [10:11, 08:31](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [05:00, 02:23] (1272840 MB) +PASS -- TEST conus13km_2threads_intel [03:43, 01:06] (1177660 MB) +PASS -- TEST conus13km_restart_mismatch_intel [03:46, 01:24] (1128120 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [10:11, 08:33](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [05:43, 03:45] (1084280 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [05:11, 03:26](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [06:23, 04:29] (1109280 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [06:22, 04:23] (1100176 MB) +PASS -- TEST conus13km_debug_intel [15:50, 13:55] (1353512 MB) +PASS -- TEST conus13km_debug_qr_intel [15:45, 13:58] (985708 MB) +PASS -- TEST conus13km_debug_2threads_intel [12:44, 10:34] (1238848 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [15:39, 13:58] (1419888 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [06:11, 04:11](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [06:28, 04:14] (1161500 MB) + +PASS -- COMPILE hafsw_intel [12:11, 10:29](1 warnings,9 remarks) +PASS -- TEST hafs_regional_atm_intel [08:08, 05:21] (852052 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [07:28, 05:13] (1252624 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [09:29, 06:28] (922224 MB) +PASS -- TEST hafs_regional_atm_wav_intel [17:13, 13:59] (960152 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [18:37, 15:04] (968556 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [08:10, 05:34] (592592 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [10:26, 07:04] (603584 MB) +PASS -- TEST hafs_global_1nest_atm_intel [05:58, 03:04] (437160 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:43, 07:36] (549964 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [07:55, 03:58] (601388 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [07:06, 03:46] (599688 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [08:02, 04:51] (655268 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [04:34, 01:21] (449236 MB) + +PASS -- COMPILE hafsw_debug_intel [06:11, 04:27](1465 warnings,1502 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:06, 11:40] (686488 MB) + +PASS -- COMPILE hafsw_faster_intel [12:11, 10:27],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [18:56, 16:50] (753200 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [18:05, 15:39] (833392 MB) + +PASS -- COMPILE hafs_mom6w_intel [11:11, 10:09],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:55, 10:29] (809172 MB) + +PASS -- COMPILE hafs_all_intel [12:11, 10:12],8 remarks) +PASS -- TEST hafs_regional_docn_intel [09:12, 07:03] (908020 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [10:09, 06:59] (909956 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [18:53, 16:25] (1343824 MB) + +PASS -- COMPILE datm_cdeps_intel [07:11, 04:58],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [04:19, 02:11] (1136908 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [05:19, 01:22] (1100828 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [04:21, 02:11] (1017896 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [04:21, 02:11] (1023084 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [04:22, 02:10] (1026040 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [04:17, 02:11] (1141744 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [04:21, 02:11] (1157844 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [03:18, 02:06] (1020380 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:07, 04:57] (1162876 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [07:01, 04:53] (1153000 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [04:17, 02:09] (1155612 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:16, 03:07] (2456512 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:18, 03:05] (2400364 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [05:11, 04:02](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [07:17, 05:13] (1071332 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [08:11, 07:09],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [04:16, 02:13] (1144632 MB) + +PASS -- COMPILE datm_cdeps_land_intel [02:11, 00:56],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [04:34, 00:53] (337912 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [03:24, 00:50] (573320 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [02:26, 00:33] (576716 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [11:11, 09:35],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [08:08, 04:21] (2013732 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [10:11, 08:11],1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [08:03, 04:18] (1989296 MB) + +PASS -- COMPILE atml_intel [11:11, 09:37](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [11:24, 07:11] (1900568 MB) +PASS -- TEST control_p8_atmlnd_intel [10:28, 06:40] (1890740 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [05:53, 03:04] (1142388 MB) + +PASS -- COMPILE atml_debug_intel [06:11, 04:46](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [10:24, 06:45] (1941568 MB) + +PASS -- COMPILE atmw_intel [12:10, 10:36],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [06:09, 02:42] (1938372 MB) + +PASS -- COMPILE atmaero_intel [11:11, 10:00],1 remarks) +PASS -- TEST atmaero_control_p8_intel [09:11, 05:24] (2013556 MB) +PASS -- TEST atmaero_control_p8_rad_intel [08:09, 05:16] (1787296 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [07:56, 05:35] (1799000 MB) + +PASS -- COMPILE atmaq_debug_intel [06:11, 05:01](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [20:41, 17:11] (4525040 MB) + +PASS -- COMPILE atm_gnu [06:10, 04:50] +PASS -- TEST control_c48_gnu [09:49, 07:50] (1522888 MB) +PASS -- TEST control_stochy_gnu [04:29, 02:30] (721624 MB) +PASS -- TEST control_ras_gnu [05:22, 03:55] (722068 MB) +PASS -- TEST control_p8_gnu [07:09, 04:14] (1699760 MB) +PASS -- TEST control_p8_ugwpv1_gnu [06:56, 04:27] (1701268 MB) +PASS -- TEST control_flake_gnu [06:27, 04:55] (803616 MB) + +PASS -- COMPILE rrfs_gnu [06:11, 04:34] +PASS -- TEST rap_control_gnu [11:00, 08:22] (1073276 MB) +PASS -- TEST rap_decomp_gnu [10:45, 08:24] (1073804 MB) +PASS -- TEST rap_2threads_gnu [09:57, 07:20] (1103808 MB) +PASS -- TEST rap_restart_gnu [08:00, 04:14] (879248 MB) +PASS -- TEST rap_sfcdiff_gnu [10:59, 08:18] (1074564 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [10:44, 08:18] (1075536 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [10:08, 06:09] (877868 MB) +PASS -- TEST hrrr_control_gnu [06:43, 04:27] (1059972 MB) +PASS -- TEST hrrr_control_noqr_gnu [06:42, 04:21] (1127380 MB) +PASS -- TEST hrrr_control_2threads_gnu [05:58, 04:00] (1021864 MB) +PASS -- TEST hrrr_control_decomp_gnu [06:52, 04:32] (1062372 MB) +PASS -- TEST hrrr_control_restart_gnu [04:27, 02:16] (887016 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [04:24, 02:15] (924548 MB) +PASS -- TEST rrfs_v1beta_gnu [11:11, 08:16] (1067216 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [07:11, 05:50] +PASS -- TEST control_diag_debug_gnu [03:39, 01:19] (1617840 MB) +PASS -- TEST regional_debug_gnu [08:35, 07:03] (1128708 MB) +PASS -- TEST rap_control_debug_gnu [04:23, 02:10] (1087132 MB) +PASS -- TEST hrrr_control_debug_gnu [03:24, 02:05] (1082420 MB) +PASS -- TEST hrrr_gf_debug_gnu [04:20, 02:02] (1089780 MB) +PASS -- TEST hrrr_c3_debug_gnu [04:21, 02:15] (1085300 MB) +PASS -- TEST rap_diag_debug_gnu [04:34, 02:08] (1263152 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [05:20, 03:09] (1086680 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [03:20, 02:04] (1092640 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [03:21, 02:01] (1083248 MB) +PASS -- TEST control_ras_debug_gnu [03:20, 01:24] (719648 MB) +PASS -- TEST control_stochy_debug_gnu [03:20, 01:20] (718404 MB) +PASS -- TEST control_debug_p8_gnu [04:42, 02:05] (1718344 MB) +PASS -- TEST rap_flake_debug_gnu [04:24, 02:05] (1092252 MB) +PASS -- TEST rap_clm_lake_debug_gnu [04:22, 02:17] (1092704 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [06:58, 03:47] (1094340 MB) + +PASS -- COMPILE wam_debug_gnu [04:11, 02:28] +PASS -- TEST control_wam_debug_gnu [07:41, 05:19] (1557740 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [07:11, 05:22] +PASS -- TEST rap_control_dyn32_phy32_gnu [09:42, 07:32] (953008 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [06:56, 04:11] (943804 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [08:58, 06:54] (981732 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [06:01, 03:33] (881444 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [05:41, 04:03] (943772 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [08:00, 05:47] (855452 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [04:32, 02:10] (853256 MB) +PASS -- TEST conus13km_control_gnu [04:50, 02:37] (1257416 MB) +PASS -- TEST conus13km_2threads_gnu [03:38, 01:07] (1161316 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [03:37, 01:34] (926080 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [12:11, 10:15] +PASS -- TEST rap_control_dyn64_phy32_gnu [06:44, 04:31] (981344 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [10:11, 08:34] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [04:23, 02:09] (968880 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [04:25, 02:12] (963788 MB) +PASS -- TEST conus13km_debug_gnu [07:42, 06:04] (1275052 MB) +PASS -- TEST conus13km_debug_qr_gnu [07:42, 06:05] (949728 MB) +PASS -- TEST conus13km_debug_2threads_gnu [06:37, 03:44] (1188768 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [09:40, 06:07] (1343568 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [10:11, 08:47] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [05:25, 02:10] (999580 MB) + +PASS -- COMPILE s2swa_gnu [20:11, 18:58] +PASS -- COMPILE s2s_gnu [17:11, 15:14] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [11:20, 09:08] (2708040 MB) + +PASS -- COMPILE s2swa_debug_gnu [05:10, 03:38] +PASS -- COMPILE s2sw_pdlib_gnu [17:11, 15:27] +PASS -- TEST cpld_control_pdlib_p8_gnu [30:15, 27:09] (3050756 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [07:10, 05:54] +PASS -- TEST cpld_debug_pdlib_p8_gnu [16:02, 13:16] (2905188 MB) + +PASS -- COMPILE datm_cdeps_gnu [18:11, 16:19] +PASS -- TEST datm_cdeps_control_cfsr_gnu [05:17, 02:21] (770484 MB) + +PASS -- COMPILE atm_fbh_intel [11:11, 09:35](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [12:32, 09:47] (1077296 MB) -SYNOPSIS: -Starting Date/Time: 20240920 08:25:25 -Ending Date/Time: 20240920 14:17:45 -Total Time: 05h:52m:28s -Compiles Completed: 58/58 -Tests Completed: 245/245 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: SUCCESS - -====END OF HERCULES REGRESSION TESTING LOG==== -PASS -- TEST 'hrrr_c3_debug_gnu' [02:07, 01:59](1096 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:14](1261 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:21, 03:15](1086 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:10, 02:04](1090 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:07, 01:59](1083 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:26, 01:16](718 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:33, 01:23](716 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:43, 01:20](1717 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:13, 02:01](1092 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:09](1093 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [03:58, 03:24](1092 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:53, 02:53] -PASS -- TEST 'control_wam_debug_gnu' [06:15, 05:53](1555 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 04:10] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:14, 07:40](953 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:55, 04:09](940 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:34, 06:57](957 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:13, 03:28](872 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:08, 04:10](941 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:48, 06:15](855 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:35, 02:14](851 MB) -PASS -- TEST 'conus13km_control_gnu' [03:13, 02:40](1255 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:25, 01:05](1163 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:53, 01:32](924 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:25, 09:25] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:50, 04:31](980 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:18, 06:17] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:16, 02:03](969 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:20, 02:10](959 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:09, 05:49](1276 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 06:05](946 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:22, 03:57](1182 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:33, 05:46](1344 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:06, 07:06] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 01:59](995 MB) - -PASS -- COMPILE 's2swa_gnu' [16:58, 16:58] - -PASS -- COMPILE 's2s_gnu' [16:03, 16:03] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:34, 08:52](2711 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:41, 03:41] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:03, 16:02] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:54, 26:07](2905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:08, 03:08] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:05, 12:23](3023 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:19, 16:19] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [06:24, 06:19](754 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:26, 08:26] -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:15, 10:00](1084 MB) SYNOPSIS: -Starting Date/Time: 20240920 09:14:54 -Ending Date/Time: 20240920 14:17:46 -Total Time: 05h:02m:59s +Starting Date/Time: 2024-09-26 18:31:55 +Ending Date/Time: 2024-09-26 20:11:21 +Total Time: 01h:39m:26s Compiles Completed: 58/58 Tests Completed: 245/245 + NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. Result: SUCCESS -====END OF HERCULES REGRESSION TESTING LOG==== +====END OF hercules REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index a97a0ea0c6..1572ea8305 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,31 +1,31 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -34893eceee4525f5276fb3408f7432d3dc195032 +0f7fd4cc7a42417c56a5784e3b3891deeae01201 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) + 5c7ba6472e1c1b73899f19710e38de4be1a88223 CICE-interface/CICE (remotes/origin/support_intelllvm) 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 3fd205a8ce07944d38cb7ca6e882dffb2af03d1e FV3 (remotes/origin/support_intelllvm) + b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 4e6e96c5b6cd28d1e677539792cf5e21a8a67379 FV3/ccpp/physics (remotes/origin/support_intelllvm) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -37,256 +37,255 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1641237 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_773938 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [56:32, 42:24] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:36, 08:20](2017 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [02:34, 48:11] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:26, 20:46](1893 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [57:33, 22:21](2012 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [45:26, 09:54](1138 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:16, 23:47](1842 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [07:35, 53:08] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:04, 20:20](1881 MB) - -PASS -- COMPILE 's2swa_intel' [57:32, 43:02] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:24, 10:03](2073 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:38, 09:54](2061 MB) -PASS -- TEST 'cpld_restart_p8_intel' [36:20, 05:27](1715 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:24, 10:06](2078 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [36:20, 05:31](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:19, 09:30](2318 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:17, 10:09](2056 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:35, 08:28](2011 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:40, 10:04](2066 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:36, 07:14](2038 MB) - -PASS -- COMPILE 's2sw_intel' [55:32, 40:33] ( 1 warnings 1284 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:36, 07:43](1906 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:39, 09:48](1959 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:21, 06:17] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [51:42, 16:28](2081 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:21, 06:16] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [46:28, 11:21](1931 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [44:24, 36:12] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [26:47, 05:33](1960 MB) - -PASS -- COMPILE 's2s_intel' [40:24, 37:20] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [30:14, 10:18](3015 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [23:12, 03:25](3017 MB) -PASS -- TEST 'cpld_restart_c48_intel' [13:19, 01:55](2460 MB) - -PASS -- COMPILE 's2swa_faster_intel' [30:34, 32:32] ( 1 warnings 1615 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [34:35, 09:28](2071 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:24, 46:56] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [55:39, 20:52](1921 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [46:26, 10:18](1128 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [59:23, 24:09](1903 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [40:17, 05:55] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [49:34, 33:22](1927 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [58:31, 37:36] ( 1 warnings 1126 remarks ) -PASS -- TEST 'control_flake_intel' [39:19, 04:34](648 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [50:54, 04:19](1534 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [38:58, 04:31](1531 MB) -PASS -- TEST 'control_latlon_intel' [50:45, 04:18](1531 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [50:45, 04:33](1545 MB) -PASS -- TEST 'control_c48_intel' [04:53, 18:08](1698 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [56:36, 10:12](828 MB) -PASS -- TEST 'control_c192_intel' [51:16, 16:08](1693 MB) -PASS -- TEST 'control_c384_intel' [55:00, 24:08](1820 MB) -PASS -- TEST 'control_c384gdas_intel' [46:32, 13:38](1005 MB) -PASS -- TEST 'control_stochy_intel' [10:13, 02:10](603 MB) -PASS -- TEST 'control_stochy_restart_intel' [49:30, 01:33](438 MB) -PASS -- TEST 'control_lndp_intel' [37:01, 02:02](602 MB) -PASS -- TEST 'control_iovr4_intel' [34:47, 03:20](598 MB) -PASS -- TEST 'control_iovr5_intel' [32:42, 03:19](593 MB) -PASS -- TEST 'control_p8_intel' [34:39, 04:49](1823 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [33:22, 04:04](1841 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [33:50, 04:47](1831 MB) -PASS -- TEST 'control_restart_p8_intel' [59:26, 03:06](1044 MB) -PASS -- TEST 'control_noqr_p8_intel' [33:42, 04:43](1825 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [59:26, 03:28](1069 MB) -PASS -- TEST 'control_decomp_p8_intel' [33:15, 05:19](1823 MB) -PASS -- TEST 'control_2threads_p8_intel' [32:39, 04:35](1910 MB) -PASS -- TEST 'control_p8_lndp_intel' [36:20, 08:40](1824 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [37:29, 05:21](1902 MB) -PASS -- TEST 'control_p8_mynn_intel' [36:47, 04:08](1845 MB) -PASS -- TEST 'merra2_thompson_intel' [36:37, 04:24](1841 MB) -PASS -- TEST 'regional_control_intel' [37:54, 07:14](1012 MB) -PASS -- TEST 'regional_restart_intel' [35:58, 04:30](1005 MB) -PASS -- TEST 'regional_decomp_intel' [35:46, 07:43](1006 MB) -PASS -- TEST 'regional_2threads_intel' [28:58, 04:33](995 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [30:54, 07:12](1004 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [30:46, 07:18](1013 MB) - -PASS -- COMPILE 'rrfs_intel' [56:30, 37:06] ( 3 warnings 1102 remarks ) -PASS -- TEST 'rap_control_intel' [30:00, 10:06](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [41:29, 05:55](1163 MB) -PASS -- TEST 'rap_decomp_intel' [30:02, 10:41](985 MB) -PASS -- TEST 'rap_2threads_intel' [29:04, 09:44](1072 MB) -PASS -- TEST 'rap_restart_intel' [04:45, 05:47](982 MB) -PASS -- TEST 'rap_sfcdiff_intel' [29:07, 10:13](991 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [30:00, 10:53](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:33, 07:56](993 MB) -PASS -- TEST 'hrrr_control_intel' [31:32, 05:13](987 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [31:32, 05:20](974 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [31:32, 04:46](1044 MB) -PASS -- TEST 'hrrr_control_restart_intel' [54:04, 03:07](915 MB) -PASS -- TEST 'rrfs_v1beta_intel' [36:12, 09:58](979 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [31:38, 12:37](1938 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [31:00, 12:14](1934 MB) - -PASS -- COMPILE 'csawmg_intel' [49:24, 34:13] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [29:46, 08:19](970 MB) -PASS -- TEST 'control_ras_intel' [26:19, 04:28](669 MB) - -PASS -- COMPILE 'wam_intel' [09:20, 34:58] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [34:46, 14:33](1610 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [01:21, 36:28] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [39:10, 03:45](1832 MB) -PASS -- TEST 'regional_control_faster_intel' [53:41, 06:35](1009 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [29:45, 08:41] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [52:40, 03:22](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [48:55, 03:15](1564 MB) -PASS -- TEST 'control_stochy_debug_intel' [50:31, 04:07](781 MB) -PASS -- TEST 'control_lndp_debug_intel' [50:31, 03:47](781 MB) -PASS -- TEST 'control_csawmg_debug_intel' [51:05, 06:01](1093 MB) -PASS -- TEST 'control_ras_debug_intel' [45:54, 04:01](785 MB) -PASS -- TEST 'control_diag_debug_intel' [45:35, 03:54](1640 MB) -PASS -- TEST 'control_debug_p8_intel' [42:55, 04:06](1855 MB) -PASS -- TEST 'regional_debug_intel' [58:58, 22:41](1031 MB) -PASS -- TEST 'rap_control_debug_intel' [42:59, 06:31](1159 MB) -PASS -- TEST 'hrrr_control_debug_intel' [03:38, 06:26](1157 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [03:31, 06:42](1170 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [03:42, 06:50](1164 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [02:33, 06:37](1171 MB) -PASS -- TEST 'rap_diag_debug_intel' [02:40, 06:45](1244 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [58:26, 06:35](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:22, 06:34](1161 MB) -PASS -- TEST 'rap_lndp_debug_intel' [59:07, 06:33](1171 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [58:32, 06:43](1168 MB) -PASS -- TEST 'rap_noah_debug_intel' [41:57, 06:41](1156 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [40:06, 06:48](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [43:14, 10:33](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [38:37, 06:45](1163 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:13, 07:46](1171 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:40, 06:38](1161 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:54, 11:18](1170 MB) - -PASS -- COMPILE 'wam_debug_intel' [25:42, 05:25] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:03, 17:38](1650 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [55:38, 30:27] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:20, 07:10](1040 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:09, 08:43](900 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:09, 04:46](870 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:58, 08:14](948 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:01, 04:24](902 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:51, 04:59](847 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [46:55, 06:19](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [47:58, 02:29](842 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [57:38, 32:00] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:40, 04:36](1099 MB) -PASS -- TEST 'conus13km_2threads_intel' [48:23, 01:17](1034 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [47:10, 01:39](1006 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:45, 31:11] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:18, 05:50](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [39:15, 05:22] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [25:19, 06:25](1034 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [14:00, 06:19](1035 MB) -PASS -- TEST 'conus13km_debug_intel' [24:14, 19:16](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:14, 19:18](852 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:19, 11:22](1092 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:12, 19:12](1210 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [36:15, 05:13] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:57, 06:35](1089 MB) - -PASS -- COMPILE 'hafsw_intel' [21:43, 39:45] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [58:51, 07:06](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:01, 06:34](1060 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [01:38, 10:19](750 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [07:55, 16:28](787 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [40:29, 18:10](805 MB) -PASS -- TEST 'gnv1_nested_intel' [52:40, 06:22](1672 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:41, 36:11] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [04:53, 08:55](747 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:01, 09:02](739 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [42:43, 08:31] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [21:30, 04:00](1076 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [25:31, 02:22](1037 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [48:35, 03:37](934 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [48:33, 03:39](930 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [48:34, 03:40](936 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [48:28, 03:44](1054 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [45:21, 03:45](1075 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [44:41, 03:15](930 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [48:31, 07:50](888 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [47:44, 07:44](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [41:02, 03:43](1076 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [40:43, 05:09](2371 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [26:29, 05:12](2421 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [37:42, 03:32] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [29:26, 08:16](1026 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [58:02, 08:39] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [44:29, 03:34](1068 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [57:28, 02:14] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [22:39, 01:26](244 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [43:38, 01:06](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [16:33, 00:46](262 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:33, 36:09] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [36:29, 04:49](1917 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [03:30, 35:45] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [35:09, 04:39](1886 MB) - -PASS -- COMPILE 'atml_intel' [00:30, 38:12] ( 8 warnings 1167 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [35:12, 05:52](1855 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [35:11, 05:49](1855 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [53:09, 03:16](1062 MB) - -PASS -- COMPILE 'atml_debug_intel' [31:15, 06:13] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [23:25, 07:17](1889 MB) - -PASS -- COMPILE 'atmw_intel' [17:25, 36:27] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [40:04, 02:23](1868 MB) - -PASS -- COMPILE 'atmaero_intel' [08:21, 35:30] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [25:59, 05:15](1927 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [28:00, 06:19](1707 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:58, 06:26](1719 MB) - -PASS -- COMPILE 'atm_fbh_intel' [02:21, 31:21] ( 3 warnings 996 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [40:33, 15:16](1023 MB) +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [42:57, 42:57] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:16, 08:20](2001 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:05, 48:05] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:04, 21:16](1887 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:51, 22:00](1989 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:31, 10:38](1136 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:03, 24:19](1849 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [47:37, 47:36] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:52, 20:15](1855 MB) + +PASS -- COMPILE 's2swa_intel' [43:27, 43:27] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:01, 09:57](2040 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:59, 09:55](2062 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:17, 05:22](1713 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:47, 09:39](2068 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:34, 05:28](1723 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:05, 09:16](2312 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:38, 09:48](2018 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:00, 08:12](1978 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:31, 09:37](2068 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:53, 06:55](1997 MB) + +PASS -- COMPILE 's2sw_intel' [39:46, 39:46] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:23, 07:33](1901 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:27, 09:28](1956 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:16, 06:16] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:25, 16:24](2072 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:59, 05:59] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:08, 11:19](1924 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [36:39, 36:39] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:49, 05:48](1953 MB) + +PASS -- COMPILE 's2s_intel' [37:30, 37:30] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:53, 10:18](3018 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:10, 03:28](3011 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:30, 01:52](2463 MB) + +PASS -- COMPILE 's2swa_faster_intel' [32:43, 32:43] ( 1 warnings 1615 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:26, 09:21](2060 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [46:54, 46:54] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:19, 20:28](1908 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:24, 10:32](1129 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:40, 23:53](1892 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 06:08] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:02, 33:14](1928 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [36:54, 36:54] ( 1 warnings 1116 remarks ) +PASS -- TEST 'control_flake_intel' [04:37, 04:21](650 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:42, 04:10](1545 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:54, 04:19](1546 MB) +PASS -- TEST 'control_latlon_intel' [04:32, 04:10](1531 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:00, 04:23](1537 MB) +PASS -- TEST 'control_c48_intel' [18:34, 18:03](1705 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 10:13](832 MB) +PASS -- TEST 'control_c192_intel' [16:32, 15:51](1678 MB) +PASS -- TEST 'control_c384_intel' [24:22, 22:56](1815 MB) +PASS -- TEST 'control_c384gdas_intel' [15:28, 13:13](1007 MB) +PASS -- TEST 'control_stochy_intel' [02:25, 02:10](603 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:14](438 MB) +PASS -- TEST 'control_lndp_intel' [02:19, 02:04](604 MB) +PASS -- TEST 'control_iovr4_intel' [03:34, 03:17](601 MB) +PASS -- TEST 'control_iovr5_intel' [03:32, 03:15](606 MB) +PASS -- TEST 'control_p8_intel' [05:29, 04:47](1809 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:40, 03:57](1806 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:12, 04:37](1823 MB) +PASS -- TEST 'control_restart_p8_intel' [03:09, 02:37](1051 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:15, 04:40](1828 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:13, 02:36](1079 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:27, 04:56](1802 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:03, 04:32](1910 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:06, 08:37](1803 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:47, 05:12](1896 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:41, 04:03](1839 MB) +PASS -- TEST 'merra2_thompson_intel' [04:58, 04:25](1850 MB) +PASS -- TEST 'regional_control_intel' [07:36, 07:09](1010 MB) +PASS -- TEST 'regional_restart_intel' [04:13, 03:45](1002 MB) +PASS -- TEST 'regional_decomp_intel' [07:57, 07:31](997 MB) +PASS -- TEST 'regional_2threads_intel' [04:52, 04:25](996 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 07:13](1008 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 07:14](1005 MB) + +PASS -- COMPILE 'rrfs_intel' [34:17, 34:17] ( 3 warnings 1092 remarks ) +PASS -- TEST 'rap_control_intel' [10:31, 10:03](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:21, 05:30](1166 MB) +PASS -- TEST 'rap_decomp_intel' [11:03, 10:35](987 MB) +PASS -- TEST 'rap_2threads_intel' [10:03, 09:32](1073 MB) +PASS -- TEST 'rap_restart_intel' [05:34, 05:13](980 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:32, 10:03](986 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:07, 10:40](981 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:55, 07:29](994 MB) +PASS -- TEST 'hrrr_control_intel' [05:34, 05:09](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:42, 05:18](976 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 04:49](1049 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:58, 02:44](908 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:34, 10:01](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:42, 13:28](1904 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:12, 13:00](1927 MB) + +PASS -- COMPILE 'csawmg_intel' [34:12, 34:12] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:27, 08:04](966 MB) +PASS -- TEST 'control_ras_intel' [04:28, 04:17](667 MB) + +PASS -- COMPILE 'wam_intel' [34:49, 34:49] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [14:59, 14:27](1585 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [36:48, 36:48] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:16, 03:39](1797 MB) +PASS -- TEST 'regional_control_faster_intel' [06:57, 06:37](1004 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:23, 08:23] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:13, 02:43](1546 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:14, 02:39](1538 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:54, 03:42](789 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:30, 03:20](781 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:49, 05:25](1089 MB) +PASS -- TEST 'control_ras_debug_intel' [03:34, 03:22](796 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 03:19](1635 MB) +PASS -- TEST 'control_debug_p8_intel' [03:38, 03:10](1859 MB) +PASS -- TEST 'regional_debug_intel' [22:30, 22:05](1037 MB) +PASS -- TEST 'rap_control_debug_intel' [06:19, 06:07](1161 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:11, 05:56](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:16, 06:05](1156 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 06:05](1161 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:15, 06:03](1158 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:43, 06:20](1247 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 06:10](1165 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 06:11](1161 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 06:08](1158 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 06:04](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:09, 05:55](1160 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 06:06](1167 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:11, 09:57](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 06:05](1154 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:43, 07:29](1161 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:27, 06:12](1159 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:07, 10:39](1170 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:17, 05:16] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:03, 16:30](1622 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:41, 30:40] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 05:07](1045 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:46, 08:20](893 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:52, 04:26](865 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:13, 07:52](952 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:25, 04:00](903 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:59, 04:36](856 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:37, 06:14](892 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:33, 02:20](839 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [31:51, 31:51] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:22, 02:43](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:44, 01:12](1035 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:03, 01:30](1009 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:10, 31:10] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:55, 05:23](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 05:19] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:15, 06:00](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:08, 05:53](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [19:19, 18:41](1142 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:36, 18:59](861 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:18, 10:46](1094 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:16, 18:43](1210 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:13, 05:13] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 06:10](1080 MB) + +PASS -- COMPILE 'hafsw_intel' [39:09, 39:08] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:51, 06:39](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:21, 06:00](1058 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:12, 08:50](748 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:07, 15:53](780 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:47, 17:37](798 MB) +PASS -- TEST 'gnv1_nested_intel' [07:45, 06:23](1636 MB) + +PASS -- COMPILE 'hafs_all_intel' [35:41, 35:41] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:25, 08:17](754 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:30, 08:18](739 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:24, 08:24] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:46, 03:37](1068 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 02:09](1031 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:52, 03:43](919 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:39, 03:31](928 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:40, 03:33](929 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:43, 03:34](1055 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:43, 03:35](1070 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:36, 03:28](932 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:43, 07:43](890 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:35, 07:34](846 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:40, 03:33](1067 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:11, 05:01](2317 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 05:05](2419 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:26, 03:26] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 08:07](1027 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:25, 08:25] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:45, 03:36](1085 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:46, 01:46] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 01:05](239 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:13, 00:56](266 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:53, 00:36](257 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [36:02, 36:02] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:37, 04:49](1886 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [35:07, 35:07] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:16, 04:34](1855 MB) + +PASS -- COMPILE 'atml_intel' [30:07, 30:07] ( 8 warnings 1157 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:21, 05:29](1841 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:15, 05:33](1823 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:36, 03:06](1057 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:18, 06:18] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:59, 07:12](1885 MB) + +PASS -- COMPILE 'atmw_intel' [37:19, 37:18] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:57, 02:20](1832 MB) + +PASS -- COMPILE 'atmaero_intel' [35:28, 35:28] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:59, 05:13](1930 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:01, 06:13](1713 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:54, 06:17](1719 MB) + +PASS -- COMPILE 'atm_fbh_intel' [31:17, 31:17] ( 3 warnings 996 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:46, 15:29](1019 MB) SYNOPSIS: -Starting Date/Time: 20240920 21:26:38 -Ending Date/Time: 20240921 18:44:18 -Total Time: 21h:18m:25s +Starting Date/Time: 20240925 15:04:22 +Ending Date/Time: 20240926 22:40:41 +Total Time: 07h:36m:46s Compiles Completed: 37/37 Tests Completed: 165/165 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 4183a07a11..d624f0297a 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,31 +1,362 @@ -====START OF ORION REGRESSION TESTING LOG==== +====START OF orion REGRESSION TESTING LOG==== UFSWM hash used in testing: -ce118b02fad212ff25d1995f8d323e41b841d615 +0f7fd4cc7a42417c56a5784e3b3891deeae01201 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) + 5c7ba6472e1c1b73899f19710e38de4be1a88223 CICE-interface/CICE (remotes/origin/support_intelllvm) 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 3fd205a8ce07944d38cb7ca6e882dffb2af03d1e FV3 (remotes/origin/support_intelllvm) + b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 4e6e96c5b6cd28d1e677539792cf5e21a8a67379 FV3/ccpp/physics (remotes/origin/support_intelllvm) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3145618 + +UFS_TEST.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE s2swa_32bit_intel [17:34, 17:33](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [15:47, 14:28] (2083844 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [21:37, 21:37](1 warnings,10 remarks) +PASS -- TEST cpld_control_gfsv17_intel [19:31, 18:04] (1942328 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [21:19, 19:22] (2123500 MB) +PASS -- TEST cpld_restart_gfsv17_intel [11:13, 09:15] (1222260 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [21:38, 20:23] (1868720 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [20:45, 20:45](1 warnings,10 remarks) +PASS -- TEST cpld_control_sfs_intel [18:29, 17:50] (1939580 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [09:52, 09:52](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [29:34, 28:13] (1928880 MB) + +PASS -- COMPILE s2swa_intel [17:33, 17:33](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_intel [15:20, 14:08] (2137480 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [15:43, 14:28] (2133644 MB) +PASS -- TEST cpld_restart_p8_intel [09:32, 08:08] (1789208 MB) +PASS -- TEST cpld_control_qr_p8_intel [15:31, 14:26] (2165128 MB) +PASS -- TEST cpld_restart_qr_p8_intel [09:24, 07:57] (1693984 MB) +PASS -- TEST cpld_2threads_p8_intel [14:40, 13:32] (2422804 MB) +PASS -- TEST cpld_decomp_p8_intel [15:46, 14:37] (2137268 MB) +PASS -- TEST cpld_mpi_p8_intel [14:09, 12:58] (2036456 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [15:51, 14:48] (2144180 MB) +PASS -- TEST cpld_control_c192_p8_intel [18:16, 16:20] (2700860 MB) +PASS -- TEST cpld_restart_c192_p8_intel [11:21, 08:43] (2708868 MB) +PASS -- TEST cpld_bmark_p8_intel [16:33, 11:02] (3677612 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [14:51, 07:23] (3474120 MB) +PASS -- TEST cpld_s2sa_p8_intel [07:13, 06:05] (2102708 MB) + +PASS -- COMPILE s2sw_intel [15:53, 15:53](1 warnings,10 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [14:35, 13:38] (1966848 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [09:06, 07:58] (2035148 MB) + +PASS -- COMPILE s2swa_debug_intel [09:13, 09:13](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_p8_intel [14:39, 13:22] (2172624 MB) + +PASS -- COMPILE s2sw_debug_intel [08:50, 08:50](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [10:39, 09:32] (2002024 MB) + +PASS -- COMPILE s2s_aoflux_intel [15:12, 15:12],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:57, 04:51] (2037628 MB) + +PASS -- COMPILE s2s_intel [15:18, 15:17](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [11:12, 10:27] (3032584 MB) +PASS -- TEST cpld_warmstart_c48_intel [04:27, 03:43] (3025332 MB) +PASS -- TEST cpld_restart_c48_intel [02:49, 02:05] (2489020 MB) + +PASS -- COMPILE s2swa_faster_intel [16:59, 16:59](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_faster_intel [16:14, 15:00] (2134552 MB) + +PASS -- COMPILE s2sw_pdlib_intel [21:25, 21:25](1 warnings,10 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [19:08, 18:10] (2007696 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [10:06, 09:00] (1245956 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [21:31, 20:34] (1930400 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [07:50, 07:50](1523 warnings,2000 remarks) +FAIL -- TEST cpld_debug_pdlib_p8_intel + +PASS -- COMPILE atm_dyn32_intel [13:28, 13:28](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [04:06, 03:51] (691548 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:58, 03:32] (1574200 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [04:16, 03:42] (1578768 MB) +PASS -- TEST control_latlon_intel [03:51, 03:33] (1576212 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [04:10, 03:34] (1583804 MB) +PASS -- TEST control_c48_intel [15:34, 15:03] (1702592 MB) +PASS -- TEST control_c48.v2.sfc_intel [08:36, 08:17] (841944 MB) +PASS -- TEST control_c192_intel [13:51, 13:16] (1731880 MB) +PASS -- TEST control_c384_intel [18:12, 16:44] (1999136 MB) +PASS -- TEST control_c384gdas_intel [14:00, 11:54] (1325192 MB) +PASS -- TEST control_stochy_intel [02:06, 01:50] (642124 MB) +PASS -- TEST control_stochy_restart_intel [01:33, 01:05] (474300 MB) +PASS -- TEST control_lndp_intel [01:58, 01:43] (643928 MB) +PASS -- TEST control_iovr4_intel [03:00, 02:44] (631052 MB) +PASS -- TEST control_iovr5_intel [02:54, 02:43] (635260 MB) +PASS -- TEST control_p8_intel [05:11, 04:12] (1862988 MB) +PASS -- TEST control_p8.v2.sfc_intel [04:34, 03:35] (1870468 MB) +PASS -- TEST control_p8_ugwpv1_intel [05:12, 04:05] (1871824 MB) +PASS -- TEST control_restart_p8_intel [03:17, 02:20] (1086532 MB) +PASS -- TEST control_noqr_p8_intel [05:06, 04:07] (1857320 MB) +PASS -- TEST control_restart_noqr_p8_intel [03:30, 02:24] (1130900 MB) +PASS -- TEST control_decomp_p8_intel [05:18, 04:12] (1852340 MB) +PASS -- TEST control_2threads_p8_intel [05:32, 04:29] (1939364 MB) +PASS -- TEST control_p8_lndp_intel [07:52, 07:20] (1858120 MB) +PASS -- TEST control_p8_rrtmgp_intel [06:05, 04:52] (1943464 MB) +PASS -- TEST control_p8_mynn_intel [04:47, 03:37] (1886452 MB) +PASS -- TEST merra2_thompson_intel [05:11, 03:49] (1884888 MB) +PASS -- TEST regional_control_intel [07:03, 06:36] (1078892 MB) +PASS -- TEST regional_restart_intel [06:23, 05:43] (1073532 MB) +PASS -- TEST regional_decomp_intel [07:30, 07:03] (1069120 MB) +PASS -- TEST regional_2threads_intel [05:21, 04:53] (1072600 MB) +PASS -- TEST regional_noquilt_intel [06:58, 06:32] (1385612 MB) +PASS -- TEST regional_netcdf_parallel_intel [07:02, 06:31] (1075292 MB) +PASS -- TEST regional_2dwrtdecomp_intel [07:03, 06:36] (1071116 MB) +PASS -- TEST regional_wofs_intel [08:23, 07:59] (1893064 MB) + +PASS -- COMPILE rrfs_intel [12:37, 12:37](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [09:37, 08:30] (1042800 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [06:05, 05:19] (1247324 MB) +PASS -- TEST rap_decomp_intel [09:52, 08:43] (1013392 MB) +PASS -- TEST rap_2threads_intel [09:47, 08:39] (1152324 MB) +PASS -- TEST rap_restart_intel [08:16, 06:56] (1030480 MB) +PASS -- TEST rap_sfcdiff_intel [09:39, 08:29] (1058856 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [09:52, 08:44] (1008276 MB) +PASS -- TEST rap_sfcdiff_restart_intel [07:37, 06:21] (1060656 MB) +PASS -- TEST hrrr_control_intel [05:31, 04:24] (1024884 MB) +PASS -- TEST hrrr_control_decomp_intel [05:36, 04:28] (1006792 MB) +PASS -- TEST hrrr_control_2threads_intel [10:53, 09:43] (1085040 MB) +PASS -- TEST hrrr_control_restart_intel [02:51, 02:22] (941836 MB) +PASS -- TEST rrfs_v1beta_intel [09:42, 08:25] (1035232 MB) +PASS -- TEST rrfs_v1nssl_intel [10:05, 09:53] (1978476 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:58, 09:39] (2022300 MB) + +PASS -- COMPILE csawmg_intel [13:04, 13:04] +PASS -- TEST control_csawmg_intel [07:07, 06:41] (1009820 MB) +PASS -- TEST control_ras_intel [03:44, 03:29] (716348 MB) + +PASS -- COMPILE wam_intel [12:57, 12:57],1 remarks) +PASS -- TEST control_wam_intel [13:15, 12:48] (1643840 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [12:47, 12:47],1 remarks) +PASS -- TEST control_p8_faster_intel [04:41, 03:19] (1878564 MB) +PASS -- TEST regional_control_faster_intel [06:50, 06:21] (1072340 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [10:02, 10:02](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:53, 02:27] (1601664 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:54, 02:18] (1603380 MB) +PASS -- TEST control_stochy_debug_intel [03:20, 03:06] (813588 MB) +PASS -- TEST control_lndp_debug_intel [03:04, 02:50] (817480 MB) +PASS -- TEST control_csawmg_debug_intel [04:48, 04:29] (1121380 MB) +PASS -- TEST control_ras_debug_intel [03:08, 02:58] (823068 MB) +PASS -- TEST control_diag_debug_intel [03:24, 02:56] (1673196 MB) +PASS -- TEST control_debug_p8_intel [03:23, 02:48] (1887904 MB) +PASS -- TEST regional_debug_intel [17:43, 17:23] (1085436 MB) +PASS -- TEST rap_control_debug_intel [05:16, 05:05] (1196804 MB) +PASS -- TEST hrrr_control_debug_intel [05:11, 04:54] (1191016 MB) +PASS -- TEST hrrr_gf_debug_intel [05:26, 05:09] (1204336 MB) +PASS -- TEST hrrr_c3_debug_intel [05:17, 04:59] (1201704 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [05:12, 05:04] (1204356 MB) +PASS -- TEST rap_diag_debug_intel [05:30, 05:12] (1289944 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [05:21, 05:11] (1200880 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [05:29, 05:12] (1198800 MB) +PASS -- TEST rap_lndp_debug_intel [05:29, 05:09] (1207756 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [05:10, 04:59] (1205908 MB) +PASS -- TEST rap_noah_debug_intel [05:07, 04:56] (1199676 MB) +PASS -- TEST rap_sfcdiff_debug_intel [05:12, 04:59] (1205464 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:17, 08:08] (1197160 MB) +PASS -- TEST rrfs_v1beta_debug_intel [05:06, 04:57] (1197872 MB) +PASS -- TEST rap_clm_lake_debug_intel [06:15, 05:59] (1203664 MB) +PASS -- TEST rap_flake_debug_intel [05:10, 04:54] (1199036 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [09:47, 08:41] (1205212 MB) + +PASS -- COMPILE wam_debug_intel [07:11, 07:11](837 warnings,1 remarks) +PASS -- TEST control_wam_debug_intel [13:56, 13:22] (1679012 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [13:27, 13:27](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [05:40, 05:00] (1123712 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [08:17, 07:15] (994504 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [05:20, 03:52] (918144 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:31, 07:27] (1064664 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [10:13, 08:44] (941068 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [05:24, 03:57] (887984 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [06:36, 05:27] (964820 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:14, 02:05] (865528 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [12:12, 12:11](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [03:28, 02:45] (1156072 MB) +PASS -- TEST conus13km_2threads_intel [01:43, 01:15] (1106524 MB) +PASS -- TEST conus13km_restart_mismatch_intel [02:04, 01:33] (1059384 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [12:25, 12:25](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [05:01, 04:34] (963012 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [06:13, 06:13](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:57, 04:45] (1078756 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:03, 04:47] (1071468 MB) +PASS -- TEST conus13km_debug_intel [15:26, 14:53] (1226144 MB) +PASS -- TEST conus13km_debug_qr_intel [15:14, 14:40] (930560 MB) +PASS -- TEST conus13km_debug_2threads_intel [09:05, 08:40] (1162456 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [15:13, 14:44] (1297932 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [06:45, 06:45](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:17, 05:08] (1128872 MB) + +PASS -- COMPILE hafsw_intel [14:52, 14:50](1 warnings,9 remarks) +PASS -- TEST hafs_regional_atm_intel [07:06, 06:02] (736528 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:57, 06:33] (1114272 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [09:13, 07:53] (811356 MB) +PASS -- TEST hafs_regional_atm_wav_intel [25:46, 24:40] (845860 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [29:29, 28:24] (869948 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [08:15, 07:12] (493588 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:52, 08:35] (502244 MB) +PASS -- TEST hafs_global_1nest_atm_intel [04:34, 03:35] (372040 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:50, 09:39] (474196 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:29, 04:47] (521200 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:25, 04:33] (524644 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [06:40, 05:42] (572448 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:58, 01:35] (399316 MB) +PASS -- TEST gnv1_nested_intel [06:21, 04:23] (1732988 MB) + +PASS -- COMPILE hafsw_debug_intel [07:25, 07:25](1465 warnings,1502 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:19, 13:22] (627152 MB) + +PASS -- COMPILE hafsw_faster_intel [14:11, 14:11],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [14:04, 12:57] (637388 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [14:10, 13:01] (721076 MB) + +PASS -- COMPILE hafs_mom6w_intel [15:27, 15:27],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [10:09, 08:40] (706508 MB) + +PASS -- COMPILE hafs_all_intel [13:58, 13:58],8 remarks) +PASS -- TEST hafs_regional_docn_intel [08:39, 07:35] (811244 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [08:46, 07:39] (797016 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:11, 16:30] (1202652 MB) + +PASS -- COMPILE datm_cdeps_intel [09:58, 09:58],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [03:07, 02:58] (1154320 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:58, 01:52] (1107248 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [03:00, 02:51] (1022068 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [03:00, 02:54] (1022524 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [03:15, 03:04] (1020360 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:07, 02:59] (1158716 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:09, 03:01] (1152664 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:59, 02:51] (1016904 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:28, 06:35] (1016276 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [07:23, 06:31] (1007912 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:00, 02:56] (1158116 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:27, 04:21] (2401844 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:33, 04:24] (2453712 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [05:54, 05:54](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [06:36, 06:27] (1063168 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [08:24, 08:24],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [03:06, 02:58] (1150300 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:27, 01:27],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:24, 01:01] (255508 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:11, 00:54] (323192 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:50, 00:34] (323484 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [13:53, 13:53],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [05:11, 04:14] (1967044 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [13:34, 13:34],1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [05:02, 04:05] (1949344 MB) + +PASS -- COMPILE atml_intel [13:43, 13:43](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:29, 05:02] (1860772 MB) +PASS -- TEST control_p8_atmlnd_intel [06:19, 04:57] (1855004 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:24, 02:50] (1072564 MB) + +PASS -- COMPILE atml_debug_intel [08:21, 08:21](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [07:43, 06:24] (1907168 MB) + +PASS -- COMPILE atmw_intel [14:42, 14:42],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [03:20, 02:11] (1896084 MB) + +PASS -- COMPILE atmaero_intel [13:42, 13:42],1 remarks) +PASS -- TEST atmaero_control_p8_intel [05:38, 04:38] (1971408 MB) +PASS -- TEST atmaero_control_p8_rad_intel [06:30, 05:26] (1750220 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [06:26, 05:32] (1758784 MB) + +PASS -- COMPILE atmaq_debug_intel [06:35, 06:35](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [23:06, 21:01] (4480408 MB) + +PASS -- COMPILE atm_fbh_intel [12:02, 12:02](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [14:28, 14:11] (1080188 MB) + + +SYNOPSIS: +Starting Date/Time: 2024-09-25 20:00:32 +Ending Date/Time: 2024-09-26 00:20:52 +Total Time: 04h:20m:20s +Compiles Completed: 42/42 +Tests Completed: 185/186 + + +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 orion REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +a7cef6704d3c373d2e3b020039bf59f971ab0bee + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) + b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -37,289 +368,21 @@ 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-20240909 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3636759 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1801953 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:12, 17:50] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:32, 14:03](2085 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 22:13] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:41, 18:10](1948 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:16, 19:06](2136 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:00, 08:59](1208 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:40, 20:45](1863 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 22:39] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:44, 17:48](1939 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 09:04] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:51, 28:04](1932 MB) - -PASS -- COMPILE 's2swa_intel' [20:12, 18:50] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:32, 14:30](2137 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:40, 14:49](2137 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:43, 08:00](1791 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:31, 14:51](2155 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:43, 07:58](1692 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:37, 13:32](2424 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:31, 14:21](2122 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:33, 12:19](2045 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:45, 15:00](2142 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:37, 16:21](2701 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [17:06, 12:27](2716 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:14, 11:27](3680 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:34, 06:47](3487 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:36, 06:04](2099 MB) - -PASS -- COMPILE 's2sw_intel' [19:11, 17:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:13, 13:47](1968 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:25, 08:03](2036 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:11, 09:10] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:14, 13:41](2170 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:48] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:11, 09:21](1998 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:11, 16:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:30, 05:00](2035 MB) - -PASS -- COMPILE 's2s_intel' [18:11, 16:20] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:00, 08:43](3023 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:03, 04:16](3032 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:12, 02:15](2485 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:11, 17:23] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:30, 15:30](2134 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 20:21] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:13, 18:15](2009 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:32, 09:08](1247 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:13, 20:54](1928 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:13] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:13, 29:51](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:32, 03:44](685 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:48, 03:33](1569 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:49, 03:39](1577 MB) -PASS -- TEST 'control_latlon_intel' [05:43, 03:29](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 03:34](1572 MB) -PASS -- TEST 'control_c48_intel' [16:54, 14:40](1689 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:33, 08:11](830 MB) -PASS -- TEST 'control_c192_intel' [15:02, 13:03](1742 MB) -PASS -- TEST 'control_c384_intel' [19:49, 16:40](1977 MB) -PASS -- TEST 'control_c384gdas_intel' [13:37, 09:57](1331 MB) -PASS -- TEST 'control_stochy_intel' [03:26, 01:48](637 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:39, 01:06](478 MB) -PASS -- TEST 'control_lndp_intel' [03:27, 01:43](646 MB) -PASS -- TEST 'control_iovr4_intel' [04:30, 02:41](636 MB) -PASS -- TEST 'control_iovr5_intel' [04:29, 02:44](630 MB) -PASS -- TEST 'control_p8_intel' [09:13, 04:06](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:10, 03:36](1880 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:33, 04:04](1866 MB) -PASS -- TEST 'control_restart_p8_intel' [05:14, 02:23](1081 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:16, 04:09](1856 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:29, 02:22](1133 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:23, 04:10](1854 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:11, 04:24](1950 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:52, 07:15](1862 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:37, 04:56](1930 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:32, 03:30](1880 MB) -PASS -- TEST 'merra2_thompson_intel' [09:44, 03:51](1876 MB) -PASS -- TEST 'regional_control_intel' [11:37, 06:31](1072 MB) -PASS -- TEST 'regional_restart_intel' [05:36, 03:37](1065 MB) -PASS -- TEST 'regional_decomp_intel' [12:33, 06:49](1071 MB) -PASS -- TEST 'regional_2threads_intel' [08:38, 04:44](1065 MB) -PASS -- TEST 'regional_noquilt_intel' [09:37, 06:26](1369 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:41, 06:31](1069 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:36, 06:31](1071 MB) -PASS -- TEST 'regional_wofs_intel' [12:38, 08:01](1896 MB) - -PASS -- COMPILE 'rrfs_intel' [14:10, 13:00] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:15, 08:32](1046 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:09, 05:13](1253 MB) -PASS -- TEST 'rap_decomp_intel' [12:15, 08:44](1013 MB) -PASS -- TEST 'rap_2threads_intel' [11:29, 08:44](1158 MB) -PASS -- TEST 'rap_restart_intel' [08:29, 04:27](1033 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:27, 08:32](1050 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:30, 09:16](1016 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:29, 06:20](1066 MB) -PASS -- TEST 'hrrr_control_intel' [07:26, 04:20](1021 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:09, 04:29](1009 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:09, 04:13](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:37, 02:22](943 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:28, 08:20](1041 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:34, 10:12](1979 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:33, 09:53](2012 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:34] -PASS -- TEST 'control_csawmg_intel' [09:38, 06:35](1019 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:29](716 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:25] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:35, 12:47](1642 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:12, 12:54] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:31, 03:22](1878 MB) -PASS -- TEST 'regional_control_faster_intel' [08:36, 06:19](1063 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:59] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:47, 02:21](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:43, 02:20](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:12](819 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:54](814 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:16](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [04:25, 02:50](824 MB) -PASS -- TEST 'control_diag_debug_intel' [04:41, 02:43](1675 MB) -PASS -- TEST 'control_debug_p8_intel' [04:47, 02:46](1893 MB) -PASS -- TEST 'regional_debug_intel' [19:41, 17:12](1087 MB) -PASS -- TEST 'rap_control_debug_intel' [06:22, 04:58](1201 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:53](1189 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:59](1207 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:59](1205 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 04:56](1200 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:31, 05:13](1285 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:09](1197 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:20](1198 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:22, 05:06](1201 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:57](1204 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:58](1199 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:55](1200 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:08](1196 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:30, 05:04](1195 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 05:57](1203 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:20, 05:03](1201 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:33](1207 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:11, 06:33] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:45, 13:12](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:11, 12:32] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 05:03](1123 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:16, 07:14](993 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:42, 03:45](923 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:52, 07:26](1063 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:24, 03:45](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:05, 03:59](892 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:25, 05:24](961 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:43, 02:02](872 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:51, 02:42](1164 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:15](1107 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:32](1060 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:48] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:47, 04:40](966 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:36] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:04](1072 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:50](1076 MB) -PASS -- TEST 'conus13km_debug_intel' [16:49, 14:41](1224 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:45, 15:30](924 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:45, 08:42](1166 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:43, 14:47](1288 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 07:37] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 05:01](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [18:11, 15:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:18, 06:11](737 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:27, 06:32](1112 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:23, 07:36](817 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [27:14, 24:32](845 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:33, 28:12](870 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:06, 07:15](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:29, 08:34](498 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:58, 03:30](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:32, 09:46](477 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:54, 04:48](521 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:02, 04:29](517 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:57, 05:48](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:31, 01:35](399 MB) -PASS -- TEST 'gnv1_nested_intel' [14:19, 04:22](1728 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:11, 08:09] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:05, 13:07](578 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:11, 14:09] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:14, 12:58](653 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:07, 13:01](721 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:23] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:17, 09:03](702 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:11, 14:31] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [15:15, 07:38](816 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:12, 09:59](767 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:59, 16:24](1204 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:29] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:19, 03:01](1154 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:57](1112 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:19, 02:52](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:18, 02:54](1022 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:17, 02:57](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 03:01](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:01](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:18, 02:52](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:15, 06:33](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:32](998 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:01](1149 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:20](2385 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:27](2454 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:54] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:40](1082 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 09:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 03:00](1156 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 01:23] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:33, 01:02](252 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 01:00](321 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:38](324 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 13:55] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:11, 04:08](1961 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 12:59] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:04, 03:58](1948 MB) - -PASS -- COMPILE 'atml_intel' [17:11, 14:17] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 05:09](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:27, 05:10](1860 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 02:49](1057 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:11, 07:45] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:26, 06:06](1888 MB) - -PASS -- COMPILE 'atmw_intel' [17:11, 13:56] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:16, 02:13](1896 MB) - -PASS -- COMPILE 'atmaero_intel' [16:11, 13:25] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:15, 04:45](1972 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:12, 05:20](1750 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:07, 05:29](1772 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:11, 06:43] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:57, 20:26](4494 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:11, 12:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:30, 13:54](1076 MB) +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:12] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:16, 29:55](1967 MB) SYNOPSIS: -Starting Date/Time: 20240920 09:01:01 -Ending Date/Time: 20240920 10:49:03 -Total Time: 01h:49m:18s -Compiles Completed: 42/42 -Tests Completed: 186/186 +Starting Date/Time: 20240926 18:51:52 +Ending Date/Time: 20240926 19:36:38 +Total Time: 00h:44m:49s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index d36c5c7ea2..3bfd473d2f 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,31 +1,31 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -ce118b02fad212ff25d1995f8d323e41b841d615 +7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) + b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -37,238 +37,238 @@ 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-20240909 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97123 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165025 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:33] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [33:03, 02:30](3084 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:28, 12:08] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [33:00, 02:51](1814 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:37, 03:12](1834 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:14, 02:35](972 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [33:01, 03:23](1780 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:28, 11:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [33:00, 02:06](1814 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:18] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [39:10, 02:54](1835 MB) - -PASS -- COMPILE 's2swa_intel' [13:26, 11:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [33:04, 02:34](3121 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:04, 02:57](3117 MB) -PASS -- TEST 'cpld_restart_p8_intel' [21:33, 02:09](3040 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [33:04, 02:33](3137 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [21:32, 02:07](3062 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [33:03, 02:25](3358 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [33:03, 02:37](3113 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [33:05, 02:05](3058 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:04, 02:55](3115 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [33:12, 06:42](4109 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:44, 06:08](4257 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [33:04, 02:49](3096 MB) - -PASS -- COMPILE 's2sw_intel' [12:27, 11:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [34:04, 02:44](1828 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [34:04, 02:47](1884 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:25, 10:17] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [34:05, 03:01](1889 MB) - -PASS -- COMPILE 's2s_intel' [12:26, 10:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [34:03, 01:48](2859 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [34:03, 02:31](2869 MB) -PASS -- TEST 'cpld_restart_c48_intel' [28:46, 02:17](2288 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:33, 16:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [28:57, 02:55](3118 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:00, 02:05](1824 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:15, 02:06](996 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:46, 02:43](1803 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:07] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [59:20, 02:04](1852 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:26, 08:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [23:38, 02:29](570 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [23:38, 02:11](1465 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [23:38, 02:04](1469 MB) -PASS -- TEST 'control_latlon_intel' [23:38, 02:05](1474 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:38, 02:13](1470 MB) -PASS -- TEST 'control_c48_intel' [23:37, 01:39](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [23:37, 01:44](690 MB) -PASS -- TEST 'control_c192_intel' [23:38, 02:10](1595 MB) -PASS -- TEST 'control_c384_intel' [23:42, 03:17](1890 MB) -PASS -- TEST 'control_c384gdas_intel' [23:32, 03:56](1065 MB) -PASS -- TEST 'control_stochy_intel' [23:24, 01:32](523 MB) -PASS -- TEST 'control_stochy_restart_intel' [19:45, 01:59](332 MB) -PASS -- TEST 'control_lndp_intel' [23:17, 01:36](526 MB) -PASS -- TEST 'control_iovr4_intel' [22:20, 01:49](518 MB) -PASS -- TEST 'control_iovr5_intel' [22:18, 01:48](521 MB) -PASS -- TEST 'control_p8_intel' [21:36, 02:20](1760 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [21:12, 02:55](1756 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [21:11, 02:27](1759 MB) -PASS -- TEST 'control_restart_p8_intel' [15:09, 02:49](911 MB) -PASS -- TEST 'control_noqr_p8_intel' [19:45, 02:20](1757 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [12:57, 02:54](919 MB) -PASS -- TEST 'control_decomp_p8_intel' [19:08, 02:04](1753 MB) -PASS -- TEST 'control_2threads_p8_intel' [17:57, 02:30](1839 MB) -PASS -- TEST 'control_p8_lndp_intel' [17:51, 02:04](1762 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [17:50, 02:38](1812 MB) -PASS -- TEST 'control_p8_mynn_intel' [17:45, 02:46](1766 MB) -PASS -- TEST 'merra2_thompson_intel' [17:41, 02:40](1761 MB) -PASS -- TEST 'regional_control_intel' [17:38, 02:04](842 MB) -PASS -- TEST 'regional_restart_intel' [09:50, 01:15](835 MB) -PASS -- TEST 'regional_decomp_intel' [17:22, 01:46](836 MB) -PASS -- TEST 'regional_2threads_intel' [16:56, 01:54](891 MB) -PASS -- TEST 'regional_noquilt_intel' [16:13, 01:21](1170 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [15:52, 02:20](841 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [15:33, 02:05](841 MB) -PASS -- TEST 'regional_wofs_intel' [14:44, 01:20](1566 MB) - -PASS -- COMPILE 'rrfs_intel' [10:25, 08:26] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [14:37, 03:08](906 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:34, 02:07](1048 MB) -PASS -- TEST 'rap_decomp_intel' [13:45, 02:18](901 MB) -PASS -- TEST 'rap_2threads_intel' [11:33, 02:09](988 MB) -PASS -- TEST 'rap_restart_intel' [03:48, 02:16](774 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:15, 02:58](899 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:13, 02:45](898 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [00:46, 02:44](770 MB) -PASS -- TEST 'hrrr_control_intel' [10:59, 02:22](899 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:59, 03:11](900 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:41, 02:27](976 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:02](728 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:30, 03:09](892 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:45, 01:47](1855 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:35, 01:58](1848 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 07:52] -PASS -- TEST 'control_csawmg_intel' [24:40, 01:41](857 MB) -PASS -- TEST 'control_ras_intel' [24:40, 01:52](555 MB) - -PASS -- COMPILE 'wam_intel' [09:26, 07:55] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:29, 01:23](1552 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:26, 08:14] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:29, 02:52](1752 MB) -PASS -- TEST 'regional_control_faster_intel' [09:25, 02:00](839 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:26, 07:38] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:18, 01:40](1497 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:17, 01:45](1489 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:53, 01:40](697 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:44, 02:02](695 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:42, 02:17](996 MB) -PASS -- TEST 'control_ras_debug_intel' [07:15, 01:59](703 MB) -PASS -- TEST 'control_diag_debug_intel' [07:13, 02:10](1557 MB) -PASS -- TEST 'control_debug_p8_intel' [05:46, 02:14](1783 MB) -PASS -- TEST 'regional_debug_intel' [05:20, 01:16](874 MB) -PASS -- TEST 'rap_control_debug_intel' [04:58, 01:41](1076 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:22, 01:47](1074 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:14, 01:36](1077 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:11, 01:37](1074 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [03:29, 01:42](1074 MB) -PASS -- TEST 'rap_diag_debug_intel' [03:29, 01:31](1161 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [03:23, 01:38](1075 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [02:56, 01:33](1076 MB) -PASS -- TEST 'rap_lndp_debug_intel' [02:37, 01:36](1080 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [02:22, 01:40](1078 MB) -PASS -- TEST 'rap_noah_debug_intel' [02:15, 01:43](1073 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [01:42, 01:42](1071 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [01:39, 01:32](1071 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [01:25, 01:43](1068 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [01:02, 01:57](1077 MB) -PASS -- TEST 'rap_flake_debug_intel' [00:46, 01:39](1081 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [00:03, 02:54](1079 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:23] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [26:39, 02:18](1580 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:26, 07:41] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [59:53, 02:17](911 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [59:50, 03:16](777 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [59:46, 03:09](780 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [58:52, 02:45](837 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [58:52, 03:05](828 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [57:21, 03:18](777 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [50:20, 02:31](675 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [53:00, 01:20](660 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 07:52] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [57:19, 02:05](988 MB) -PASS -- TEST 'conus13km_2threads_intel' [52:13, 01:54](989 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [52:09, 01:41](860 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 07:55] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [56:43, 02:23](805 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:33] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [56:42, 01:52](956 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [56:40, 01:54](953 MB) -PASS -- TEST 'conus13km_debug_intel' [55:53, 01:39](1040 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [55:48, 01:27](711 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [55:48, 02:02](1042 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [55:25, 01:39](1108 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:21, 04:21] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [55:23, 01:56](978 MB) - -PASS -- COMPILE 'hafsw_intel' [11:27, 09:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [55:11, 02:44](598 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [54:50, 01:26](941 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [54:47, 02:24](644 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [54:11, 03:17](672 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [53:58, 03:07](696 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [53:38, 01:59](374 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [53:11, 03:18](386 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [52:45, 02:30](327 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [52:33, 03:15](366 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [52:24, 02:26](407 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [52:08, 01:51](399 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [51:51, 01:46](469 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [51:04, 01:25](329 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:53] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [50:23, 02:05](498 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:25, 09:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [50:21, 02:44](515 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [49:55, 02:25](701 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:16] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [49:28, 03:06](702 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:25, 08:39] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [49:10, 02:57](638 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [49:05, 02:53](616 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [48:16, 01:32](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:31, 10:12] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [48:16, 02:41](1814 MB) - -PASS -- COMPILE 'atml_intel' [10:31, 08:53] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:25, 05:26] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:30, 08:17] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [47:39, 02:19](3012 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [47:24, 02:44](2900 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [47:22, 02:43](2906 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:25, 04:27] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [46:37, 02:41](4377 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:27, 11:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [35:24, 02:23](3088 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:29, 11:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [34:22, 03:04](1809 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:51, 02:35](1842 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:57, 03:15](971 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:23, 02:20](1791 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:28, 11:32] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [34:23, 02:13](1803 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:12] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [40:30, 03:08](1830 MB) + +PASS -- COMPILE 's2swa_intel' [13:28, 11:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [34:23, 02:42](3118 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [34:23, 03:00](3113 MB) +PASS -- TEST 'cpld_restart_p8_intel' [22:56, 02:12](3045 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [34:23, 02:40](3139 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [22:56, 02:10](3060 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [34:23, 02:28](3354 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [34:23, 01:58](3107 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [34:24, 02:21](3060 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [34:23, 02:59](3120 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [34:32, 05:26](4109 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:33, 04:52](4253 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [34:23, 02:56](3096 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 10:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [35:24, 01:43](1824 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:24, 02:48](1881 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:18] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [35:24, 01:58](1871 MB) + +PASS -- COMPILE 's2s_intel' [11:28, 10:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [36:22, 01:51](2862 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [36:22, 02:27](2866 MB) +PASS -- TEST 'cpld_restart_c48_intel' [31:25, 02:18](2281 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 16:05] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [30:20, 02:59](3124 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [34:23, 02:03](1823 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:55, 02:31](1002 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:08, 02:39](1799 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:11] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:10, 01:46](1853 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:24, 08:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [25:58, 01:23](566 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [25:58, 02:15](1462 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:58, 02:09](1467 MB) +PASS -- TEST 'control_latlon_intel' [25:58, 02:09](1468 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:58, 02:19](1468 MB) +PASS -- TEST 'control_c48_intel' [25:57, 02:31](1562 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [25:57, 01:45](693 MB) +PASS -- TEST 'control_c192_intel' [25:58, 02:04](1588 MB) +PASS -- TEST 'control_c384_intel' [26:02, 02:19](1873 MB) +PASS -- TEST 'control_c384gdas_intel' [24:57, 02:53](1065 MB) +PASS -- TEST 'control_stochy_intel' [24:42, 01:28](522 MB) +PASS -- TEST 'control_stochy_restart_intel' [21:11, 02:03](328 MB) +PASS -- TEST 'control_lndp_intel' [23:57, 01:31](521 MB) +PASS -- TEST 'control_iovr4_intel' [23:47, 01:44](517 MB) +PASS -- TEST 'control_iovr5_intel' [23:47, 01:43](517 MB) +PASS -- TEST 'control_p8_intel' [22:39, 02:25](1756 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [22:39, 02:57](1751 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [20:29, 02:24](1756 MB) +PASS -- TEST 'control_restart_p8_intel' [16:05, 02:58](908 MB) +PASS -- TEST 'control_noqr_p8_intel' [20:29, 02:23](1752 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [13:57, 02:02](918 MB) +PASS -- TEST 'control_decomp_p8_intel' [20:29, 02:20](1753 MB) +PASS -- TEST 'control_2threads_p8_intel' [20:11, 02:40](1844 MB) +PASS -- TEST 'control_p8_lndp_intel' [20:07, 02:11](1760 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [20:06, 02:05](1809 MB) +PASS -- TEST 'control_p8_mynn_intel' [19:59, 02:47](1764 MB) +PASS -- TEST 'merra2_thompson_intel' [19:19, 03:11](1765 MB) +PASS -- TEST 'regional_control_intel' [19:16, 02:11](835 MB) +PASS -- TEST 'regional_restart_intel' [11:24, 01:20](836 MB) +PASS -- TEST 'regional_decomp_intel' [18:48, 01:56](821 MB) +PASS -- TEST 'regional_2threads_intel' [18:14, 02:10](893 MB) +PASS -- TEST 'regional_noquilt_intel' [17:42, 01:19](1168 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [17:06, 01:31](838 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [16:14, 01:13](843 MB) +PASS -- TEST 'regional_wofs_intel' [16:03, 02:21](1568 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:17] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [15:07, 02:57](905 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:58, 02:09](1051 MB) +PASS -- TEST 'rap_decomp_intel' [13:40, 02:36](906 MB) +PASS -- TEST 'rap_2threads_intel' [13:35, 02:16](986 MB) +PASS -- TEST 'rap_restart_intel' [04:41, 03:17](772 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:31, 02:53](900 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:10, 02:13](901 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [02:24, 02:43](772 MB) +PASS -- TEST 'hrrr_control_intel' [12:42, 02:33](900 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:20, 02:17](901 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:18, 02:47](973 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:39, 02:03](728 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:08, 03:04](896 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:02, 01:53](1858 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:55, 02:22](1841 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 07:53] +PASS -- TEST 'control_csawmg_intel' [26:01, 01:32](856 MB) +PASS -- TEST 'control_ras_intel' [26:01, 01:55](554 MB) + +PASS -- COMPILE 'wam_intel' [09:22, 07:53] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [26:01, 01:36](1553 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:24, 08:08] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [11:12, 03:01](1759 MB) +PASS -- TEST 'regional_control_faster_intel' [11:10, 01:22](836 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:44] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:03, 01:47](1494 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:01, 01:53](1502 MB) +PASS -- TEST 'control_stochy_debug_intel' [10:58, 01:45](695 MB) +PASS -- TEST 'control_lndp_debug_intel' [10:33, 02:01](697 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:08, 02:26](997 MB) +PASS -- TEST 'control_ras_debug_intel' [09:29, 01:32](704 MB) +PASS -- TEST 'control_diag_debug_intel' [09:05, 02:24](1554 MB) +PASS -- TEST 'control_debug_p8_intel' [08:24, 02:13](1789 MB) +PASS -- TEST 'regional_debug_intel' [06:42, 01:59](885 MB) +PASS -- TEST 'rap_control_debug_intel' [06:19, 01:30](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:15, 01:42](1068 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:08, 01:37](1072 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:48, 01:39](1071 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:48, 01:39](1077 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:47, 01:40](1161 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:29, 01:33](1077 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:06, 01:30](1078 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:46, 01:38](1080 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:28, 02:17](1082 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:24, 01:23](1069 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [03:42, 02:12](1073 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [03:37, 01:59](1072 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [02:57, 01:19](1071 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [02:39, 01:44](1077 MB) +PASS -- TEST 'rap_flake_debug_intel' [02:26, 01:40](1076 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [02:22, 02:45](1082 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:24] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [28:02, 02:12](1582 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 07:45] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:10, 02:18](908 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:47, 02:10](780 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:34, 03:26](778 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:11, 02:20](837 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [00:58, 03:03](826 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [00:25, 03:07](775 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [53:29, 02:57](676 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [54:42, 01:55](656 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 07:51] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [00:09, 01:55](989 MB) +PASS -- TEST 'conus13km_2threads_intel' [54:13, 01:57](989 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [53:58, 01:58](862 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 07:52] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [58:51, 02:09](803 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:30] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [58:43, 01:43](954 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [58:39, 02:07](951 MB) +PASS -- TEST 'conus13km_debug_intel' [58:17, 02:22](1041 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [58:16, 02:09](709 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [58:04, 01:53](1042 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [58:00, 01:34](1105 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:24] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [57:37, 01:25](979 MB) + +PASS -- COMPILE 'hafsw_intel' [10:32, 09:11] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [57:35, 02:43](599 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:09, 02:16](943 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [57:06, 02:38](644 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [56:56, 03:11](671 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [56:01, 03:09](691 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [55:29, 02:35](373 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [55:11, 02:41](390 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [55:05, 02:06](521 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [54:54, 03:50](364 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [54:43, 02:02](402 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [53:56, 01:50](398 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [53:38, 02:15](473 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:36, 01:47](306 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:50] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [53:26, 02:36](496 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:36, 09:07] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:14, 02:05](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [51:58, 02:45](697 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:38, 09:26] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [50:15, 02:13](702 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:35, 08:45] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [49:59, 02:59](639 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [49:47, 02:27](616 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [49:11, 02:01](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:37, 10:00] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [48:56, 01:50](1814 MB) + +PASS -- COMPILE 'atml_intel' [10:23, 08:46] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:20, 05:18] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [09:37, 08:10] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [48:56, 02:38](3013 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [48:55, 02:56](2894 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [48:27, 02:53](2878 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:25] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [48:18, 02:24](4377 MB) SYNOPSIS: -Starting Date/Time: 20240920 13:13:13 -Ending Date/Time: 20240920 14:42:02 -Total Time: 01h:29m:26s +Starting Date/Time: 20240926 17:11:54 +Ending Date/Time: 20240926 18:40:15 +Total Time: 01h:28m:50s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/rt.sh b/tests/rt.sh index fd8976c10c..1b3b9fa5b2 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -625,8 +625,8 @@ while getopts ":a:b:cl:mn:dwkreovh" opt; do SRT_NAME="${SINGLE_OPTS[0]}" SRT_COMPILER="${SINGLE_OPTS[1]}" - if [[ "${SRT_COMPILER}" != "intel" ]] && [[ "${SRT_COMPILER}" != "gnu" ]]; then - die "COMPILER MUST BE 'intel' OR 'gnu'" + if [[ "${SRT_COMPILER}" != "intel" ]] && [[ "${SRT_COMPILER}" != "intelllvm" ]] && [[ "${SRT_COMPILER}" != "gnu" ]]; then + die "COMPILER MUST BE 'intel' OR 'intelllvm' OR 'gnu'" fi ;; d) diff --git a/tests/rt_intelllvm.conf b/tests/rt_intelllvm.conf new file mode 100644 index 0000000000..cd3069555b --- /dev/null +++ b/tests/rt_intelllvm.conf @@ -0,0 +1,324 @@ +### RT.CONF FORMATTING ### +# COMPILE Line ( Items separated by a | ) +# Item 1: COMPILE - This tells rt.conf the following information is to be used in setting up a compile job +# Item 2: Compile name - The rt.sh will add _gnu or _intel to it. There must be no duplicate names for each compiler. +# If two compilations are identical except compiler, please use the same name for each. +# Item 3: Compiler to use in build (intel or gnu) +# Item 4: CMAKE Options - Provide all CMAKE options for the build +# Item 5: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines) +## -> EX: + hera orion gaea = compile will only run on hera orion and gaea machines +## -> EX: - wcoss2 acorn = compile will NOT be run on wcoss2 or acorn +# Item 6: [set as fv3]. Used to control the compile job only if FV3 was present, previously used to run a test w/o compiling code +# +# RUN Line ( Items separated by a | ) +## NOTE: The build resulting from the COMPILE line above the RUN line will be used to run the test +# Item 1: RUN - This tells rt.conf the following information is to be used in setting up a model run +# Item 2: Test name. (Which test in the tests/tests directory should be sourced) +# Item 3: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines). +## reference example above +# Item 4: Controls whether the run creates its own baseline or it uses the baseline from a different (control) test. +# Item 5: Test name to compare baselines with if not itself. + +### IntelLLVM Tests ### +### S2S tests ### +COMPILE | s2swa_32bit | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | +RUN | cpld_control_p8_mixedmode | - noaacloud | baseline | + +#GFS +COMPILE | s2swa_32bit_pdlib | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | +RUN | cpld_control_gfsv17 | - noaacloud | baseline | +RUN | cpld_control_gfsv17_iau | - noaacloud | baseline | cpld_control_gfsv17 +RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17 +RUN | cpld_mpi_gfsv17 | - noaacloud | | + +#SFS +COMPILE | s2swa_32bit_pdlib_sfs | intelllvm | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | +RUN | cpld_control_sfs | - noaacloud | baseline | + +COMPILE | s2swa_32bit_pdlib_debug | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 | +RUN | cpld_debug_gfsv17 | - noaacloud jet derecho | baseline | + +COMPILE | s2swa | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_p8 | - noaacloud | baseline | +RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline | +RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 +RUN | cpld_control_qr_p8 | - noaacloud | | +RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8 +RUN | cpld_2threads_p8 | - noaacloud | | +RUN | cpld_decomp_p8 | - noaacloud | | +RUN | cpld_mpi_p8 | - noaacloud | | +RUN | cpld_control_ciceC_p8 | - noaacloud | baseline | +RUN | cpld_control_c192_p8 | - wcoss2 jet acorn s4 noaacloud | baseline | +RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 noaacloud | | cpld_control_c192_p8 +RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline | +RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8 + +# Aerosol, no Wave +RUN | cpld_s2sa_p8 | - noaacloud | baseline | + +COMPILE | s2sw | intelllvm | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_noaero_p8 | | baseline | +RUN | cpld_control_nowave_noaero_p8 | - noaacloud | baseline | + +COMPILE | s2swa_debug | intelllvm | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | +RUN | cpld_debug_p8 | - wcoss2 acorn noaacloud | baseline | + +COMPILE | s2sw_debug | intelllvm | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | +RUN | cpld_debug_noaero_p8 | - wcoss2 acorn noaacloud | baseline | + +# Waves and aerosol off for computing fluxes in mediator +COMPILE | s2s_aoflux | intelllvm | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON | | fv3 | +RUN | cpld_control_noaero_p8_agrid | | baseline | + +COMPILE | s2s | intelllvm | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_c48 | | baseline | +RUN | cpld_warmstart_c48 | - noaacloud | baseline | +RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48 + +COMPILE | s2swa_faster | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - noaacloud | fv3 | +RUN | cpld_control_p8_faster | - noaacloud | baseline | + +# Unstructured WW3 mesh +COMPILE | s2sw_pdlib | intelllvm | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | - noaacloud | fv3 | +RUN | cpld_control_pdlib_p8 | - noaacloud | baseline | +RUN | cpld_restart_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 +RUN | cpld_mpi_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 + +COMPILE | s2sw_pdlib_debug | intelllvm | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | cpld_debug_pdlib_p8 | - noaacloud | baseline | + +### ATM tests ### +COMPILE | atm_dyn32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 | +RUN | control_flake | | baseline | +RUN | control_CubedSphereGrid | | baseline | +RUN | control_CubedSphereGrid_parallel | - noaacloud | baseline | +RUN | control_latlon | | baseline | +RUN | control_wrtGauss_netcdf_parallel | | baseline | +RUN | control_c48 | | baseline | +RUN | control_c48.v2.sfc | | baseline | +RUN | control_c192 | - noaacloud | baseline | +RUN | control_c384 | | baseline | +RUN | control_c384gdas | - noaacloud | baseline | +RUN | control_stochy | | baseline | +RUN | control_stochy_restart | - noaacloud | | control_stochy +RUN | control_lndp | | baseline | +RUN | control_iovr4 | | baseline | +RUN | control_iovr5 | | baseline | +RUN | control_p8 | - noaacloud | baseline | +RUN | control_p8.v2.sfc | - noaacloud | baseline | +RUN | control_p8_ugwpv1 | - noaacloud | baseline | +RUN | control_restart_p8 | - noaacloud | | control_p8 +RUN | control_noqr_p8 | - noaacloud | | +RUN | control_restart_noqr_p8 | - noaacloud | | control_noqr_p8 +RUN | control_decomp_p8 | - noaacloud | | +RUN | control_2threads_p8 | - noaacloud | | +RUN | control_p8_lndp | | baseline | +RUN | control_p8_rrtmgp | - noaacloud | baseline | +RUN | control_p8_mynn | - noaacloud | baseline | +RUN | merra2_thompson | - noaacloud | baseline | +RUN | regional_control | | baseline | +RUN | regional_restart | - noaacloud | | regional_control +RUN | regional_decomp | - noaacloud | | +RUN | regional_2threads | - derecho noaacloud | | +RUN | regional_noquilt | - jet s4 | baseline | +RUN | regional_netcdf_parallel | - acorn | baseline | +RUN | regional_2dwrtdecomp | | | +RUN | regional_wofs | - jet s4 | baseline | + +COMPILE | ifi | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON | + acorn | fv3 | +RUN | regional_ifi_control | + acorn | baseline | +RUN | regional_ifi_decomp | + acorn | | +RUN | regional_ifi_2threads | + acorn | | + +COMPILE | rrfs | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | +RUN | rap_control | | baseline | +RUN | regional_spp_sppt_shum_skeb | | baseline | +RUN | rap_decomp | - noaacloud | | +RUN | rap_2threads | - noaacloud | | +RUN | rap_restart | - noaacloud | | rap_control +RUN | rap_sfcdiff | - noaacloud | baseline | +RUN | rap_sfcdiff_decomp | - noaacloud | | +RUN | rap_sfcdiff_restart | - noaacloud | | rap_sfcdiff +RUN | hrrr_control | - noaacloud | baseline | +RUN | hrrr_control_decomp | - noaacloud | | +RUN | hrrr_control_2threads | - noaacloud | | +RUN | hrrr_control_restart | - noaacloud | | hrrr_control +RUN | rrfs_v1beta | | baseline | +RUN | rrfs_v1nssl | | baseline | +RUN | rrfs_v1nssl_nohailnoccn | | baseline | + +COMPILE | csawmg | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 | +RUN | control_csawmg | - noaacloud | baseline | +RUN | control_ras | - noaacloud | baseline | + +# Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere +COMPILE | wam | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON | - noaacloud | fv3 | +RUN | control_wam | - noaacloud | baseline | + +COMPILE | atm_faster_dyn32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON | | fv3 | +RUN | control_p8_faster | - noaacloud | baseline | +RUN | regional_control_faster | | baseline | + +### DEBUG ATM tests ### +COMPILE | atm_debug_dyn32 | intelllvm | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | - noaacloud | fv3 | +RUN | control_CubedSphereGrid_debug | - noaacloud | baseline | +RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud | baseline | +RUN | control_stochy_debug | - noaacloud | baseline | +RUN | control_lndp_debug | - noaacloud | baseline | +RUN | control_csawmg_debug | - noaacloud | baseline | +RUN | control_ras_debug | - noaacloud | baseline | +RUN | control_diag_debug | - noaacloud | baseline | +RUN | control_debug_p8 | - noaacloud | baseline | +RUN | regional_debug | - noaacloud | baseline | +RUN | rap_control_debug | - noaacloud | baseline | +RUN | hrrr_control_debug | - noaacloud | baseline | +RUN | hrrr_gf_debug | - noaacloud | baseline | +RUN | hrrr_c3_debug | - noaacloud | baseline | +RUN | rap_unified_drag_suite_debug | - noaacloud | | +RUN | rap_diag_debug | - noaacloud | baseline | +RUN | rap_cires_ugwp_debug | - noaacloud | baseline | +RUN | rap_unified_ugwp_debug | - noaacloud | | +RUN | rap_lndp_debug | - noaacloud | baseline | +RUN | rap_progcld_thompson_debug | - noaacloud | baseline | +RUN | rap_noah_debug | - noaacloud | baseline | +RUN | rap_sfcdiff_debug | - noaacloud | baseline | +RUN | rap_noah_sfcdiff_cires_ugwp_debug | - noaacloud | baseline | +RUN | rrfs_v1beta_debug | - noaacloud | baseline | +RUN | rap_clm_lake_debug | - noaacloud | baseline | +RUN | rap_flake_debug | - noaacloud | baseline | +RUN | gnv1_c96_no_nest_debug | - noaacloud | baseline | + +COMPILE | wam_debug | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | control_wam_debug | - noaacloud | baseline | + +### 32-bit physics tests ### +COMPILE | rrfs_dyn32_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | +RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | - noaacloud | baseline | +RUN | rap_control_dyn32_phy32 | - noaacloud | baseline | +RUN | hrrr_control_dyn32_phy32 | - noaacloud | baseline | +RUN | rap_2threads_dyn32_phy32 | - noaacloud | | +RUN | hrrr_control_2threads_dyn32_phy32 | - noaacloud | | +RUN | hrrr_control_decomp_dyn32_phy32 | - noaacloud | | +RUN | rap_restart_dyn32_phy32 | - noaacloud | | rap_control_dyn32_phy32 +RUN | hrrr_control_restart_dyn32_phy32 | - noaacloud | | hrrr_control_dyn32_phy32 + +COMPILE | rrfs_dyn32_phy32_faster | intelllvm | -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | +RUN | conus13km_control | - noaacloud | baseline | +RUN | conus13km_2threads | - noaacloud | | conus13km_control +RUN | conus13km_restart_mismatch | - noaacloud | baseline | conus13km_control + +# Expected to fail: +# RUN | conus13km_restart | - noaacloud | | conus13km_control +# RUN | conus13km_decomp | - noaacloud | | conus13km_control + +COMPILE | rrfs_dyn64_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | - noaacloud | fv3 | +RUN | rap_control_dyn64_phy32 | - noaacloud | baseline | + +COMPILE | rrfs_dyn32_phy32_debug | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline | +RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline | +RUN | conus13km_debug | - noaacloud | baseline | +RUN | conus13km_debug_qr | - noaacloud | | +RUN | conus13km_debug_2threads | - noaacloud | | +RUN | conus13km_radar_tten_debug | - noaacloud | baseline | + +# Expected to fail: +# RUN | conus13km_debug_decomp | - noaacloud | | + +COMPILE | rrfs_dyn64_phy32_debug | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | rap_control_dyn64_phy32_debug | - noaacloud | baseline | + +### HAFS tests ### +COMPILE | hafsw | intelllvm | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON | | fv3 | +RUN | hafs_regional_atm | | baseline | +RUN | hafs_regional_atm_thompson_gfdlsf | | baseline | +RUN | hafs_regional_atm_ocn | | baseline | +RUN | hafs_regional_atm_wav | | baseline | +RUN | hafs_regional_atm_ocn_wav | - noaacloud | baseline | +RUN | hafs_regional_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_telescopic_2nests_atm | - jet s4 noaacloud | baseline | +RUN | hafs_global_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_global_multiple_4nests_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_specified_moving_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet s4 noaacloud | baseline | +RUN | hafs_global_storm_following_1nest_atm | - jet s4 noaacloud | baseline | + +# This probably works on S4, but I cannot know for certain. I don't have access to the machine. +RUN | gnv1_nested | - wcoss2 s4 noaacloud | baseline | + +COMPILE | hafsw_debug | intelllvm | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - jet noaacloud s4 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 noaacloud | baseline | + +COMPILE | hafsw_faster | intelllvm | -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON | -jet noaacloud s4 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_inline | - jet s4 noaacloud | baseline | + +COMPILE | hafs_mom6w | intelllvm | -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON | -jet noaacloud s4 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 | - jet s4 noaacloud | baseline | + +COMPILE | hafs_all | intelllvm | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - noaacloud | fv3 | +RUN | hafs_regional_docn | - noaacloud | baseline | +RUN | hafs_regional_docn_oisst | - noaacloud | baseline | +RUN | hafs_regional_datm_cdeps | - jet s4 noaacloud | baseline | + +### CDEPS Data Atmosphere tests ### +COMPILE | datm_cdeps | intelllvm | -DAPP=NG-GODAS | - wcoss2 | fv3 | +RUN | datm_cdeps_control_cfsr | - wcoss2 | baseline | +RUN | datm_cdeps_restart_cfsr | - wcoss2 noaacloud | | datm_cdeps_control_cfsr +RUN | datm_cdeps_control_gefs | - wcoss2 | baseline | +RUN | datm_cdeps_iau_gefs | - wcoss2 | baseline | +RUN | datm_cdeps_stochy_gefs | - wcoss2 | baseline | +RUN | datm_cdeps_ciceC_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_bulk_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_bulk_gefs | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_mx025_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_mx025_gefs | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_multiple_files_cfsr | - wcoss2 noaacloud | | +RUN | datm_cdeps_3072x1536_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_gfs | - wcoss2 noaacloud | baseline | + +COMPILE | datm_cdeps_debug | intelllvm | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss2 acorn noaacloud | fv3 | +RUN | datm_cdeps_debug_cfsr | - wcoss2 acorn noaacloud | baseline | + +COMPILE | datm_cdeps_faster | intelllvm | -DAPP=NG-GODAS -DFASTER=ON | - wcoss2 | fv3 | +RUN | datm_cdeps_control_cfsr_faster | - wcoss2 | baseline | + +### CDEPS Data Atmosphere tests with LND ### +COMPILE | datm_cdeps_land | intelllvm | -DAPP=LND | - wcoss2 | fv3 | +RUN | datm_cdeps_lnd_gswp3 | - wcoss2 | baseline | +RUN | datm_cdeps_lnd_era5 | - wcoss2 | baseline | +RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_era5 + +### AMIP+ tests ### +COMPILE | atm_ds2s_docn_pcice | intelllvm | -DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | atm_ds2s_docn_pcice | - noaacloud | baseline | +COMPILE | atm_ds2s_docn_dice | intelllvm | -DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 acorn | fv3 | +RUN | atm_ds2s_docn_dice | - noaacloud wcoss2 acorn | baseline | cpld_control_nowave_noaero_p8 + +### ATM-LND tests ### +COMPILE | atml | intelllvm | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON | | fv3 | +RUN | control_p8_atmlnd_sbs | - noaacloud wcoss2 | baseline | +RUN | control_p8_atmlnd | - noaacloud wcoss2 | baseline | +RUN | control_restart_p8_atmlnd | - noaacloud wcoss2 | | control_p8_atmlnd + +COMPILE | atml_debug | intelllvm | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DDEBUG=ON | | fv3 | +RUN | control_p8_atmlnd_debug | - noaacloud wcoss2 | baseline | + +### ATM-WAV tests ### +#mediator (cmeps) +COMPILE | atmw | intelllvm | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - wcoss2 | fv3 | +RUN | atmwav_control_noaero_p8 | - wcoss2 | baseline | + +### ATM-GOCART tests ### +COMPILE | atmaero | intelllvm | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - noaacloud | fv3 | +RUN | atmaero_control_p8 | - noaacloud | baseline | +RUN | atmaero_control_p8_rad | - noaacloud | baseline | +RUN | atmaero_control_p8_rad_micro | - noaacloud | baseline | + +### ATM-CMAQ tests ### +#COMPILE | atmaq | intelllvm | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 | +#RUN | regional_atmaq | - jet s4 | baseline | + +COMPILE | atmaq_debug | intelllvm | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud s4 | fv3 | +RUN | regional_atmaq_debug | - jet s4 noaacloud | baseline | diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 86df50569f..e56321cb3d 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -213,7 +213,7 @@ submit_and_wait() { job_running=true else job_running=false - job_info=$( sacct -n -j "${jobid}" --format=JobID,state%20,Jobname%64 | grep "^${jobid}" | grep "${JBNME}" ) + job_info=$( sacct -n -j "${jobid}" --format=JobID,state%20,Jobname%128 | grep "^${jobid}" | grep "${JBNME}" ) fi # Getting the status letter from scheduler info status=$( grep "${jobid}" <<< "${job_info}" ) @@ -599,6 +599,7 @@ ecflow_run() { fi "${PATHRT}/abort_dep_tasks.py" done + echo sleep 65 # wait one ECF_INTERVAL plus 5 seconds echo "rt_utils.sh: ECFLOW tasks completed, cleaning up suite" diff --git a/tests/run_test.sh b/tests/run_test.sh index 8f5c0a02bf..75808abad7 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -117,9 +117,9 @@ case ${MACHINE_ID} in echo "No special nccmp load necessary" ;; gaea) - module use modulefiles - module load modules.fv3 - module load gcc/12.2.0 + module use /ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core + module load stack-intel/2023.1.0 stack-cray-mpich/8.1.25 + module load nccmp/1.9.0.1 ;; derecho) module load nccmp diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 1f64f8b861..72debc6f49 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -111,6 +111,9 @@ export N_SPLIT=5 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi +if [[ $MACHINE_ID = gaea ]] && [[ $RT_COMPILER = intelllvm ]]; then + WLCLK=40 +fi # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index 47b41d2da9..90e02daccb 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -101,6 +101,15 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = hera && $RT_COMPILER = gnu ]] || [[ $MACHINE_ID = jet ]]; then WLCLK=50 fi +if [[ $MACHINE_ID = hercules && $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi +if [[ $MACHINE_ID = orion && $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi +if [[ $MACHINE_ID = gaea ]] && [[ $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi export K_SPLIT=2 export N_SPLIT=5 diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug index 46ff346b68..f4f6326b90 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -40,3 +40,7 @@ NTILES=1 if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi + +if [[ $MACHINE_ID = gaea && $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi From ee3323122b0391acd919512276621a56b6c9868f Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 2 Oct 2024 01:35:58 +0000 Subject: [PATCH 32/33] Synced FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 1b2c665998..afb09b5be4 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1b2c6659987b04f7b823d17a416fd65fa59889ba +Subproject commit afb09b5be4b64b1f390671350189d76b7182444a From 55f4f66d4d66fa388e91f959aae3d7a44b75c3fa Mon Sep 17 00:00:00 2001 From: Dustin Swales Date: Wed, 2 Oct 2024 15:34:55 +0000 Subject: [PATCH 33/33] Updated FV3 submodule hash --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index afb09b5be4..f5712486a2 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit afb09b5be4b64b1f390671350189d76b7182444a +Subproject commit f5712486a2090beab2c9bb33a80c4ec703db749e