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 +