diff --git a/.cicd/Jenkinsfile b/.cicd/Jenkinsfile index 79949045ac..8a1f3c2133 100644 --- a/.cicd/Jenkinsfile +++ b/.cicd/Jenkinsfile @@ -187,20 +187,18 @@ pipeline { } post { success { - node('built-in') { - echo 'This will run only if successful.' - sh ''' - aws sns publish --topic-arn "arn:aws:sns:us-east-1:${AWS_PROD_ACCOUNT_ID}:${AWS_PROD_SNS_TOPIC}" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":sunny: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *succeeded*"}}' - ''' - } + slackSend ( + channel: '#jenkins-notifications', + color: 'good', + message: "*SUCCESS: Build ${env.JOB_NAME} #${env.BUILD_NUMBER}* <${env.BUILD_URL}|Open Build>" + ) } failure { - node('built-in') { - echo 'This will run only if the run was marked as unstable.' - sh ''' - aws sns publish --topic-arn "arn:aws:sns:us-east-1:${AWS_PROD_ACCOUNT_ID}:${AWS_PROD_SNS_TOPIC}" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":warning: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *failed!*"}}' - ''' - } + slackSend ( + channel: '#jenkins-notifications', + color: 'danger', + message: "*FAILURE: Build ${env.JOB_NAME} #${env.BUILD_NUMBER}* <${env.BUILD_URL}|Open Build>" + ) } always { script { diff --git a/.gitmodules b/.gitmodules index b881f89393..120504e454 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,8 +4,10 @@ branch = develop [submodule "WW3"] path = WW3 - url = https://github.com/NOAA-EMC/WW3 - branch = dev/ufs-weather-model + #url = https://github.com/NOAA-EMC/WW3 + url = https://github.com/mingchen-NOAA/WW3 + #branch = dev/ufs-weather-model + branch = develop2devufswmplusfixwarnings [submodule "stochastic_physics"] path = stochastic_physics url = https://github.com/NOAA-PSL/stochastic_physics diff --git a/AQM b/AQM index 14819db71f..2c1cec7dd4 160000 --- a/AQM +++ b/AQM @@ -1 +1 @@ -Subproject commit 14819db71fb970d2d0e722a96a215a67f296e8a8 +Subproject commit 2c1cec7dd4d7a477abd2ae204db4a78295c24f16 diff --git a/CDEPS-interface/CMakeLists.txt b/CDEPS-interface/CMakeLists.txt index 27da41e1c5..b0781aa38d 100644 --- a/CDEPS-interface/CMakeLists.txt +++ b/CDEPS-interface/CMakeLists.txt @@ -32,7 +32,7 @@ set_target_properties(share PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_ target_include_directories(share PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/ufs/cdeps_share) target_include_directories(share PRIVATE $) target_compile_definitions(share PRIVATE ${CDEPS_SHARE_DEFS}) -target_link_libraries(share PRIVATE esmf) +target_link_libraries(share PRIVATE ESMF::ESMF) # CDEPS/streams add_library(streams OBJECT ${cdeps_streams_files}) @@ -41,7 +41,7 @@ set_target_properties(streams PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURREN target_include_directories(streams PRIVATE $) target_compile_definitions(streams PUBLIC "DISABLE_FoX") target_link_libraries(streams PRIVATE share) -target_link_libraries(streams PRIVATE esmf PIO::PIO_Fortran) +target_link_libraries(streams PRIVATE ESMF::ESMF PIO::PIO_Fortran) # CDEPS/dshr add_library(dshr OBJECT ${cdeps_dshr_files}) @@ -49,7 +49,7 @@ add_dependencies(dshr share streams) set_target_properties(dshr PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(dshr PRIVATE $) target_link_libraries(dshr PRIVATE share streams) -target_link_libraries(dshr PRIVATE esmf PIO::PIO_Fortran) +target_link_libraries(dshr PRIVATE ESMF::ESMF PIO::PIO_Fortran) # CDEPS/datm add_library(datm OBJECT ${cdeps_datm_files}) @@ -57,7 +57,7 @@ add_dependencies(datm share streams dshr) set_target_properties(datm PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(datm PRIVATE $) target_link_libraries(datm PRIVATE dshr share streams) -target_link_libraries(datm PRIVATE esmf PIO::PIO_Fortran) +target_link_libraries(datm PRIVATE ESMF::ESMF PIO::PIO_Fortran) # CDEPS/dice add_library(dice OBJECT ${cdeps_dice_files}) @@ -65,7 +65,7 @@ add_dependencies(dice share streams dshr) set_target_properties(dice PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(dice PRIVATE $) target_link_libraries(dice PRIVATE dshr share streams) -target_link_libraries(dice PRIVATE esmf) +target_link_libraries(dice PRIVATE ESMF::ESMF) # CDEPS/dlnd add_library(dlnd OBJECT ${cdeps_dlnd_files}) @@ -73,7 +73,7 @@ add_dependencies(dlnd share streams dshr) set_target_properties(dlnd PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(dlnd PRIVATE $) target_link_libraries(dlnd PRIVATE dshr share streams) -target_link_libraries(dlnd PRIVATE esmf) +target_link_libraries(dlnd PRIVATE ESMF::ESMF) # CDEPS/docn add_library(docn OBJECT ${cdeps_docn_files}) @@ -81,7 +81,7 @@ add_dependencies(docn share streams dshr) set_target_properties(docn PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(docn PRIVATE $) target_link_libraries(docn PRIVATE dshr share streams) -target_link_libraries(docn PRIVATE esmf PIO::PIO_Fortran) +target_link_libraries(docn PRIVATE ESMF::ESMF PIO::PIO_Fortran) # CDEPS/drof add_library(drof OBJECT ${cdeps_drof_files}) @@ -89,7 +89,7 @@ add_dependencies(drof share streams dshr) set_target_properties(drof PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(drof PRIVATE $) target_link_libraries(drof PRIVATE dshr share streams) -target_link_libraries(drof PRIVATE esmf) +target_link_libraries(drof PRIVATE ESMF::ESMF) # CDEPS/dwav add_library(dwav OBJECT ${cdeps_dwav_files}) @@ -97,7 +97,7 @@ add_dependencies(dwav share streams dshr) set_target_properties(dwav PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(dwav PRIVATE $) target_link_libraries(dwav PRIVATE dshr share streams) -target_link_libraries(dwav PRIVATE esmf) +target_link_libraries(dwav PRIVATE ESMF::ESMF) # CDEPS/dglc add_library(dglc OBJECT ${cdeps_dglc_files}) @@ -105,7 +105,7 @@ add_dependencies(dglc share streams dshr) set_target_properties(dglc PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(dglc PRIVATE $) target_link_libraries(dglc PRIVATE dshr share streams) -target_link_libraries(dglc PRIVATE esmf PIO::PIO_Fortran) +target_link_libraries(dglc PRIVATE ESMF::ESMF PIO::PIO_Fortran) # CDEPS add_library(cdeps STATIC $ @@ -121,7 +121,7 @@ add_library(cdeps STATIC $ add_library(cdeps::cdeps ALIAS cdeps) target_include_directories(cdeps PUBLIC $ $) -target_link_libraries(cdeps PUBLIC esmf PIO::PIO_Fortran) +target_link_libraries(cdeps PUBLIC ESMF::ESMF PIO::PIO_Fortran) list(APPEND LIB_TARGETS cdeps) ############################################################################### diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 90ed2522ba..c90ee5a0e7 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 90ed2522ba8dd04d75237a77aae6b49e7acca523 +Subproject commit c90ee5a0e72ecc9cbee4694e95df228d01f8d7dd diff --git a/CICE-interface/CMakeLists.txt b/CICE-interface/CMakeLists.txt index f90563e56b..82492a8813 100644 --- a/CICE-interface/CMakeLists.txt +++ b/CICE-interface/CMakeLists.txt @@ -103,7 +103,7 @@ set_target_properties(cice PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_B target_compile_definitions(cice PUBLIC "${_cice_defs}") target_include_directories(cice PUBLIC $ $) -target_link_libraries(cice PUBLIC esmf) +target_link_libraries(cice PUBLIC ESMF::ESMF) if(CICE_IO MATCHES "^(NetCDF|PIO)$") target_link_libraries(cice PUBLIC NetCDF::NetCDF_Fortran) if(CICE_IO MATCHES "PIO") diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index eff7bbc61b..938ee56332 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -188,7 +188,7 @@ set_target_properties(cmeps PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_ target_include_directories(cmeps PUBLIC $ $) target_compile_definitions(cmeps PRIVATE ${CDEPS_SHARE_DEFS}) -target_link_libraries(cmeps PUBLIC esmf +target_link_libraries(cmeps PUBLIC ESMF::ESMF PIO::PIO_Fortran) if(OpenMP_Fortran_FOUND) target_link_libraries(cmeps PRIVATE OpenMP::OpenMP_Fortran) diff --git a/CMakeLists.txt b/CMakeLists.txt index 28ace8c64d..4f68041c40 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,10 @@ if (CMAKE_Fortran_COMPILER_ID MATCHES "GNU" AND CMAKE_Fortran_COMPILER_VERSION V message(FATAL_ERROR "GNU Compiler >= 9 is required") endif() -list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) +set(CMAKE_Platform $ENV{CMAKE_Platform}) + +list(APPEND CMAKE_MODULE_PATH $ENV{ESMF_ROOT}/cmake) +list(APPEND CMAKE_MODULE_PATH $ENV{esmf_ROOT}/cmake) list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) ############################################################################### @@ -84,7 +87,6 @@ set(PDLIB_BT4 OFF CACHE BOOL "Enable Domain Decomposition in WW3 via PDLIB set(CDEPS_INLINE OFF CACHE BOOL "Enable CDEPS inline capability") set(HYDRO OFF CACHE BOOL "Enable hydrostatic set") -set(CMAKE_Platform $ENV{CMAKE_Platform}) if(CMAKE_Platform) message("") if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/cmake/configure_${CMAKE_Platform}.cmake) @@ -160,8 +162,8 @@ if(OPENMP) endif() find_package(NetCDF 4.7.4 REQUIRED C Fortran) +set(USE_ESMF_STATIC_LIBS ON) find_package(ESMF 8.8.0 MODULE REQUIRED) -#add_library(ESMF::ESMF ALIAS esmf) if(FMS) find_package(FMS 2022.04 REQUIRED COMPONENTS R4 R8) if(APP MATCHES "^(HAFSW)$") @@ -330,7 +332,7 @@ if(WW3) target_link_libraries(ufs PUBLIC WW3::WW3) endif() -list(APPEND _ufs_libs_public esmf) +list(APPEND _ufs_libs_public ESMF::ESMF) if(STOCH_PHYS) list(APPEND _ufs_libs_public stochastic_physics) @@ -406,7 +408,7 @@ target_link_libraries(ufs PUBLIC "${_ufs_libs_public}") ############################################################################### add_executable(ufs_model driver/UFS.F90) add_dependencies(ufs_model ufs) -target_link_libraries(ufs_model ufs esmf w3emc::w3emc_d) +target_link_libraries(ufs_model ufs ESMF::ESMF w3emc::w3emc_d) set_target_properties(ufs_model PROPERTIES LINKER_LANGUAGE Fortran) ############################################################################### diff --git a/CMakeModules b/CMakeModules index 9b7652c75b..69049ec0c2 160000 --- a/CMakeModules +++ b/CMakeModules @@ -1 +1 @@ -Subproject commit 9b7652c75b40d9cbb40e52b824f8c0a423922757 +Subproject commit 69049ec0c26b3160c3dbe1980b2feb78470a37a6 diff --git a/HYCOM-interface/CMakeLists.txt b/HYCOM-interface/CMakeLists.txt index 7debdcbc61..5fbc76f34d 100644 --- a/HYCOM-interface/CMakeLists.txt +++ b/HYCOM-interface/CMakeLists.txt @@ -85,7 +85,7 @@ target_include_directories(hycom_nuopc_obj PRIVATE $) target_compile_definitions(hycom_nuopc_obj PRIVATE "${_hycom_defs}") target_link_libraries(hycom_nuopc_obj PRIVATE hycom_obj - esmf + ESMF::ESMF NetCDF::NetCDF_Fortran) ### Create target library and set PUBLIC interfaces on the library @@ -96,7 +96,7 @@ target_include_directories(hycom PUBLIC $ $) target_compile_definitions(hycom PRIVATE "${_hycom_defs}") -target_link_libraries(hycom PUBLIC esmf +target_link_libraries(hycom PUBLIC ESMF::ESMF NetCDF::NetCDF_Fortran) ### Create HYCOM offline executable diff --git a/LM4-driver b/LM4-driver index c4d2337d86..05a3f7ae29 160000 --- a/LM4-driver +++ b/LM4-driver @@ -1 +1 @@ -Subproject commit c4d2337d8607ec994b3cd61179eb974e0a237841 +Subproject commit 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index 8c01cd4108..a62cedc752 100644 --- a/MOM6-interface/CMakeLists.txt +++ b/MOM6-interface/CMakeLists.txt @@ -52,7 +52,7 @@ else() $) endif() target_link_libraries(mom6_obj PRIVATE fms - esmf + ESMF::ESMF stochastic_physics NetCDF::NetCDF_Fortran) # OpenMP is disabled in MOM6 @@ -73,7 +73,7 @@ endif() target_link_libraries(mom6_nuopc_obj PRIVATE mom6_obj fms stochastic_physics - esmf) + ESMF::ESMF) # OpenMP is disabled in MOM6 #if(OpenMP_Fortran_FOUND) # target_link_libraries(mom6_nuopc_obj PRIVATE OpenMP::OpenMP_Fortran) @@ -88,7 +88,7 @@ target_include_directories(mom6 PUBLIC $) target_link_libraries(mom6 PUBLIC fms stochastic_physics - esmf + ESMF::ESMF NetCDF::NetCDF_Fortran) # OpenMP is disabled in MOM6 #if(OpenMP_Fortran_FOUND) @@ -108,7 +108,7 @@ if(MOM6SOLO) target_link_libraries(mom6solo PRIVATE mom6_obj fms stochastic_physics - esmf + ESMF::ESMF NetCDF::NetCDF_Fortran) # OpenMP is disabled in MOM6 #if(OpenMP_Fortran_FOUND) diff --git a/NOAHMP-interface/CMakeLists.txt b/NOAHMP-interface/CMakeLists.txt index 4344c2818f..5974189061 100644 --- a/NOAHMP-interface/CMakeLists.txt +++ b/NOAHMP-interface/CMakeLists.txt @@ -68,7 +68,7 @@ add_library(noahmp STATIC ${_noahmp_cap_files} ${_noahmp_ccpp_files} ${_noahmp_f set_target_properties(noahmp PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(noahmp PUBLIC $ $) -target_link_libraries(noahmp PUBLIC esmf) +target_link_libraries(noahmp PUBLIC ESMF::ESMF) ############################################################################### ### Install diff --git a/UFSATM b/UFSATM index f6dc207094..deda0c0cb1 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit f6dc2070945042f89c7ab87aaaf3a6a02922b6c4 +Subproject commit deda0c0cb17c7f575525a58216152e384b29c277 diff --git a/WW3 b/WW3 index 560cb9c0f9..eba8ccfbd4 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 560cb9c0f9fdc8ec96f746576dcac6503ed14eef +Subproject commit eba8ccfbd46dd3c491f81b14028f2dd2d1f3cd54 diff --git a/ci/package.py b/ci/package.py index f792b66d08..ffb944338b 100644 --- a/ci/package.py +++ b/ci/package.py @@ -214,6 +214,8 @@ def cmake_args(self): args.append(self.define_from_variant("CCPP", "ccpp")) args.append(self.define_from_variant("QUAD_PRECISION", "quad_precision")) + args.append(self.define("CMAKE_MODULE_PATH", self.spec["esmf"].prefix.cmake)) + return args # This patch can be removed once https://github.com/NOAA-EMC/WW3/issues/1021 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 665fff4ee6..789437c189 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20251117 +export BL_DATE=20251119 diff --git a/tests/ci/Jenkinsfile.ort b/tests/ci/Jenkinsfile.ort index 5e2d93e974..42b366946c 100644 --- a/tests/ci/Jenkinsfile.ort +++ b/tests/ci/Jenkinsfile.ort @@ -17,8 +17,11 @@ pipeline { else if ((label.matches("hercules"))) { env.CHOICE_NODE='hercules' } - else if ((label.matches("jet"))) { - env.CHOICE_NODE='jet' + else if ((label.matches("gaeac6"))) { + env.CHOICE_NODE='gaeac6' + } + else if ((label.matches("ursa"))) { + env.CHOICE_NODE='ursa' } else { env.CHOICE_NODE='none' @@ -30,11 +33,14 @@ pipeline { echo "Starting up orion ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." } - else if (CHOICE_NODE == 'jet') { - echo "Starting up jet ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + else if (CHOICE_NODE == 'ursa') { + echo "Starting up ursa ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + } + else if (CHOICE_NODE == 'gaeac6') { + echo "Starting up gaeac6 ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." } else if (CHOICE_NODE == 'hercules') { - echo "Starting up hera ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + echo "Starting up hercules ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." } else if (CHOICE_NODE == 'hera') { echo "Starting up hera ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." @@ -52,6 +58,7 @@ pipeline { environment { ACCNR = 'epic' NODE_PATH = '/scratch3/NAGAPE/epic/role.epic/' + GITHUB_TOKEN = credentials('GithubJenkinsNew') } steps { @@ -70,6 +77,8 @@ pipeline { pwd sed "s|intel|gnu|g" -i opnReqTest export ACCNR=epic + export GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4) + export GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1) ./opnReqTest -n regional_control -a ${ACCNR} -c bit,dcp,thr cd logs/ cp OpnReqTests_regional_control_hera.log /scratch3/NAGAPE/epic/role.epic/jenkins/workspace @@ -91,8 +100,6 @@ pipeline { cd $WORKSPACE/tests/ git config user.email "ecc.platform@noaa.gov" git config user.name "epic-cicd-jenkins" - echo "Testing concluded...removing labels for $machine from $GIT_URL" - export machine_name_logs=$(echo $machine | awk '{ print tolower($1) }') git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1 git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1 @@ -102,6 +109,33 @@ pipeline { git push sshorigin HEAD:$FORK_BRANCH ''' } - } + post { + always { + sh ''' + export GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4) + export GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1) + echo "Testing concluded...removing labels for $machine from $GIT_URL" + echo "https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels/jenkins-ort" + curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels/jenkins-ort + ''' + } + success { + slackSend ( + channel: '#jenkins-notifications', + color: 'good', + message: "*SUCCESS: Build ${env.JOB_NAME} #${env.BUILD_NUMBER}* <${env.BUILD_URL}|Open Build>" + ) + + } + + failure { + slackSend ( + channel: '#jenkins-notifications', + color: 'danger', + message: "*FAILURE: Build ${env.JOB_NAME} #${env.BUILD_NUMBER}* <${env.BUILD_URL}|Open Build>" + ) + } + } + } } } diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 5c12be8bad..d4275c0bcf 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -1628,6 +1628,9 @@ export_cice6() { export stream_files_dice=none export CICE_PRESCRIBED=false export DICE_CDEPS=false + + #To modify aice on restart, "adjust_aice" + export CICE_RESTART_MOD='none' } # Defaults for the MOM6 model namelist, mx100 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index bb592fc8aa..b131d8ff9b 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Nov 17 22:47:37 UTC 2025 +Tue Nov 25 20:37:28 UTC 2025 Start Operation Requirement Test baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2406180/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2490760/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 = 258.685904 - 0: The maximum resident set size (KB) = 1532116 + 0: The total amount of wall time = 257.971418 + 0: The maximum resident set size (KB) = 1547592 Test bit_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2406180/dbg_base_dbg_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2490760/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 = 889.205918 - 0: The maximum resident set size (KB) = 1527680 + 0: The total amount of wall time = 890.918314 + 0: The maximum resident set size (KB) = 1517848 Test dbg_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2406180/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2490760/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 = 233.895559 - 0: The maximum resident set size (KB) = 1534836 + 0: The total amount of wall time = 233.392222 + 0: The maximum resident set size (KB) = 1533720 Test dcp PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2406180/mpi_mpi +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2490760/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 = 235.176573 - 0: The maximum resident set size (KB) = 1532196 + 0: The total amount of wall time = 232.525634 + 0: The maximum resident set size (KB) = 1536080 Test mpi PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2406180/rst_rst +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2490760/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 = 234.616191 - 0: The maximum resident set size (KB) = 1499156 + 0: The total amount of wall time = 229.676628 + 0: The maximum resident set size (KB) = 1514064 Test rst PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2406180/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2490760/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.888998 - 0: The maximum resident set size (KB) = 1523816 + 0: The total amount of wall time = 232.548827 + 0: The maximum resident set size (KB) = 1502836 Test std_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2406180/thr_thr +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2490760/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 = 230.086478 - 0: The maximum resident set size (KB) = 1514592 + 0: The total amount of wall time = 232.922068 + 0: The maximum resident set size (KB) = 1522592 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Nov 17 23:52:15 UTC 2025 -Elapsed time: 01h:04m:39s. Have a nice day! +Tue Nov 25 21:41:21 UTC 2025 +Elapsed time: 01h:03m:54s. 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 40098964d0..3c4c6aa54a 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 Nov 17 21:23:00 UTC 2025 +Tue Nov 25 19:11:09 UTC 2025 Start Operation Requirement Test baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2080557/dbg_base_dbg_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1841466/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 = 2298.900122 - 0: The maximum resident set size (KB) = 1642100 + 0: The total amount of wall time = 2291.371373 + 0: The maximum resident set size (KB) = 1642192 Test dbg_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2080557/rst_rst +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1841466/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 = 585.751338 - 0: The maximum resident set size (KB) = 1632340 + 0: The total amount of wall time = 586.029278 + 0: The maximum resident set size (KB) = 1638164 Test rst PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2080557/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1841466/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 588.254442 - 0: The maximum resident set size (KB) = 1634908 + 0: The total amount of wall time = 585.044467 + 0: The maximum resident set size (KB) = 1625196 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Nov 17 22:47:36 UTC 2025 -Elapsed time: 01h:24m:36s. Have a nice day! +Tue Nov 25 20:37:27 UTC 2025 +Elapsed time: 01h:26m:18s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index cd085fd85e..6b16b71681 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Nov 17 20:29:23 UTC 2025 +Tue Nov 25 18:14:45 UTC 2025 Start Operation Requirement Test baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1902660/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1763979/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 = 632.290847 - 0: The maximum resident set size (KB) = 886644 + 0: The total amount of wall time = 625.795598 + 0: The maximum resident set size (KB) = 890968 Test bit_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1902660/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1763979/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 = 504.242757 - 0: The maximum resident set size (KB) = 848332 + 0: The total amount of wall time = 501.951176 + 0: The maximum resident set size (KB) = 861260 Test dcp PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1902660/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1763979/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 = 506.489261 - 0: The maximum resident set size (KB) = 856316 + 0: The total amount of wall time = 502.405930 + 0: The maximum resident set size (KB) = 851224 Test std_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1902660/thr_thr +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1763979/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -70,11 +70,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 504.894959 - 0: The maximum resident set size (KB) = 849208 + 0: The total amount of wall time = 501.117401 + 0: The maximum resident set size (KB) = 862004 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Nov 17 21:23:00 UTC 2025 -Elapsed time: 00h:53m:38s. Have a nice day! +Tue Nov 25 19:11:09 UTC 2025 +Elapsed time: 00h:56m:24s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index c9e8d86405..39ff11a465 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,35 +1,35 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -ffe5f903f718578d5e843e391ce0305b570ddf9f +2e502c91aaee176ed997189e0ff9abc35fe30c61 Submodule hashes used in testing: - 14c01eb83812d5deca9d95f950d770a1ab056c5d AQM (remotes/origin/feature/guassian_fire_plume) + a57f569b8465b93694051ccd910412355bf5fb09 AQM (remotes/origin/remove_findesmf) 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) - 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) - 6a5c51e9e6c643da0760a315e452755661d7d745 CICE-interface/CICE/icepack (Icepack1.1.0-220-g6a5c51e) + 5278e39e4bbbc8aaf240b203740a1cf904256fca CICE-interface/CICE (remotes/origin/sync_cice_2025-11) + 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) 607a0bddcef8b8c4f0c80886be68db88fe52429f CMEPS-interface/CMEPS (cmeps_v0.4.1-2325-g607a0bd) - 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) + 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + 58ae7aa3adef6daf489c707994b32017689b0aa8 LM4-driver (remotes/origin/remove_findesmf) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - f6dc2070945042f89c7ab87aaaf3a6a02922b6c4 UFSATM (heads/develop) + 8dbaeb50defdacfce55d726e7b35c7e844388dd2 UFSATM (remotes/origin/remove_findesmf) 3256121dc4972d5c78f43f1a16ea1cb118ec6daf UFSATM/ccpp/framework (2025-06-03-dev-12-g3256121) - 6382d6140c1c11a3e830716a7f5a9d7eb9d58cab UFSATM/ccpp/physics (EP4-2046-g6382d614) + 7e9ddf0b6bb2ec6034049b05447e060115dd8de0 UFSATM/ccpp/physics (EP4-2052-g7e9ddf0b) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - b0a1b0957d3b79d642f3c01e5cd9441936c7c832 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-429-gb0a1b09) + e514f6d6b585e8fd857f55ef7d92618cd4d995f0 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-438-ge514f6d) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) 1a16f94d20898ff2ffcc3c8b6e036a9a16ed19a4 UFSATM/upp (upp_v10.2.0-327-g1a16f94d) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) + e6d31d9ad19a72c069985cd416ddefe25cf955c1 WW3 (remotes/origin/remove_findesmf) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) aea3150e0baa6289a144f6da41d02869ab80f24c stochastic_physics (ufs-v2.0.0-293-gaea3150) @@ -40,288 +40,288 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20251117 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1709032 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20251119 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1540660 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:31, 16:55] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:46, 06:41](3321 MB) -PASS -- TEST 'cpld_control_gefs_intel' [57:10, 17:10](4108 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [25:38, 07:56](3901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:32, 16:55] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:19, 13:14](1894 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:29, 14:21](1942 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:02, 06:20](1069 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [12:19, 06:28](1931 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:32, 15:17](1873 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [16:29, 14:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:38, 11:47](2196 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [16:41, 06:15](1352 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:19, 04:42] ( 334 warnings 1 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [19:35, 13:01](2234 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:05] ( 352 warnings 1777 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:03, 20:11](1937 MB) - -PASS -- COMPILE 's2swa_intel' [18:33, 17:16] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [21:55, 08:24](3355 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:36, 08:28](3354 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:27, 04:51](3234 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:26, 08:25](3373 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:05, 04:50](3252 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:32, 07:44](3567 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [23:43, 08:20](3343 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [30:40, 06:51](3290 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:36, 08:27](3356 MB) - -PASS -- COMPILE 's2swal_intel' [18:33, 17:14] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [27:54, 08:34](3358 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:30, 04:53](3238 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:15, 08:32](3328 MB) - -PASS -- COMPILE 's2sw_intel' [16:29, 14:54] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:48, 04:31](1916 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:00, 07:21](1969 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:31, 14:30] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:03, 05:16](1967 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:33, 16:55] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [21:44, 08:20](3356 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:29, 15:08] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:05, 13:05](1918 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:51, 06:23](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [37:03, 15:24](1886 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [11:37, 05:50](2890 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [07:28, 02:06](2888 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:22, 01:25](2298 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [05:58, 01:21](2112 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:55, 01:01](2110 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:48, 00:54](1448 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [05:58, 01:24](2114 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:54, 00:58](2107 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:45, 00:48](1448 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [03:51, 00:58](2039 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:51, 00:46](2041 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:46, 00:41](1395 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:44] ( 352 warnings 1777 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:01, 24:08](1963 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:31, 16:46] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:28, 06:33](3321 MB) +PASS -- TEST 'cpld_control_gefs_intel' [51:43, 16:50](4096 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [24:00, 07:42](3903 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 17:07] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:10, 13:04](1899 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:15, 14:03](1944 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:59, 06:22](1074 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:32, 06:35](1933 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:26, 15:17](1876 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [16:31, 14:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:08, 11:49](2198 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [19:29, 06:05](1356 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:20, 04:41] ( 334 warnings 1 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [18:26, 13:13](2239 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:12] ( 352 warnings 1777 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 20:11](1939 MB) + +PASS -- COMPILE 's2swa_intel' [18:33, 16:51] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [22:34, 08:22](3355 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:37, 08:16](3355 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:57, 04:41](3235 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [22:29, 08:13](3373 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:24, 04:44](3253 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:17, 07:42](3559 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [23:00, 08:10](3344 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [29:40, 06:48](3290 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:28, 08:26](3356 MB) + +PASS -- COMPILE 's2swal_intel' [18:31, 16:59] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [23:37, 08:23](3357 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [13:28, 04:57](3237 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:15, 08:17](3325 MB) + +PASS -- COMPILE 's2sw_intel' [17:30, 15:14] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:30, 04:32](1917 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:00, 07:13](1969 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:30, 14:50] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:55, 05:03](1966 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:32, 16:55] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:22, 08:14](3356 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:31, 16:12] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:56, 13:12](1918 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:43, 06:26](1107 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:07, 15:11](1890 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [11:40, 05:56](2885 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [07:26, 02:01](2888 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:23, 01:23](2293 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [04:53, 01:21](2117 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [05:55, 00:54](2112 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [05:48, 00:45](1450 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [04:53, 01:16](2114 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:53, 00:57](2113 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [05:48, 00:44](1451 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [03:51, 00:58](2037 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:47, 00:52](2040 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:49, 00:40](1395 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 04:44] ( 352 warnings 1777 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:44, 24:02](1973 MB) PASS -- COMPILE 'atm_dyn32_intel' [12:25, 10:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [12:43, 04:01](685 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:45, 02:28](1566 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:51, 02:40](1577 MB) -PASS -- TEST 'control_latlon_intel' [13:41, 02:33](1574 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:50, 02:37](1575 MB) -PASS -- TEST 'control_c48_intel' [10:49, 06:22](1592 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:48, 05:42](718 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:48, 06:33](1596 MB) -PASS -- TEST 'control_c192_intel' [14:02, 07:07](1708 MB) -PASS -- TEST 'control_c384_intel' [03:10, 08:41](1995 MB) -PASS -- TEST 'control_c384gdas_intel' [13:51, 09:50](1136 MB) -PASS -- TEST 'control_stochy_intel' [08:39, 01:53](632 MB) -PASS -- TEST 'control_stochy_restart_intel' [08:40, 01:12](400 MB) -PASS -- TEST 'control_lndp_intel' [08:36, 01:50](633 MB) -PASS -- TEST 'control_iovr4_intel' [09:39, 02:46](632 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [10:01, 03:11](915 MB) -PASS -- TEST 'control_iovr5_intel' [10:41, 02:46](629 MB) -PASS -- TEST 'control_p8_intel' [11:27, 03:00](1852 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:43, 03:13](1858 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:18, 02:55](1856 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [11:19, 02:58](1876 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [11:41, 03:05](1886 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [11:54, 02:30](2430 MB) -PASS -- TEST 'control_restart_p8_intel' [07:17, 01:54](1013 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:41, 03:03](1854 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:38, 01:57](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:36, 03:07](1847 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:35, 02:43](1926 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:06, 05:02](1859 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:21, 04:14](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:14, 03:03](1869 MB) -PASS -- TEST 'merra2_thompson_intel' [11:44, 03:31](1857 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [12:20, 04:36](1864 MB) -PASS -- TEST 'regional_control_intel' [07:55, 05:01](879 MB) -PASS -- TEST 'regional_restart_intel' [04:51, 02:50](878 MB) -PASS -- TEST 'regional_decomp_intel' [08:56, 05:28](879 MB) -PASS -- TEST 'regional_2threads_intel' [08:51, 03:16](990 MB) -PASS -- TEST 'regional_noquilt_intel' [06:54, 04:59](1167 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:54, 05:13](879 MB) -PASS -- TEST 'regional_wofs_intel' [08:50, 06:58](1610 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:24, 09:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [09:19, 04:08](1879 MB) - -PASS -- COMPILE 'rrfs_intel' [10:22, 08:52] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [08:09, 03:57](1014 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:26, 04:14](1195 MB) -PASS -- TEST 'rap_decomp_intel' [07:23, 04:01](1017 MB) -PASS -- TEST 'rap_2threads_intel' [07:25, 03:35](1079 MB) -PASS -- TEST 'rap_restart_intel' [06:15, 02:16](763 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:18, 03:57](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 04:06](1008 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:14, 02:22](762 MB) -PASS -- TEST 'hrrr_control_intel' [09:17, 03:52](1005 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:26, 03:49](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:26, 03:24](1068 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:36, 02:18](759 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:06, 06:53](1006 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:40, 08:40](1969 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:40, 08:23](1960 MB) - -PASS -- COMPILE 'csawmg_intel' [10:23, 08:42] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:58, 06:44](963 MB) -PASS -- TEST 'control_ras_intel' [06:32, 03:25](666 MB) - -PASS -- COMPILE 'wam_intel' [10:23, 08:08] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:15, 12:48](1650 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:07, 03:08](1854 MB) -PASS -- TEST 'regional_control_faster_intel' [07:54, 04:58](877 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:21, 05:03] ( 415 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:38, 02:44](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:38, 02:45](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:34, 03:39](812 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:31, 03:14](814 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:51, 05:02](1106 MB) -PASS -- TEST 'control_ras_debug_intel' [05:32, 03:17](823 MB) -PASS -- TEST 'control_diag_debug_intel' [05:42, 03:22](1670 MB) -PASS -- TEST 'control_debug_p8_intel' [06:02, 03:06](1896 MB) -PASS -- TEST 'regional_debug_intel' [21:13, 18:38](936 MB) -PASS -- TEST 'rap_control_debug_intel' [08:38, 05:40](1185 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:39, 05:34](1179 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:36, 05:49](1187 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:38, 05:46](1187 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:36, 05:41](1186 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:44, 06:02](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:36, 05:57](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:35, 06:02](1187 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:36, 05:49](1189 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:35, 05:44](1187 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:37, 05:47](1186 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:40, 05:51](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:41, 09:08](1184 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:37, 05:46](1190 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:36, 05:40](1187 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:38, 09:51](1188 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:19, 03:33] ( 377 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [20:19, 14:57](1694 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:25, 08:17] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:28, 04:02](1030 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:09, 03:14](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:20, 03:08](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:24, 02:55](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:49, 02:52](926 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:47, 03:16](887 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:10, 01:49](728 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 01:51](721 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 08:04] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:23, 03:08](1012 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:04, 01:20](1135 MB) -PASS -- TEST 'conus13km_decomp_intel' [07:09, 03:09](1022 MB) -PASS -- TEST 'conus13km_restart_intel' [05:05, 01:56](681 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:27, 08:27] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:55, 04:06](916 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 03:39] ( 310 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:36, 05:43](1067 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:36, 05:33](1065 MB) -PASS -- TEST 'conus13km_debug_intel' [27:28, 24:29](1080 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:34, 24:13](788 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:16, 13:45](1202 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [27:26, 24:57](1105 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:27, 24:14](1145 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 03:32] ( 310 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 05:39](1100 MB) - -PASS -- COMPILE 'hafsw_intel' [14:28, 12:01] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:07, 04:44](694 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [14:11, 04:52](901 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [23:00, 03:38](1045 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 11:52](787 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:01, 05:39](460 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [18:13, 06:48](472 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [17:06, 03:12](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [32:19, 08:04](418 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:50, 03:58](493 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:03, 03:40](491 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:43, 01:40](403 MB) -PASS -- TEST 'gnv1_nested_intel' [08:10, 03:41](1696 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:27, 10:09] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:34, 05:26](777 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:25, 09:06] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:02, 06:54](742 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:05, 06:57](721 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [17:31, 13:32] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:26, 03:10](1567 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 02:18](1565 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:01](685 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:27, 02:53](684 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:26, 02:54](686 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:26, 03:05](1568 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:26, 03:10](1565 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 02:51](684 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:41, 07:22](1366 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:28, 06:58](705 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:24, 03:05](1565 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:29, 05:16](4523 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:29, 05:24](4520 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [17:32, 13:49] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:26, 03:12](1565 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:18, 00:55] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:43, 01:16](305 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:37, 00:55](438 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:39, 00:48](436 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:31, 13:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:37, 03:56](1907 MB) - -PASS -- COMPILE 'atml_intel' [17:31, 10:10] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [12:28, 03:31](1863 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:10, 02:06](1032 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:23, 04:35] ( 420 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [15:23, 05:39](1906 MB) - -PASS -- COMPILE 'atmw_intel' [13:27, 08:54] ( 1 warnings 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:08, 02:06](1872 MB) - -PASS -- COMPILE 'atmaero_intel' [17:32, 16:01] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:00, 04:40](3228 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [12:42, 05:13](3111 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:46, 05:18](3116 MB) - -PASS -- COMPILE 'atmaq_intel' [10:23, 08:43] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [24:01, 15:11](2398 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [26:54, 18:04](2441 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:19, 03:40] ( 394 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [50:07, 40:45](1885 MB) +PASS -- TEST 'control_flake_intel' [13:41, 03:59](684 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [14:47, 02:29](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:52, 02:40](1575 MB) +PASS -- TEST 'control_latlon_intel' [14:45, 02:40](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:46, 02:37](1572 MB) +PASS -- TEST 'control_c48_intel' [09:45, 06:20](1597 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:45, 05:48](719 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [12:47, 06:42](1593 MB) +PASS -- TEST 'control_c192_intel' [16:01, 07:13](1707 MB) +PASS -- TEST 'control_c384_intel' [33:30, 08:35](1992 MB) +PASS -- TEST 'control_c384gdas_intel' [44:12, 09:43](1132 MB) +PASS -- TEST 'control_stochy_intel' [10:38, 01:56](633 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:37, 01:08](400 MB) +PASS -- TEST 'control_lndp_intel' [09:38, 01:52](632 MB) +PASS -- TEST 'control_iovr4_intel' [11:41, 02:38](631 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [10:57, 03:03](914 MB) +PASS -- TEST 'control_iovr5_intel' [09:41, 02:41](634 MB) +PASS -- TEST 'control_p8_intel' [09:29, 03:00](1853 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:39, 03:17](1857 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:12, 03:03](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [10:13, 02:51](1876 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [11:42, 03:02](1885 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [12:48, 02:18](2432 MB) +PASS -- TEST 'control_restart_p8_intel' [06:45, 01:52](1013 MB) +PASS -- TEST 'control_noqr_p8_intel' [11:18, 03:02](1852 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:00, 01:47](1012 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:42, 02:57](1846 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:38, 02:40](1929 MB) +PASS -- TEST 'control_p8_lndp_intel' [12:03, 04:55](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:11, 04:09](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:06, 03:04](1871 MB) +PASS -- TEST 'merra2_thompson_intel' [10:35, 03:36](1856 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [11:15, 04:35](1864 MB) +PASS -- TEST 'regional_control_intel' [07:53, 04:59](875 MB) +PASS -- TEST 'regional_restart_intel' [06:54, 02:47](882 MB) +PASS -- TEST 'regional_decomp_intel' [07:49, 05:14](875 MB) +PASS -- TEST 'regional_2threads_intel' [06:47, 03:15](989 MB) +PASS -- TEST 'regional_noquilt_intel' [07:52, 04:52](1171 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:54, 04:57](875 MB) +PASS -- TEST 'regional_wofs_intel' [08:55, 06:42](1611 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:24, 09:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [08:10, 04:01](1880 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:52] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [08:08, 03:55](1013 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:19, 04:18](1187 MB) +PASS -- TEST 'rap_decomp_intel' [07:22, 03:56](1016 MB) +PASS -- TEST 'rap_2threads_intel' [07:21, 03:29](1081 MB) +PASS -- TEST 'rap_restart_intel' [08:16, 02:11](762 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:56, 03:49](1002 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:28, 03:56](1010 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:13, 02:08](761 MB) +PASS -- TEST 'hrrr_control_intel' [08:16, 03:43](1010 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:25, 03:48](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:24, 03:26](1071 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:36, 02:05](759 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:08, 06:48](1006 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:41, 08:36](1964 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:40, 08:16](1963 MB) + +PASS -- COMPILE 'csawmg_intel' [10:23, 08:39] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:55, 06:32](962 MB) +PASS -- TEST 'control_ras_intel' [06:32, 03:26](666 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 08:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [16:13, 12:39](1649 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:11, 03:05](1853 MB) +PASS -- TEST 'regional_control_faster_intel' [07:52, 05:05](878 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:22, 05:02] ( 415 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:37, 02:41](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:37, 02:52](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:33, 03:40](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:33, 03:21](813 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:54, 05:00](1107 MB) +PASS -- TEST 'control_ras_debug_intel' [06:32, 03:17](825 MB) +PASS -- TEST 'control_diag_debug_intel' [07:40, 03:19](1672 MB) +PASS -- TEST 'control_debug_p8_intel' [08:06, 03:08](1893 MB) +PASS -- TEST 'regional_debug_intel' [21:11, 18:51](938 MB) +PASS -- TEST 'rap_control_debug_intel' [10:40, 05:46](1186 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:42, 05:34](1185 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:38, 05:44](1185 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:39, 05:47](1186 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:35, 05:44](1183 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:52, 05:59](1273 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:42, 05:49](1187 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:38, 05:50](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [11:37, 05:59](1193 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:36, 05:45](1186 MB) +PASS -- TEST 'rap_noah_debug_intel' [12:39, 05:46](1187 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:39, 05:44](1182 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:43, 09:15](1188 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [12:42, 05:42](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:40, 05:44](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:50, 09:48](1186 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:18, 03:33] ( 377 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [26:23, 14:49](1694 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:23, 08:17] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:22, 03:50](1030 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:02, 03:17](884 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:26, 03:10](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:32, 02:56](933 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:57, 02:46](927 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:50, 03:17](887 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:40, 01:48](728 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:35, 01:45](721 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:23, 08:05] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:26, 03:06](1012 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:01, 01:21](1134 MB) +PASS -- TEST 'conus13km_decomp_intel' [07:09, 02:56](1023 MB) +PASS -- TEST 'conus13km_restart_intel' [05:00, 01:57](680 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:24] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:56, 04:00](917 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 03:35] ( 310 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:38, 05:33](1068 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:40, 05:28](1065 MB) +PASS -- TEST 'conus13km_debug_intel' [27:29, 24:22](1098 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [28:26, 24:11](811 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:19, 13:26](1206 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [28:25, 24:41](1081 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:24, 24:03](1167 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 03:33] ( 310 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:38, 05:33](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [14:28, 12:16] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:02, 04:35](694 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [14:11, 04:53](902 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:41, 03:36](1047 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:14, 11:47](786 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:00, 05:33](464 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:10, 06:42](470 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [15:00, 03:02](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [28:10, 07:49](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:50, 03:50](492 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:58, 03:35](493 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:40, 01:35](404 MB) +PASS -- TEST 'gnv1_nested_intel' [09:04, 03:48](1695 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:26, 10:31] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [25:36, 05:27](782 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:26, 09:11] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [16:07, 06:51](746 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:09, 06:56](724 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [16:30, 13:35] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:27, 03:15](1564 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:28, 02:03](1565 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:26, 02:52](684 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:26, 02:50](682 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 02:54](682 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:25, 03:01](1565 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:25, 03:00](1567 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:26, 02:53](688 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:30, 07:08](1365 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:24, 07:03](704 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:23, 03:05](1567 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:29, 05:11](4519 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:29, 05:11](4522 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [17:31, 13:58] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:26, 03:05](1564 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:18, 00:54] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:42, 01:05](301 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:36, 00:51](437 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:34, 00:43](436 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:31, 14:28] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:34, 03:44](1907 MB) + +PASS -- COMPILE 'atml_intel' [12:24, 10:01] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [09:18, 03:22](1862 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 01:59](1032 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:25, 04:25] ( 420 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:16, 05:41](1911 MB) + +PASS -- COMPILE 'atmw_intel' [16:30, 08:47] ( 1 warnings 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:06, 02:02](1874 MB) + +PASS -- COMPILE 'atmaero_intel' [21:35, 15:06] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:52, 04:42](3230 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:35, 05:25](3111 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:36, 05:22](3118 MB) + +PASS -- COMPILE 'atmaq_intel' [11:24, 08:40] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [21:57, 14:44](2399 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [23:58, 17:44](2444 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:21, 03:39] ( 394 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [46:15, 40:29](1884 MB) SYNOPSIS: -Starting Date/Time: 20251118 14:53:57 -Ending Date/Time: 20251118 17:36:56 -Total Time: 02h:43m:29s +Starting Date/Time: 20251125 18:29:17 +Ending Date/Time: 20251125 21:05:12 +Total Time: 02h:36m:26s Compiles Completed: 38/38 Tests Completed: 195/195 diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 0dcfb2ae56..b62c7e96f7 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,35 +1,35 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -12aa48e9af7404cdd2131e5d829ea055a0c130b0 +742e4fd886f1226a7dcbc595078709a8b9961650 Submodule hashes used in testing: - 14c01eb83812d5deca9d95f950d770a1ab056c5d AQM (remotes/origin/feature/guassian_fire_plume) + a57f569b8465b93694051ccd910412355bf5fb09 AQM (remotes/origin/remove_findesmf) 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) - 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) - 6a5c51e9e6c643da0760a315e452755661d7d745 CICE-interface/CICE/icepack (Icepack1.1.0-220-g6a5c51e) + 5278e39e4bbbc8aaf240b203740a1cf904256fca CICE-interface/CICE (remotes/origin/sync_cice_2025-11) + 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) 607a0bddcef8b8c4f0c80886be68db88fe52429f CMEPS-interface/CMEPS (cmeps_v0.4.1-2325-g607a0bd) - 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) + 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + 58ae7aa3adef6daf489c707994b32017689b0aa8 LM4-driver (remotes/origin/remove_findesmf) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - f6dc2070945042f89c7ab87aaaf3a6a02922b6c4 UFSATM (heads/develop) + 8dbaeb50defdacfce55d726e7b35c7e844388dd2 UFSATM (remotes/origin/remove_findesmf) 3256121dc4972d5c78f43f1a16ea1cb118ec6daf UFSATM/ccpp/framework (2025-06-03-dev-12-g3256121) - 6382d6140c1c11a3e830716a7f5a9d7eb9d58cab UFSATM/ccpp/physics (EP4-2046-g6382d614) + 7e9ddf0b6bb2ec6034049b05447e060115dd8de0 UFSATM/ccpp/physics (EP4-2052-g7e9ddf0b) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - b0a1b0957d3b79d642f3c01e5cd9441936c7c832 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-429-gb0a1b09) + e514f6d6b585e8fd857f55ef7d92618cd4d995f0 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-438-ge514f6d) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) 1a16f94d20898ff2ffcc3c8b6e036a9a16ed19a4 UFSATM/upp (upp_v10.2.0-327-g1a16f94d) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) + e6d31d9ad19a72c069985cd416ddefe25cf955c1 WW3 (remotes/origin/remove_findesmf) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) aea3150e0baa6289a144f6da41d02869ab80f24c stochastic_physics (ufs-v2.0.0-293-gaea3150) @@ -40,303 +40,303 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251117 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2511659 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251119 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3403047 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:11, 15:18] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:33, 03:58](2007 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:10, 12:10] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [10:35, 08:33](1902 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:46, 09:15](1936 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [06:34, 04:06](1069 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:32, 04:10](1939 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [11:28, 09:57](1890 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [12:10, 10:11] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [10:36, 07:27](2200 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [06:10, 03:44](1336 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:10, 03:21] ( 338 warnings 3 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [10:47, 07:52](2226 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:34] ( 360 warnings 1727 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [14:42, 12:47](1925 MB) - -PASS -- COMPILE 's2swa_intel' [13:11, 11:22] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [06:39, 05:04](2047 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:47, 05:03](2046 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:32, 02:45](1586 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [06:35, 05:04](2067 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:31, 02:48](1450 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:34, 05:54](2199 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:34, 04:56](2036 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [05:41, 04:02](1998 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:45, 05:03](2041 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [08:24, 05:18](2370 MB) - -PASS -- COMPILE 's2swal_intel' [13:11, 11:40] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [06:47, 05:05](2043 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:32, 02:47](1592 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:37, 05:11](1909 MB) - -PASS -- COMPILE 's2sw_intel' [12:11, 10:54] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [04:31, 02:47](1926 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:36, 04:32](1827 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:25] ( 359 warnings 988 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:44, 08:39](2088 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:29] ( 359 warnings 988 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:41, 03:49](1951 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:10, 10:32] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:36, 03:14](1955 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:10, 11:19] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [06:41, 05:02](2045 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:10, 11:50] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:37, 08:37](1915 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:37, 04:09](1098 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [11:28, 09:56](1901 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [05:26, 03:57](2863 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:27, 01:14](2864 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:21, 00:45](2269 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:21, 00:43](2084 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:21, 00:24](2087 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:22, 00:19](1430 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:21, 00:43](2090 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:21, 00:24](2085 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:23, 00:19](1424 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:21, 00:27](2022 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:21, 00:19](2015 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:22, 00:16](1371 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:16] ( 360 warnings 1727 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [17:30, 16:04](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:10, 07:07] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:17, 02:31](518 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:18, 01:31](1411 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:20, 01:39](1421 MB) -PASS -- TEST 'control_latlon_intel' [04:15, 01:35](1416 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:17, 01:37](1422 MB) -PASS -- TEST 'control_c48_intel' [07:19, 04:18](1562 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:18, 04:05](682 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:18, 04:25](1556 MB) -PASS -- TEST 'control_c192_intel' [06:23, 04:32](1687 MB) -PASS -- TEST 'control_c384_intel' [11:35, 09:11](1965 MB) -PASS -- TEST 'control_c384gdas_intel' [13:09, 10:21](1148 MB) -PASS -- TEST 'control_stochy_intel' [03:16, 01:12](483 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:15, 00:43](277 MB) -PASS -- TEST 'control_lndp_intel' [03:14, 01:07](476 MB) -PASS -- TEST 'control_iovr4_intel' [03:16, 01:42](472 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [03:18, 01:57](772 MB) -PASS -- TEST 'control_iovr5_intel' [03:16, 01:41](468 MB) -PASS -- TEST 'control_p8_intel' [03:32, 01:52](1705 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:32, 01:55](1706 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:27, 01:49](1707 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:26, 01:49](1726 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:26, 01:56](1735 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:26, 01:27](2432 MB) -PASS -- TEST 'control_restart_p8_intel' [03:24, 01:08](863 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:22, 01:50](1702 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:24, 01:06](869 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:24, 01:54](1708 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:23, 02:04](1786 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:23, 03:11](1713 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:26, 02:38](1755 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:26, 01:57](1717 MB) -PASS -- TEST 'merra2_thompson_intel' [04:27, 02:11](1709 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [05:23, 03:50](1709 MB) -PASS -- TEST 'regional_control_intel' [05:18, 03:10](846 MB) -PASS -- TEST 'regional_restart_intel' [03:20, 01:46](867 MB) -PASS -- TEST 'regional_decomp_intel' [05:18, 03:19](858 MB) -PASS -- TEST 'regional_2threads_intel' [04:19, 02:30](987 MB) -PASS -- TEST 'regional_noquilt_intel' [05:21, 03:08](1154 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:21, 03:10](844 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:19, 03:12](850 MB) -PASS -- TEST 'regional_wofs_intel' [06:19, 04:10](1589 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:10, 06:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:27, 02:33](1736 MB) - -PASS -- COMPILE 'rrfs_intel' [08:10, 06:03] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [04:26, 02:23](861 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:31, 02:38](1179 MB) -PASS -- TEST 'rap_decomp_intel' [04:23, 02:29](856 MB) -PASS -- TEST 'rap_2threads_intel' [05:26, 02:43](931 MB) -PASS -- TEST 'rap_restart_intel' [03:31, 01:18](715 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:27, 02:21](857 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:25, 02:28](860 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:25, 01:20](720 MB) -PASS -- TEST 'hrrr_control_intel' [04:26, 02:18](851 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:26, 02:23](854 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:20, 02:36](921 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:16](682 MB) -PASS -- TEST 'rrfs_v1beta_intel' [05:59, 04:04](860 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:16, 05:29](1808 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:16, 05:14](1797 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 06:00] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [05:30, 04:05](818 MB) -PASS -- TEST 'control_ras_intel' [04:19, 02:11](516 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 05:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:27, 07:41](1500 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:32, 01:58](1711 MB) -PASS -- TEST 'regional_control_faster_intel' [05:24, 03:12](854 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 04:42] ( 419 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:22, 01:35](1430 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:18, 01:39](1449 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:17, 02:08](644 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:16, 01:56](639 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:30, 02:55](951 MB) -PASS -- TEST 'control_ras_debug_intel' [03:16, 01:55](651 MB) -PASS -- TEST 'control_diag_debug_intel' [03:30, 01:54](1503 MB) -PASS -- TEST 'control_debug_p8_intel' [03:29, 01:54](1743 MB) -PASS -- TEST 'regional_debug_intel' [13:23, 11:21](897 MB) -PASS -- TEST 'rap_control_debug_intel' [05:14, 03:27](1029 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:20](1029 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:27](1030 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 03:23](1031 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:26](1035 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:17, 03:34](1110 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:28](1039 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 03:30](1037 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:29](1029 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 03:26](1032 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:16, 03:25](1034 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:27](1038 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:31](1027 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 03:27](1031 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:27, 03:24](1033 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:23, 05:51](1035 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 02:10] ( 380 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [11:25, 08:44](1524 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 05:50] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:32, 02:32](1061 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:24, 02:05](745 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:20, 02:03](736 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:19, 02:25](782 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:23, 02:20](781 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:18, 02:07](735 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:20, 01:10](634 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:16, 01:06](622 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:41] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:33, 01:51](1012 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:29, 00:55](1010 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:22, 01:51](1023 MB) -PASS -- TEST 'conus13km_restart_intel' [04:22, 01:06](885 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 05:53] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:25, 02:35](779 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:14] ( 313 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:21](912 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:16](903 MB) -PASS -- TEST 'conus13km_debug_intel' [17:22, 15:33](1038 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:23, 14:18](746 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:19, 12:48](1056 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [16:21, 14:19](1050 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:21, 14:18](1116 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:05] ( 313 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:24](948 MB) - -PASS -- COMPILE 'hafsw_intel' [10:10, 08:27] ( 1 warnings 4 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:27, 02:40](799 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:47, 03:50](1036 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:17, 02:16](1039 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [10:28, 07:22](911 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:29, 03:19](450 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:33, 03:54](463 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:25, 01:37](379 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:56, 04:14](417 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:25, 02:23](487 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:26, 02:11](492 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:19, 00:50](415 MB) -PASS -- TEST 'gnv1_nested_intel' [05:44, 02:16](1676 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 08:33] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:51, 03:14](785 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:10, 07:55] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:37, 04:13](846 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:29, 04:13](826 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:11, 09:09] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:03](1550 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:26](1553 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:51](672 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 01:53](670 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 01:53](670 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:01](1549 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:20, 02:02](1552 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:24, 01:51](672 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:32, 04:54](1368 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:31, 04:39](706 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:04](1550 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:15, 03:53](4506 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:14, 03:48](4509 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:25] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 04:06](1552 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:35] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:04](1552 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:38] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:21, 00:55](300 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:41](429 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:29](431 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:10, 08:24] ( 1 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:32, 02:24](1769 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 06:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:30, 03:07](1763 MB) - -PASS -- COMPILE 'atml_intel' [08:10, 06:54] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:31, 02:25](1847 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:20, 01:23](1020 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:10, 02:59] ( 424 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:30, 03:27](1877 MB) - -PASS -- COMPILE 'atmw_intel' [09:10, 07:34] ( 1 warnings 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:27, 01:16](1747 MB) - -PASS -- COMPILE 'atmaero_intel' [10:11, 08:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:30, 02:52](1919 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:25, 03:18](1560 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 03:21](1586 MB) - -PASS -- COMPILE 'atmaq_intel' [08:11, 06:17] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [15:37, 12:30](2973 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [17:37, 14:13](2969 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:22] ( 397 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:22, 26:00](2987 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:35] ( 4 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:20, 06:00](786 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:59] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [05:46, 03:59](2010 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 12:22] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [10:37, 08:32](1899 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:37, 09:15](1929 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [05:31, 04:04](1065 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:36, 04:11](1932 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [11:29, 09:55](1873 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [12:11, 11:00] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [10:39, 07:16](2194 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [06:36, 03:45](1340 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:11, 03:28] ( 338 warnings 3 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [11:45, 07:53](2229 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:34] ( 360 warnings 1727 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [14:46, 12:38](1924 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 11:48] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [06:48, 05:05](2051 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:53, 05:03](2050 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:34, 02:47](1580 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [06:39, 05:06](2071 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:34, 02:48](1451 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:38, 05:56](2204 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:41, 04:57](2039 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:45, 04:05](1990 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:49, 05:05](2043 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [08:29, 05:21](2377 MB) + +PASS -- COMPILE 's2swal_intel' [13:11, 12:08] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [06:55, 05:04](2043 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:38, 02:47](1588 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:44, 05:10](1900 MB) + +PASS -- COMPILE 's2sw_intel' [11:11, 09:52] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [04:35, 03:03](1913 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:38, 04:51](1823 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:34] ( 359 warnings 988 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:45, 08:33](2062 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:31] ( 359 warnings 988 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:40, 03:52](1941 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 10:29] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:38, 03:15](1960 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:11, 11:48] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [06:46, 05:02](2047 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:50] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:45, 08:37](1919 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:36, 04:09](1076 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [11:40, 10:00](1898 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [05:32, 03:58](2845 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:32, 01:14](2866 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:23, 00:43](2266 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:27, 00:44](2089 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:27, 00:25](2087 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:23, 00:19](1425 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [02:28, 00:43](2094 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:28, 00:24](2077 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:24, 00:19](1433 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:27, 00:27](2016 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:26, 00:20](2012 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:23, 00:16](1367 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:32] ( 360 warnings 1727 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [17:41, 16:06](1952 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:11, 07:12] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:17, 02:32](526 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:19, 01:34](1409 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:23, 01:38](1421 MB) +PASS -- TEST 'control_latlon_intel' [04:17, 01:36](1416 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 01:37](1420 MB) +PASS -- TEST 'control_c48_intel' [06:20, 04:18](1566 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:20, 04:04](691 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:19, 04:26](1557 MB) +PASS -- TEST 'control_c192_intel' [06:23, 04:33](1683 MB) +PASS -- TEST 'control_c384_intel' [11:32, 09:18](1975 MB) +PASS -- TEST 'control_c384gdas_intel' [13:18, 10:28](1150 MB) +PASS -- TEST 'control_stochy_intel' [03:16, 01:11](484 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:16, 00:42](278 MB) +PASS -- TEST 'control_lndp_intel' [03:16, 01:07](474 MB) +PASS -- TEST 'control_iovr4_intel' [03:16, 01:42](473 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [03:20, 01:55](772 MB) +PASS -- TEST 'control_iovr5_intel' [03:17, 01:42](479 MB) +PASS -- TEST 'control_p8_intel' [03:33, 01:53](1700 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:34, 01:58](1711 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:31, 01:51](1710 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:32, 01:52](1728 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:34, 01:56](1738 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:34, 01:27](2421 MB) +PASS -- TEST 'control_restart_p8_intel' [03:27, 01:09](869 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:24, 01:50](1704 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:24, 01:06](862 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:25, 01:55](1707 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:25, 02:05](1779 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:22, 03:10](1713 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:29, 02:38](1755 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:30, 01:58](1715 MB) +PASS -- TEST 'merra2_thompson_intel' [04:29, 02:13](1719 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [05:26, 03:57](1724 MB) +PASS -- TEST 'regional_control_intel' [05:20, 03:14](856 MB) +PASS -- TEST 'regional_restart_intel' [03:20, 01:48](868 MB) +PASS -- TEST 'regional_decomp_intel' [05:23, 03:20](857 MB) +PASS -- TEST 'regional_2threads_intel' [04:21, 02:32](992 MB) +PASS -- TEST 'regional_noquilt_intel' [05:23, 03:09](1147 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:20, 03:12](859 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:19, 03:10](860 MB) +PASS -- TEST 'regional_wofs_intel' [06:20, 04:08](1589 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:11, 06:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:29, 02:34](1726 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 06:08] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [04:26, 02:27](859 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:33, 02:40](1187 MB) +PASS -- TEST 'rap_decomp_intel' [04:20, 02:31](859 MB) +PASS -- TEST 'rap_2threads_intel' [04:23, 02:47](936 MB) +PASS -- TEST 'rap_restart_intel' [03:30, 01:20](722 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:28, 02:28](856 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:25, 02:31](857 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:26, 01:19](717 MB) +PASS -- TEST 'hrrr_control_intel' [04:27, 02:22](853 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:21, 02:24](861 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:21, 02:37](925 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:17](682 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:31, 04:11](855 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:15, 05:20](1811 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:17, 05:10](1803 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 06:00] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [05:20, 04:04](822 MB) +PASS -- TEST 'control_ras_intel' [04:16, 02:10](520 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:24, 07:41](1508 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:29, 01:57](1708 MB) +PASS -- TEST 'regional_control_faster_intel' [05:20, 03:12](849 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 03:41] ( 419 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:19, 01:35](1439 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:18, 01:37](1451 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:15, 02:08](647 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:58](641 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:20, 02:56](950 MB) +PASS -- TEST 'control_ras_debug_intel' [03:14, 01:57](651 MB) +PASS -- TEST 'control_diag_debug_intel' [03:16, 01:56](1505 MB) +PASS -- TEST 'control_debug_p8_intel' [03:24, 01:55](1732 MB) +PASS -- TEST 'regional_debug_intel' [13:23, 11:22](883 MB) +PASS -- TEST 'rap_control_debug_intel' [05:15, 03:27](1035 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:17, 03:19](1025 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:26](1031 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:25](1027 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:15, 03:24](1026 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:19, 03:37](1115 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 03:29](1030 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:14, 03:32](1025 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:14, 03:31](1030 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 03:26](1028 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:27](1033 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:24](1029 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:30](1023 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:27](1031 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:30](1028 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:27, 05:54](1033 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 02:12] ( 380 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:30, 08:52](1524 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:49] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:35, 02:28](1071 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:23, 02:04](742 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:23, 02:02](736 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:22, 02:23](785 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:20, 02:19](782 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:20, 02:05](742 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:20, 01:10](622 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:07](616 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:44] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:32, 01:51](1007 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:24, 00:56](1012 MB) +PASS -- TEST 'conus13km_decomp_intel' [03:23, 01:53](1015 MB) +PASS -- TEST 'conus13km_restart_intel' [04:20, 01:07](884 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:00] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:24, 02:37](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:13] ( 313 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:22](910 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:13](907 MB) +PASS -- TEST 'conus13km_debug_intel' [15:30, 13:55](1041 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:27, 14:15](744 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:28, 12:47](1053 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [16:22, 14:21](1050 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:23, 14:17](1120 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:05] ( 313 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:14, 03:23](948 MB) + +PASS -- COMPILE 'hafsw_intel' [11:11, 09:08] ( 1 warnings 4 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:27, 02:40](794 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:47, 03:50](1034 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:17, 02:19](1038 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [11:29, 07:21](911 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:28, 03:19](458 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:33, 03:56](454 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:27, 01:40](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:54, 04:14](413 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:25, 02:22](487 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:32, 02:13](490 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:19, 00:50](413 MB) +PASS -- TEST 'gnv1_nested_intel' [06:42, 02:18](1681 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:56] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:47, 03:16](779 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:11, 07:43] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:27, 04:16](854 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:27, 04:16](825 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:24] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:03](1551 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:14, 01:21](1546 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:52](670 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 01:53](667 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:54](669 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:01](1551 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:03](1550 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:16, 01:50](669 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:30, 04:58](1359 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:27, 04:46](706 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:03](1546 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:45](4503 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:46](4506 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:24] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 04:06](1555 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 09:10] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:02](1547 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:38] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:22, 00:54](301 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:18, 00:39](430 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:18, 00:30](431 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:25] ( 1 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:32, 02:22](1774 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 05:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:30, 03:07](1759 MB) + +PASS -- COMPILE 'atml_intel' [08:11, 06:58] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:32, 02:20](1842 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:20, 01:22](1000 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:11, 03:05] ( 424 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:31, 03:26](1875 MB) + +PASS -- COMPILE 'atmw_intel' [09:11, 07:17] ( 1 warnings 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:28, 01:15](1740 MB) + +PASS -- COMPILE 'atmaero_intel' [10:10, 08:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:29, 02:45](1921 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:24, 03:11](1570 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:26, 03:16](1573 MB) + +PASS -- COMPILE 'atmaq_intel' [07:10, 06:05] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [18:00, 12:32](2972 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [18:58, 14:10](2969 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:13] ( 397 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [30:54, 25:57](2984 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:32] ( 4 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:19, 06:00](786 MB) SYNOPSIS: -Starting Date/Time: 20251117 20:24:09 -Ending Date/Time: 20251117 21:42:54 -Total Time: 01h:19m:10s +Starting Date/Time: 20251125 11:24:02 +Ending Date/Time: 20251125 12:44:05 +Total Time: 01h:20m:30s Compiles Completed: 43/43 Tests Completed: 200/200 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index c5a05b0bc4..a70eae4f36 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,21 +1,21 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -12aa48e9af7404cdd2131e5d829ea055a0c130b0 +742e4fd886f1226a7dcbc595078709a8b9961650 Submodule hashes used in testing: - 14c01eb83812d5deca9d95f950d770a1ab056c5d AQM (remotes/origin/feature/guassian_fire_plume) + a57f569b8465b93694051ccd910412355bf5fb09 AQM (remotes/origin/remove_findesmf) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) - 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) + 5278e39e4bbbc8aaf240b203740a1cf904256fca CICE-interface/CICE (remotes/origin/sync_cice_2025-11) 607a0bddcef8b8c4f0c80886be68db88fe52429f CMEPS-interface/CMEPS (cmeps_v0.4.1-2325-g607a0bd) - 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) + 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + 58ae7aa3adef6daf489c707994b32017689b0aa8 LM4-driver (remotes/origin/remove_findesmf) 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - f6dc2070945042f89c7ab87aaaf3a6a02922b6c4 UFSATM (heads/develop) - 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) + 8dbaeb50defdacfce55d726e7b35c7e844388dd2 UFSATM (remotes/origin/remove_findesmf) + e6d31d9ad19a72c069985cd416ddefe25cf955c1 WW3 (remotes/origin/remove_findesmf) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) aea3150e0baa6289a144f6da41d02869ab80f24c stochastic_physics (ufs-v2.0.0-293-gaea3150) @@ -26,419 +26,419 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch3/NAGAPE/epic/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251117 -COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2204056 +BASELINE DIRECTORY: /scratch3/NAGAPE/epic/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251119 +COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1785281 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:10, 18:59] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:04, 11:24](2210 MB) -PASS -- TEST 'cpld_control_gefs_intel' [28:17, 15:19](3048 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [19:38, 05:14](2721 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [28:16, 15:43](3039 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 18:47] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:52, 17:05](2079 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:01, 18:22](2268 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:54, 06:54](1362 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [10:01, 07:52](2209 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:53, 20:40](1860 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [18:10, 16:42] ( 1 warnings 937 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:26, 11:08](2222 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [10:44, 05:50](1513 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:10, 03:32] ( 338 warnings 937 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [15:34, 11:42](2259 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 04:09] ( 360 warnings 2764 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:42, 21:40](1928 MB) - -PASS -- COMPILE 's2swa_intel' [19:10, 17:58] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:24, 12:20](2247 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:21, 11:03](2276 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:09, 06:00](1880 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:14, 11:03](2302 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:12, 06:06](1887 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:06, 10:05](2335 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:15, 11:30](2220 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:14, 11:05](2043 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:19, 11:39](2278 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:59, 13:18](2646 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:45, 08:24](2811 MB) - -PASS -- COMPILE 's2swal_intel' [19:10, 17:56] ( 1 warnings 1065 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [15:21, 12:23](2110 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:13, 05:58](1728 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:08, 07:05](2237 MB) - -PASS -- COMPILE 's2sw_intel' [19:10, 17:40] ( 1 warnings 1012 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:01, 10:57](2104 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:10, 06:24](2181 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 04:12] ( 359 warnings 2013 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:01, 13:26](2307 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:39] ( 359 warnings 1995 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:49, 06:35](2117 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:11, 16:40] ( 1 warnings 948 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:57, 04:08](2164 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:11, 18:11] ( 1 warnings 1030 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:04, 11:09](2277 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:19] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:50, 14:56](2138 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:02, 06:53](1361 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:52, 17:46](1928 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [08:37, 07:05](3081 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:36, 02:13](3069 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:40, 01:18](2510 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:30, 01:12](2260 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:27, 00:42](2261 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:29, 00:33](1582 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:27, 01:12](2254 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:27, 00:42](2259 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:32, 00:33](1583 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:31, 00:43](2190 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:34, 00:34](2184 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:30, 00:30](1532 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:50] ( 360 warnings 2746 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:45, 27:21](1976 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:46] ( 1 warnings 501 remarks ) -PASS -- TEST 'control_flake_intel' [05:22, 03:13](826 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:24, 02:11](1710 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:21](1722 MB) -PASS -- TEST 'control_latlon_intel' [04:22, 02:16](1714 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:25, 02:20](1713 MB) -PASS -- TEST 'control_c48_intel' [08:25, 06:28](1722 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:23, 06:08](849 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:25, 06:44](1701 MB) -PASS -- TEST 'control_c192_intel' [08:35, 06:53](1912 MB) -PASS -- TEST 'control_c384_intel' [10:23, 07:46](1988 MB) -PASS -- TEST 'control_c384gdas_intel' [12:20, 08:18](1366 MB) -PASS -- TEST 'control_stochy_intel' [03:20, 01:37](778 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:18, 00:57](626 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:31](785 MB) -PASS -- TEST 'control_iovr4_intel' [04:20, 02:23](780 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:33, 02:52](1070 MB) -PASS -- TEST 'control_iovr5_intel' [04:21, 02:22](777 MB) -PASS -- TEST 'control_p8_intel' [04:49, 02:46](2002 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:50, 02:55](2013 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:43, 02:44](2005 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:48, 02:41](2025 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:47, 02:50](2046 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:41, 02:05](2382 MB) -PASS -- TEST 'control_restart_p8_intel' [03:40, 01:39](1274 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:39, 02:43](2001 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:37](1280 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:35, 02:50](1990 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:40, 03:06](2024 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:34, 04:42](2014 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:46, 03:55](2063 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:42, 02:51](2018 MB) -PASS -- TEST 'merra2_thompson_intel' [05:40, 03:12](2017 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:29, 04:34](2032 MB) -PASS -- TEST 'regional_control_intel' [06:28, 04:55](1213 MB) -PASS -- TEST 'regional_restart_intel' [04:31, 02:42](1239 MB) -PASS -- TEST 'regional_decomp_intel' [07:27, 05:11](1208 MB) -PASS -- TEST 'regional_2threads_intel' [05:29, 03:47](1081 MB) -PASS -- TEST 'regional_noquilt_intel' [06:31, 04:50](1499 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:30, 04:57](1210 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:58](1215 MB) -PASS -- TEST 'regional_wofs_intel' [08:29, 06:21](2037 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:11, 10:05] ( 1 warnings 481 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:40, 03:49](2026 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 09:27] ( 4 warnings 448 remarks ) -PASS -- TEST 'rap_control_intel' [05:31, 03:23](1159 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:59, 03:49](1311 MB) -PASS -- TEST 'rap_decomp_intel' [05:29, 03:34](1153 MB) -PASS -- TEST 'rap_2threads_intel' [05:35, 03:58](1178 MB) -PASS -- TEST 'rap_restart_intel' [03:33, 01:51](1174 MB) -PASS -- TEST 'rap_sfcdiff_intel' [05:35, 03:24](1166 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:31, 03:35](1154 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:35, 01:50](1173 MB) -PASS -- TEST 'hrrr_control_intel' [05:36, 03:14](1160 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:32, 03:25](1155 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:31, 03:43](1171 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:23, 01:47](1120 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:34, 06:06](1210 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:20, 08:08](2113 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 07:51](2186 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:22] ( 1 warnings 417 remarks ) -PASS -- TEST 'control_csawmg_intel' [07:31, 05:47](1162 MB) -PASS -- TEST 'control_ras_intel' [05:18, 03:08](862 MB) - -PASS -- COMPILE 'wam_intel' [10:11, 08:45] ( 1 warnings 395 remarks ) -PASS -- TEST 'control_wam_intel' [12:40, 10:43](1790 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 08:53] ( 1 warnings 411 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:39, 02:55](1990 MB) -PASS -- TEST 'regional_control_faster_intel' [06:31, 04:54](1198 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:26] ( 419 warnings 589 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:09](1734 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:23, 02:15](1740 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:19, 03:06](950 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:18, 02:43](947 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:15](1262 MB) -PASS -- TEST 'control_ras_debug_intel' [04:21, 02:48](960 MB) -PASS -- TEST 'control_diag_debug_intel' [04:28, 02:47](1798 MB) -PASS -- TEST 'control_debug_p8_intel' [04:38, 02:40](2028 MB) -PASS -- TEST 'regional_debug_intel' [19:38, 17:36](1226 MB) -PASS -- TEST 'rap_control_debug_intel' [06:21, 05:05](1346 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:22, 04:48](1338 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:58](1343 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:52](1334 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 05:02](1341 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:29, 05:08](1432 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 05:01](1338 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:02](1336 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:20, 05:08](1349 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:59](1340 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:52](1338 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 04:57](1342 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 08:15](1339 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:21, 04:59](1341 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:20, 05:02](1343 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:32](1327 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 02:58] ( 380 warnings 395 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:43, 13:36](1815 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:03] ( 4 warnings 415 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 03:40](1187 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:30, 03:02](1103 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:29, 02:57](1104 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:30, 03:31](1022 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:29, 03:23](1015 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:26, 03:11](1024 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:27, 01:39](1064 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:39](1047 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:59] ( 4 warnings 392 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:49, 02:57](1443 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:37, 01:17](1273 MB) -PASS -- TEST 'conus13km_decomp_intel' [04:39, 02:58](1475 MB) -PASS -- TEST 'conus13km_restart_intel' [03:39, 01:41](1316 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:11] ( 4 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:32, 03:45](1117 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:54] ( 313 warnings 421 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 04:52](1218 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:47](1216 MB) -PASS -- TEST 'conus13km_debug_intel' [24:37, 22:10](1473 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [25:40, 23:22](1169 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [21:36, 19:50](1323 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [25:35, 23:45](1514 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:35, 22:40](1555 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:56] ( 313 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 05:00](1301 MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 13:18] ( 1 warnings 695 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:46, 03:47](873 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:18, 05:16](1061 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:27, 03:18](1146 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [30:48, 28:44](1082 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:35, 05:10](489 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:42, 06:04](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:29, 02:35](365 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:08, 06:29](425 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:31, 03:22](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:30, 03:18](516 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:22, 01:05](401 MB) -PASS -- TEST 'gnv1_nested_intel' [05:51, 03:24](1856 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 11:02] ( 1 warnings 928 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:07, 10:22](670 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:32] ( 1 warnings 637 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:45, 05:49](908 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:43, 05:54](888 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [18:11, 16:12] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 03:04](2012 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:57](1948 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:49](1258 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:49](1260 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:50](1271 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 03:00](2008 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:59](2012 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:48](1267 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:17, 07:03](1780 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:22, 07:00](1167 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 03:02](2011 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:16, 04:55](4967 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:17, 04:48](4967 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:49] ( 2 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:16, 07:04](1913 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [18:11, 16:17] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:58](2007 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:00] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:52](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:22, 00:34](307 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:24](308 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:11] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:27, 00:32](634 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:30, 00:17](519 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:11, 16:26] ( 1 warnings 611 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:55, 03:22](2090 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:10, 09:15] ( 1 warnings 499 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:45, 04:26](2099 MB) - -PASS -- COMPILE 'atml_intel' [12:10, 10:31] ( 9 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:45, 03:04](1840 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:31, 01:44](1128 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 04:00] ( 424 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:43, 04:59](1873 MB) - -PASS -- COMPILE 'atmw_intel' [12:10, 10:26] ( 1 warnings 520 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:38, 01:48](2026 MB) - -PASS -- COMPILE 'atmaero_intel' [13:11, 11:32] ( 1 warnings 413 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:44, 04:01](2098 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:34, 04:29](1873 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:38, 04:33](1877 MB) - -PASS -- COMPILE 'atmaq_intel' [11:10, 09:34] ( 1 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_intel' [16:43, 13:08](2925 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [19:24, 16:21](2929 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:09] ( 397 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [42:24, 40:05](2944 MB) - -PASS -- COMPILE 'atm_fbh_intel' [10:10, 08:47] ( 4 warnings 422 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:26, 11:19](1177 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:23] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [05:30, 03:29](1115 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:10, 05:16] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [05:32, 04:07](1113 MB) - -PASS -- COMPILE 'atm_gnu' [06:10, 04:15] -PASS -- TEST 'control_c48_gnu' [11:23, 09:37](1533 MB) -PASS -- TEST 'control_stochy_gnu' [04:17, 02:52](602 MB) -PASS -- TEST 'control_ras_gnu' [06:17, 04:49](605 MB) -PASS -- TEST 'control_p8_gnu' [06:44, 04:22](1527 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:37, 04:23](1557 MB) -PASS -- TEST 'control_flake_gnu' [07:20, 05:31](646 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:10, 03:54] -PASS -- TEST 'rap_control_gnu' [07:29, 05:56](936 MB) -PASS -- TEST 'rap_decomp_gnu' [07:28, 05:59](940 MB) -PASS -- TEST 'rap_2threads_gnu' [08:30, 06:57](1008 MB) -PASS -- TEST 'rap_restart_gnu' [04:31, 03:07](683 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [07:29, 05:56](938 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:30, 06:00](938 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:31, 03:05](679 MB) -PASS -- TEST 'hrrr_control_gnu' [07:30, 05:45](942 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:27, 05:44](933 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [08:31, 06:41](996 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:27, 05:48](944 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 03:00](682 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:20, 02:59](765 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:31, 10:57](936 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:44] -PASS -- TEST 'control_csawmg_gnu' [10:32, 08:31](849 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:58] -PASS -- TEST 'control_diag_debug_gnu' [03:27, 01:33](1370 MB) -PASS -- TEST 'regional_debug_gnu' [10:34, 08:24](876 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:32](950 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:19, 02:30](956 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:29](961 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:17, 02:34](958 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:28, 02:46](1039 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:18, 04:08](948 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:18, 02:34](950 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:31](596 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:35](591 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:32, 01:36](1538 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:19, 02:37](952 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:34](952 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:30, 04:26](966 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:04] -PASS -- TEST 'control_wam_debug_gnu' [08:37, 06:21](1398 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:46] -PASS -- TEST 'control_csawmg_debug_gnu' [04:29, 02:18](832 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:47] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:28, 05:07](793 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:26, 05:01](797 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:28, 06:02](847 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:26, 05:54](840 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:25, 05:05](804 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:27, 02:39](654 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:19, 02:36](657 MB) -PASS -- TEST 'conus13km_control_gnu' [06:55, 04:51](1023 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:44, 02:04](1014 MB) -PASS -- TEST 'conus13km_decomp_gnu' [06:47, 04:52](1031 MB) -PASS -- TEST 'conus13km_restart_gnu' [04:43, 02:41](726 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:56] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:31, 05:43](823 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:08] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:27](806 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:19, 02:25](809 MB) -PASS -- TEST 'conus13km_debug_gnu' [13:39, 11:15](1046 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [13:36, 11:14](773 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:33, 09:02](1034 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [13:33, 11:19](1052 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:34, 10:54](1116 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 07:11] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:33](819 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:52] -PASS -- TEST 'cpld_control_p8_gnu' [13:10, 11:05](1682 MB) - -PASS -- COMPILE 's2s_gnu' [17:11, 16:08] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:56, 09:46](1634 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:02] -PASS -- TEST 'cpld_debug_p8_gnu' [08:59, 06:52](1678 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:16] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:53, 17:45](1605 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:47] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:48, 10:55](1541 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:33] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:17, 03:26](1557 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:11, 03:13] -PASS -- TEST 'control_gfs_mpas_gnu' [02:25, 00:52](6369 MB) - -PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [10:11, 09:05] ( 1 warnings 403 remarks ) -PASS -- TEST 'pm_ideal_supercell_intel' [03:29, 01:23](1163 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:10, 18:54] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:09, 11:14](2208 MB) +PASS -- TEST 'cpld_control_gefs_intel' [33:06, 15:32](3031 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [23:05, 04:57](2729 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [33:07, 15:34](3050 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:10, 18:52] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:01, 17:14](2086 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:04, 18:16](2271 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:52, 06:52](1369 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [20:02, 08:03](2216 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:01, 21:05](1874 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [19:11, 17:39] ( 1 warnings 937 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:37, 11:14](2222 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [10:24, 06:02](1504 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:10, 03:35] ( 338 warnings 937 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [15:41, 11:57](2251 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 04:03] ( 360 warnings 2764 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:51, 22:01](1898 MB) + +PASS -- COMPILE 's2swa_intel' [20:11, 18:58] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:18, 12:09](2286 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:22, 11:36](2281 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:11, 06:03](1888 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:11, 11:34](2295 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:13, 06:12](1874 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:11, 10:07](2339 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:10, 11:34](2271 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:11, 11:08](2055 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:15, 11:09](2290 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:15, 13:39](2650 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:28, 08:41](2804 MB) + +PASS -- COMPILE 's2swal_intel' [21:10, 19:17] ( 1 warnings 1065 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [15:11, 12:32](2119 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:09, 06:06](1724 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:58, 07:14](2253 MB) + +PASS -- COMPILE 's2sw_intel' [19:10, 17:46] ( 1 warnings 1012 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:45, 11:09](2102 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 06:08](2148 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 04:08] ( 359 warnings 2013 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:55, 13:17](2309 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:49] ( 359 warnings 1995 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:49, 06:34](2127 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:11, 17:43] ( 1 warnings 948 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:15](2151 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:10, 19:15] ( 1 warnings 1030 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:03, 11:07](2285 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:10, 17:34] ( 1 warnings 1036 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:50, 14:56](2133 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:59, 06:51](1372 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:49, 17:31](1908 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:36, 07:08](3078 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:35, 02:11](3077 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:36, 01:20](2498 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:29, 01:13](2250 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:28, 00:42](2252 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:29, 00:32](1577 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:31, 01:12](2254 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:31, 00:40](2256 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:35, 00:32](1579 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:31, 00:42](2192 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:31, 00:33](2187 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:33, 00:30](1527 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:47] ( 360 warnings 2746 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:44, 27:46](1975 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:49] ( 1 warnings 501 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:17](824 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:23, 02:11](1712 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:24](1726 MB) +PASS -- TEST 'control_latlon_intel' [04:23, 02:17](1722 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:24](1722 MB) +PASS -- TEST 'control_c48_intel' [08:25, 06:34](1716 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 06:11](849 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:25, 06:42](1714 MB) +PASS -- TEST 'control_c192_intel' [08:33, 06:56](1915 MB) +PASS -- TEST 'control_c384_intel' [13:36, 07:59](1997 MB) +PASS -- TEST 'control_c384gdas_intel' [12:05, 08:35](1370 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:38](784 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:19, 00:58](628 MB) +PASS -- TEST 'control_lndp_intel' [03:18, 01:32](780 MB) +PASS -- TEST 'control_iovr4_intel' [04:20, 02:22](774 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:33, 02:51](1072 MB) +PASS -- TEST 'control_iovr5_intel' [04:19, 02:24](783 MB) +PASS -- TEST 'control_p8_intel' [04:46, 02:49](1993 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:52, 02:51](2015 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:44, 02:40](2007 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:44, 02:40](2029 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:44, 02:49](2044 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:43, 02:01](2415 MB) +PASS -- TEST 'control_restart_p8_intel' [03:38, 01:39](1271 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:41, 02:43](2002 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:36, 01:36](1277 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:40, 02:51](1989 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:40, 03:09](2019 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:37, 04:44](2004 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:44, 03:58](2055 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:38, 02:57](2022 MB) +PASS -- TEST 'merra2_thompson_intel' [05:40, 03:19](2026 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:27, 04:51](2022 MB) +PASS -- TEST 'regional_control_intel' [06:30, 04:55](1214 MB) +PASS -- TEST 'regional_restart_intel' [05:31, 02:43](1239 MB) +PASS -- TEST 'regional_decomp_intel' [07:28, 05:06](1209 MB) +PASS -- TEST 'regional_2threads_intel' [06:29, 03:49](1089 MB) +PASS -- TEST 'regional_noquilt_intel' [06:29, 04:55](1492 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:30, 04:56](1214 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:28, 04:57](1217 MB) +PASS -- TEST 'regional_wofs_intel' [08:27, 06:12](2038 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:11, 10:12] ( 1 warnings 481 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:42, 03:47](2040 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 09:19] ( 4 warnings 448 remarks ) +PASS -- TEST 'rap_control_intel' [05:30, 03:25](1163 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:55, 03:50](1315 MB) +PASS -- TEST 'rap_decomp_intel' [05:30, 03:33](1151 MB) +PASS -- TEST 'rap_2threads_intel' [05:28, 04:02](1177 MB) +PASS -- TEST 'rap_restart_intel' [04:31, 01:52](1180 MB) +PASS -- TEST 'rap_sfcdiff_intel' [05:30, 03:24](1166 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:34, 03:35](1145 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [04:32, 01:51](1174 MB) +PASS -- TEST 'hrrr_control_intel' [05:34, 03:14](1155 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:28, 03:28](1140 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:29, 03:49](1164 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:21, 01:46](1130 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:35, 06:06](1209 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:20, 08:22](2113 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 07:59](2177 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:23] ( 1 warnings 417 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:32, 05:46](1158 MB) +PASS -- TEST 'control_ras_intel' [05:18, 03:09](867 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 08:53] ( 1 warnings 395 remarks ) +PASS -- TEST 'control_wam_intel' [13:42, 10:45](1790 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 08:59] ( 1 warnings 411 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:41, 02:53](2005 MB) +PASS -- TEST 'regional_control_faster_intel' [07:32, 04:57](1204 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:23] ( 419 warnings 589 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:21, 02:14](1738 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:17](1750 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:18, 03:03](950 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:18, 02:51](954 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:31, 04:16](1259 MB) +PASS -- TEST 'control_ras_debug_intel' [05:19, 02:44](959 MB) +PASS -- TEST 'control_diag_debug_intel' [05:30, 02:42](1805 MB) +PASS -- TEST 'control_debug_p8_intel' [05:35, 02:45](2032 MB) +PASS -- TEST 'regional_debug_intel' [20:34, 17:37](1222 MB) +PASS -- TEST 'rap_control_debug_intel' [08:20, 05:06](1337 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:19, 04:47](1331 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:20, 04:54](1341 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:19, 04:57](1341 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:20, 04:55](1341 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:33, 05:13](1426 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:20, 05:04](1345 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:21, 05:09](1344 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:19, 05:08](1343 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:20, 04:50](1345 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:20, 04:59](1337 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:20, 04:53](1342 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 08:08](1337 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 05:01](1343 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:21, 05:03](1341 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:36](1336 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 02:57] ( 380 warnings 395 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:43, 13:51](1815 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:04] ( 4 warnings 415 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 03:40](1181 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:31, 03:04](1110 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:31, 02:56](1106 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:30, 03:35](1019 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:30, 03:27](1017 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:28, 03:07](1030 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:29, 01:39](1067 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:21, 01:37](1052 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:56] ( 4 warnings 392 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:59, 02:56](1440 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:18](1277 MB) +PASS -- TEST 'conus13km_decomp_intel' [05:43, 02:58](1476 MB) +PASS -- TEST 'conus13km_restart_intel' [03:44, 01:41](1312 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:19] ( 4 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:31, 03:48](1116 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:01] ( 313 warnings 421 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:56](1221 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:50](1218 MB) +PASS -- TEST 'conus13km_debug_intel' [24:42, 22:41](1484 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:43, 23:14](1176 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [25:41, 20:01](1314 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [26:41, 24:28](1562 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:39, 22:30](1556 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:12] ( 313 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 04:57](1297 MB) + +PASS -- COMPILE 'hafsw_intel' [15:11, 13:33] ( 1 warnings 695 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:42, 03:45](877 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [15:18, 05:16](1062 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:25, 03:17](1151 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [37:49, 28:35](940 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:36, 05:11](486 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:42, 06:01](507 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [13:29, 02:30](368 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:08, 06:22](420 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [16:31, 03:24](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:37, 03:16](516 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:22, 01:05](398 MB) +PASS -- TEST 'gnv1_nested_intel' [05:52, 03:24](1854 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 11:01] ( 1 warnings 928 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:14, 10:26](665 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:42] ( 1 warnings 637 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [16:44, 05:53](905 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:41, 05:59](882 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [18:11, 16:29] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [12:17, 03:00](2002 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 01:59](1944 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:17, 02:48](1265 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [12:18, 02:54](1263 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [12:17, 02:51](1276 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:17, 02:56](2004 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:17, 03:00](2002 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:17, 02:50](1261 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:16, 07:13](1777 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:19, 06:49](1157 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:15, 02:57](2010 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:17, 04:51](4970 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:45](4965 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:45] ( 2 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:58](1915 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [18:11, 16:43] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:59](2013 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:06] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 00:53](248 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:35](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:24](307 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:13] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:38, 00:32](636 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:35, 00:16](513 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:11, 16:48] ( 1 warnings 611 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:49, 03:22](2087 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:24] ( 1 warnings 499 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:42, 04:28](2098 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 10:38] ( 9 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:40, 03:05](1839 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:35, 01:42](1121 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:10, 04:08] ( 424 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:51, 05:01](1874 MB) + +PASS -- COMPILE 'atmw_intel' [12:10, 10:37] ( 1 warnings 520 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:42, 01:49](2030 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 11:38] ( 1 warnings 413 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:50, 03:56](2098 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:37, 04:31](1872 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:39, 04:35](1893 MB) + +PASS -- COMPILE 'atmaq_intel' [11:10, 09:25] ( 1 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_intel' [15:35, 12:52](2927 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [18:33, 15:57](2924 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:16] ( 397 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:09, 39:44](2941 MB) + +PASS -- COMPILE 'atm_fbh_intel' [12:10, 08:55] ( 4 warnings 422 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:25, 11:12](1220 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 05:29] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [05:30, 03:27](1094 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:11, 05:30] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:29, 04:10](1107 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 04:04] +PASS -- TEST 'control_c48_gnu' [11:24, 09:43](1536 MB) +PASS -- TEST 'control_stochy_gnu' [04:18, 02:51](601 MB) +PASS -- TEST 'control_ras_gnu' [06:18, 04:44](603 MB) +PASS -- TEST 'control_p8_gnu' [07:46, 04:23](1536 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:41, 04:20](1546 MB) +PASS -- TEST 'control_flake_gnu' [08:21, 05:36](650 MB) + +PASS -- COMPILE 'rrfs_gnu' [07:11, 04:08] +PASS -- TEST 'rap_control_gnu' [08:32, 05:59](936 MB) +PASS -- TEST 'rap_decomp_gnu' [08:29, 06:03](941 MB) +PASS -- TEST 'rap_2threads_gnu' [09:31, 07:08](1009 MB) +PASS -- TEST 'rap_restart_gnu' [04:35, 03:07](681 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:30, 06:02](939 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:30, 06:03](942 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:34, 03:06](682 MB) +PASS -- TEST 'hrrr_control_gnu' [07:31, 05:45](941 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:28, 05:47](935 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [08:29, 06:51](998 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:47](943 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:22, 02:59](684 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:22, 02:59](765 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:32, 11:04](934 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 03:46] +PASS -- TEST 'control_csawmg_gnu' [10:32, 08:31](852 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:11, 07:09] +PASS -- TEST 'control_diag_debug_gnu' [03:27, 01:34](1371 MB) +PASS -- TEST 'regional_debug_gnu' [10:33, 08:19](878 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:20, 02:36](951 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [05:23, 02:28](957 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [05:21, 02:32](960 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [05:20, 02:31](955 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:31, 02:46](1035 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:19, 04:09](945 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:19, 02:31](955 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:29](592 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:38](588 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:34, 01:36](1516 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:20, 02:30](951 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:37](950 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:33, 04:20](964 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:14] +PASS -- TEST 'control_wam_debug_gnu' [08:42, 06:34](1398 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:40] +PASS -- TEST 'control_csawmg_debug_gnu' [04:33, 02:20](834 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:57] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:28, 05:12](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:28, 05:01](803 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:29, 06:14](850 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:26, 06:04](839 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:27, 05:09](802 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:26, 02:41](653 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:19, 02:35](659 MB) +PASS -- TEST 'conus13km_control_gnu' [06:51, 04:51](1024 MB) +PASS -- TEST 'conus13km_2threads_gnu' [05:39, 02:08](1013 MB) +PASS -- TEST 'conus13km_decomp_gnu' [07:42, 05:04](1030 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:38, 02:41](731 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:49] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:30, 05:47](825 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:01] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:30](805 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:19, 02:35](810 MB) +PASS -- TEST 'conus13km_debug_gnu' [13:38, 11:28](1046 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [13:39, 11:03](775 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [11:37, 09:15](1041 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [13:35, 11:35](1051 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [13:35, 11:24](1117 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:12, 07:17] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:33](835 MB) + +PASS -- COMPILE 's2swa_gnu' [19:11, 16:51] +PASS -- TEST 'cpld_control_p8_gnu' [14:06, 11:15](1669 MB) + +PASS -- COMPILE 's2s_gnu' [18:11, 16:20] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:53, 09:54](1638 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:12, 02:50] +PASS -- TEST 'cpld_debug_p8_gnu' [08:55, 06:58](1686 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:30] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:47, 17:46](1596 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:45] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:47, 11:06](1530 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [18:12, 15:50] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:18, 03:21](1555 MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [06:11, 03:10] +PASS -- TEST 'control_gfs_mpas_gnu' [03:27, 00:44](6374 MB) + +PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [11:10, 09:10] ( 1 warnings 403 remarks ) +PASS -- TEST 'pm_ideal_supercell_intel' [03:29, 01:23](1164 MB) SYNOPSIS: -Starting Date/Time: 20251118 01:23:42 -Ending Date/Time: 20251118 03:15:04 -Total Time: 01h:51m:51s +Starting Date/Time: 20251125 16:24:13 +Ending Date/Time: 20251125 18:26:08 +Total Time: 02h:02m:29s Compiles Completed: 64/64 Tests Completed: 274/274 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 91044a298b..ebf83b7ec5 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,35 +1,35 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -12aa48e9af7404cdd2131e5d829ea055a0c130b0 +742e4fd886f1226a7dcbc595078709a8b9961650 Submodule hashes used in testing: - 14c01eb83812d5deca9d95f950d770a1ab056c5d AQM (remotes/origin/feature/guassian_fire_plume) + a57f569b8465b93694051ccd910412355bf5fb09 AQM (remotes/origin/remove_findesmf) 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) - 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) - 6a5c51e9e6c643da0760a315e452755661d7d745 CICE-interface/CICE/icepack (Icepack1.1.0-220-g6a5c51e) + 5278e39e4bbbc8aaf240b203740a1cf904256fca CICE-interface/CICE (remotes/origin/sync_cice_2025-11) + 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) 607a0bddcef8b8c4f0c80886be68db88fe52429f CMEPS-interface/CMEPS (cmeps_v0.4.1-2325-g607a0bd) - 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) + 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + 58ae7aa3adef6daf489c707994b32017689b0aa8 LM4-driver (remotes/origin/remove_findesmf) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - f6dc2070945042f89c7ab87aaaf3a6a02922b6c4 UFSATM (heads/develop) + 8dbaeb50defdacfce55d726e7b35c7e844388dd2 UFSATM (remotes/origin/remove_findesmf) 3256121dc4972d5c78f43f1a16ea1cb118ec6daf UFSATM/ccpp/framework (2025-06-03-dev-12-g3256121) - 6382d6140c1c11a3e830716a7f5a9d7eb9d58cab UFSATM/ccpp/physics (EP4-2046-g6382d614) + 7e9ddf0b6bb2ec6034049b05447e060115dd8de0 UFSATM/ccpp/physics (EP4-2052-g7e9ddf0b) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - b0a1b0957d3b79d642f3c01e5cd9441936c7c832 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-429-gb0a1b09) + e514f6d6b585e8fd857f55ef7d92618cd4d995f0 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-438-ge514f6d) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) 1a16f94d20898ff2ffcc3c8b6e036a9a16ed19a4 UFSATM/upp (upp_v10.2.0-327-g1a16f94d) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) + e6d31d9ad19a72c069985cd416ddefe25cf955c1 WW3 (remotes/origin/remove_findesmf) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) aea3150e0baa6289a144f6da41d02869ab80f24c stochastic_physics (ufs-v2.0.0-293-gaea3150) @@ -40,403 +40,403 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work2/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20251117 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_4173407 +BASELINE DIRECTORY: /work2/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20251119 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3466508 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:10, 18:29] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:07, 08:40](2150 MB) -PASS -- TEST 'cpld_control_gefs_intel' [31:17, 16:02](3104 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [20:04, 05:29](2816 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [31:18, 15:24](3168 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:10, 17:56] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:12, 15:53](2022 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:33, 16:17](2330 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:31, 05:53](1346 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [10:41, 07:13](2189 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:14, 16:38](1926 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [20:10, 18:20] ( 1 warnings 937 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:48, 09:28](2311 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [15:21, 05:46](1647 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:10, 03:54] ( 338 warnings 937 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [19:42, 10:45](2338 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:57] ( 360 warnings 2764 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:18, 19:14](1997 MB) - -PASS -- COMPILE 's2swa_intel' [21:10, 19:55] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:07, 09:15](2246 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:08, 08:55](2258 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:03, 05:03](1953 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:59, 08:53](2268 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:11, 05:14](1836 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:54, 09:16](2378 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:53, 09:07](2231 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:01, 07:38](2129 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:08, 08:57](2248 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:42, 16:05](2930 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:28, 06:01](2955 MB) - -PASS -- COMPILE 's2swal_intel' [22:10, 20:21] ( 1 warnings 1065 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [14:07, 09:05](2215 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [11:20, 05:04](1925 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:57, 07:11](2224 MB) - -PASS -- COMPILE 's2sw_intel' [19:10, 17:24] ( 1 warnings 1012 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:56, 08:10](2053 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:01, 06:34](2163 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:13] ( 359 warnings 2013 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:58, 11:34](2284 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:54] ( 359 warnings 1995 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:48, 06:07](2070 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [22:10, 20:40] ( 1 warnings 948 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 04:11](2131 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:10, 20:39] ( 1 warnings 1030 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:00, 08:20](2247 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:10, 20:28] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:59, 12:40](2094 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:09, 05:57](1416 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:59, 13:26](2000 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [07:38, 05:33](3049 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [07:40, 02:38](3032 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [08:41, 01:36](2474 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:28, 00:55](2246 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:28, 00:32](2241 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:22, 00:25](1557 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:28, 00:55](2236 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:28, 00:31](2240 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:22, 00:24](1555 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:23, 00:33](2165 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:24, 00:26](2170 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:21, 00:21](1507 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 04:15] ( 360 warnings 2746 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:02, 21:28](2069 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:10, 11:22] ( 1 warnings 501 remarks ) -PASS -- TEST 'control_flake_intel' [04:21, 02:52](720 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:21, 01:56](1602 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:26, 02:02](1616 MB) -PASS -- TEST 'control_latlon_intel' [03:16, 02:06](1617 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:04](1624 MB) -PASS -- TEST 'control_c48_intel' [07:22, 05:31](1705 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:23, 05:29](843 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [07:21, 05:50](1706 MB) -PASS -- TEST 'control_c192_intel' [13:33, 06:06](1812 MB) -PASS -- TEST 'control_c384_intel' [12:08, 06:55](2017 MB) -PASS -- TEST 'control_c384gdas_intel' [16:09, 07:58](1483 MB) -PASS -- TEST 'control_stochy_intel' [08:18, 01:28](678 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:24, 00:52](540 MB) -PASS -- TEST 'control_lndp_intel' [08:18, 01:22](678 MB) -PASS -- TEST 'control_iovr4_intel' [08:19, 02:08](682 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [09:25, 03:20](970 MB) -PASS -- TEST 'control_iovr5_intel' [08:19, 02:08](676 MB) -PASS -- TEST 'control_p8_intel' [09:45, 03:06](1893 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:56, 03:12](1896 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:48, 03:12](1906 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [09:49, 03:18](1917 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [09:57, 03:11](1936 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:45, 02:22](2424 MB) -PASS -- TEST 'control_restart_p8_intel' [03:48, 01:27](1213 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:52, 02:21](1903 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 01:25](1220 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:35, 02:28](1890 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:51, 02:49](1981 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:05](1906 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:25](1969 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:49, 02:29](1917 MB) -PASS -- TEST 'merra2_thompson_intel' [04:51, 02:47](1911 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:46, 04:26](1917 MB) -PASS -- TEST 'regional_control_intel' [06:24, 04:18](1190 MB) -PASS -- TEST 'regional_restart_intel' [04:28, 02:21](1184 MB) -PASS -- TEST 'regional_decomp_intel' [06:22, 04:34](1192 MB) -PASS -- TEST 'regional_2threads_intel' [05:22, 03:31](1082 MB) -PASS -- TEST 'regional_noquilt_intel' [06:32, 04:12](1504 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:24, 04:15](1195 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:24, 04:16](1180 MB) -PASS -- TEST 'regional_wofs_intel' [07:24, 05:34](2076 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:10, 09:35] ( 1 warnings 481 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:54, 03:17](1945 MB) - -PASS -- COMPILE 'rrfs_intel' [10:10, 08:57] ( 4 warnings 448 remarks ) -PASS -- TEST 'rap_control_intel' [04:46, 02:51](1086 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:49, 03:48](1430 MB) -PASS -- TEST 'rap_decomp_intel' [04:36, 03:01](1062 MB) -PASS -- TEST 'rap_2threads_intel' [05:47, 03:41](1159 MB) -PASS -- TEST 'rap_restart_intel' [03:48, 01:35](1109 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:41, 02:48](1088 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:38, 03:00](1072 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 01:34](1102 MB) -PASS -- TEST 'hrrr_control_intel' [04:52, 02:50](1093 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:40, 02:55](1059 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:45, 03:31](1134 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:24, 01:35](1052 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:55, 05:00](1198 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:19, 06:58](2013 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:20, 06:41](2186 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 09:39] ( 1 warnings 417 remarks ) -PASS -- TEST 'control_csawmg_intel' [07:27, 05:20](1071 MB) -PASS -- TEST 'control_ras_intel' [04:19, 02:49](858 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 08:27] ( 1 warnings 395 remarks ) -PASS -- TEST 'control_wam_intel' [11:35, 09:53](1680 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 08:39] ( 1 warnings 411 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:46, 02:42](1901 MB) -PASS -- TEST 'regional_control_faster_intel' [07:23, 05:59](1188 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 03:56] ( 419 warnings 589 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:21, 02:14](1631 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:19, 02:29](1646 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:17, 03:09](849 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:16, 02:40](852 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:29, 04:58](1152 MB) -PASS -- TEST 'control_ras_debug_intel' [06:16, 02:45](861 MB) -PASS -- TEST 'control_diag_debug_intel' [05:25, 02:38](1699 MB) -PASS -- TEST 'control_debug_p8_intel' [06:36, 03:26](1931 MB) -PASS -- TEST 'regional_debug_intel' [21:32, 18:33](1143 MB) -PASS -- TEST 'rap_control_debug_intel' [08:17, 04:48](1231 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:20, 04:47](1226 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:17, 05:00](1245 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:18, 05:00](1235 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:20, 05:04](1234 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:23, 05:33](1320 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:16, 04:46](1243 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 04:52](1234 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:18, 05:14](1237 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:16, 05:01](1239 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:16, 04:54](1226 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:16, 05:01](1230 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:16, 08:30](1242 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:20, 04:51](1231 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:16, 04:54](1234 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 02:32] ( 380 warnings 395 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:34] ( 4 warnings 415 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:50, 03:02](1312 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 02:37](1042 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:38, 02:32](1042 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 03:20](1086 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:49, 03:12](1058 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:40, 02:41](990 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:45, 01:27](975 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:17, 01:25](963 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:26] ( 4 warnings 392 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:51, 02:33](1497 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:38, 01:16](1323 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:36, 02:36](1537 MB) -PASS -- TEST 'conus13km_restart_intel' [07:33, 01:33](1266 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 08:47] ( 4 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:28, 03:30](1107 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 02:30] ( 313 warnings 421 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:17, 04:15](1109 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:07](1118 MB) -PASS -- TEST 'conus13km_debug_intel' [22:35, 20:43](1540 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [22:33, 20:10](1153 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [22:28, 20:39](1362 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [22:28, 20:39](1582 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:26, 20:26](1609 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:51] ( 313 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:18, 04:00](1200 MB) - -PASS -- COMPILE 'hafsw_intel' [15:10, 13:16] ( 1 warnings 695 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:36, 03:26](981 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [07:02, 04:52](1182 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:19, 02:52](1277 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:46, 14:17](1125 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:38, 04:50](588 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:51, 05:40](607 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:31, 02:27](433 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:22, 06:04](498 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:35, 03:03](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:34, 02:55](606 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:24, 00:54](448 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:10, 10:59] ( 1 warnings 928 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:29, 11:31](835 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:10, 11:19] ( 1 warnings 637 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:40, 05:12](1090 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:37, 05:17](1065 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [18:11, 16:50] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:16, 02:32](1858 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [09:17, 01:38](1819 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:14, 02:16](1123 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:14, 02:23](1121 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:14, 02:21](1124 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:15, 02:28](1868 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:16, 02:31](1872 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:14, 02:20](1112 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:50, 06:21](1720 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:46, 06:10](1197 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:25](1872 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:55](4827 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:55](4829 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:44] ( 2 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:14, 05:32](1777 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [20:11, 18:28] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:28](1871 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:11, 00:43] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:25, 00:57](333 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:22, 00:36](559 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:27, 00:24](555 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [21:10, 16:22] ( 1 warnings 611 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:46, 04:21](2034 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:10, 08:55] ( 1 warnings 499 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:42, 05:03](2050 MB) - -PASS -- COMPILE 'atml_intel' [15:10, 10:47] ( 9 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [07:50, 03:41](1874 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 01:34](1200 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 03:32] ( 424 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:48, 05:13](1903 MB) - -PASS -- COMPILE 'atmw_intel' [12:10, 10:12] ( 1 warnings 520 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:45, 02:38](1940 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 12:34] ( 1 warnings 413 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:43, 04:18](2011 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [12:36, 03:58](1784 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:38, 04:13](1804 MB) - -PASS -- COMPILE 'atmaq_intel' [11:11, 09:12] ( 1 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_intel' [14:18, 11:38](2944 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [17:14, 14:02](2949 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:49] ( 397 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [39:06, 32:21](2958 MB) - -PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:42] ( 4 warnings 422 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:22, 09:50](1082 MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 03:55] -PASS -- TEST 'control_c48_gnu' [13:27, 07:59](1579 MB) -PASS -- TEST 'control_stochy_gnu' [07:19, 02:22](585 MB) -PASS -- TEST 'control_ras_gnu' [08:17, 03:47](594 MB) -PASS -- TEST 'control_p8_gnu' [09:52, 04:33](1530 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [09:35, 04:22](1551 MB) -PASS -- TEST 'control_flake_gnu' [09:20, 04:33](630 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 03:54] -PASS -- TEST 'rap_control_gnu' [06:31, 04:14](939 MB) -PASS -- TEST 'rap_decomp_gnu' [06:30, 04:19](936 MB) -PASS -- TEST 'rap_2threads_gnu' [05:42, 03:42](989 MB) -PASS -- TEST 'rap_restart_gnu' [04:48, 02:10](673 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [06:46, 04:13](931 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [06:38, 04:19](934 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:49, 02:15](676 MB) -PASS -- TEST 'hrrr_control_gnu' [05:47, 04:02](934 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:30, 04:03](919 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:36, 03:40](988 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:35, 04:06](930 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:18, 02:08](670 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:18, 02:10](748 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:53, 07:50](930 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 03:30] -PASS -- TEST 'control_csawmg_gnu' [08:28, 06:44](832 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:10, 06:11] -PASS -- TEST 'control_diag_debug_gnu' [03:25, 01:11](1362 MB) -PASS -- TEST 'regional_debug_gnu' [08:25, 06:53](896 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:16, 01:54](944 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:19, 01:55](941 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:19, 01:59](944 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:18, 02:02](941 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:03](1030 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:16, 03:08](942 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 01:56](945 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:14](577 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:17](572 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:35, 01:17](1543 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:19, 01:56](946 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 01:56](948 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:54, 03:20](950 MB) - -PASS -- COMPILE 'wam_debug_gnu' [07:10, 01:53] -PASS -- TEST 'control_wam_debug_gnu' [07:33, 05:44](1382 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:10, 03:29] -PASS -- TEST 'control_csawmg_debug_gnu' [05:31, 02:37](814 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 03:33] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:42, 03:59](788 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:38, 04:00](789 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:34, 03:37](834 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:37, 03:33](832 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:32, 04:01](788 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:45, 02:06](644 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:18, 02:07](643 MB) -PASS -- TEST 'conus13km_control_gnu' [07:46, 03:58](1030 MB) -PASS -- TEST 'conus13km_2threads_gnu' [05:33, 01:56](1016 MB) -PASS -- TEST 'conus13km_decomp_gnu' [07:33, 03:59](1037 MB) -PASS -- TEST 'conus13km_restart_gnu' [04:35, 02:11](762 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:10, 09:20] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:28, 04:32](817 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:10, 06:23] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:17, 02:07](798 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:19, 02:09](793 MB) -PASS -- TEST 'conus13km_debug_gnu' [11:30, 08:53](1047 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [11:26, 08:57](776 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [11:27, 08:32](1032 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [12:28, 09:30](1054 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:28, 09:14](1120 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:22] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:17, 02:14](824 MB) - -PASS -- COMPILE 's2swa_gnu' [20:10, 18:38] -PASS -- TEST 'cpld_control_p8_gnu' [13:11, 10:16](1713 MB) - -PASS -- COMPILE 's2s_gnu' [21:11, 16:58] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:52, 08:21](1621 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [06:11, 02:30] -PASS -- TEST 'cpld_debug_p8_gnu' [08:53, 06:50](1720 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [20:11, 17:41] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [17:52, 15:10](1592 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:17] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:49, 10:05](1598 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [18:10, 16:50] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:44](1605 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [07:10, 02:50] -PASS -- TEST 'control_gfs_mpas_gnu' [02:25, 00:36](6440 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:11, 20:50] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:04, 07:52](2165 MB) +PASS -- TEST 'cpld_control_gefs_intel' [26:06, 15:09](3114 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [18:16, 04:54](2819 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [26:08, 14:02](3171 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:58] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:04, 15:26](2006 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:22, 16:23](2304 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:27, 05:55](1324 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [10:45, 07:21](2213 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:05, 15:49](1925 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [22:11, 20:21] ( 1 warnings 937 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:36, 09:57](2304 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [10:11, 04:51](1641 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:10, 03:57] ( 338 warnings 937 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [14:36, 09:52](2334 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 04:42] ( 360 warnings 2764 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [21:24, 18:18](1996 MB) + +PASS -- COMPILE 's2swa_intel' [21:11, 19:37] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:08, 08:24](2246 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:06, 07:52](2256 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:06, 04:27](1952 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:54, 07:54](2281 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:16, 04:22](1835 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:54, 08:22](2383 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:54, 08:00](2247 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:01, 06:44](2126 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:06, 08:07](2262 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:52, 14:35](2926 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:23, 05:15](2960 MB) + +PASS -- COMPILE 's2swal_intel' [22:11, 20:41] ( 1 warnings 1065 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [11:04, 08:21](2225 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [07:17, 04:16](1929 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:00, 06:42](2227 MB) + +PASS -- COMPILE 's2sw_intel' [22:11, 20:24] ( 1 warnings 1012 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:56, 07:39](2043 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:04, 06:07](2162 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 04:34] ( 359 warnings 2013 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:01, 11:37](2271 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 04:18] ( 359 warnings 1995 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:53, 06:13](2069 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:11, 16:31] ( 1 warnings 948 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:01, 04:39](2124 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:11, 20:48] ( 1 warnings 1030 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:05, 07:54](2252 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 21:03] ( 1 warnings 1036 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:56, 12:53](2085 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:01, 05:59](1399 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:45, 13:40](1998 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [07:39, 05:33](3046 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:36, 01:39](3031 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:40, 00:59](2468 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:23, 00:56](2244 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:24, 00:32](2237 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:27, 00:24](1540 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [02:23, 00:56](2228 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:24, 00:32](2233 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:24, 00:24](1552 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:23, 00:32](2171 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:24, 00:25](2168 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:23, 00:21](1502 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:27] ( 360 warnings 2746 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:04, 22:04](2065 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:21] ( 1 warnings 501 remarks ) +PASS -- TEST 'control_flake_intel' [04:19, 02:55](723 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:21, 01:56](1606 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:25, 02:06](1622 MB) +PASS -- TEST 'control_latlon_intel' [03:18, 02:01](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:22, 02:06](1609 MB) +PASS -- TEST 'control_c48_intel' [07:22, 05:40](1711 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:22, 05:27](846 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [07:22, 05:49](1706 MB) +PASS -- TEST 'control_c192_intel' [07:32, 06:02](1815 MB) +PASS -- TEST 'control_c384_intel' [09:10, 06:48](2009 MB) +PASS -- TEST 'control_c384gdas_intel' [11:04, 07:55](1487 MB) +PASS -- TEST 'control_stochy_intel' [03:16, 01:30](682 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:24, 00:52](555 MB) +PASS -- TEST 'control_lndp_intel' [03:16, 01:21](675 MB) +PASS -- TEST 'control_iovr4_intel' [03:19, 02:04](680 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:25, 02:28](969 MB) +PASS -- TEST 'control_iovr5_intel' [03:19, 02:06](671 MB) +PASS -- TEST 'control_p8_intel' [05:02, 02:23](1897 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:56, 02:34](1905 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:51, 02:23](1906 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:48, 02:20](1922 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:52, 02:27](1937 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:42, 01:38](2424 MB) +PASS -- TEST 'control_restart_p8_intel' [03:55, 01:27](1188 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:50, 02:21](1904 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:26](1213 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:40, 02:26](1887 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:36, 02:52](1988 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:04](1909 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:51, 03:30](1961 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:43, 02:29](1909 MB) +PASS -- TEST 'merra2_thompson_intel' [04:48, 02:49](1910 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:42, 04:32](1915 MB) +PASS -- TEST 'regional_control_intel' [06:24, 04:21](1189 MB) +PASS -- TEST 'regional_restart_intel' [04:24, 02:27](1182 MB) +PASS -- TEST 'regional_decomp_intel' [06:25, 04:31](1178 MB) +PASS -- TEST 'regional_2threads_intel' [05:24, 03:31](1087 MB) +PASS -- TEST 'regional_noquilt_intel' [06:26, 04:16](1498 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:25, 04:19](1192 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:24, 04:17](1188 MB) +PASS -- TEST 'regional_wofs_intel' [07:24, 05:32](2074 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:11, 09:59] ( 1 warnings 481 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:55, 04:24](1936 MB) + +PASS -- COMPILE 'rrfs_intel' [10:11, 08:37] ( 4 warnings 448 remarks ) +PASS -- TEST 'rap_control_intel' [04:44, 02:54](1083 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:44, 03:47](1423 MB) +PASS -- TEST 'rap_decomp_intel' [04:31, 03:01](1055 MB) +PASS -- TEST 'rap_2threads_intel' [05:36, 03:45](1156 MB) +PASS -- TEST 'rap_restart_intel' [03:53, 01:34](1106 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:43, 02:49](1106 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:37, 03:00](1048 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:50, 01:36](1074 MB) +PASS -- TEST 'hrrr_control_intel' [04:38, 02:50](1087 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:37, 02:57](1061 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:40, 03:31](1132 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:37](1038 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:51, 05:14](1186 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:18, 07:03](2008 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 06:45](2173 MB) + +PASS -- COMPILE 'csawmg_intel' [10:11, 08:32] ( 1 warnings 417 remarks ) +PASS -- TEST 'control_csawmg_intel' [07:22, 05:23](1074 MB) +PASS -- TEST 'control_ras_intel' [04:16, 02:50](837 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 08:27] ( 1 warnings 395 remarks ) +PASS -- TEST 'control_wam_intel' [11:37, 09:48](1674 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 08:26] ( 1 warnings 411 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:46, 02:28](1908 MB) +PASS -- TEST 'regional_control_faster_intel' [06:24, 04:22](1192 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:15] ( 419 warnings 589 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:22](1634 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:15](1636 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:16, 03:04](849 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:48](844 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:28, 04:09](1154 MB) +PASS -- TEST 'control_ras_debug_intel' [04:18, 02:26](858 MB) +PASS -- TEST 'control_diag_debug_intel' [04:24, 02:39](1699 MB) +PASS -- TEST 'control_debug_p8_intel' [04:36, 02:52](1933 MB) +PASS -- TEST 'regional_debug_intel' [20:29, 18:24](1145 MB) +PASS -- TEST 'rap_control_debug_intel' [06:17, 05:05](1234 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:50](1228 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:51](1238 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:46](1231 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:52](1231 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:24, 05:07](1324 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 05:08](1227 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:06](1232 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:17, 04:56](1239 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:17, 04:56](1234 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:17, 04:50](1241 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:16, 04:55](1225 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:16, 08:07](1229 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 05:01](1236 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:16, 04:44](1237 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 02:23] ( 380 warnings 395 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 08:36] ( 4 warnings 415 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:02](1309 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:40, 02:32](1035 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:54, 02:30](1036 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:42, 03:17](1081 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:48, 03:10](1057 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:36, 02:38](993 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:42, 01:26](983 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:18, 01:24](957 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:09] ( 4 warnings 392 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:48, 02:31](1497 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:37, 01:13](1318 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:36, 02:38](1524 MB) +PASS -- TEST 'conus13km_restart_intel' [06:32, 01:30](1257 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:22] ( 4 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:27, 03:43](1101 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:48] ( 313 warnings 421 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:15](1119 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 03:59](1110 MB) +PASS -- TEST 'conus13km_debug_intel' [21:44, 19:59](1545 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:42, 20:06](1149 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [22:30, 20:35](1364 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [22:30, 20:50](1593 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:31, 19:36](1584 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:31] ( 313 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 04:11](1199 MB) + +PASS -- COMPILE 'hafsw_intel' [14:10, 12:55] ( 1 warnings 695 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:36, 03:20](982 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [07:03, 05:04](1190 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:20, 02:48](1277 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:45, 14:23](1109 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:36, 04:40](589 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:43, 05:24](610 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:31, 02:13](429 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:23, 05:50](499 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:34, 03:08](606 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:31, 02:56](607 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:22, 00:55](449 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:26] ( 1 warnings 928 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:31, 11:36](825 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 11:30] ( 1 warnings 637 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:36, 05:11](1075 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:40, 05:15](1065 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [18:11, 16:37] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:16, 02:32](1868 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:34](1801 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:18](1130 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:15, 02:18](1123 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:18](1118 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:15, 02:29](1873 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:15, 02:28](1867 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:19](1124 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:56, 06:15](1709 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:54, 05:58](1200 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:28](1870 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:54](4836 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:57](4822 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:13] ( 2 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:29](1789 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [18:11, 16:52] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:24](1868 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:42] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:55](338 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:22, 00:35](554 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:27](561 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:10, 16:42] ( 1 warnings 611 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:42, 03:07](2045 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:57] ( 1 warnings 499 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:47, 04:08](2046 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 09:25] ( 9 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:55, 02:41](1876 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:40, 01:31](1205 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:32] ( 424 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:52, 04:23](1908 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:52] ( 1 warnings 520 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:37](1946 MB) + +PASS -- COMPILE 'atmaero_intel' [13:10, 11:48] ( 1 warnings 413 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:43, 04:19](2011 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:35, 04:52](1783 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:38, 04:43](1804 MB) + +PASS -- COMPILE 'atmaq_intel' [11:11, 09:20] ( 1 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_intel' [14:23, 11:41](2941 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [16:18, 14:06](2947 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:48] ( 397 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [34:01, 31:38](2954 MB) + +PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:19] ( 4 warnings 422 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:22, 09:45](1079 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 03:51] +PASS -- TEST 'control_c48_gnu' [09:30, 07:44](1578 MB) +PASS -- TEST 'control_stochy_gnu' [04:20, 02:19](583 MB) +PASS -- TEST 'control_ras_gnu' [05:16, 03:45](592 MB) +PASS -- TEST 'control_p8_gnu' [05:57, 03:30](1538 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:41, 03:26](1528 MB) +PASS -- TEST 'control_flake_gnu' [06:21, 04:32](632 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:10, 03:40] +PASS -- TEST 'rap_control_gnu' [06:34, 04:11](936 MB) +PASS -- TEST 'rap_decomp_gnu' [06:33, 04:18](937 MB) +PASS -- TEST 'rap_2threads_gnu' [05:44, 03:35](992 MB) +PASS -- TEST 'rap_restart_gnu' [04:51, 02:14](674 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [06:36, 04:16](937 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [06:35, 04:20](935 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:54, 02:11](673 MB) +PASS -- TEST 'hrrr_control_gnu' [05:48, 04:06](930 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:43, 04:02](921 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:37, 03:39](985 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:32, 04:05](934 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:25, 02:10](671 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:23, 02:08](750 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:59, 07:51](931 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:10, 03:44] +PASS -- TEST 'control_csawmg_gnu' [08:30, 06:41](834 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:38] +PASS -- TEST 'control_diag_debug_gnu' [03:28, 01:16](1362 MB) +PASS -- TEST 'regional_debug_gnu' [08:27, 06:24](874 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:17, 01:55](943 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:19, 01:54](940 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:19, 02:00](944 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 01:56](947 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:23, 02:20](1034 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:17, 03:09](940 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:20, 01:57](946 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:09](575 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:15](575 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:16](1528 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:21, 01:56](946 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:00](945 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:50, 03:19](948 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:46] +PASS -- TEST 'control_wam_debug_gnu' [07:40, 05:22](1381 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:11] +PASS -- TEST 'control_csawmg_debug_gnu' [04:27, 02:03](812 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:45] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:37, 04:00](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:48, 03:51](789 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:36, 03:38](834 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:37, 03:30](830 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:37, 04:01](790 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:43, 02:09](647 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:18, 02:04](646 MB) +PASS -- TEST 'conus13km_control_gnu' [06:57, 03:57](1033 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:33, 01:58](1016 MB) +PASS -- TEST 'conus13km_decomp_gnu' [06:36, 04:00](1038 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:34, 02:10](760 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:30] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:32, 04:29](818 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:06] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 02:13](796 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:06](792 MB) +PASS -- TEST 'conus13km_debug_gnu' [11:32, 09:19](1048 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [11:29, 08:58](774 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [12:28, 08:50](1030 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [11:30, 09:02](1051 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:28, 09:01](1119 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:24] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:04](825 MB) + +PASS -- COMPILE 's2swa_gnu' [22:11, 17:39] +PASS -- TEST 'cpld_control_p8_gnu' [13:25, 10:12](1716 MB) + +PASS -- COMPILE 's2s_gnu' [20:11, 15:46] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:00, 08:21](1621 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [07:10, 02:18] +PASS -- TEST 'cpld_debug_p8_gnu' [07:56, 05:46](1721 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [20:11, 16:16] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [16:53, 14:01](1582 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 02:17] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:57, 09:02](1575 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [20:11, 16:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:16, 02:44](1605 MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:10, 02:58] +PASS -- TEST 'control_gfs_mpas_gnu' [02:21, 00:37](6449 MB) SYNOPSIS: -Starting Date/Time: 20251117 18:28:19 -Ending Date/Time: 20251117 20:24:11 -Total Time: 01h:56m:44s +Starting Date/Time: 20251125 10:59:02 +Ending Date/Time: 20251125 12:39:19 +Total Time: 01h:41m:13s Compiles Completed: 60/60 Tests Completed: 266/266 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 7c3811a303..7dedd00933 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,35 +1,35 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -12aa48e9af7404cdd2131e5d829ea055a0c130b0 +9685c174806f26732e9ebed384dc2cbccd82ba63 Submodule hashes used in testing: - 14c01eb83812d5deca9d95f950d770a1ab056c5d AQM (remotes/origin/feature/guassian_fire_plume) + a57f569b8465b93694051ccd910412355bf5fb09 AQM (remotes/origin/remove_findesmf) 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) - 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) - 6a5c51e9e6c643da0760a315e452755661d7d745 CICE-interface/CICE/icepack (Icepack1.1.0-220-g6a5c51e) + 5278e39e4bbbc8aaf240b203740a1cf904256fca CICE-interface/CICE (remotes/origin/sync_cice_2025-11) + 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) 607a0bddcef8b8c4f0c80886be68db88fe52429f CMEPS-interface/CMEPS (cmeps_v0.4.1-2325-g607a0bd) - 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) + 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + 58ae7aa3adef6daf489c707994b32017689b0aa8 LM4-driver (remotes/origin/remove_findesmf) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - f6dc2070945042f89c7ab87aaaf3a6a02922b6c4 UFSATM (heads/develop) + 09ce53932b36cce28a93ec37aab78065588b2be6 UFSATM (remotes/origin/remove_findesmf) 3256121dc4972d5c78f43f1a16ea1cb118ec6daf UFSATM/ccpp/framework (2025-06-03-dev-12-g3256121) - 6382d6140c1c11a3e830716a7f5a9d7eb9d58cab UFSATM/ccpp/physics (EP4-2046-g6382d614) + 7e9ddf0b6bb2ec6034049b05447e060115dd8de0 UFSATM/ccpp/physics (EP4-2052-g7e9ddf0b) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - b0a1b0957d3b79d642f3c01e5cd9441936c7c832 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-429-gb0a1b09) + e514f6d6b585e8fd857f55ef7d92618cd4d995f0 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-438-ge514f6d) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) 1a16f94d20898ff2ffcc3c8b6e036a9a16ed19a4 UFSATM/upp (upp_v10.2.0-327-g1a16f94d) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) + e6d31d9ad19a72c069985cd416ddefe25cf955c1 WW3 (remotes/origin/remove_findesmf) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) aea3150e0baa6289a144f6da41d02869ab80f24c stochastic_physics (ufs-v2.0.0-293-gaea3150) @@ -40,310 +40,310 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work2/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20251117 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_488074 +BASELINE DIRECTORY: /work2/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20251119 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3450539 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [25:11, 23:56] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:49, 16:07](2106 MB) -PASS -- TEST 'cpld_control_gefs_intel' [33:48, 19:04](3044 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [24:10, 06:49](2732 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [34:14, 19:54](3053 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:11, 28:14] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:11, 22:12](1970 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:02, 24:18](2149 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:44, 09:26](1231 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:13, 10:29](2088 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:06, 26:40](1886 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [29:12, 27:55] ( 1 warnings 937 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:58, 12:27](2226 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [15:34, 07:23](1522 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:11, 05:10] ( 338 warnings 937 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [17:15, 11:33](2254 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:24] ( 360 warnings 2764 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:59, 21:54](1947 MB) - -PASS -- COMPILE 's2swa_intel' [31:12, 29:28] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:06, 16:59](2180 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:56, 15:57](2184 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:15, 08:35](1766 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:44, 15:50](2201 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:13, 08:17](1764 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:44, 11:29](2290 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:44, 16:01](2177 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:46, 13:42](2062 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:55, 16:04](2189 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:12, 15:54](2666 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:22, 08:41](2825 MB) - -PASS -- COMPILE 's2swal_intel' [31:12, 29:28] ( 1 warnings 1065 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [20:01, 17:02](2141 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:28, 08:32](1739 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:23, 07:36](2157 MB) - -PASS -- COMPILE 's2sw_intel' [25:11, 23:40] ( 1 warnings 1012 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [18:32, 15:30](1992 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:41, 06:23](2087 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:41] ( 359 warnings 2013 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:31, 13:18](2195 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:59] ( 359 warnings 1995 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:12, 06:45](2021 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [23:11, 21:54] ( 1 warnings 948 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:25, 04:27](2068 MB) - -PASS -- COMPILE 's2swa_faster_intel' [32:11, 31:05] ( 1 warnings 1030 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:39, 15:35](2184 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [28:11, 26:11] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:22, 20:13](2022 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:11, 09:28](1240 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:25, 23:24](1936 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [10:00, 07:37](3053 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:54, 02:24](3044 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:10, 01:24](2478 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:32, 01:22](2244 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:32, 00:47](2239 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:33, 00:35](1552 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:31, 01:21](2245 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:41, 00:47](2235 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:41, 00:35](1552 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:41, 00:48](2165 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:33, 00:40](2169 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:38, 00:31](1495 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:22] ( 360 warnings 2746 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:27, 28:12](1998 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:11, 15:44] ( 1 warnings 501 remarks ) -PASS -- TEST 'control_flake_intel' [05:24, 03:41](695 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:29, 02:28](1590 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:36, 02:40](1591 MB) -PASS -- TEST 'control_latlon_intel' [04:25, 02:37](1584 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:29, 02:39](1587 MB) -PASS -- TEST 'control_c48_intel' [10:32, 08:31](1715 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:31, 07:54](842 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:31, 08:44](1712 MB) -PASS -- TEST 'control_c192_intel' [09:40, 07:44](1784 MB) -PASS -- TEST 'control_c384_intel' [12:46, 09:29](1974 MB) -PASS -- TEST 'control_c384gdas_intel' [15:20, 10:29](1299 MB) -PASS -- TEST 'control_stochy_intel' [03:25, 01:47](652 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:38, 01:05](481 MB) -PASS -- TEST 'control_lndp_intel' [03:21, 01:40](652 MB) -PASS -- TEST 'control_iovr4_intel' [04:26, 02:38](660 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:38, 03:06](945 MB) -PASS -- TEST 'control_iovr5_intel' [04:28, 02:38](647 MB) -PASS -- TEST 'control_p8_intel' [05:51, 03:00](1877 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:30, 03:12](1889 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 02:59](1884 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:29, 02:57](1901 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:49, 03:04](1912 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:19, 02:08](2400 MB) -PASS -- TEST 'control_restart_p8_intel' [05:09, 01:46](1130 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:35, 02:57](1885 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:36, 01:45](1131 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:10, 03:02](1876 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:35, 03:24](1976 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:11](1882 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:19, 04:31](1941 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:32, 03:10](1891 MB) -PASS -- TEST 'merra2_thompson_intel' [06:48, 03:35](1898 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [08:27, 05:31](1898 MB) -PASS -- TEST 'regional_control_intel' [07:50, 06:07](1075 MB) -PASS -- TEST 'regional_restart_intel' [05:39, 03:19](1096 MB) -PASS -- TEST 'regional_decomp_intel' [08:42, 06:26](1074 MB) -PASS -- TEST 'regional_2threads_intel' [05:43, 04:08](1011 MB) -PASS -- TEST 'regional_noquilt_intel' [07:49, 06:05](1355 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:56, 06:06](1081 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 06:07](1076 MB) -PASS -- TEST 'regional_wofs_intel' [09:45, 07:38](1898 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [16:11, 14:22] ( 1 warnings 481 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:35, 04:26](1910 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 13:09] ( 4 warnings 448 remarks ) -PASS -- TEST 'rap_control_intel' [07:22, 04:11](1039 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:10, 05:15](1358 MB) -PASS -- TEST 'rap_decomp_intel' [07:34, 04:21](1031 MB) -PASS -- TEST 'rap_2threads_intel' [07:00, 04:27](1131 MB) -PASS -- TEST 'rap_restart_intel' [05:41, 02:17](1008 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:17, 04:10](1033 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:04, 04:21](1031 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:37, 02:16](1002 MB) -PASS -- TEST 'hrrr_control_intel' [06:06, 04:02](1031 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:59, 04:08](1028 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:25, 04:11](1128 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:54, 02:12](961 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:28, 07:27](1043 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:12](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 08:43](2010 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:40] ( 1 warnings 417 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:50, 06:10](1039 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:21](741 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:16] ( 1 warnings 395 remarks ) -PASS -- TEST 'control_wam_intel' [14:49, 12:33](1668 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:20] ( 1 warnings 411 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:29, 03:09](1876 MB) -PASS -- TEST 'regional_control_faster_intel' [07:37, 06:07](1080 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 06:35] ( 419 warnings 589 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:33, 02:11](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:31, 02:18](1615 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:04](829 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:45](822 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:45, 04:58](1135 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 02:45](832 MB) -PASS -- TEST 'control_diag_debug_intel' [04:37, 02:46](1679 MB) -PASS -- TEST 'control_debug_p8_intel' [04:51, 02:50](1910 MB) -PASS -- TEST 'regional_debug_intel' [19:47, 17:30](1079 MB) -PASS -- TEST 'rap_control_debug_intel' [06:28, 04:50](1216 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:27, 04:45](1205 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:59](1212 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:58](1202 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 04:56](1206 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:17](1295 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:03](1211 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 05:01](1207 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:03](1213 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:50](1207 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:49](1205 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:59](1208 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:51](1207 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:31, 05:00](1214 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:23, 05:00](1213 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:30] ( 380 warnings 395 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:47, 13:33](1696 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:22] ( 4 warnings 415 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:04, 04:57](1246 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:19, 03:44](939 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:37, 03:36](922 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:50, 03:59](973 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:03, 03:50](958 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:28, 03:45](911 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:31, 02:03](883 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:39, 02:01](882 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 12:16] ( 4 warnings 392 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:12, 03:41](1301 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:47, 01:29](1231 MB) -PASS -- TEST 'conus13km_decomp_intel' [05:54, 03:45](1331 MB) -PASS -- TEST 'conus13km_restart_intel' [03:57, 02:06](1176 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 12:30] ( 4 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:24](1006 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:20] ( 313 warnings 421 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:49](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:49](1087 MB) -PASS -- TEST 'conus13km_debug_intel' [24:48, 22:19](1351 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:42, 22:31](1048 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:38, 21:43](1270 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [25:38, 23:11](1388 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:55, 22:34](1404 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:22] ( 313 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:51](1173 MB) - -PASS -- COMPILE 'hafsw_intel' [20:10, 18:39] ( 1 warnings 695 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:53, 04:39](871 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:23, 05:59](1067 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:27, 04:18](1184 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:02, 29:35](990 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:53, 06:35](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:05, 07:26](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:47, 03:17](361 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:51, 08:06](416 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:51, 04:19](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:44, 04:07](518 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:21](397 MB) -PASS -- TEST 'gnv1_nested_intel' [06:46, 03:45](1728 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:10, 17:02] ( 1 warnings 928 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:09, 11:23](717 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:10, 13:12] ( 1 warnings 637 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:57, 06:35](950 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:53, 06:36](938 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [21:11, 19:15] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 03:28](1872 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:25](1813 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 03:07](1127 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 03:08](1131 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 03:09](1132 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:17, 03:29](1863 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:21, 03:27](1865 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 03:05](1128 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:24, 07:34](1663 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:18, 07:15](1034 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:28](1874 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:18, 05:51](4833 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:18, 05:53](4829 MB) +PASS -- COMPILE 's2swa_32bit_intel' [32:11, 30:18] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:30, 15:33](2107 MB) +PASS -- TEST 'cpld_control_gefs_intel' [32:56, 18:58](3055 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [20:59, 05:53](2725 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [33:20, 19:54](3076 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [37:12, 35:30] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:58, 22:05](1965 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:56, 24:14](2134 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:39, 09:22](1227 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:57, 10:32](2088 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:06, 26:32](1874 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [33:12, 31:14] ( 1 warnings 937 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:17, 12:29](2235 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [13:28, 06:28](1515 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:11, 06:06] ( 338 warnings 937 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [16:07, 11:32](2258 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 07:13] ( 360 warnings 2764 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:07, 21:57](1947 MB) + +PASS -- COMPILE 's2swa_intel' [33:11, 31:20] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:41, 16:54](2199 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:36, 15:54](2184 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:51, 08:26](1778 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:32, 16:17](2212 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:39, 08:39](1767 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:35, 11:33](2289 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:25, 16:04](2167 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:35, 13:37](2063 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:37, 15:47](2198 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:33, 15:54](2667 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:31, 09:06](2854 MB) + +PASS -- COMPILE 's2swal_intel' [37:12, 36:02] ( 1 warnings 1065 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [19:36, 16:59](2139 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [11:47, 08:43](1744 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:21, 07:33](2148 MB) + +PASS -- COMPILE 's2sw_intel' [34:11, 32:35] ( 1 warnings 1012 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:16, 15:42](1992 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:32, 06:22](2087 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:58] ( 359 warnings 2013 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:25, 13:20](2208 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:39] ( 359 warnings 1995 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:05, 06:48](2016 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [24:11, 22:18] ( 1 warnings 948 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:35, 04:26](2064 MB) + +PASS -- COMPILE 's2swa_faster_intel' [36:12, 34:17] ( 1 warnings 1030 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:43, 16:09](2188 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [35:12, 33:56] ( 1 warnings 1036 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:18, 20:16](2015 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 09:26](1239 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:27, 23:29](1931 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:58, 07:37](3050 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:57, 02:23](3041 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:03, 01:23](2469 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:33, 01:21](2243 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:33, 00:47](2238 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:36, 00:35](1553 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:33, 01:20](2231 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:34, 00:47](2235 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:36, 00:35](1547 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:32, 00:48](2157 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:31, 00:41](2167 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:37, 00:30](1504 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:49] ( 360 warnings 2746 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:13, 27:57](1992 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:48] ( 1 warnings 501 remarks ) +PASS -- TEST 'control_flake_intel' [05:34, 03:40](696 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:38, 02:29](1588 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:45, 02:40](1603 MB) +PASS -- TEST 'control_latlon_intel' [04:34, 02:37](1599 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:39, 02:39](1598 MB) +PASS -- TEST 'control_c48_intel' [10:40, 08:31](1715 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:38, 07:53](833 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:40, 08:44](1720 MB) +PASS -- TEST 'control_c192_intel' [09:57, 07:44](1776 MB) +PASS -- TEST 'control_c384_intel' [12:54, 09:30](1973 MB) +PASS -- TEST 'control_c384gdas_intel' [15:15, 10:26](1312 MB) +PASS -- TEST 'control_stochy_intel' [03:32, 01:49](650 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:47, 01:05](484 MB) +PASS -- TEST 'control_lndp_intel' [03:32, 01:40](652 MB) +PASS -- TEST 'control_iovr4_intel' [04:34, 02:39](651 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:00, 03:07](949 MB) +PASS -- TEST 'control_iovr5_intel' [04:34, 02:38](653 MB) +PASS -- TEST 'control_p8_intel' [05:33, 03:01](1874 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:33, 03:11](1880 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:42, 02:58](1892 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:41, 02:56](1902 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:58, 03:05](1914 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:30, 02:08](2398 MB) +PASS -- TEST 'control_restart_p8_intel' [04:40, 01:46](1123 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:33, 02:58](1882 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 01:44](1129 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:33, 03:02](1866 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:15, 03:24](1962 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:37, 05:11](1890 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:14, 04:33](1932 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:13, 03:10](1896 MB) +PASS -- TEST 'merra2_thompson_intel' [06:25, 03:36](1888 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [08:15, 05:22](1895 MB) +PASS -- TEST 'regional_control_intel' [07:31, 06:07](1079 MB) +PASS -- TEST 'regional_restart_intel' [05:37, 03:18](1100 MB) +PASS -- TEST 'regional_decomp_intel' [08:33, 06:25](1071 MB) +PASS -- TEST 'regional_2threads_intel' [05:32, 04:09](1023 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 06:04](1365 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:37, 06:05](1075 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 06:06](1080 MB) +PASS -- TEST 'regional_wofs_intel' [09:34, 07:39](1901 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [16:11, 14:17] ( 1 warnings 481 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:11, 04:25](1909 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 13:08] ( 4 warnings 448 remarks ) +PASS -- TEST 'rap_control_intel' [07:15, 04:11](1036 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:58, 05:14](1360 MB) +PASS -- TEST 'rap_decomp_intel' [07:08, 04:21](1029 MB) +PASS -- TEST 'rap_2threads_intel' [06:56, 04:26](1136 MB) +PASS -- TEST 'rap_restart_intel' [05:39, 02:18](1002 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:04, 04:10](1036 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:54, 04:20](1025 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:42, 02:17](1002 MB) +PASS -- TEST 'hrrr_control_intel' [06:20, 04:00](1034 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:14, 04:09](1025 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:21, 04:11](1106 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:52, 02:13](964 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:19, 07:28](1040 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:06](1991 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:44](2014 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:48] ( 1 warnings 417 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:34, 06:10](1040 MB) +PASS -- TEST 'control_ras_intel' [05:24, 03:22](740 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:13] ( 1 warnings 395 remarks ) +PASS -- TEST 'control_wam_intel' [14:45, 12:25](1670 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:40] ( 1 warnings 411 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:19, 03:08](1883 MB) +PASS -- TEST 'regional_control_faster_intel' [07:36, 06:06](1080 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:27] ( 419 warnings 589 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:28, 02:13](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:26, 02:19](1620 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:21, 03:03](826 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:43](822 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:12](1123 MB) +PASS -- TEST 'control_ras_debug_intel' [04:21, 02:46](826 MB) +PASS -- TEST 'control_diag_debug_intel' [04:31, 02:48](1673 MB) +PASS -- TEST 'control_debug_p8_intel' [04:49, 02:41](1915 MB) +PASS -- TEST 'regional_debug_intel' [18:37, 16:55](1089 MB) +PASS -- TEST 'rap_control_debug_intel' [06:21, 04:58](1210 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:54](1204 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:55](1203 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 05:00](1211 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:58](1211 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:34, 05:15](1301 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:02](1202 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:00](1209 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:00](1206 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:59](1209 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:54](1209 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:55](1209 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 07:55](1203 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 04:52](1211 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:56](1208 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:29] ( 380 warnings 395 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:47, 13:19](1695 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:24] ( 4 warnings 415 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:00, 04:58](1244 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:12, 03:44](942 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:32, 03:36](930 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:57, 03:57](971 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:00, 03:49](964 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:24, 03:45](909 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:20, 02:03](889 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:37, 02:01](881 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:05] ( 4 warnings 392 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:02, 03:41](1310 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:51, 01:28](1219 MB) +PASS -- TEST 'conus13km_decomp_intel' [05:52, 03:44](1339 MB) +PASS -- TEST 'conus13km_restart_intel' [03:57, 02:06](1175 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:52] ( 4 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:41, 04:23](1009 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:28] ( 313 warnings 421 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:46](1087 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:43](1085 MB) +PASS -- TEST 'conus13km_debug_intel' [24:48, 22:41](1334 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:46, 22:14](1048 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:43, 21:48](1259 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [24:44, 23:03](1372 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:45, 21:54](1413 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:49] ( 313 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 04:56](1175 MB) + +PASS -- COMPILE 'hafsw_intel' [20:11, 18:49] ( 1 warnings 695 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:49, 04:40](870 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:22, 05:59](1056 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 04:18](1174 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:58, 28:56](984 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:48, 06:34](485 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:00, 07:29](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:43, 03:17](361 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:49, 08:08](416 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:44, 04:19](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:37, 04:07](523 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:23](393 MB) +PASS -- TEST 'gnv1_nested_intel' [06:38, 03:44](1729 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:10, 14:54] ( 1 warnings 928 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:06, 11:14](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:10, 14:12] ( 1 warnings 637 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:57, 06:32](958 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:47, 06:42](939 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [24:11, 22:27] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:18, 03:29](1867 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 02:24](1818 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 03:05](1124 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 03:06](1132 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 03:09](1120 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:17, 03:25](1863 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:25](1854 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 03:03](1126 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:32](1654 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:13, 07:10](1028 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:16, 03:27](1869 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:19, 05:50](4835 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:19, 05:51](4829 MB) PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:34] ( 2 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:57](1774 MB) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:55](1775 MB) -PASS -- COMPILE 'datm_cdeps_faster_intel' [21:11, 19:32] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:18, 03:24](1869 MB) +PASS -- COMPILE 'datm_cdeps_faster_intel' [23:11, 21:22] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:18, 03:25](1869 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:17] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:14](254 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 00:46](317 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:30](315 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:16] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 01:18](248 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:47](315 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:30](313 MB) -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:31] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:36](564 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:36, 00:20](445 MB) +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:36] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:36](566 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:31, 00:19](451 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [23:11, 21:53] ( 1 warnings 611 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:13, 03:45](1981 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [23:11, 21:20] ( 1 warnings 611 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:06, 03:47](1978 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:18] ( 1 warnings 499 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:07, 04:44](1989 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:10, 14:46] ( 1 warnings 499 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:05, 04:44](1991 MB) -PASS -- COMPILE 'atml_intel' [16:11, 14:27] ( 9 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [06:32, 03:32](1859 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:01, 01:58](1108 MB) +PASS -- COMPILE 'atml_intel' [15:11, 13:58] ( 9 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [06:28, 03:31](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:00, 01:59](1104 MB) -PASS -- COMPILE 'atml_debug_intel' [07:10, 06:03] ( 424 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:28, 05:00](1895 MB) +PASS -- COMPILE 'atml_debug_intel' [07:10, 06:08] ( 424 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:21, 04:54](1885 MB) -PASS -- COMPILE 'atmw_intel' [15:11, 14:02] ( 1 warnings 520 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:22, 02:02](1912 MB) +PASS -- COMPILE 'atmw_intel' [15:11, 13:12] ( 1 warnings 520 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 02:01](1910 MB) -PASS -- COMPILE 'atmaero_intel' [16:11, 14:25] ( 1 warnings 413 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:16, 04:24](1984 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:01, 05:09](1769 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:00, 05:17](1774 MB) +PASS -- COMPILE 'atmaero_intel' [17:11, 15:24] ( 1 warnings 413 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:16, 04:22](1985 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:58, 05:11](1755 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:59, 05:17](1778 MB) -PASS -- COMPILE 'atmaq_intel' [14:11, 12:45] ( 1 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_intel' [21:00, 17:49](2919 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [24:58, 21:24](2907 MB) +PASS -- COMPILE 'atmaq_intel' [14:11, 13:06] ( 1 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_intel' [21:52, 18:13](2907 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [24:49, 21:34](2907 MB) -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 05:00] ( 397 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [42:53, 39:29](2932 MB) +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:55] ( 397 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:44, 39:47](2930 MB) -PASS -- COMPILE 'atm_fbh_intel' [13:11, 11:46] ( 4 warnings 422 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:28, 13:53](1084 MB) +PASS -- COMPILE 'atm_fbh_intel' [13:10, 11:51] ( 4 warnings 422 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:27, 13:56](1085 MB) SYNOPSIS: -Starting Date/Time: 20251117 18:27:27 -Ending Date/Time: 20251117 20:37:04 -Total Time: 02h:10m:34s +Starting Date/Time: 20251124 19:59:54 +Ending Date/Time: 20251124 22:10:58 +Total Time: 02h:11m:56s Compiles Completed: 44/44 Tests Completed: 205/205 diff --git a/tests/logs/RegressionTests_ursa.log b/tests/logs/RegressionTests_ursa.log index a47c699aeb..cc53022b81 100644 --- a/tests/logs/RegressionTests_ursa.log +++ b/tests/logs/RegressionTests_ursa.log @@ -1,35 +1,35 @@ ====START OF URSA REGRESSION TESTING LOG==== UFSWM hash used in testing: -12aa48e9af7404cdd2131e5d829ea055a0c130b0 +07852db3c89a77f748f97777b50d45073782d0f3 Submodule hashes used in testing: - 14c01eb83812d5deca9d95f950d770a1ab056c5d AQM (remotes/origin/feature/guassian_fire_plume) + a57f569b8465b93694051ccd910412355bf5fb09 AQM (remotes/origin/remove_findesmf) 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) - 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) - 6a5c51e9e6c643da0760a315e452755661d7d745 CICE-interface/CICE/icepack (Icepack1.1.0-220-g6a5c51e) + 5278e39e4bbbc8aaf240b203740a1cf904256fca CICE-interface/CICE (remotes/origin/sync_cice_2025-11) + 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) 607a0bddcef8b8c4f0c80886be68db88fe52429f CMEPS-interface/CMEPS (cmeps_v0.4.1-2325-g607a0bd) - 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) + 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + 58ae7aa3adef6daf489c707994b32017689b0aa8 LM4-driver (remotes/origin/remove_findesmf) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - f6dc2070945042f89c7ab87aaaf3a6a02922b6c4 UFSATM (heads/develop) + 8dbaeb50defdacfce55d726e7b35c7e844388dd2 UFSATM (remotes/origin/remove_findesmf) 3256121dc4972d5c78f43f1a16ea1cb118ec6daf UFSATM/ccpp/framework (2025-06-03-dev-12-g3256121) - 6382d6140c1c11a3e830716a7f5a9d7eb9d58cab UFSATM/ccpp/physics (EP4-2046-g6382d614) + 7e9ddf0b6bb2ec6034049b05447e060115dd8de0 UFSATM/ccpp/physics (EP4-2052-g7e9ddf0b) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - b0a1b0957d3b79d642f3c01e5cd9441936c7c832 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-429-gb0a1b09) + e514f6d6b585e8fd857f55ef7d92618cd4d995f0 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-438-ge514f6d) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) 1a16f94d20898ff2ffcc3c8b6e036a9a16ed19a4 UFSATM/upp (upp_v10.2.0-327-g1a16f94d) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) + 0651900699114ab94b46930d3c989aae37777108 WW3 (remotes/origin/develop2devufswmplusfixwarnings) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) aea3150e0baa6289a144f6da41d02869ab80f24c stochastic_physics (ufs-v2.0.0-293-gaea3150) @@ -41,433 +41,437 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20251117 -COMPARISON DIRECTORY: /scratch3/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/ursa/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3261007 +COMPARISON DIRECTORY: /scratch4/NCEPDEV/stmp/Ming.Chen1/RT_RUNDIRS/Ming.Chen1/FV3_RT/rt_736211 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic +* (-a) - HPC PROJECT ACCOUNT: marine-cpu +* (-l) - USE CONFIG FILE: rt.conf +* (-k) - KEEP RUN DIRECTORY * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:10, 13:14] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:45, 06:25](2184 MB) -PASS -- TEST 'cpld_control_gefs_intel' [30:00, 20:15](3274 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [14:39, 05:49](2970 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [40:18, 31:51](3427 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:10, 11:47] ( 1 warnings 1043 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [11:41, 09:21](2056 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:57, 09:57](2605 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [05:49, 03:49](1487 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:53, 04:37](2367 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:36, 16:37](1996 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [14:10, 13:00] ( 1 warnings 937 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [12:15, 08:37](2401 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [09:06, 04:29](1876 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:10, 03:30] ( 338 warnings 937 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [12:19, 08:30](2404 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:31] ( 360 warnings 2764 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [15:47, 13:23](2081 MB) - -PASS -- COMPILE 's2swa_intel' [17:10, 15:22] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:54, 07:05](2518 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:54, 06:42](2505 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:18, 03:40](2280 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:51, 06:50](2374 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:21, 03:42](1960 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:00, 15:28](2996 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:51, 06:40](2468 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:51, 11:23](2314 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:55, 06:43](2508 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:46, 18:17](3591 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:56, 12:04](3487 MB) - -PASS -- COMPILE 's2swal_intel' [15:10, 13:20] ( 1 warnings 1065 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [09:53, 07:13](2490 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:58, 03:53](2278 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:46, 05:32](3122 MB) - -PASS -- COMPILE 's2sw_intel' [15:10, 13:23] ( 1 warnings 1012 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 06:15](2103 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:47, 04:56](2987 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:10, 04:03] ( 359 warnings 2013 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:57, 08:58](2388 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:36] ( 359 warnings 1995 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:45, 04:34](2107 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:24] ( 1 warnings 948 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:46, 03:30](2156 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:11, 13:13] ( 1 warnings 1030 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:50, 06:36](2472 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:11, 12:15] ( 1 warnings 1036 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:56, 08:13](2158 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:05, 04:10](1683 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:42, 11:42](2092 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [06:30, 04:49](3015 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:29, 01:25](3016 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:28, 00:58](2451 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:25, 00:56](2211 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:24, 00:33](2207 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:24, 00:24](1532 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:24, 00:50](2209 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:28, 00:31](2207 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:41, 00:26](1529 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:25, 00:34](2136 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:26, 00:27](2138 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:37, 00:23](1485 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:16] ( 360 warnings 2746 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:38, 19:28](2177 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:11, 07:02] ( 1 warnings 501 remarks ) -PASS -- TEST 'control_flake_intel' [04:19, 02:30](1342 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:20, 01:35](2221 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:22, 01:48](2209 MB) -PASS -- TEST 'control_latlon_intel' [03:19, 01:39](2220 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:21, 01:41](2219 MB) -PASS -- TEST 'control_c48_intel' [06:20, 04:28](1667 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [05:20, 04:05](801 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:20, 04:25](1667 MB) -PASS -- TEST 'control_c192_intel' [06:31, 04:46](1810 MB) -PASS -- TEST 'control_c384_intel' [08:04, 05:40](2058 MB) -PASS -- TEST 'control_c384gdas_intel' [09:50, 06:19](1905 MB) -PASS -- TEST 'control_stochy_intel' [03:17, 01:10](1299 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:17, 00:41](1204 MB) -PASS -- TEST 'control_lndp_intel' [03:17, 01:18](1296 MB) -PASS -- TEST 'control_iovr4_intel' [10:22, 08:59](1310 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:57, 02:08](1593 MB) -PASS -- TEST 'control_iovr5_intel' [03:28, 01:57](1297 MB) -PASS -- TEST 'control_p8_intel' [05:03, 02:11](2512 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:54, 02:18](2506 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:40, 09:09](2509 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:34, 02:12](2532 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:34, 02:08](2538 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [12:48, 10:25](2419 MB) -PASS -- TEST 'control_restart_p8_intel' [03:34, 01:16](1857 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:32, 02:11](2508 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:30, 01:13](1851 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:32, 09:11](2508 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:34, 01:43](2015 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:28, 03:25](2500 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:36, 02:50](2580 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:33, 02:11](2514 MB) -PASS -- TEST 'merra2_thompson_intel' [04:32, 02:28](2523 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [05:23, 03:46](2537 MB) -PASS -- TEST 'regional_control_intel' [05:26, 03:25](1717 MB) -PASS -- TEST 'regional_restart_intel' [03:29, 01:56](1689 MB) -PASS -- TEST 'regional_decomp_intel' [05:29, 03:37](1711 MB) -PASS -- TEST 'regional_2threads_intel' [03:25, 02:04](1570 MB) -PASS -- TEST 'regional_noquilt_intel' [05:25, 03:29](1989 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:25, 03:31](1713 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 03:49](1716 MB) -PASS -- TEST 'regional_wofs_intel' [06:47, 04:18](2654 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:11, 06:55] ( 1 warnings 481 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:54, 02:44](2548 MB) - -PASS -- COMPILE 'rrfs_intel' [07:11, 06:06] ( 4 warnings 448 remarks ) -PASS -- TEST 'rap_control_intel' [04:27, 02:58](1793 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:50, 02:42](1610 MB) -PASS -- TEST 'rap_decomp_intel' [04:24, 02:48](1703 MB) -PASS -- TEST 'rap_2threads_intel' [03:34, 02:00](1168 MB) -PASS -- TEST 'rap_restart_intel' [03:28, 01:21](1764 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:23, 05:40](1839 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:27, 02:34](1733 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:30, 01:29](1763 MB) -PASS -- TEST 'hrrr_control_intel' [04:24, 02:23](1756 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:22, 02:28](1720 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:25, 01:55](1161 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:18](1728 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:31, 04:24](1924 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:18, 05:47](2652 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:18, 05:28](2919 MB) - -PASS -- COMPILE 'csawmg_intel' [07:11, 06:02] ( 1 warnings 417 remarks ) -PASS -- TEST 'control_csawmg_intel' [06:27, 04:20](1756 MB) -PASS -- TEST 'control_ras_intel' [06:16, 05:07](1615 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 05:40] ( 1 warnings 395 remarks ) -PASS -- TEST 'control_wam_intel' [09:36, 08:03](2408 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:55] ( 1 warnings 411 remarks ) -PASS -- TEST 'control_p8_faster_intel' [11:32, 09:19](2530 MB) -FAILED: TEST TIMED OUT -- TEST 'regional_control_faster_intel' [, ]( MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 03:44] ( 419 warnings 589 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:18, 02:09](2238 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:18, 02:03](2261 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:11](1476 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:28, 02:05](1485 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:29, 03:07](1793 MB) -PASS -- TEST 'control_ras_debug_intel' [08:17, 06:49](1488 MB) -PASS -- TEST 'control_diag_debug_intel' [03:23, 02:01](2305 MB) -PASS -- TEST 'control_debug_p8_intel' [03:27, 02:07](2535 MB) -PASS -- TEST 'regional_debug_intel' [13:30, 11:51](1633 MB) -PASS -- TEST 'rap_control_debug_intel' [05:17, 04:05](1862 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:18, 03:31](1862 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:45](1864 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:49](1857 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 03:37](1871 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:24, 03:48](1959 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:36](1864 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:17, 03:39](1876 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:18, 03:56](1871 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:36](1870 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:17, 08:15](1874 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 03:35](1863 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:49](1866 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 03:36](1881 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:18, 03:33](1865 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:27, 06:09](1881 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 02:33] ( 380 warnings 395 remarks ) -PASS -- TEST 'control_wam_debug_intel' [11:32, 09:12](2296 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:45] ( 4 warnings 415 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:45, 02:29](1491 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:25, 02:07](1714 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:24, 02:04](1704 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:22, 01:41](1068 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:21, 01:38](1056 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:23, 11:22](1737 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:22, 01:10](1664 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:19, 07:10](1692 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:58] ( 4 warnings 392 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:53, 02:07](1755 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:48, 00:58](1780 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:49, 02:04](1807 MB) -PASS -- TEST 'conus13km_restart_intel' [03:32, 01:09](1545 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:56] ( 4 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:30, 02:42](1785 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:13] ( 313 warnings 421 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 03:26](1753 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:19, 03:22](1738 MB) -FAILED: TEST TIMED OUT -- TEST 'conus13km_debug_intel' [, ]( MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:40, 15:43](1446 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:29, 08:20](1835 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [16:35, 15:13](1872 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:29, 14:45](1896 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:07] ( 313 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:30](1868 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 08:31] ( 1 warnings 695 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:38, 02:45](1168 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:51, 04:00](1356 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:22, 02:22](1456 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:46, 31:03](1367 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:31, 03:21](795 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:35, 03:57](813 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:29, 01:35](534 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:57, 04:18](607 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 02:38](748 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:26, 02:09](756 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:19, 00:44](529 MB) -PASS -- TEST 'gnv1_nested_intel' [04:43, 02:32](1728 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 08:19] ( 1 warnings 928 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:38, 17:43](1073 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:11, 08:07] ( 1 warnings 637 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:33, 04:42](1298 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:37, 04:21](1280 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:11, 11:33] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 01:55](1939 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:13](1888 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 01:46](1199 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:08](1197 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 01:53](1202 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 01:56](1932 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 02:04](1941 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 01:43](1196 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:11, 05:32](1851 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:08, 05:28](1366 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:07](1929 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:25, 03:12](4789 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:27, 03:12](4787 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:15] ( 2 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:24, 03:58](1846 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:26, 11:43] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:15, 02:08](1938 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:44] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 00:53](365 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:32](620 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:23](624 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:17, 11:21] ( 1 warnings 611 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:49, 03:00](2836 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:22, 06:06] ( 1 warnings 499 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:46, 03:22](2859 MB) - -PASS -- COMPILE 'atml_intel' [08:13, 06:46] ( 9 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:38, 02:22](1910 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:28, 01:25](1298 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:23, 03:14] ( 424 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:46, 03:36](1950 MB) - -PASS -- COMPILE 'atmw_intel' [09:13, 07:29] ( 1 warnings 520 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:43, 01:55](2701 MB) - -PASS -- COMPILE 'atmaero_intel' [10:28, 09:11] ( 1 warnings 413 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:39, 03:12](2021 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:37, 03:20](2391 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [16:40, 14:50](2428 MB) - -PASS -- COMPILE 'atmaq_intel' [07:11, 06:02] ( 1 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_intel' [13:34, 10:31](2874 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [15:14, 12:37](2878 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:24] ( 397 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:01, 27:01](2890 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:15, 05:27] ( 4 warnings 422 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:24, 06:32](1135 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [14:15, 13:07] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [11:40, 09:38](2056 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:15, 03:18] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [16:11, 13:29](2086 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intelllvm' [15:11, 13:15] -PASS -- TEST 'cpld_control_sfs_intelllvm' [12:55, 08:26](2405 MB) - -PASS -- COMPILE 's2swa_intelllvm' [13:16, 11:40] -PASS -- TEST 'cpld_control_p8_intelllvm' [10:30, 07:21](2532 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:15, 05:36] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [04:29, 02:08](1736 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:10, 05:43] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [04:28, 02:41](1820 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [12:10, 10:29] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [11:17, 09:21](1943 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [03:10, 02:08] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:15, 04:32](1840 MB) - -PASS -- COMPILE 'atm_gnu' [04:10, 02:47] -PASS -- TEST 'control_c48_gnu' [07:20, 05:55](1509 MB) -PASS -- TEST 'control_stochy_gnu' [04:16, 02:20](508 MB) -PASS -- TEST 'control_ras_gnu' [05:16, 03:09](515 MB) -PASS -- TEST 'control_p8_gnu' [04:35, 03:07](1450 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:33, 03:08](1455 MB) -PASS -- TEST 'control_flake_gnu' [05:18, 04:04](553 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:10, 02:46] -PASS -- TEST 'rap_control_gnu' [05:23, 03:38](848 MB) -PASS -- TEST 'rap_decomp_gnu' [05:23, 03:27](848 MB) -PASS -- TEST 'rap_2threads_gnu' [04:26, 02:43](899 MB) -PASS -- TEST 'rap_restart_gnu' [03:27, 01:58](581 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [05:31, 03:31](847 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:25, 03:34](847 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:26, 01:54](579 MB) -PASS -- TEST 'hrrr_control_gnu' [05:26, 03:32](850 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:22, 03:20](836 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:24, 02:38](886 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:21, 03:30](849 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:18, 01:48](577 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 01:44](664 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:41, 06:28](843 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 02:37] -PASS -- TEST 'control_csawmg_gnu' [07:31, 05:48](778 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 05:10] -PASS -- TEST 'control_diag_debug_gnu' [03:23, 01:19](1281 MB) -PASS -- TEST 'regional_debug_gnu' [23:26, 22:07](748 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:17, 01:48](855 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:16, 01:47](858 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:16, 01:47](860 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:16, 01:49](860 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:22, 02:07](941 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 02:48](852 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 01:53](854 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:18](500 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:17](492 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:34, 01:21](1455 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:18, 01:49](855 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:26, 01:59](855 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:29, 03:01](866 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:24] -PASS -- TEST 'control_wam_debug_gnu' [06:32, 04:43](1303 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 02:39] -PASS -- TEST 'control_csawmg_debug_gnu' [03:24, 01:48](735 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 02:38] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:21, 03:13](706 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:20, 03:27](709 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [04:24, 02:29](732 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:29, 02:25](724 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:22, 03:16](710 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:25, 06:28](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [15:19, 13:19](553 MB) -PASS -- TEST 'conus13km_control_gnu' [07:43, 05:49](904 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:31, 01:09](906 MB) -PASS -- TEST 'conus13km_decomp_gnu' [17:33, 15:33](907 MB) -PASS -- TEST 'conus13km_restart_gnu' [03:30, 01:41](581 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 06:26] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 03:39](733 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 05:37] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:20, 01:48](713 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 02:05](718 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:31, 07:30](922 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:02, 06:59](650 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:52, 04:04](924 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [09:52, 07:13](925 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:59, 07:07](989 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:14, 05:37] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:35, 02:03](740 MB) - -PASS -- COMPILE 's2swa_gnu' [13:10, 11:33] -PASS -- TEST 'cpld_control_p8_gnu' [10:19, 07:43](1593 MB) - -PASS -- COMPILE 's2s_gnu' [12:31, 10:49] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:07, 06:51](1549 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:11, 01:54] -PASS -- TEST 'cpld_debug_p8_gnu' [06:49, 04:46](1593 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [12:18, 10:31] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [11:40, 09:08](1573 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 01:48] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:39, 06:38](1553 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [12:21, 10:28] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:21](1513 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:57] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:48, 06:21](2182 MB) +PASS -- TEST 'cpld_control_gefs_intel' [28:15, 19:42](3256 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [13:44, 05:55](2976 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [39:00, 31:51](3453 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:11, 14:00] ( 1 warnings 1040 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [11:54, 09:19](2049 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:58, 09:58](2640 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [05:51, 03:48](1492 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:54, 04:31](2369 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:50, 16:44](2006 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [14:11, 12:08] ( 1 warnings 937 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:15, 08:32](2399 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [08:22, 04:26](1874 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [04:11, 03:06] ( 338 warnings 937 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [12:15, 08:30](2393 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:32] ( 338 warnings 2771 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [15:40, 13:21](2082 MB) + +PASS -- COMPILE 's2swa_intel' [15:11, 13:26] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:01, 07:08](2520 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:08, 06:37](2466 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:53, 03:32](2269 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:01, 06:42](2351 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:53, 03:39](1979 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:57, 15:18](2991 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:01, 06:29](2486 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:59, 10:51](2321 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:04, 06:44](2445 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:48, 17:50](3576 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:54, 11:48](3477 MB) + +PASS -- COMPILE 's2swal_intel' [14:11, 12:37] ( 1 warnings 1063 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [08:53, 07:05](2518 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:58, 03:37](2296 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [28:51, 26:26](3109 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 12:58] ( 1 warnings 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 06:18](2085 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:51, 15:02](2987 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:18] ( 338 warnings 2020 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:51, 09:14](2375 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:11, 03:06] ( 338 warnings 2002 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:40, 04:40](2104 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 12:13] ( 1 warnings 948 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:52, 03:26](2150 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:11, 13:24] ( 1 warnings 1028 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:51, 06:34](2507 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:11, 13:17] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:42, 08:05](2157 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [05:49, 03:52](1674 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:40, 11:32](2102 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [05:30, 04:03](3024 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:31, 01:22](3015 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:30, 00:54](2454 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:28, 00:50](2209 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:27, 00:31](2209 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:26, 00:24](1529 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [02:27, 00:50](2207 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:27, 00:32](2209 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:27, 00:24](1530 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:27, 00:33](2137 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:27, 00:28](2136 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:27, 00:22](1489 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:38] ( 338 warnings 2753 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:40, 19:07](2177 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 07:09] ( 1 warnings 501 remarks ) +PASS -- TEST 'control_flake_intel' [04:19, 02:30](1339 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:20, 05:02](2206 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:21, 01:41](2218 MB) +PASS -- TEST 'control_latlon_intel' [03:19, 01:39](2208 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:21, 01:54](2231 MB) +PASS -- TEST 'control_c48_intel' [06:19, 04:21](1665 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [05:20, 04:02](802 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:19, 04:26](1668 MB) +PASS -- TEST 'control_c192_intel' [07:30, 04:47](1804 MB) +PASS -- TEST 'control_c384_intel' [08:05, 05:35](2074 MB) +PASS -- TEST 'control_c384gdas_intel' [09:49, 06:15](1892 MB) +PASS -- TEST 'control_stochy_intel' [03:17, 01:10](1296 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:17, 00:41](1220 MB) +PASS -- TEST 'control_lndp_intel' [02:17, 01:06](1287 MB) +PASS -- TEST 'control_iovr4_intel' [10:18, 08:24](1312 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [03:28, 02:05](1596 MB) +PASS -- TEST 'control_iovr5_intel' [03:17, 01:59](1297 MB) +PASS -- TEST 'control_p8_intel' [05:37, 04:02](2499 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:44, 02:11](2517 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:33, 02:04](2499 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:35, 02:09](2546 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:35, 02:08](2550 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [12:37, 10:21](2378 MB) +PASS -- TEST 'control_restart_p8_intel' [03:38, 01:17](1857 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:34, 02:02](2502 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:33, 01:14](1850 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:32, 02:07](2493 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:33, 01:44](2016 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:31, 03:25](2508 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:34, 02:55](2560 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:35, 02:13](2529 MB) +PASS -- TEST 'merra2_thompson_intel' [04:37, 02:30](2538 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [08:25, 06:49](2544 MB) +FAILED: TEST TIMED OUT -- TEST 'regional_control_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'regional_restart_intel' [, ]( MB) +PASS -- TEST 'regional_decomp_intel' [05:27, 03:33](1718 MB) +PASS -- TEST 'regional_2threads_intel' [04:29, 02:05](1562 MB) +PASS -- TEST 'regional_noquilt_intel' [05:27, 03:25](1990 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:30, 03:26](1709 MB) +FAILED: TEST TIMED OUT -- TEST 'regional_2dwrtdecomp_intel' [, ]( MB) +PASS -- TEST 'regional_wofs_intel' [06:27, 04:19](2650 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:11, 06:39] ( 1 warnings 481 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:33, 02:44](2546 MB) + +PASS -- COMPILE 'rrfs_intel' [07:11, 06:08] ( 4 warnings 448 remarks ) +PASS -- TEST 'rap_control_intel' [04:28, 02:29](1787 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:45, 02:38](1601 MB) +PASS -- TEST 'rap_decomp_intel' [04:24, 02:45](1731 MB) +PASS -- TEST 'rap_2threads_intel' [07:25, 02:01](1169 MB) +PASS -- TEST 'rap_restart_intel' [03:28, 01:24](1740 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:28, 02:28](1786 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:37, 02:31](1707 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:28, 01:21](1740 MB) +PASS -- TEST 'hrrr_control_intel' [13:52, 11:41](1915 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:30, 02:27](1701 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:25, 01:55](1163 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:19](1705 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:30, 04:25](1926 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:18, 05:42](2654 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 05:25](2916 MB) + +PASS -- COMPILE 'csawmg_intel' [08:11, 06:26] ( 1 warnings 417 remarks ) +PASS -- TEST 'control_csawmg_intel' [07:38, 04:19](1741 MB) +PASS -- TEST 'control_ras_intel' [06:16, 02:30](1584 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:37] ( 1 warnings 395 remarks ) +PASS -- TEST 'control_wam_intel' [11:36, 08:08](2396 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:42] ( 1 warnings 411 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:33, 02:11](2514 MB) +PASS -- TEST 'regional_control_faster_intel' [11:28, 09:15](1690 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:33] ( 419 warnings 589 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:19, 01:39](2236 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:19, 01:42](2258 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:17, 02:13](1478 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:17, 01:59](1469 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:27, 03:08](1788 MB) +PASS -- TEST 'control_ras_debug_intel' [03:17, 02:02](1480 MB) +PASS -- TEST 'control_diag_debug_intel' [04:23, 02:12](2328 MB) +PASS -- TEST 'control_debug_p8_intel' [03:33, 02:03](2533 MB) +PASS -- TEST 'regional_debug_intel' [31:32, 29:11](1628 MB) +PASS -- TEST 'rap_control_debug_intel' [10:18, 09:04](1881 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:18, 03:32](1870 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:35](1860 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:33](1872 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 03:32](1861 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:25, 03:58](1945 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:18, 03:45](1861 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:17, 03:46](1870 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:18, 03:40](1871 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 03:48](1874 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:18, 03:39](1860 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 03:37](1863 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 05:43](1858 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:25, 03:37](1878 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:18, 03:35](1860 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:28, 06:06](1874 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 02:13] ( 380 warnings 395 remarks ) +PASS -- TEST 'control_wam_debug_intel' [11:33, 09:10](2310 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:56] ( 4 warnings 415 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 02:31](1488 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:39, 02:07](1715 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:24, 02:03](1700 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:22, 01:41](1071 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:21, 01:38](1054 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:23, 02:15](1654 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:27, 08:10](1745 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:16](1637 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:52] ( 4 warnings 392 remarks ) +PASS -- TEST 'conus13km_control_intel' [15:44, 14:07](1751 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:34, 00:49](1779 MB) +PASS -- TEST 'conus13km_decomp_intel' [03:36, 02:04](1805 MB) +PASS -- TEST 'conus13km_restart_intel' [03:55, 01:09](1550 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:49] ( 4 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:27, 02:40](1823 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:10] ( 313 warnings 421 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 03:21](1746 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:20](1735 MB) +PASS -- TEST 'conus13km_debug_intel' [17:52, 15:23](1803 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:52, 15:13](1442 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:44, 08:11](1841 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [17:32, 15:36](1845 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:33, 15:15](1903 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:14] ( 313 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:18, 03:30](1851 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 08:39] ( 1 warnings 693 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:33, 02:45](1166 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:51, 03:58](1347 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:23, 02:24](1454 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [33:37, 32:08](1348 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:31, 03:18](801 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:35, 03:55](812 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:28, 01:35](527 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:55, 04:21](606 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 02:18](749 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:27, 02:08](740 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:21, 00:45](522 MB) +PASS -- TEST 'gnv1_nested_intel' [04:45, 02:39](1708 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 08:08] ( 1 warnings 926 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:09, 18:34](1097 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:11, 07:43] ( 1 warnings 635 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:33, 04:18](1309 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:33, 04:22](1269 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:46] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 01:52](1948 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:13](1887 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [18:20, 16:49](1213 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 01:50](1193 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:01](1193 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 01:58](1946 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 01:57](1944 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:16, 01:51](1200 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:03, 05:35](1836 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:11, 05:21](1372 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:55](1945 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:38](4786 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:16, 03:05](4787 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:24] ( 2 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 04:05](1847 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:14, 10:59] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:00](1938 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:42] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 00:43](369 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:32](622 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:23](623 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:45] ( 1 warnings 611 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:46, 03:59](2834 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:12, 06:08] ( 1 warnings 499 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:43, 03:24](2876 MB) + +PASS -- COMPILE 'atml_intel' [08:11, 06:38] ( 9 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:34, 02:25](1899 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:28, 01:34](1307 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:36] ( 424 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:35, 03:40](1925 MB) + +PASS -- COMPILE 'atmw_intel' [09:11, 07:26] ( 1 warnings 518 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:32, 06:24](2704 MB) + +PASS -- COMPILE 'atmaero_intel' [10:12, 09:03] ( 1 warnings 413 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:45, 03:14](2011 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:35, 03:17](2388 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:31, 03:25](2401 MB) + +PASS -- COMPILE 'atmaq_intel' [08:13, 06:22] ( 1 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_intel' [13:23, 10:37](2875 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [15:07, 12:25](2872 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:12, 02:12] ( 397 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:06, 27:04](2891 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:44] ( 4 warnings 422 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:20, 06:54](1138 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [14:11, 12:19] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [11:41, 09:18](2061 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:11, 03:33] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:44, 13:16](2076 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intelllvm' [13:11, 11:35] +PASS -- TEST 'cpld_control_sfs_intelllvm' [12:19, 08:25](2384 MB) + +PASS -- COMPILE 's2swa_intelllvm' [15:11, 13:35] +PASS -- TEST 'cpld_control_p8_intelllvm' [08:54, 07:01](2500 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:30] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [04:27, 02:18](1722 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 05:29] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [04:36, 02:39](1805 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [12:10, 11:04] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:18, 01:54](1942 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [03:11, 02:09] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [05:15, 04:01](1845 MB) + +PASS -- COMPILE 'atm_gnu' [04:11, 02:49] +PASS -- TEST 'control_c48_gnu' [14:22, 12:17](1509 MB) +PASS -- TEST 'control_stochy_gnu' [03:15, 01:59](509 MB) +PASS -- TEST 'control_ras_gnu' [05:15, 03:10](514 MB) +PASS -- TEST 'control_p8_gnu' [04:38, 03:07](1448 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:34, 03:03](1470 MB) +PASS -- TEST 'control_flake_gnu' [05:18, 04:05](554 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:10, 02:47] +PASS -- TEST 'rap_control_gnu' [05:26, 03:28](847 MB) +PASS -- TEST 'rap_decomp_gnu' [20:26, 18:14](848 MB) +PASS -- TEST 'rap_2threads_gnu' [04:27, 02:41](898 MB) +PASS -- TEST 'rap_restart_gnu' [03:27, 01:50](581 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [05:26, 03:27](847 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:31, 03:27](847 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:25, 01:49](580 MB) +PASS -- TEST 'hrrr_control_gnu' [05:40, 03:22](848 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:39, 03:21](834 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:24, 02:35](889 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:22, 03:18](850 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:19, 01:46](577 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:19, 01:46](661 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:26, 06:13](843 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:11, 02:33] +PASS -- TEST 'control_csawmg_gnu' [07:25, 05:46](752 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:11, 05:04] +PASS -- TEST 'control_diag_debug_gnu' [03:22, 01:16](1279 MB) +PASS -- TEST 'regional_debug_gnu' [07:27, 05:40](771 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:17, 01:49](854 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:48](857 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 01:49](861 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 01:48](860 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:01](942 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 02:47](852 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 01:55](855 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:11](500 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:22](493 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:44, 01:23](1457 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:18, 01:50](855 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:18, 01:49](854 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:27, 03:00](865 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:22] +PASS -- TEST 'control_wam_debug_gnu' [06:34, 04:33](1304 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 02:36] +PASS -- TEST 'control_csawmg_debug_gnu' [03:26, 01:44](735 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:13, 02:42] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:21, 03:14](707 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:21, 03:09](709 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [04:24, 02:30](731 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:23, 02:25](724 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:21, 03:14](710 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:22, 01:43](554 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:17, 01:39](557 MB) +PASS -- TEST 'conus13km_control_gnu' [04:40, 03:00](903 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:34, 01:12](908 MB) +PASS -- TEST 'conus13km_decomp_gnu' [05:34, 03:09](905 MB) +PASS -- TEST 'conus13km_restart_gnu' [03:32, 01:46](573 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:11, 06:01] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:27, 03:45](733 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:11, 04:56] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:48](713 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:44](718 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:33, 07:14](921 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:34, 07:01](649 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:32, 04:04](922 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [08:32, 07:02](926 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:33, 07:08](990 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:12, 05:15] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [10:18, 09:09](740 MB) + +PASS -- COMPILE 's2swa_gnu' [12:11, 10:30] +PASS -- TEST 'cpld_control_p8_gnu' [09:57, 07:42](1587 MB) + +PASS -- COMPILE 's2s_gnu' [12:11, 10:18] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:49, 06:50](1553 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:11, 01:52] +PASS -- TEST 'cpld_debug_p8_gnu' [06:49, 04:46](1608 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [12:11, 10:15] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [10:40, 09:01](1573 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 01:48] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:38, 06:33](1574 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [12:11, 10:14] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:14, 02:07](1512 MB) SYNOPSIS: -Starting Date/Time: 20251118 01:23:55 -Ending Date/Time: 20251118 03:14:58 -Total Time: 01h:51m:38s +Starting Date/Time: 20251121 15:06:32 +Ending Date/Time: 20251121 16:46:22 +Total Time: 01h:40m:25s Compiles Completed: 67/67 -Tests Completed: 274/276 +Tests Completed: 273/276 Failed Tests: -* TEST regional_control_faster_intel: FAILED: TEST TIMED OUT --- LOG: /scratch3/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/ursa/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3261007/regional_control_faster_intel/err -* TEST conus13km_debug_intel: FAILED: TEST TIMED OUT --- LOG: /scratch3/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/ursa/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3261007/conus13km_debug_intel/err +* TEST regional_control_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch4/NCEPDEV/stmp/Ming.Chen1/RT_RUNDIRS/Ming.Chen1/FV3_RT/rt_736211/regional_control_intel/err +* TEST regional_restart_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST regional_2dwrtdecomp_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch4/NCEPDEV/stmp/Ming.Chen1/RT_RUNDIRS/Ming.Chen1/FV3_RT/rt_736211/regional_2dwrtdecomp_intel/err NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -477,73 +481,3 @@ If you are using this log as a pull request verification, please commit 'test_ch Result: FAILURE ====END OF URSA REGRESSION TESTING LOG==== -====START OF URSA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -12aa48e9af7404cdd2131e5d829ea055a0c130b0 - -Submodule hashes used in testing: - 14c01eb83812d5deca9d95f950d770a1ab056c5d AQM (remotes/origin/feature/guassian_fire_plume) - 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) - 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) - 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) - 6a5c51e9e6c643da0760a315e452755661d7d745 CICE-interface/CICE/icepack (Icepack1.1.0-220-g6a5c51e) - 607a0bddcef8b8c4f0c80886be68db88fe52429f CMEPS-interface/CMEPS (cmeps_v0.4.1-2325-g607a0bd) - 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) - 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) - 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - f6dc2070945042f89c7ab87aaaf3a6a02922b6c4 UFSATM (heads/develop) - 3256121dc4972d5c78f43f1a16ea1cb118ec6daf UFSATM/ccpp/framework (2025-06-03-dev-12-g3256121) - 6382d6140c1c11a3e830716a7f5a9d7eb9d58cab UFSATM/ccpp/physics (EP4-2046-g6382d614) - c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) - 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - b0a1b0957d3b79d642f3c01e5cd9441936c7c832 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-429-gb0a1b09) - 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) - 1a16f94d20898ff2ffcc3c8b6e036a9a16ed19a4 UFSATM/upp (upp_v10.2.0-327-g1a16f94d) --179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd --3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - aea3150e0baa6289a144f6da41d02869ab80f24c stochastic_physics (ufs-v2.0.0-293-gaea3150) - - -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: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20251117 -COMPARISON DIRECTORY: /scratch3/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/ursa/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2416412 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list.rerun -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:46] ( 1 warnings 411 remarks ) -PASS -- TEST 'regional_control_faster_intel' [05:27, 03:37](1710 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:14] ( 313 warnings 421 remarks ) -PASS -- TEST 'conus13km_debug_intel' [16:35, 15:04](1813 MB) - -SYNOPSIS: -Starting Date/Time: 20251118 07:20:52 -Ending Date/Time: 20251118 08:14:39 -Total Time: 00h:53m:55s -Compiles Completed: 2/2 -Tests Completed: 2/2 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: SUCCESS - -====END OF URSA REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 9390fa3d93..76d4d6789e 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,35 +1,35 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -ffe5f903f718578d5e843e391ce0305b570ddf9f +2e502c91aaee176ed997189e0ff9abc35fe30c61 Submodule hashes used in testing: - 14c01eb83812d5deca9d95f950d770a1ab056c5d AQM (remotes/origin/feature/guassian_fire_plume) + a57f569b8465b93694051ccd910412355bf5fb09 AQM (remotes/origin/remove_findesmf) 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) - 90ed2522ba8dd04d75237a77aae6b49e7acca523 CICE-interface/CICE (CICE6.0.0-432-g90ed252) - 6a5c51e9e6c643da0760a315e452755661d7d745 CICE-interface/CICE/icepack (Icepack1.1.0-220-g6a5c51e) + 5278e39e4bbbc8aaf240b203740a1cf904256fca CICE-interface/CICE (remotes/origin/sync_cice_2025-11) + 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) 607a0bddcef8b8c4f0c80886be68db88fe52429f CMEPS-interface/CMEPS (cmeps_v0.4.1-2325-g607a0bd) - 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) + 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + 58ae7aa3adef6daf489c707994b32017689b0aa8 LM4-driver (remotes/origin/remove_findesmf) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - f6dc2070945042f89c7ab87aaaf3a6a02922b6c4 UFSATM (heads/develop) + 8dbaeb50defdacfce55d726e7b35c7e844388dd2 UFSATM (remotes/origin/remove_findesmf) 3256121dc4972d5c78f43f1a16ea1cb118ec6daf UFSATM/ccpp/framework (2025-06-03-dev-12-g3256121) - 6382d6140c1c11a3e830716a7f5a9d7eb9d58cab UFSATM/ccpp/physics (EP4-2046-g6382d614) + 7e9ddf0b6bb2ec6034049b05447e060115dd8de0 UFSATM/ccpp/physics (EP4-2052-g7e9ddf0b) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - b0a1b0957d3b79d642f3c01e5cd9441936c7c832 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-429-gb0a1b09) + e514f6d6b585e8fd857f55ef7d92618cd4d995f0 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-438-ge514f6d) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) 1a16f94d20898ff2ffcc3c8b6e036a9a16ed19a4 UFSATM/upp (upp_v10.2.0-327-g1a16f94d) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) + e6d31d9ad19a72c069985cd416ddefe25cf955c1 WW3 (remotes/origin/remove_findesmf) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) aea3150e0baa6289a144f6da41d02869ab80f24c stochastic_physics (ufs-v2.0.0-293-gaea3150) @@ -40,257 +40,257 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20251117 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1426611 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20251119 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2693821 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [24:42, 15:56] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:44, 07:26](3340 MB) -PASS -- TEST 'cpld_control_gefs_intel' [42:23, 19:06](4098 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [28:31, 08:23](3908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:41, 16:18] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:33, 13:58](1899 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:36, 14:54](1942 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:09, 07:22](1070 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [12:11, 06:52](1930 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:02, 16:01](1876 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [23:40, 14:51] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:26, 13:01](2194 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [16:13, 07:37](1356 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [13:29, 04:29] ( 334 warnings 1 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [20:07, 13:53](2241 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:29, 04:56] ( 352 warnings 1777 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:30, 20:41](1939 MB) - -PASS -- COMPILE 's2swa_intel' [25:42, 16:44] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:17, 09:29](3371 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:35, 09:21](3371 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:22, 05:46](3255 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:10, 09:59](3400 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:29, 05:48](3284 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:20, 08:46](3601 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:24, 08:53](3363 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:58, 07:49](3321 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:26, 09:17](3372 MB) - -PASS -- COMPILE 's2swal_intel' [24:39, 16:44] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:41, 09:16](3331 MB) - -PASS -- COMPILE 's2sw_intel' [23:40, 14:42] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:57, 05:32](1915 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:21, 08:11](1968 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [22:38, 14:30] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:25, 06:10](1974 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:46, 16:53] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:22, 09:28](3372 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:34, 15:39] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:42, 14:24](1919 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:04, 06:45](1105 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:47, 16:23](1889 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [12:01, 06:52](2882 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [08:00, 03:02](2885 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [06:30, 02:14](2309 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [06:10, 02:04](2111 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [05:07, 01:30](2112 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [05:14, 02:03](1453 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [06:10, 01:55](2108 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [05:06, 01:30](2109 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [04:12, 01:58](1453 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [05:05, 01:40](2039 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [05:05, 01:29](2040 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:11, 01:46](1395 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:22, 04:56] ( 352 warnings 1777 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:47, 24:47](1955 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:32, 10:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:49, 04:13](683 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:55, 02:42](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:04, 03:19](1583 MB) -PASS -- TEST 'control_latlon_intel' [05:38, 03:13](1582 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:45, 02:58](1583 MB) -PASS -- TEST 'control_c48_intel' [09:12, 06:44](1594 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:21, 05:58](724 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:13, 06:53](1595 MB) -PASS -- TEST 'control_c192_intel' [11:05, 07:30](1697 MB) -PASS -- TEST 'control_c384_intel' [14:30, 09:16](2001 MB) -PASS -- TEST 'control_c384gdas_intel' [17:22, 09:53](1136 MB) -PASS -- TEST 'control_stochy_intel' [04:58, 02:05](638 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:03, 01:18](407 MB) -PASS -- TEST 'control_lndp_intel' [04:55, 02:00](637 MB) -PASS -- TEST 'control_iovr4_intel' [05:54, 02:49](631 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:15, 03:54](917 MB) -PASS -- TEST 'control_iovr5_intel' [05:40, 02:53](634 MB) -PASS -- TEST 'control_p8_intel' [09:34, 04:03](1856 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:30, 04:14](1859 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:12, 04:07](1865 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [10:10, 04:00](1882 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [09:31, 03:52](1882 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [08:06, 03:22](2435 MB) -PASS -- TEST 'control_restart_p8_intel' [06:16, 02:14](1016 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:24, 04:09](1857 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:30, 02:27](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:16, 03:55](1850 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:24, 03:15](1927 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:28, 05:40](1869 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:43, 05:26](1913 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:18, 03:49](1874 MB) -PASS -- TEST 'merra2_thompson_intel' [08:26, 04:13](1860 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [10:27, 06:17](1867 MB) -PASS -- TEST 'regional_control_intel' [09:32, 06:11](874 MB) -PASS -- TEST 'regional_restart_intel' [06:05, 03:31](881 MB) -PASS -- TEST 'regional_decomp_intel' [09:28, 06:16](877 MB) -PASS -- TEST 'regional_2threads_intel' [07:20, 04:11](996 MB) -PASS -- TEST 'regional_noquilt_intel' [08:09, 05:38](1171 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:58, 05:33](874 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:54, 05:56](875 MB) -PASS -- TEST 'regional_wofs_intel' [09:23, 06:51](1608 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:30, 10:11] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [08:46, 04:31](1885 MB) - -PASS -- COMPILE 'rrfs_intel' [10:28, 09:01] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [07:59, 04:10](1007 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:53, 04:34](1182 MB) -PASS -- TEST 'rap_decomp_intel' [07:42, 04:18](1019 MB) -PASS -- TEST 'rap_2threads_intel' [07:05, 03:45](1087 MB) -PASS -- TEST 'rap_restart_intel' [06:47, 02:22](776 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:44, 04:05](1015 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:02, 04:09](1010 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:38, 02:21](768 MB) -PASS -- TEST 'hrrr_control_intel' [08:04, 03:59](1006 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:02, 04:12](1012 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:54, 03:35](1079 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:50, 02:10](761 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:38, 07:02](1006 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:56, 08:48](1971 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:44, 08:21](1953 MB) - -PASS -- COMPILE 'csawmg_intel' [10:28, 08:55] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:10, 07:13](960 MB) -PASS -- TEST 'control_ras_intel' [05:35, 03:32](668 MB) - -PASS -- COMPILE 'wam_intel' [10:23, 08:11] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:47, 12:47](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:29, 08:26] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:42, 03:36](1854 MB) -PASS -- TEST 'regional_control_faster_intel' [08:05, 05:46](871 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:26, 05:07] ( 415 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:11, 02:58](1611 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:49](1620 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:44, 03:42](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:42, 03:16](820 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:04, 05:18](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [05:43, 03:21](830 MB) -PASS -- TEST 'control_diag_debug_intel' [06:03, 03:24](1670 MB) -PASS -- TEST 'control_debug_p8_intel' [06:21, 03:46](1897 MB) -PASS -- TEST 'regional_debug_intel' [21:27, 19:21](932 MB) -PASS -- TEST 'rap_control_debug_intel' [07:57, 05:58](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:47, 05:46](1189 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:50, 05:42](1195 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:39, 05:47](1194 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:49, 05:53](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:07, 06:12](1278 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:57, 06:01](1193 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:51, 05:55](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:00, 05:55](1200 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:00, 05:53](1194 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:44, 05:46](1192 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:49, 05:55](1194 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:55, 09:15](1193 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:07, 05:59](1196 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:40, 05:47](1189 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 09:57](1196 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:19, 03:50] ( 377 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:47, 14:48](1700 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 08:31] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:55, 04:08](1041 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:58, 03:23](889 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:37, 03:17](888 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:45, 03:08](942 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:21, 02:55](931 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:17, 03:25](891 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:35, 02:00](737 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:57, 02:10](727 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:30, 08:30] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:52, 03:05](1017 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:26, 01:37](1141 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:42, 03:15](1023 MB) -PASS -- TEST 'conus13km_restart_intel' [04:39, 01:59](684 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:28, 08:40] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:29, 04:19](923 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:22, 04:01] ( 310 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:54, 05:48](1071 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:43, 05:37](1069 MB) -PASS -- TEST 'conus13km_debug_intel' [26:59, 24:15](1097 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [27:00, 24:25](807 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:32, 13:38](1200 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [28:06, 24:55](1103 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:53, 24:18](1165 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 03:51] ( 310 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:54, 05:37](1105 MB) - -PASS -- COMPILE 'hafsw_intel' [14:31, 12:37] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:27, 04:56](693 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [10:42, 06:00](913 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:46, 03:46](1046 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:29, 12:05](793 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:26, 05:53](463 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:31, 06:50](474 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:20, 03:07](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:56, 08:11](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:16, 04:01](494 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:35, 03:44](498 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:47, 01:43](410 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:28, 10:35] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:56, 05:47](774 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:27, 09:42] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:19, 07:09](751 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:19, 07:12](722 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:35, 14:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:00, 04:15](1910 MB) - -PASS -- COMPILE 'atml_intel' [12:29, 10:28] ( 9 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [06:19, 05:02] ( 420 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [16:51, 15:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:21, 05:11](3233 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:53, 05:24](3200 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:49, 05:29](3205 MB) - -PASS -- COMPILE 'atmaq_intel' [10:31, 09:13] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [21:51, 16:16](2386 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [24:14, 19:19](2436 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:20, 03:53] ( 394 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [45:47, 41:15](1962 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:44, 16:46] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:34, 06:52](3340 MB) +PASS -- TEST 'cpld_control_gefs_intel' [33:14, 17:36](4103 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [26:58, 07:55](3906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:43, 16:52] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:29, 13:23](1901 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:42, 14:36](1944 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:24, 06:30](1071 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:50, 06:39](1933 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:50, 15:20](1878 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [16:44, 14:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:29, 11:54](2202 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [13:32, 06:46](1360 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:28, 04:28] ( 334 warnings 1 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [21:43, 13:21](2236 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:27, 04:54] ( 352 warnings 1777 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:47, 20:57](1940 MB) + +PASS -- COMPILE 's2swa_intel' [18:43, 16:36] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:06, 08:35](3372 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:35, 08:34](3372 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:51, 05:14](3258 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:56, 08:40](3402 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:02, 05:20](3288 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:54, 07:54](3601 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:49, 08:22](3366 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:26, 07:15](3323 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:34, 08:37](3374 MB) + +PASS -- COMPILE 's2swal_intel' [18:44, 16:32] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:11, 08:38](3330 MB) + +PASS -- COMPILE 's2sw_intel' [17:48, 15:46] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:12, 04:43](1918 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:21, 07:19](1971 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:44, 15:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:14, 05:14](1970 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:46, 16:56] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:33, 08:32](3369 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:33, 15:29] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:22, 13:34](1923 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:25, 06:43](1109 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:27, 15:32](1894 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [10:47, 06:13](2887 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:43, 02:14](2890 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:45, 02:06](2302 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [05:09, 01:25](2114 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [05:08, 01:02](2115 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:00, 01:06](1457 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [05:08, 01:26](2113 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [05:08, 01:00](2113 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:53, 00:56](1456 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [05:07, 01:02](2043 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:21, 01:00](2042 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:53, 00:56](1399 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 04:44] ( 352 warnings 1777 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:11, 23:51](1960 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:27, 10:41] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:48, 04:00](685 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 02:36](1574 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:56, 02:46](1583 MB) +PASS -- TEST 'control_latlon_intel' [04:40, 02:45](1583 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 02:49](1584 MB) +PASS -- TEST 'control_c48_intel' [09:09, 06:24](1595 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:54, 05:47](724 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:56, 06:38](1594 MB) +PASS -- TEST 'control_c192_intel' [10:03, 07:10](1709 MB) +PASS -- TEST 'control_c384_intel' [15:06, 09:05](1999 MB) +PASS -- TEST 'control_c384gdas_intel' [17:43, 09:34](1136 MB) +PASS -- TEST 'control_stochy_intel' [03:59, 01:54](640 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:43, 01:15](406 MB) +PASS -- TEST 'control_lndp_intel' [03:51, 01:49](633 MB) +PASS -- TEST 'control_iovr4_intel' [04:42, 02:44](634 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:14, 03:15](918 MB) +PASS -- TEST 'control_iovr5_intel' [04:40, 02:47](636 MB) +PASS -- TEST 'control_p8_intel' [09:42, 03:13](1856 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:49, 03:24](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:21, 03:13](1865 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [08:21, 03:06](1882 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [09:55, 03:23](1882 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [07:12, 02:40](2434 MB) +PASS -- TEST 'control_restart_p8_intel' [05:46, 02:07](1018 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:58, 03:24](1857 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:44, 02:03](1018 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:51, 03:20](1850 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:55, 03:05](1930 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:21, 05:11](1866 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:24, 04:22](1914 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:15, 03:25](1872 MB) +PASS -- TEST 'merra2_thompson_intel' [07:08, 03:37](1860 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [08:49, 05:39](1868 MB) +PASS -- TEST 'regional_control_intel' [08:04, 05:21](875 MB) +PASS -- TEST 'regional_restart_intel' [07:08, 03:09](881 MB) +PASS -- TEST 'regional_decomp_intel' [07:56, 05:42](878 MB) +PASS -- TEST 'regional_2threads_intel' [05:53, 03:22](989 MB) +PASS -- TEST 'regional_noquilt_intel' [07:53, 05:18](1175 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:57, 05:13](875 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:59, 05:12](875 MB) +PASS -- TEST 'regional_wofs_intel' [10:04, 06:59](1609 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:28, 09:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [08:21, 04:13](1886 MB) + +PASS -- COMPILE 'rrfs_intel' [10:25, 08:52] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [07:41, 04:07](1012 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:33, 04:21](1187 MB) +PASS -- TEST 'rap_decomp_intel' [07:38, 04:09](1020 MB) +PASS -- TEST 'rap_2threads_intel' [07:30, 03:38](1084 MB) +PASS -- TEST 'rap_restart_intel' [06:25, 02:26](769 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:41, 04:05](1013 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:40, 04:10](1015 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:28, 02:25](769 MB) +PASS -- TEST 'hrrr_control_intel' [07:42, 03:59](1006 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:36, 04:06](1011 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:12, 03:36](1076 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:38, 02:21](759 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:29, 07:00](1006 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:42, 08:51](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:48, 08:14](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [10:28, 08:41] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:14, 06:36](958 MB) +PASS -- TEST 'control_ras_intel' [06:37, 03:27](670 MB) + +PASS -- COMPILE 'wam_intel' [09:24, 08:04] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [16:29, 12:34](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:28, 08:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:29, 03:13](1854 MB) +PASS -- TEST 'regional_control_faster_intel' [08:02, 05:26](869 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:21, 04:56] ( 415 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:50, 02:48](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:41, 02:57](1622 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:36, 03:42](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:33, 03:16](823 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:06, 05:03](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [05:37, 03:28](832 MB) +PASS -- TEST 'control_diag_debug_intel' [05:45, 03:22](1672 MB) +PASS -- TEST 'control_debug_p8_intel' [06:03, 03:26](1899 MB) +PASS -- TEST 'regional_debug_intel' [21:28, 18:52](931 MB) +PASS -- TEST 'rap_control_debug_intel' [07:37, 05:38](1195 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:42, 05:37](1190 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:39, 05:34](1196 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:41, 05:41](1198 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:47, 05:41](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:53, 06:03](1280 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:45, 05:57](1195 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:03, 06:00](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:43, 05:50](1202 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:37, 05:49](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:40, 05:40](1197 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:51, 05:55](1195 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:40, 09:12](1194 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:44, 05:49](1199 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:46, 05:50](1195 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:52, 09:48](1199 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:20, 03:31] ( 377 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:47, 14:39](1701 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:28, 08:12] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:24, 04:02](1034 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:36, 03:21](890 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:11, 03:13](889 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:28, 03:03](935 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:51, 02:49](931 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:50, 03:18](892 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:23, 01:52](734 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:46, 01:57](728 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:34, 08:04] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:34, 03:05](1018 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:10, 01:32](1137 MB) +PASS -- TEST 'conus13km_decomp_intel' [06:10, 03:17](1023 MB) +PASS -- TEST 'conus13km_restart_intel' [06:24, 01:57](684 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:30, 08:26] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:07, 04:14](922 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:26, 03:39] ( 310 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:38, 05:37](1069 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:43, 05:33](1065 MB) +PASS -- TEST 'conus13km_debug_intel' [26:49, 24:17](1094 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:54, 24:17](821 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:27, 13:33](1206 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [27:43, 24:50](1090 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:41, 24:12](1150 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:24, 03:32] ( 310 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:43, 05:34](1104 MB) + +PASS -- COMPILE 'hafsw_intel' [14:37, 12:11] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:14, 04:52](694 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [10:09, 05:42](910 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:39, 03:39](1046 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 11:42](896 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:16, 05:45](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:17, 06:53](473 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:06, 03:10](379 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:30, 08:08](424 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:58, 04:04](493 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:06, 03:47](493 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:48, 01:38](408 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:33, 10:12] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:45, 05:34](774 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:35, 08:57] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:24, 07:00](752 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:14, 07:05](723 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:41, 14:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:48, 04:08](1908 MB) + +PASS -- COMPILE 'atml_intel' [12:28, 10:10] ( 9 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [06:19, 04:30] ( 420 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [16:38, 14:51] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:03, 05:02](3233 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:45, 05:23](3195 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:54, 05:28](3205 MB) + +PASS -- COMPILE 'atmaq_intel' [10:28, 08:44] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [20:26, 15:40](2383 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [23:15, 18:28](2430 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:23, 03:41] ( 394 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [45:37, 40:54](1857 MB) SYNOPSIS: -Starting Date/Time: 20251118 14:53:27 -Ending Date/Time: 20251118 16:59:11 -Total Time: 02h:07m:21s +Starting Date/Time: 20251125 18:25:51 +Ending Date/Time: 20251125 20:24:20 +Total Time: 01h:59m:31s Compiles Completed: 34/34 Tests Completed: 172/172 diff --git a/tests/parm/ice_in.IN b/tests/parm/ice_in.IN index e4be977f4c..5eb3eac4b6 100644 --- a/tests/parm/ice_in.IN +++ b/tests/parm/ice_in.IN @@ -14,6 +14,7 @@ restart = .true. restart_ext = .false. use_restart_time = @[CICE_USE_RESTART_TIME] + restart_mod = '@[CICE_RESTART_MOD]' numin = 21 numax = 89 restart_format = '@[CICE_RESTART_FORMAT]' diff --git a/tests/test_changes.list b/tests/test_changes.list index 9fa7012059..72d6b70c36 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,3 +1,3 @@ -regional_atmaq intel -regional_atmaq_canopy intel -regional_atmaq_debug intel +regional_control intel +regional_restart intel +regional_2dwrtdecomp intel