From 0682f90cdc855def515dd1eac122abbc904973bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ufuk=20Turun=C3=A7o=C4=9Flu?= Date: Tue, 28 Jan 2025 12:03:31 -0700 Subject: [PATCH 1/3] Updates for component NoahMP land model (#2387) * UFSWM - new RT tests based on S2S configurations: cpld_control_p8_lnd and control_restart_p8_atmlnd. * CMEPS - flexible way to use same grid in atm-lnd coupling * FV3 - * ccpp-physics - new flux calculation method is implemented in CCPP/Physics sfc_land scheme to overcome initialization issues. * NOAHMP - add new decomposition algorithm to NoahMP component model NUOPC cap to distribute land and ocean points evenly to all the processor. --- CMEPS-interface/CMEPS | 2 +- CMakeLists.txt | 4 +- FV3 | 2 +- NOAHMP-interface/noahmp | 2 +- cmake/configure_apps.cmake | 6 +- tests/bl_date.conf | 2 +- tests/fv3_conf/control_run.IN | 6 +- tests/fv3_conf/noahmp_run.IN | 199 ++-- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_derecho.log | 571 ++++++------ tests/logs/RegressionTests_gaeac5.log | 603 ++++++------- tests/logs/RegressionTests_gaeac6.log | 631 +++++++------ tests/logs/RegressionTests_hera.log | 836 +++++++++-------- tests/logs/RegressionTests_hercules.log | 848 +++++++++--------- tests/logs/RegressionTests_jet.log | 579 ++++++------ tests/logs/RegressionTests_orion.log | 313 +------ tests/logs/RegressionTests_wcoss2.log | 472 +++++----- tests/parm/ufs.configure.atm_lm4.IN | 1 + tests/parm/ufs.configure.atm_lnd.IN | 8 +- tests/parm/ufs.configure.s2swal_fast.IN | 205 +++++ tests/rt.conf | 9 +- tests/test_changes.list | 8 + tests/tests/control_p8_atmlnd | 128 +-- tests/tests/control_p8_atmlnd_sbs | 247 ----- tests/tests/control_restart_p8_atmlnd | 134 +-- tests/tests/cpld_control_p8_lnd | 104 +++ tests/tests/cpld_restart_p8_lnd | 94 ++ tests/tests/datm_cdeps_lm4_gswp3 | 3 +- tests/tests/datm_cdeps_lm4_gswp3_rst | 3 +- tests/tests/datm_cdeps_lnd_era5 | 3 + tests/tests/datm_cdeps_lnd_era5_rst | 3 + tests/tests/datm_cdeps_lnd_gswp3 | 4 +- 34 files changed, 3086 insertions(+), 3046 deletions(-) create mode 100644 tests/parm/ufs.configure.s2swal_fast.IN delete mode 100644 tests/tests/control_p8_atmlnd_sbs create mode 100644 tests/tests/cpld_control_p8_lnd create mode 100644 tests/tests/cpld_restart_p8_lnd diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index b5d1cc189f..cdbed6c48c 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit b5d1cc189fced4abcb13fc70ed2febb2aef61757 +Subproject commit cdbed6c48c2626e67ee5c071947d991e6f0fbc2e diff --git a/CMakeLists.txt b/CMakeLists.txt index 91fa5a855d..fcae4444b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) ############################################################################### # Valid applications and choices -list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML ATMF LND LND-LM4 S2S S2SA S2SW S2SWA S2SWAL ATM_DS2S ATM_DS2S-PCICE HAFS HAFSW HAFS-MOM6 HAFS-MOM6W HAFS-ALL NG-GODAS) +list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML ATMF LND LND-LM4 S2S S2SL S2SA S2SW S2SWA S2SWL S2SWAL ATM_DS2S ATM_DS2S-PCICE HAFS HAFSW HAFS-MOM6 HAFS-MOM6W HAFS-ALL NG-GODAS) set(APP NONE CACHE BOOL "Application Name") if(NOT (APP IN_LIST VALID_APPS)) message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") @@ -157,7 +157,7 @@ if(FMS) find_package(FMS 2022.04 REQUIRED COMPONENTS R4 R8) if(APP MATCHES "^(HAFSW)$") add_library(fms ALIAS FMS::fms_r4) - elseif (APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|ATM_DS2S|ATM_DS2S-PCICE|NG-GODAS|HAFS-MOM6|HAFS-MOM6W)$") + elseif (APP MATCHES "^(S2S|S2SA|S2SL|S2SW|S2SWL|S2SWA|S2SWAL|ATM_DS2S|ATM_DS2S-PCICE|NG-GODAS|HAFS-MOM6|HAFS-MOM6W)$") add_library(fms ALIAS FMS::fms_r8) endif() if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|ATMF|ATML-LM4|LND-LM4|HAFS|HAFS-ALL)$") diff --git a/FV3 b/FV3 index b40f99dd17..c2eb454e3a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b40f99dd1701569ee27b01d53c3c8f32f4d33951 +Subproject commit c2eb454e3a4a31762f3f2d4c020fa017eea0a867 diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp index 025043d1ad..1a2d2fcb02 160000 --- a/NOAHMP-interface/noahmp +++ b/NOAHMP-interface/noahmp @@ -1 +1 @@ -Subproject commit 025043d1ad662fca05f29f88ddd88ddf46c81882 +Subproject commit 1a2d2fcb02da38e975f252ef743af24b68b3cc7f diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index d3ab16b673..23281c588d 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -52,7 +52,7 @@ if(APP MATCHES "^(NG-GODAS)$") message("Configuring UFS app in (CDEPS) Data Atmosphere mode") endif() -if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL)$") +if(APP MATCHES "^(S2S|S2SL|S2SA|S2SW|S2SWL|S2SWA|S2SWAL)$") set(APP_MSG "Configuring UFS app in S2S") set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(FMS ON CACHE BOOL "Enable FMS" FORCE) @@ -61,7 +61,7 @@ if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL)$") set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) - if(APP MATCHES "^(S2SW|S2SWA|S2SWAL)") + if(APP MATCHES "^(S2SW|S2SWL|S2SWA|S2SWAL)") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) string(CONCAT APP_MSG ${APP_MSG} " with Waves") endif() @@ -69,7 +69,7 @@ if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL)$") set(UFS_GOCART ON CACHE BOOL "Enable GOCART" FORCE) string(CONCAT APP_MSG ${APP_MSG} " with Aerosols") endif() - if(APP MATCHES "^S2SWAL") + if(APP MATCHES "^(S2SL|S2SWL|S2SWAL)") set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) endif() message("${APP_MSG} mode") diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 924c815cf5..71c4859734 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20250107 +export BL_DATE=20250122 diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index d8be6334f6..a57a51c324 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -93,11 +93,7 @@ else fi if [ $TILEDFIX = .true. ]; then - if [ $CPLLND == .true. ]; then - cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc INPUT/. - else - cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . - fi + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . cp @[INPUTDATA_ROOT]/FV3_fix/global_glacier.2x2.grb . cp @[INPUTDATA_ROOT]/FV3_fix/global_maxice.2x2.grb . cp @[INPUTDATA_ROOT]/FV3_fix/RTGSST.1982.2012.monthly.clim.grb . diff --git a/tests/fv3_conf/noahmp_run.IN b/tests/fv3_conf/noahmp_run.IN index 6f4f8bd0da..a392dfb8df 100644 --- a/tests/fv3_conf/noahmp_run.IN +++ b/tests/fv3_conf/noahmp_run.IN @@ -1,64 +1,161 @@ mkdir -p INPUT RESTART -if [ "$LNDRES" = "C96" ]; then +if [ "$ATMRES" = "C96" ]; then inputdir=FV3_input_data -elif [ "$LNDRES" = "C48" ]; then - inputdir=FV3_input_data48 -elif [ "$LNDRES" = "C192" ]; then - inputdir=FV3_input_data192 -elif [ "$LNDRES" = "C384" ]; then - inputdir=FV3_input_data384 -elif [ "$LNDRES" = "C768" ]; then - inputdir=FV3_input_data768 +else + inputdir=FV3_input_data${ATMRES#C} fi -echo "inputdir=$inputdir,LNDRES=$LNDRES" +echo "inputdir=$inputdir,ATMRES=$ATMRES" + +V2_SFC_FILE=${V2_SFC_FILE:-false} +SUFFIX=${RT_SUFFIX} -if [ $DATM_CDEPS == true ]; then +if [[ $DATM_CDEPS == true ]] || [[ $S2S = false ]]; then targetdir="./INPUT" - rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile1.nc ./${targetdir}/@[LNDRES].initial.tile1.nc - rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile2.nc ./${targetdir}/@[LNDRES].initial.tile2.nc - rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile3.nc ./${targetdir}/@[LNDRES].initial.tile3.nc - rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile4.nc ./${targetdir}/@[LNDRES].initial.tile4.nc - rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile5.nc ./${targetdir}/@[LNDRES].initial.tile5.nc - rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile6.nc ./${targetdir}/@[LNDRES].initial.tile6.nc -else - if [ "$ATMRES" = "$LNDRES" ]; then - targetdir="./INPUT" - cd ${targetdir} - ln -sf grid_spec.nc @[LNDRES]_mosaic.nc - cd - - else - mkdir -p INPUT/$LNDRES - targetdir="./INPUT/$LNDRES" - fi - if [ $WARM_START = .false. ]; then - cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127/sfc_data.tile*.nc ${targetdir}/. + if [ $DATM_CDEPS == true ]; then + # Initial condition + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile1.nc ./${targetdir}/@[LNDRES].initial.tile1.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile2.nc ./${targetdir}/@[LNDRES].initial.tile2.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile3.nc ./${targetdir}/@[LNDRES].initial.tile3.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile4.nc ./${targetdir}/@[LNDRES].initial.tile4.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile5.nc ./${targetdir}/@[LNDRES].initial.tile5.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile6.nc ./${targetdir}/@[LNDRES].initial.tile6.nc + + # Fixed files + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx@[OCNRES].tile1.nc ${targetdir}/oro_data.tile1.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx@[OCNRES].tile2.nc ${targetdir}/oro_data.tile2.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx@[OCNRES].tile3.nc ${targetdir}/oro_data.tile3.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx@[OCNRES].tile4.nc ${targetdir}/oro_data.tile4.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx@[OCNRES].tile5.nc ${targetdir}/oro_data.tile5.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx@[OCNRES].tile6.nc ${targetdir}/oro_data.tile6.nc + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/oro_data_ls* ${targetdir}/. + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/oro_data_ss* ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES]*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/CPL_FIX/a@[LNDRES]o@[OCNRES]/grid_spec.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/@[LNDRES]_grid*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/grid_spec.nc ${targetdir}/@[LNDRES]_mosaic.nc else - # land restart file - cp ../${DEP_RUN}${SUFFIX}/ufs.cpld.lnd.out.${RESTART_FILE_SUFFIX_SECS}.tile*.nc RESTART/. - # CMEPS restart and pointer files - RFILE=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . - ls -1 ${RFILE}>rpointer.cpl - # link grid spec file + # Initial condition + if [ $WARM_START = .false. ]; then + # IC + if [ "$V2_SFC_FILE" = "true" ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}_v2_sfc/sfc_data*.nc ${targetdir}/. + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}_v2_sfc/gfs_data*.nc ${targetdir}/. + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}_v2_sfc/gfs_ctrl.nc ${targetdir}/. + else + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}/sfc_data*.nc ${targetdir}/. + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}/gfs_data*.nc ${targetdir}/. + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}/gfs_ctrl*.nc ${targetdir}/. + fi + else + # FV3 related restart files + cp -r ../${DEP_RUN}${SUFFIX}/${targetdir}/* ${targetdir}/. + cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ${targetdir}/. + for RFILE in INPUT/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + mv -f $RFILE ${targetdir}/"${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + done + if [[ $IAU_OFFSET == 6 ]] && [[ $FHROT -le 6 ]]; then + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}/fv_increment*.nc INPUT/. + fi + fi + + # Fixed files + FNSMCC="global_soilmgldas.statsgo.t1534.3072.1536.grb" + FNMSKH="global_slmask.t1534.3072.1536.grb" + cp @[INPUTDATA_ROOT]/${inputdir}/${FNSMCC} . + cp @[INPUTDATA_ROOT]/${inputdir}/${FNMSKH} . + if [ $TILEDFIX = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_fix/global_glacier.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_maxice.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/RTGSST.1982.2012.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_snoclim.1.875.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/IMS-NIC.blended.ice.monthly.clim.grb . + fi + + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/oro_@[ATMRES].mx@[OCNRES].tile1.nc ${targetdir}/oro_data.tile1.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/oro_@[ATMRES].mx@[OCNRES].tile2.nc ${targetdir}/oro_data.tile2.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/oro_@[ATMRES].mx@[OCNRES].tile3.nc ${targetdir}/oro_data.tile3.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/oro_@[ATMRES].mx@[OCNRES].tile4.nc ${targetdir}/oro_data.tile4.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/oro_@[ATMRES].mx@[OCNRES].tile5.nc ${targetdir}/oro_data.tile5.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/oro_@[ATMRES].mx@[OCNRES].tile6.nc ${targetdir}/oro_data.tile6.nc + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/oro_data_ls* ${targetdir}/. + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/oro_data_ss* ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . + cp @[INPUTDATA_ROOT]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/@[ATMRES]_grid*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/grid_spec.nc ${targetdir}/@[ATMRES]_mosaic.nc + cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/ocean_mosaic.nc ${targetdir}/. + + # Merra2 + if [ $IAER = 1011 ]; then + for n in 01 02 03 04 05 06 07 08 09 10 11 12; do + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc + done + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat + fi + + cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc + + if [ $IMP_PHYSICS = 8 ]; then + cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN CCN_ACTIVATE.BIN + cp @[INPUTDATA_ROOT]/FV3_fix/freezeH2O.dat freezeH2O.dat + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qgV2.dat qr_acr_qgV2.dat + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qsV2.dat qr_acr_qsV2.dat + fi + + # Prognostic aerosols + if [ $CPLCHM = .true. ]; then + ln -sf @[INPUTDATA_ROOT]/GOCART/p8c_5d/ExtData . + fi fi fi +# Land component related restart files +if [ $WARM_START = .true. ]; then + # Copy land restart files + cp ../${DEP_RUN}${SUFFIX}/ufs.cpld.lnd.out.${RESTART_FILE_SUFFIX_SECS}.tile*.nc RESTART/. + # CMEPS restart and pointer files + RFILE=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . + ls -1 ${RFILE}>rpointer.cpl +fi + +# Running land in different resolution +# Note that CMEPS mediator has some limitiations to run land in different resolution than atmosphere if [ "$ATMRES" != "$LNDRES" ]; then - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].maximum_snow_albedo.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].slope_type.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].soil_type.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].soil_color.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].substrate_temperature.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].vegetation_greenness.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].vegetation_type.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile1.nc ${targetdir}/oro_data.tile1.nc - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile2.nc ${targetdir}/oro_data.tile2.nc - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile3.nc ${targetdir}/oro_data.tile3.nc - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile4.nc ${targetdir}/oro_data.tile4.nc - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile5.nc ${targetdir}/oro_data.tile5.nc - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile6.nc ${targetdir}/oro_data.tile6.nc - rsync -arv @[INPUTDATA_ROOT]/${inputdir}/INPUT/@[LNDRES]_grid.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/${inputdir}/INPUT/grid_spec.nc ${targetdir}/@[LNDRES]_mosaic.nc + mkdir -p INPUT/$LNDRES + targetdir="./INPUT/$LNDRES" + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].maximum_snow_albedo.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].slope_type.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].soil_type.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].soil_color.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].substrate_temperature.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].vegetation_greenness.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].vegetation_type.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx025.tile1.nc ${targetdir}/oro_data.tile1.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx025.tile2.nc ${targetdir}/oro_data.tile2.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx025.tile3.nc ${targetdir}/oro_data.tile3.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx025.tile4.nc ${targetdir}/oro_data.tile4.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx025.tile5.nc ${targetdir}/oro_data.tile5.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx025.tile6.nc ${targetdir}/oro_data.tile6.nc + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT/@[LNDRES]_grid.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT/grid_spec.nc ${targetdir}/@[LNDRES]_mosaic.nc + if [ $WARM_START = .false. ]; then + if [ "$V2_SFC_FILE" = "true" ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT_L127_mx025_v2_sfc/sfc_data*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT_L127_mx025_v2_sfc/gfs_data*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT_L127_mx025_v2_sfc/gfs_ctrl*.nc ${targetdir}/. + else + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT_L127_mx025/sfc_data*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT_L127_mx025/gfs_data*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT_L127_mx025/gfs_ctrl*.nc ${targetdir}/. + fi + fi fi diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 6183b88b77..2064956ca1 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Tue Jan 21 05:49:59 UTC 2025 +Fri Jan 24 02:31:13 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.320072 - 0: The maximum resident set size (KB) = 1448288 + 0: The total amount of wall time = 261.209374 + 0: The maximum resident set size (KB) = 1444280 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/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 = 876.657665 - 0: The maximum resident set size (KB) = 1437152 + 0: The total amount of wall time = 898.596863 + 0: The maximum resident set size (KB) = 1423760 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/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 = 252.676844 - 0: The maximum resident set size (KB) = 1421128 + 0: The total amount of wall time = 230.932286 + 0: The maximum resident set size (KB) = 1426492 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/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 = 236.323493 - 0: The maximum resident set size (KB) = 1429624 + 0: The total amount of wall time = 237.659021 + 0: The maximum resident set size (KB) = 1420064 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/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 = 235.014572 - 0: The maximum resident set size (KB) = 1420424 + 0: The total amount of wall time = 234.966055 + 0: The maximum resident set size (KB) = 1422512 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/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 = 236.140386 - 0: The maximum resident set size (KB) = 1433648 + 0: The total amount of wall time = 233.819689 + 0: The maximum resident set size (KB) = 1414824 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -377,11 +377,11 @@ Checking test thr results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 234.759589 - 0: The maximum resident set size (KB) = 1433016 + 0: The total amount of wall time = 231.400420 + 0: The maximum resident set size (KB) = 1424780 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Jan 21 06:58:31 UTC 2025 -Elapsed time: 01h:08m:33s. Have a nice day! +Fri Jan 24 03:42:57 UTC 2025 +Elapsed time: 01h:11m:45s. 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 3c6511e905..46b6a936e8 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 @@ -Tue Jan 21 04:11:58 UTC 2025 +Fri Jan 24 00:53:56 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_120730/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1633720/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 = 2676.469340 - 0: The maximum resident set size (KB) = 1518024 + 0: The total amount of wall time = 2476.263104 + 0: The maximum resident set size (KB) = 1491168 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_120730/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1633720/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 = 813.896517 - 0: The maximum resident set size (KB) = 1508392 + 0: The total amount of wall time = 662.263266 + 0: The maximum resident set size (KB) = 1495952 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_120730/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1633720/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 = 678.460183 - 0: The maximum resident set size (KB) = 1505616 + 0: The total amount of wall time = 666.677233 + 0: The maximum resident set size (KB) = 1493700 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Jan 21 05:49:58 UTC 2025 -Elapsed time: 01h:38m:00s. Have a nice day! +Fri Jan 24 02:31:12 UTC 2025 +Elapsed time: 01h:37m:16s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index c81ebe009c..d10b0466a1 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Tue Jan 21 01:39:24 UTC 2025 +Thu Jan 23 22:11:22 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3701143/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_905248/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 = 1419.663361 - 0: The maximum resident set size (KB) = 767536 + 0: The total amount of wall time = 1400.218854 + 0: The maximum resident set size (KB) = 768752 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3701143/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_905248/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -33,14 +33,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2222.506149 - 0: The maximum resident set size (KB) = 737008 + 0: The total amount of wall time = 2207.914111 + 0: The maximum resident set size (KB) = 724580 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3701143/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_905248/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 = 2194.200962 - 0: The maximum resident set size (KB) = 712244 + 0: The total amount of wall time = 2203.715305 + 0: The maximum resident set size (KB) = 714620 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3701143/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_905248/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 = 2208.564561 - 0: The maximum resident set size (KB) = 723148 + 0: The total amount of wall time = 2202.404532 + 0: The maximum resident set size (KB) = 724172 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Jan 21 04:11:58 UTC 2025 -Elapsed time: 02h:32m:34s. Have a nice day! +Fri Jan 24 00:56:07 UTC 2025 +Elapsed time: 02h:44m:46s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index f058d47b54..056f915d19 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,20 +1,20 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -8b8eac654f051017e26b76099b5eb7471f0a110d +0fc9036195cc178e1d4938163575ebb6cade49d2 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 55576eba972ad53cc6546f00d409fa27361f78bd CMEPS-interface/CMEPS (cmeps_v0.4.1-2312-g55576eb) + cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) + 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,289 +38,292 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_25395 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20250122 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_96797 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:25, 21:43] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:59, 06:30](3213 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:26, 23:28] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:15, 14:09](1907 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:32, 15:21](1936 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:42, 06:57](1078 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:29, 16:06](1878 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:26, 23:18] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:40, 14:01](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:22, 11:55] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:12, 23:41](1942 MB) - -PASS -- COMPILE 's2swa_intel' [23:25, 21:39] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:30, 08:14](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:05, 08:29](3228 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:29, 05:04](3153 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:39, 08:28](3253 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:28, 05:07](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:52, 13:58](3815 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:48, 08:20](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:44, 06:47](3538 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:16, 08:12](3233 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:33, 09:00](3819 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:54, 06:32](3620 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [38:59, 10:46](4546 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [33:18, 07:28](4680 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:32, 08:09](3208 MB) - -PASS -- COMPILE 's2sw_intel' [21:24, 19:47] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:53, 04:47](1921 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:02, 07:01](1988 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:24, 11:42] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:00, 12:48](3304 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:24, 11:05] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:36, 06:03](1963 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:24, 16:09] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:04, 05:14](1980 MB) - -PASS -- COMPILE 's2s_intel' [18:24, 16:36] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:21, 05:54](2887 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:22, 02:19](2896 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:30, 01:30](2308 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:22, 23:51] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:53, 08:16](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:22, 21:48] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:29, 14:14](1927 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:36, 07:18](1108 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:23, 16:01](1891 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:21, 11:09] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:11, 25:22](1961 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:21, 14:16] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:39, 03:27](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:15, 02:11](1562 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:48, 02:13](1576 MB) -PASS -- TEST 'control_latlon_intel' [08:13, 02:09](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:15, 02:11](1562 MB) -PASS -- TEST 'control_c48_intel' [11:15, 05:44](1590 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:49, 05:19](709 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:03, 05:45](1586 MB) -PASS -- TEST 'control_c192_intel' [10:27, 06:10](1695 MB) -PASS -- TEST 'control_c384_intel' [18:22, 06:57](1980 MB) -PASS -- TEST 'control_c384gdas_intel' [19:28, 07:15](1178 MB) -PASS -- TEST 'control_stochy_intel' [03:50, 01:28](622 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:39, 00:53](436 MB) -PASS -- TEST 'control_lndp_intel' [03:35, 01:23](616 MB) -PASS -- TEST 'control_iovr4_intel' [04:52, 02:07](615 MB) -PASS -- TEST 'control_iovr5_intel' [04:51, 02:08](615 MB) -PASS -- TEST 'control_p8_intel' [06:37, 03:14](1858 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:48, 03:08](1862 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:48, 03:17](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [05:32, 02:03](1005 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:36, 03:14](1852 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:23, 02:00](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:32, 03:10](1848 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:38, 04:51](1936 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:32, 04:52](1857 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:48, 04:01](1913 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:55, 03:24](1858 MB) -PASS -- TEST 'merra2_thompson_intel' [07:44, 03:41](1861 MB) -PASS -- TEST 'regional_control_intel' [08:03, 04:58](894 MB) -PASS -- TEST 'regional_restart_intel' [07:07, 03:01](877 MB) -PASS -- TEST 'regional_decomp_intel' [08:05, 05:15](886 MB) -PASS -- TEST 'regional_noquilt_intel' [08:10, 04:54](1217 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:10, 04:57](894 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:03, 04:58](896 MB) -PASS -- TEST 'regional_wofs_intel' [08:57, 05:54](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [15:21, 12:53] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:30, 06:10](1005 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:18, 04:03](1162 MB) -PASS -- TEST 'rap_decomp_intel' [09:29, 06:25](1007 MB) -PASS -- TEST 'rap_2threads_intel' [15:28, 11:30](1085 MB) -PASS -- TEST 'rap_restart_intel' [06:25, 03:15](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:42, 06:09](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:34, 06:25](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:24, 04:39](883 MB) -PASS -- TEST 'hrrr_control_intel' [08:17, 03:15](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:17, 03:19](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:29, 05:47](1076 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:48, 01:49](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:36, 06:02](998 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:06, 08:07](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:08, 07:50](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [14:19, 11:44] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:16, 06:27](955 MB) -PASS -- TEST 'control_ras_intel' [05:49, 02:53](658 MB) - -PASS -- COMPILE 'wam_intel' [13:20, 11:33] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:23, 10:18](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:20, 12:01] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:44, 03:14](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [08:14, 04:46](899 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [18:17, 14:40] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:27, 02:17](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 02:14](1609 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:57, 02:59](810 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:56, 02:40](807 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:06, 04:49](1116 MB) -PASS -- TEST 'control_ras_debug_intel' [05:42, 02:40](814 MB) -PASS -- TEST 'control_diag_debug_intel' [07:27, 02:40](1666 MB) -PASS -- TEST 'control_debug_p8_intel' [08:04, 03:13](1901 MB) -PASS -- TEST 'regional_debug_intel' [20:14, 16:20](921 MB) -PASS -- TEST 'rap_control_debug_intel' [08:44, 04:41](1188 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:00, 04:42](1182 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:52, 04:40](1191 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:50, 04:44](1187 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:51, 04:50](1188 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:56, 04:59](1271 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:45, 04:52](1190 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:39, 04:52](1192 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:44, 04:52](1186 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:53, 04:49](1192 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:48, 04:37](1184 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:41, 04:43](1186 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:38, 07:45](1189 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:47, 04:37](1188 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:42, 04:52](1191 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:48, 04:45](1189 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:22, 08:00](1197 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:17, 07:09] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:48, 12:14](1694 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:20, 11:31] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:11, 03:39](1031 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:14, 05:09](875 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:19, 02:47](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:10, 09:37](929 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:13, 04:57](932 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:10, 02:56](874 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:15, 03:54](794 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:39, 01:34](771 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:18, 11:22] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:45, 01:54](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:23, 01:22](1078 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:28, 01:09](963 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:18, 11:42] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:09, 03:40](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:19, 07:34] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:47, 04:31](1064 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:47, 04:35](1061 MB) -PASS -- TEST 'conus13km_debug_intel' [16:27, 12:44](1148 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:33, 13:02](831 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [19:03, 13:57](1148 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:44, 12:55](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:19, 07:17] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:46, 04:36](1091 MB) - -PASS -- COMPILE 'hafsw_intel' [23:19, 17:52] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:35, 04:42](703 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:02, 06:03](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:58, 06:36](763 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:29, 10:45](771 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:02, 11:48](804 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:33, 04:42](470 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:45, 05:46](490 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:03, 02:20](387 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:15, 06:17](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:16, 03:22](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:25, 03:08](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:31, 03:51](582 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:37, 01:14](426 MB) -PASS -- TEST 'gnv1_nested_intel' [09:34, 04:08](1706 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:14, 08:38] ( 1470 warnings 1424 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:27, 12:45](620 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:21, 17:24] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:39, 06:54](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:35, 06:59](683 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [22:18, 19:00] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:05, 05:24](671 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:19, 15:49] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:37, 05:46](731 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:42, 05:49](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:25, 16:12](897 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:18, 08:30] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:45, 02:33](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:56, 01:36](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:37, 02:25](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:43, 02:27](649 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:51, 02:26](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:52, 02:32](755 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:45, 02:33](770 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:53, 02:24](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:08, 05:51](701 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:28, 05:50](681 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:33, 02:32](770 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:53, 03:58](2040 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:01, 03:57](2039 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 05:53] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:41, 05:10](753 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:14, 08:35] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:51, 02:32](757 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:19, 02:43] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:06, 01:12](313 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:42, 01:09](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:41, 00:47](453 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:16, 13:55] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:15, 03:47](1916 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:19, 12:47] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:39, 05:08](1901 MB) - -PASS -- COMPILE 'atml_intel' [16:19, 14:37] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:47, 07:17](1880 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:52, 06:52](1882 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:07, 03:57](1032 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:16, 10:39] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:02, 06:21](1936 MB) - -PASS -- COMPILE 'atmw_intel' [17:19, 14:13] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:41, 02:29](1882 MB) - -PASS -- COMPILE 'atmaero_intel' [15:16, 12:59] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:08, 04:19](3130 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:16, 04:20](3004 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:32, 04:24](3018 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:13, 08:01] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:21, 22:10](4544 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:17, 11:25] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:51, 08:08](843 MB) +PASS -- COMPILE 's2swa_32bit_intel' [24:38, 22:06] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:27, 06:26](3206 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:36, 23:49] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:12, 13:56](1916 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:37, 15:12](1957 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:18, 07:07](1079 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:56, 15:56](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:35, 23:51] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:32, 13:52](1914 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:29, 11:45] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:01, 23:57](1946 MB) + +PASS -- COMPILE 's2swa_intel' [24:38, 22:17] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:50, 08:09](3229 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:50, 08:10](3235 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:15, 04:47](3152 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:37, 08:00](3254 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:29, 04:44](3179 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:41, 13:43](3805 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:30, 08:05](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:22, 06:27](3536 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:52, 08:04](3234 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:43, 09:15](3814 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 06:30](3621 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:46, 10:44](4546 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:08, 06:53](4672 MB) + +PASS -- COMPILE 's2swal_intel' [24:38, 22:28] ( 6 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [12:49, 08:20](3230 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:32, 04:56](3160 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:19, 07:58](3205 MB) + +PASS -- COMPILE 's2sw_intel' [22:35, 20:23] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 04:56](1925 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:01, 06:56](1984 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:28, 11:43] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:47, 12:46](3300 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:28, 11:21] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:33, 05:56](1954 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:26, 16:23] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:35, 04:58](1989 MB) + +PASS -- COMPILE 's2s_intel' [19:27, 17:37] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:04, 05:45](2882 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:05, 02:07](2894 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:05, 01:20](2309 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:27, 24:40] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:17, 08:08](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:26, 22:37] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:17, 13:54](1930 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:10, 07:10](1106 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:46, 15:49](1892 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:27, 11:33] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:31, 25:11](1964 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:19, 14:39] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:48, 03:23](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 02:08](1560 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:28, 02:11](1568 MB) +PASS -- TEST 'control_latlon_intel' [05:16, 02:07](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:19, 02:08](1561 MB) +PASS -- TEST 'control_c48_intel' [09:22, 05:45](1588 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:44, 05:17](708 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:21, 05:42](1589 MB) +PASS -- TEST 'control_c192_intel' [09:48, 06:05](1694 MB) +PASS -- TEST 'control_c384_intel' [14:17, 06:52](1974 MB) +PASS -- TEST 'control_c384gdas_intel' [17:30, 07:39](1173 MB) +PASS -- TEST 'control_stochy_intel' [03:44, 01:25](622 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:44, 00:51](433 MB) +PASS -- TEST 'control_lndp_intel' [03:48, 01:26](621 MB) +PASS -- TEST 'control_iovr4_intel' [04:52, 02:06](616 MB) +PASS -- TEST 'control_iovr5_intel' [04:52, 02:06](617 MB) +PASS -- TEST 'control_p8_intel' [06:39, 03:00](1861 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:27, 03:07](1852 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:26, 02:59](1856 MB) +PASS -- TEST 'control_restart_p8_intel' [05:24, 01:56](1010 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:42, 03:01](1850 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:19, 02:01](1013 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:27, 03:00](1847 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:17, 04:37](1936 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:21, 04:41](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:34, 03:50](1913 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:27, 03:04](1867 MB) +PASS -- TEST 'merra2_thompson_intel' [06:14, 03:17](1854 MB) +PASS -- TEST 'regional_control_intel' [07:57, 04:46](900 MB) +PASS -- TEST 'regional_restart_intel' [06:04, 02:52](880 MB) +PASS -- TEST 'regional_decomp_intel' [07:57, 04:59](902 MB) +PASS -- TEST 'regional_noquilt_intel' [06:58, 04:42](1218 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:59, 04:42](894 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:01, 04:47](894 MB) +PASS -- TEST 'regional_wofs_intel' [08:58, 05:50](1589 MB) + +PASS -- COMPILE 'rrfs_intel' [15:17, 13:00] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:09, 06:06](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:26, 03:52](1166 MB) +PASS -- TEST 'rap_decomp_intel' [09:11, 06:26](1007 MB) +PASS -- TEST 'rap_2threads_intel' [14:10, 11:28](1087 MB) +PASS -- TEST 'rap_restart_intel' [06:09, 03:13](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:01, 06:05](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:57, 06:21](1004 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:23, 04:36](883 MB) +PASS -- TEST 'hrrr_control_intel' [06:06, 03:12](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:07, 03:16](998 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:16, 05:42](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:38, 01:45](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:05, 05:58](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:33, 08:02](1954 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:33, 07:46](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [14:17, 11:55] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:52, 06:25](958 MB) +PASS -- TEST 'control_ras_intel' [06:33, 02:52](654 MB) + +PASS -- COMPILE 'wam_intel' [14:17, 11:47] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:49, 10:13](1654 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:28, 12:08] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:22, 03:08](1863 MB) +PASS -- TEST 'regional_control_faster_intel' [06:59, 04:33](901 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:23, 14:33] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:06, 02:15](1606 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:15, 02:13](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:40, 02:52](813 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:31, 02:35](809 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:03, 04:29](1117 MB) +PASS -- TEST 'control_ras_debug_intel' [04:41, 02:41](816 MB) +PASS -- TEST 'control_diag_debug_intel' [05:15, 02:36](1671 MB) +PASS -- TEST 'control_debug_p8_intel' [06:14, 02:58](1900 MB) +PASS -- TEST 'regional_debug_intel' [20:06, 16:43](925 MB) +PASS -- TEST 'rap_control_debug_intel' [07:39, 04:49](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:37, 04:39](1186 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:42, 04:54](1190 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 04:58](1193 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:38, 04:39](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:52, 04:53](1272 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:38, 04:43](1191 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:42, 04:48](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:42, 04:46](1190 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 04:44](1188 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:38, 04:33](1186 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:41, 04:39](1188 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:32, 07:29](1187 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:44, 04:35](1186 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 04:42](1191 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:25, 04:47](1193 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:03, 07:58](1197 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:15, 07:16] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:20, 12:04](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:19, 11:37] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:48, 03:48](1031 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 05:09](879 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:01, 02:44](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:08, 09:34](937 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:55, 04:57](930 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 02:55](874 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:19, 03:54](790 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 01:31](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:20, 11:30] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:27, 01:47](1081 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:23, 01:15](1080 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:11, 01:06](962 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:18, 11:44] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:56, 03:38](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:17, 07:40] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 04:32](1067 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 04:31](1063 MB) +PASS -- TEST 'conus13km_debug_intel' [17:06, 12:39](1148 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 12:43](832 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:35, 13:42](1154 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:32, 13:10](1216 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:17, 07:24] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:43, 04:32](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [20:25, 18:04] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:45, 04:30](701 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:12, 05:03](1067 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:50, 06:23](766 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:37, 10:31](776 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:05, 11:39](800 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:18, 04:37](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:32, 05:41](489 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:59, 02:17](388 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:24, 06:06](447 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:09, 03:16](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:06, 03:04](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:15, 03:50](581 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:32, 01:11](424 MB) +PASS -- TEST 'gnv1_nested_intel' [10:16, 03:59](1701 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:19, 08:49] ( 1470 warnings 1424 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:22, 12:29](626 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:22, 17:20] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:22, 06:51](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:31, 06:54](684 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:16, 19:14] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:28, 05:18](666 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:14, 16:17] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:34, 05:40](733 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:22, 05:42](724 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:14, 16:11](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:13, 08:34] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:36, 02:30](769 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:45, 01:32](757 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:32, 02:23](650 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:31, 02:26](652 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:26, 02:27](649 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:35, 02:30](771 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:39, 02:32](771 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:22, 02:23](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:48, 05:41](702 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:53, 05:41](683 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:30, 02:32](771 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:35, 03:55](2041 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 03:54](2039 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:20, 05:52] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:28, 05:09](753 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:20, 08:32] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:36, 02:30](770 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:12, 02:43] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:08](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:03](455 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:30, 00:40](453 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:18, 13:40] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:36, 03:50](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:15, 12:44] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:28, 04:51](1910 MB) + +PASS -- COMPILE 'atml_intel' [17:19, 15:20] ( 14 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [09:39, 05:55](1878 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 03:19](1034 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:24, 11:01] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:37, 05:32](1916 MB) + +PASS -- COMPILE 'atmw_intel' [16:20, 14:15] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:28, 02:23](1873 MB) + +PASS -- COMPILE 'atmaero_intel' [15:23, 13:04] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:37, 04:07](3128 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:37, 04:15](3003 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:19, 04:21](3016 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:15, 08:02] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:35, 21:48](4550 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:25, 11:25] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:42, 08:02](847 MB) SYNOPSIS: -Starting Date/Time: 20250117 18:15:58 -Ending Date/Time: 20250117 20:10:30 -Total Time: 01h:55m:39s -Compiles Completed: 42/42 -Tests Completed: 186/186 +Starting Date/Time: 20250123 14:07:05 +Ending Date/Time: 20250123 15:58:57 +Total Time: 01h:52m:53s +Compiles Completed: 43/43 +Tests Completed: 187/187 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log index 2ddcc3f840..89ca4d69b2 100644 --- a/tests/logs/RegressionTests_gaeac5.log +++ b/tests/logs/RegressionTests_gaeac5.log @@ -1,7 +1,7 @@ ====START OF GAEAC5 REGRESSION TESTING LOG==== UFSWM hash used in testing: -8b8eac654f051017e26b76099b5eb7471f0a110d +7f24a0021dcc8bf882d8abb1e8df76d52db41a0e Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) + 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,307 +38,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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1675678 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20250122 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2395802 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:23, 19:13] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:10, 08:17](3185 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:23, 20:52] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:29, 15:15](1899 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:08, 15:49](1925 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:01, 07:34](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:29, 17:12](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:22, 19:20] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:47, 15:19](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:13, 10:55] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:10, 26:18](1922 MB) - -PASS -- COMPILE 's2swa_intel' [22:23, 20:21] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:40, 10:50](3218 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:52, 09:40](3215 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:07, 06:04](3140 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:44, 09:39](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:50, 06:23](3162 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:03, 10:35](3441 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:44, 09:27](3211 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:44, 08:49](3161 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:16, 10:07](3220 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:47, 10:41](3486 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:47, 07:20](3597 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:54, 12:57](4276 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:56, 08:38](4368 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:08, 10:36](3193 MB) - -PASS -- COMPILE 's2sw_intel' [19:14, 18:03] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:07, 06:08](1915 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:09, 08:10](1974 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:16, 11:03] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [18:07, 14:56](3267 MB) - -PASS -- COMPILE 's2sw_debug_intel' [12:14, 10:12] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:03, 07:37](1943 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:23, 13:10] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:23, 07:33](1978 MB) - -PASS -- COMPILE 's2s_intel' [15:20, 13:35] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:11, 07:22](2880 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:12, 03:22](2883 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:40, 01:28](2298 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:17, 18:46] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:20, 10:22](3213 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:13, 19:55] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:30, 14:53](1912 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:58, 07:34](1088 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:58, 17:15](1898 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:12, 10:28] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:57, 27:10](1939 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:19, 11:34] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:24, 05:07](655 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:43, 03:34](1551 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:07, 03:45](1563 MB) -PASS -- TEST 'control_latlon_intel' [04:59, 02:40](1562 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:10, 03:30](1557 MB) -PASS -- TEST 'control_c48_intel' [10:11, 07:09](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:48, 06:25](697 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:47, 06:43](1571 MB) -PASS -- TEST 'control_c192_intel' [09:45, 07:14](1679 MB) -PASS -- TEST 'control_c384_intel' [16:56, 14:31](1963 MB) -PASS -- TEST 'control_c384gdas_intel' [17:33, 14:54](1165 MB) -PASS -- TEST 'control_stochy_intel' [04:22, 01:57](609 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:25, 01:53](417 MB) -PASS -- TEST 'control_lndp_intel' [05:21, 02:41](608 MB) -PASS -- TEST 'control_iovr4_intel' [05:25, 03:49](604 MB) -PASS -- TEST 'control_iovr5_intel' [06:23, 03:54](607 MB) -PASS -- TEST 'control_p8_intel' [06:47, 04:18](1844 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:54, 03:09](1839 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:33](1847 MB) -PASS -- TEST 'control_restart_p8_intel' [05:47, 03:17](996 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:44, 03:33](1841 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:46, 01:38](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:40, 03:34](1838 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:47, 03:43](1923 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:33, 06:16](1845 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:40, 05:18](1900 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:51, 03:43](1849 MB) -PASS -- TEST 'merra2_thompson_intel' [05:45, 03:35](1848 MB) -PASS -- TEST 'regional_control_intel' [08:32, 06:21](877 MB) -PASS -- TEST 'regional_restart_intel' [05:26, 03:12](862 MB) -PASS -- TEST 'regional_decomp_intel' [09:31, 06:32](862 MB) -PASS -- TEST 'regional_2threads_intel' [07:29, 05:39](1004 MB) -PASS -- TEST 'regional_noquilt_intel' [08:32, 06:20](1206 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:37, 06:19](880 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:29, 04:39](874 MB) -PASS -- TEST 'regional_wofs_intel' [10:35, 07:51](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [12:19, 10:33] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:47, 08:00](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:01, 04:32](1167 MB) -PASS -- TEST 'rap_decomp_intel' [09:52, 07:50](992 MB) -PASS -- TEST 'rap_2threads_intel' [10:45, 08:06](1071 MB) -PASS -- TEST 'rap_restart_intel' [07:46, 05:11](871 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:51, 07:35](988 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:51, 07:42](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:45, 05:24](876 MB) -PASS -- TEST 'hrrr_control_intel' [07:00, 04:24](987 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 04:26](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:11, 05:04](1060 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:32, 03:33](821 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:50, 06:58](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:35, 09:38](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:25, 08:55](1931 MB) - -PASS -- COMPILE 'csawmg_intel' [14:13, 12:38] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:39, 08:07](942 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:19](645 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 10:05] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:02, 13:20](1635 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:16, 13:00] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:52, 04:37](1847 MB) -PASS -- TEST 'regional_control_faster_intel' [06:34, 04:32](877 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:13, 12:23] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:39, 04:22](1579 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:36, 04:15](1583 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:22, 04:23](779 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:23](783 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:39](1085 MB) -PASS -- TEST 'control_ras_debug_intel' [05:21, 03:11](789 MB) -PASS -- TEST 'control_diag_debug_intel' [05:34, 02:56](1643 MB) -PASS -- TEST 'control_debug_p8_intel' [06:59, 03:02](1878 MB) -PASS -- TEST 'regional_debug_intel' [19:28, 16:31](886 MB) -PASS -- TEST 'rap_control_debug_intel' [08:20, 05:21](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:22, 05:08](1155 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:22, 05:21](1160 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 05:17](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:12](1169 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:28, 05:37](1247 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:11](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:10](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:24, 05:24](1163 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:09](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:23, 05:13](1158 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 05:13](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 07:56](1162 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:21, 05:15](1157 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:31](1163 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:20, 05:24](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 08:41](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 06:55] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:45, 13:29](1661 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:13, 10:25] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:59, 03:47](1042 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:48, 05:58](869 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:41, 03:22](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:40, 06:54](918 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:40, 03:38](912 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:52, 03:38](863 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:56, 04:10](779 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:28, 01:52](750 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 12:50] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:58, 02:11](1073 MB) -PASS -- TEST 'conus13km_2threads_intel' [09:51, 01:04](1054 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [11:52, 01:26](949 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:10] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 04:25](894 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:12, 07:16] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:26, 05:01](1041 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 04:58](1037 MB) -PASS -- TEST 'conus13km_debug_intel' [16:02, 13:46](1127 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:04, 13:48](800 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:57, 11:08](1110 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:57, 13:56](1192 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:12, 09:19] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 05:00](1069 MB) - -PASS -- COMPILE 'hafsw_intel' [15:13, 13:58] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:09](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 04:23](1082 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:21, 07:49](745 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:09, 11:35](780 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:30, 12:57](806 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:05, 05:31](471 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:20, 06:38](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:50, 02:46](398 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [16:01, 07:34](489 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:39, 03:53](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:48, 03:54](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [16:11, 04:36](589 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:39, 01:33](426 MB) -PASS -- TEST 'gnv1_nested_intel' [13:46, 05:45](1695 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 08:02] ( 1470 warnings 1424 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:12, 13:35](613 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:13, 15:34] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:08, 07:35](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:20, 07:49](813 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:14, 14:57] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:26, 06:03](811 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:12, 11:42] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:09, 06:21](741 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:11, 06:22](723 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:10, 20:12](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:13, 11:57] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:49, 02:43](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:35, 03:09](740 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:00, 02:32](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 02:33](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:24, 02:32](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:21, 02:39](764 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:21, 02:45](754 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:22, 02:34](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:52, 06:14](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:50, 06:32](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:19, 02:47](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:22, 04:47](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 04:48](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:39] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:22, 05:32](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:12, 10:28] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:29, 02:38](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:39] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:44, 02:09](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:35, 03:35](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:36, 03:02](462 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:13, 01:43] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [04:46, 02:08](449 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:44, 00:23](252 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:12, 14:58] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:14, 03:59](1916 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:34] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:39, 07:28](1906 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 11:49] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:45, 07:35](1874 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:34, 10:46](1883 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:39, 07:06](1015 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:11, 07:13] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:16, 07:01](1911 MB) - -PASS -- COMPILE 'atmw_intel' [12:12, 10:46] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:12, 04:43](1882 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 11:35] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:15, 09:09](3098 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:05, 07:39](2981 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:03, 09:19](2994 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:13, 07:48] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:23, 21:21](4446 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:13, 10:44] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:38, 09:34](826 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [20:12, 18:22] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [20:08, 17:06](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [11:13, 10:05] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [32:05, 28:34](1927 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [21:15, 19:28] -PASS -- TEST 'cpld_control_sfs_intelllvm' [16:46, 14:19](1902 MB) - -PASS -- COMPILE 's2swa_intelllvm' [16:11, 14:39] -PASS -- TEST 'cpld_control_p8_intelllvm' [14:23, 10:50](3217 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:19, 20:46] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:15, 10:28](3182 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:25, 28:54] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [45:35, 16:57](1897 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:55, 17:49](1940 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:05, 09:37](1075 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:36, 19:17](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:22, 23:52] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [37:27, 16:35](1899 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:18, 16:28] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:22, 27:48](1933 MB) + +PASS -- COMPILE 's2swa_intel' [24:22, 22:54] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [33:19, 10:19](3214 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:48, 12:21](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:06, 06:08](3142 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [32:13, 10:18](3235 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:16, 08:23](3162 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [32:04, 12:44](3444 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [32:04, 10:10](3208 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [33:03, 10:54](3158 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:10, 12:14](3214 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [32:40, 10:30](3493 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:37, 07:36](3601 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [51:16, 14:39](4280 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:46, 10:50](4361 MB) + +PASS -- COMPILE 's2swal_intel' [26:23, 24:36] ( 6 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [43:25, 10:03](3223 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:18, 08:28](3146 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [33:40, 12:09](3195 MB) + +PASS -- COMPILE 's2sw_intel' [21:19, 19:38] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:20, 07:14](1917 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:20, 09:44](1981 MB) + +PASS -- COMPILE 's2swa_debug_intel' [19:18, 17:38] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [20:09, 16:24](3267 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:15, 13:16] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:52, 08:24](1936 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:18, 17:27] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:26, 05:50](1965 MB) + +PASS -- COMPILE 's2s_intel' [19:14, 17:42] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:58, 07:44](2870 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [28:02, 03:52](2883 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:39, 03:11](2295 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:16, 21:44] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [29:34, 12:06](3217 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:16, 21:04] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:28, 15:25](1925 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:52, 09:30](1089 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:12, 19:30](1897 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:14, 14:33] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [53:20, 29:49](1941 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:13, 16:03] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [25:34, 06:00](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [23:10, 03:09](1551 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:04, 05:14](1563 MB) +PASS -- TEST 'control_latlon_intel' [25:01, 05:14](1555 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:12, 05:21](1555 MB) +PASS -- TEST 'control_c48_intel' [28:25, 08:16](1572 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [27:54, 07:49](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [26:26, 06:16](1572 MB) +PASS -- TEST 'control_c192_intel' [30:06, 09:37](1683 MB) +PASS -- TEST 'control_c384_intel' [34:29, 14:22](1968 MB) +PASS -- TEST 'control_c384gdas_intel' [38:13, 16:51](1168 MB) +PASS -- TEST 'control_stochy_intel' [23:11, 04:20](609 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:55, 00:59](417 MB) +PASS -- TEST 'control_lndp_intel' [12:24, 04:14](608 MB) +PASS -- TEST 'control_iovr4_intel' [08:23, 05:08](607 MB) +PASS -- TEST 'control_iovr5_intel' [07:23, 04:43](605 MB) +PASS -- TEST 'control_p8_intel' [08:36, 05:32](1848 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:38, 05:47](1854 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:53, 03:34](1840 MB) +PASS -- TEST 'control_restart_p8_intel' [07:50, 04:14](996 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:57, 05:12](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:34, 03:49](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:32, 05:15](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:33, 05:41](1927 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:14, 05:04](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:44, 06:15](1894 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:42, 03:16](1847 MB) +PASS -- TEST 'merra2_thompson_intel' [09:39, 06:10](1843 MB) +PASS -- TEST 'regional_control_intel' [09:16, 06:51](883 MB) +PASS -- TEST 'regional_restart_intel' [05:10, 02:33](862 MB) +PASS -- TEST 'regional_decomp_intel' [10:16, 06:58](876 MB) +PASS -- TEST 'regional_2threads_intel' [09:08, 05:53](1006 MB) +PASS -- TEST 'regional_noquilt_intel' [09:11, 06:45](1203 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:15, 06:55](877 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:07, 06:50](877 MB) +PASS -- TEST 'regional_wofs_intel' [10:55, 08:31](1571 MB) + +PASS -- COMPILE 'rrfs_intel' [16:16, 15:04] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:34, 09:22](986 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:55, 06:30](1167 MB) +PASS -- TEST 'rap_decomp_intel' [10:50, 07:42](991 MB) +PASS -- TEST 'rap_2threads_intel' [13:40, 10:27](1065 MB) +PASS -- TEST 'rap_restart_intel' [09:31, 06:01](871 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:36, 09:21](986 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:46, 09:13](988 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:55, 05:31](874 MB) +PASS -- TEST 'hrrr_control_intel' [09:36, 06:17](987 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:36, 06:22](981 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:47, 04:02](1058 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:09, 02:30](819 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:32, 09:13](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:09, 11:20](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:12, 11:01](1932 MB) + +PASS -- COMPILE 'csawmg_intel' [16:14, 14:13] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:11, 07:11](941 MB) +PASS -- TEST 'control_ras_intel' [05:50, 03:59](642 MB) + +PASS -- COMPILE 'wam_intel' [16:14, 14:44] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [17:38, 14:00](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 15:11] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:44, 05:38](1851 MB) +PASS -- TEST 'regional_control_faster_intel' [09:02, 06:42](877 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:14, 15:29] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:23, 03:18](1583 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:18, 03:11](1585 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:05, 05:20](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:03, 05:28](783 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:57, 06:56](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [07:57, 05:24](789 MB) +PASS -- TEST 'control_diag_debug_intel' [08:13, 05:11](1633 MB) +PASS -- TEST 'control_debug_p8_intel' [08:19, 05:27](1872 MB) +PASS -- TEST 'regional_debug_intel' [21:12, 18:42](891 MB) +PASS -- TEST 'rap_control_debug_intel' [09:55, 07:14](1161 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:01, 07:29](1159 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:00, 07:35](1161 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:57, 05:45](1159 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:03, 07:36](1169 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:04, 07:32](1248 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:10, 05:47](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:06, 07:22](1165 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:02, 07:38](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:59, 07:44](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:07, 07:32](1163 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:19, 07:38](1158 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:09, 10:12](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:03, 07:34](1157 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:04, 07:40](1163 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:10, 07:40](1169 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:28, 11:16](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:13, 11:13] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:37, 15:51](1662 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:14, 13:49] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:32, 04:23](1042 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:44, 06:39](866 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:22, 04:02](865 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:46, 09:36](915 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:25, 04:17](913 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:39, 06:08](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:24, 04:48](782 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:05, 02:20](755 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:13, 14:14] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:37, 04:11](1078 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:25, 03:37](1067 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:36, 03:53](951 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:13, 14:01] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:45, 06:50](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:15, 10:43] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:00, 07:27](1041 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:09, 07:23](1040 MB) +PASS -- TEST 'conus13km_debug_intel' [18:29, 15:41](1128 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:53, 14:36](800 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:43, 13:54](1116 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:28, 16:06](1196 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:14, 11:10] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:59, 05:34](1069 MB) + +PASS -- COMPILE 'hafsw_intel' [20:15, 19:05] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:35, 07:34](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:06, 04:58](1076 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:08, 10:10](745 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:43, 12:05](773 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:09, 15:12](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:41, 07:50](467 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:01, 09:07](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:53, 05:17](397 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:55, 09:59](488 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:34, 06:13](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:40, 04:06](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:28, 05:11](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:11, 02:09](426 MB) +PASS -- TEST 'gnv1_nested_intel' [11:29, 07:37](1700 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:14, 13:26] ( 1470 warnings 1424 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:43, 13:27](612 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:16, 17:31] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:29, 10:12](634 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:48, 10:11](809 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:17, 17:57] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:41, 08:28](805 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:14, 17:46] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:37, 08:24](741 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:36, 08:51](723 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:54, 22:16](890 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:15, 13:50] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:00, 02:38](754 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:03, 03:50](752 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:51, 04:39](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:19, 04:41](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:08, 02:33](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:47, 04:45](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:52, 04:50](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:14, 04:39](640 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:47, 06:52](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:50, 08:40](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:52, 04:48](752 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:02, 06:48](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:48, 06:48](2033 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:13, 09:43] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:05, 05:28](750 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [17:14, 15:24] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:16, 04:50](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [10:13, 08:48] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:19, 04:13](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:13, 03:50](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:38, 03:24](460 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [11:12, 09:17] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [05:45, 02:39](450 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [06:31, 02:27](251 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:13, 16:55] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:02, 06:24](1911 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [18:15, 16:30] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:38, 07:45](1899 MB) + +PASS -- COMPILE 'atml_intel' [18:15, 17:07] ( 14 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [12:56, 08:41](1875 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:49, 05:56](1009 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:15, 13:05] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:26, 07:59](1906 MB) + +PASS -- COMPILE 'atmw_intel' [17:13, 15:33] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:52, 04:41](1877 MB) + +PASS -- COMPILE 'atmaero_intel' [17:14, 15:37] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:04, 08:40](3098 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:53, 09:28](2987 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:43, 09:20](2996 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:15, 11:06] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:09, 18:51](4443 MB) + +PASS -- COMPILE 'atm_fbh_intel' [16:15, 14:14] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:22, 11:41](825 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [25:17, 23:21] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [21:07, 17:33](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [16:14, 14:54] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [30:56, 27:12](1929 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [24:15, 22:48] +PASS -- TEST 'cpld_control_sfs_intelllvm' [17:16, 14:55](1897 MB) + +PASS -- COMPILE 's2swa_intelllvm' [23:14, 21:32] +PASS -- TEST 'cpld_control_p8_intelllvm' [16:15, 12:18](3218 MB) SYNOPSIS: -Starting Date/Time: 20250120 16:23:25 -Ending Date/Time: 20250120 18:18:48 -Total Time: 01h:56m:36s -Compiles Completed: 47/47 -Tests Completed: 193/193 +Starting Date/Time: 20250124 13:30:22 +Ending Date/Time: 20250124 15:55:56 +Total Time: 02h:27m:16s +Compiles Completed: 48/48 +Tests Completed: 194/194 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 1b14596493..6d9e29b029 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,7 +1,7 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -8b8eac654f051017e26b76099b5eb7471f0a110d +d010f320cfc5493ac49f186c3e0ffb15ba26c0c7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) + 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,291 +38,364 @@ 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-20250107 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_163918 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20250122 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4138242 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [34:20, 33:06] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:37, 04:15](2029 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:11, 11:45] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:36, 10:23](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:36, 11:08](1946 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:33, 05:06](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:29, 12:09](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [03:22, 01:21] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [12:28, 10:13](1919 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:49] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [17:44, 16:12](1942 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:14] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:40, 07:09](2071 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:45, 05:18](2062 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:32, 03:44](1611 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:34, 05:20](2083 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:35, 03:03](1453 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:32, 06:06](2231 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:32, 05:10](2069 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:39, 04:14](2018 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:43, 05:17](2070 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [11:29, 06:13](2434 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [06:04, 03:56](2671 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [13:06, 06:50](3593 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:42, 05:04](3435 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:39, 05:16](1924 MB) - -PASS -- COMPILE 's2sw_intel' [09:11, 08:06] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [04:31, 03:03](1940 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:33, 04:33](1854 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:49] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:43, 08:37](2093 MB) - -PASS -- COMPILE 's2sw_debug_intel' [30:14, 28:52] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:33, 03:56](1954 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:57] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:33, 03:14](1988 MB) +PASS -- COMPILE 's2swa_32bit_intel' [35:16, 33:49] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:41, 04:30](2034 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:11, 11:40] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:28, 10:34](1927 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:29, 11:50](1953 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:27, 05:09](1085 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:26, 12:16](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:11, 11:50] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:22, 10:15](1917 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [32:12, 30:47] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [18:28, 16:12](1949 MB) + +PASS -- COMPILE 's2swa_intel' [10:11, 08:24] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:34, 05:17](2069 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:35, 05:25](2065 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:29, 03:01](1622 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:32, 05:32](2097 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:30, 03:08](1464 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:31, 06:09](2231 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:31, 05:12](2062 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:31, 04:26](2017 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:35, 05:20](2071 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [09:48, 06:00](2431 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [06:45, 04:20](2672 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [11:40, 07:07](3597 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [07:45, 04:40](3421 MB) + +PASS -- COMPILE 's2swal_intel' [11:14, 09:47] ( 6 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [08:30, 05:28](2069 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:28, 05:24](1927 MB) + +PASS -- COMPILE 's2sw_intel' [20:14, 18:53] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [04:27, 03:03](1939 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:38, 04:34](1855 MB) + +PASS -- COMPILE 's2swa_debug_intel' [26:11, 24:20] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:28, 09:00](2090 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:45] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:29, 06:26](1970 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:11, 07:00] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:25, 03:14](1980 MB) PASS -- COMPILE 's2s_intel' [08:11, 07:08] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:23, 04:11](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:24, 01:17](2883 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:20, 00:45](2295 MB) - -PASS -- COMPILE 's2swa_faster_intel' [10:12, 08:48] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:38, 05:13](2066 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:12, 11:41] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:33, 10:23](1934 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:36, 05:11](1115 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:34, 12:09](1919 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:42] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:34, 17:58](1962 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:12, 06:34] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:21, 02:32](532 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 01:40](1430 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 01:44](1434 MB) -PASS -- TEST 'control_latlon_intel' [03:24, 01:38](1431 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:29, 02:19](1430 MB) -PASS -- TEST 'control_c48_intel' [06:26, 04:36](1569 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 04:18](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:26, 04:35](1575 MB) -PASS -- TEST 'control_c192_intel' [07:31, 04:45](1683 MB) -PASS -- TEST 'control_c384_intel' [12:39, 09:40](1964 MB) -PASS -- TEST 'control_c384gdas_intel' [14:01, 09:59](1176 MB) -PASS -- TEST 'control_stochy_intel' [03:20, 01:11](489 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:17, 00:45](290 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:06](488 MB) -PASS -- TEST 'control_iovr4_intel' [03:20, 01:42](484 MB) -PASS -- TEST 'control_iovr5_intel' [03:21, 01:42](484 MB) -PASS -- TEST 'control_p8_intel' [03:25, 01:53](1730 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:30, 02:02](1729 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:31, 01:53](1725 MB) -PASS -- TEST 'control_restart_p8_intel' [03:20, 01:07](873 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:27, 01:53](1712 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:07](882 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:26, 01:56](1724 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:24, 02:08](1797 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:24, 03:17](1725 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:27, 02:36](1778 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:28, 02:02](1734 MB) -PASS -- TEST 'merra2_thompson_intel' [04:24, 02:14](1727 MB) -PASS -- TEST 'regional_control_intel' [05:21, 03:22](877 MB) -PASS -- TEST 'regional_restart_intel' [04:20, 01:52](861 MB) -PASS -- TEST 'regional_decomp_intel' [05:20, 03:31](880 MB) -PASS -- TEST 'regional_2threads_intel' [04:18, 02:37](1015 MB) -PASS -- TEST 'regional_noquilt_intel' [05:20, 03:17](1208 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:21, 03:18](876 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:18, 03:22](876 MB) -PASS -- TEST 'regional_wofs_intel' [06:19, 04:22](1574 MB) - -PASS -- COMPILE 'rrfs_intel' [08:12, 06:12] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [06:25, 04:49](865 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:33, 02:49](1159 MB) -PASS -- TEST 'rap_decomp_intel' [06:20, 04:58](865 MB) -PASS -- TEST 'rap_2threads_intel' [07:20, 05:47](942 MB) -PASS -- TEST 'rap_restart_intel' [04:21, 02:30](741 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:24, 04:47](866 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:21, 05:00](869 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:22, 03:31](746 MB) -PASS -- TEST 'hrrr_control_intel' [04:25, 02:33](865 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:19, 02:38](861 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:20, 02:58](935 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:25](694 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:25, 04:44](863 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:17, 06:08](1817 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:16, 05:54](1814 MB) - -PASS -- COMPILE 'csawmg_intel' [07:12, 05:42] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:21, 04:13](821 MB) -PASS -- TEST 'control_ras_intel' [04:17, 02:13](520 MB) - -PASS -- COMPILE 'wam_intel' [07:12, 05:55] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:25, 07:30](1514 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:12, 06:04] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:27, 01:56](1724 MB) -PASS -- TEST 'regional_control_faster_intel' [05:20, 03:12](884 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:12, 05:59] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:23, 01:36](1457 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:24, 01:34](1459 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:15, 02:04](659 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:16, 01:52](659 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:20, 02:50](966 MB) -PASS -- TEST 'control_ras_debug_intel' [03:16, 01:56](668 MB) -PASS -- TEST 'control_diag_debug_intel' [03:21, 01:49](1518 MB) -PASS -- TEST 'control_debug_p8_intel' [03:19, 01:47](1754 MB) -PASS -- TEST 'regional_debug_intel' [13:20, 11:20](891 MB) -PASS -- TEST 'rap_control_debug_intel' [05:16, 03:19](1042 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:18](1031 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:21](1037 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 03:23](1040 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 03:19](1040 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:20, 03:32](1126 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 03:26](1043 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 03:25](1038 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:16, 03:21](1042 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 03:19](1044 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:16, 03:19](1041 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 03:19](1043 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:22](1038 MB) +PASS -- TEST 'cpld_control_c48_intel' [06:21, 04:11](2869 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:21, 01:16](2884 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:19, 00:48](2296 MB) + +PASS -- COMPILE 's2swa_faster_intel' [10:11, 09:04] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:27, 05:21](2068 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:15] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:28, 10:25](1933 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:28, 05:11](1112 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:26, 12:20](1915 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:44] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [19:24, 18:02](1962 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:40] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:17, 02:31](534 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:23, 01:47](1435 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:24, 01:45](1440 MB) +PASS -- TEST 'control_latlon_intel' [03:23, 01:44](1437 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:27, 01:44](1432 MB) +PASS -- TEST 'control_c48_intel' [06:25, 04:35](1571 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 04:16](693 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:25, 04:35](1575 MB) +PASS -- TEST 'control_c192_intel' [06:25, 04:50](1689 MB) +PASS -- TEST 'control_c384_intel' [11:31, 09:53](1962 MB) +PASS -- TEST 'control_c384gdas_intel' [11:47, 10:00](1181 MB) +PASS -- TEST 'control_stochy_intel' [03:14, 01:15](487 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:16, 00:43](291 MB) +PASS -- TEST 'control_lndp_intel' [03:15, 01:07](489 MB) +PASS -- TEST 'control_iovr4_intel' [03:15, 01:48](484 MB) +PASS -- TEST 'control_iovr5_intel' [03:15, 01:43](486 MB) +PASS -- TEST 'control_p8_intel' [03:20, 01:53](1724 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:27, 02:02](1721 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:20, 02:33](1731 MB) +PASS -- TEST 'control_restart_p8_intel' [03:23, 01:12](871 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:23, 01:54](1719 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:24, 01:08](884 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:20, 02:13](1718 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:24, 02:12](1799 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:21, 03:18](1730 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:24, 02:40](1783 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:25, 02:08](1733 MB) +PASS -- TEST 'merra2_thompson_intel' [04:25, 02:19](1727 MB) +PASS -- TEST 'regional_control_intel' [05:18, 03:21](875 MB) +PASS -- TEST 'regional_restart_intel' [03:20, 01:51](843 MB) +PASS -- TEST 'regional_decomp_intel' [07:18, 06:02](876 MB) +PASS -- TEST 'regional_2threads_intel' [04:19, 02:37](1019 MB) +PASS -- TEST 'regional_noquilt_intel' [05:19, 03:16](1201 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:21, 03:20](874 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:17, 03:24](876 MB) +PASS -- TEST 'regional_wofs_intel' [07:18, 04:32](1567 MB) + +PASS -- COMPILE 'rrfs_intel' [07:11, 06:07] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [06:23, 04:59](866 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:32, 02:52](1160 MB) +PASS -- TEST 'rap_decomp_intel' [06:23, 05:02](865 MB) +PASS -- TEST 'rap_2threads_intel' [07:23, 05:47](939 MB) +PASS -- TEST 'rap_restart_intel' [05:20, 02:32](743 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:23, 04:49](866 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:23, 05:02](868 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:20, 03:38](741 MB) +PASS -- TEST 'hrrr_control_intel' [04:22, 02:35](860 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:23, 02:42](860 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:22, 03:03](932 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:23](694 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:23, 04:53](867 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:19, 06:12](1822 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:19, 05:54](1815 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 05:52] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:18, 04:14](818 MB) +PASS -- TEST 'control_ras_intel' [04:15, 02:12](519 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:51] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:24, 07:33](1517 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 06:00] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:20, 01:56](1722 MB) +PASS -- TEST 'regional_control_faster_intel' [05:18, 03:11](876 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:40] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:21, 01:46](1461 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:26, 01:47](1462 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:16, 02:06](662 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:53](660 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:19, 02:50](961 MB) +PASS -- TEST 'control_ras_debug_intel' [03:15, 01:55](667 MB) +PASS -- TEST 'control_diag_debug_intel' [03:21, 01:56](1517 MB) +PASS -- TEST 'control_debug_p8_intel' [03:19, 01:48](1761 MB) +PASS -- TEST 'regional_debug_intel' [13:20, 11:09](890 MB) +PASS -- TEST 'rap_control_debug_intel' [05:17, 03:22](1039 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:22](1034 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:21](1040 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:23](1040 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:21](1043 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:18, 03:37](1127 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:25](1042 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 03:28](1041 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:25](1042 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 03:20](1040 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:16](1040 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 03:22](1039 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:16, 05:22](1039 MB) PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 03:19](1035 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 03:19](1041 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:18, 03:19](1044 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:25, 05:46](1044 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:19](1042 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:16, 03:26](1038 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:20, 05:36](1041 MB) PASS -- COMPILE 'wam_debug_intel' [04:11, 03:05] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:22, 08:31](1548 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:54] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:35, 02:43](1039 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:23, 04:04](747 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:22, 02:13](740 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:19, 04:55](796 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:18, 02:34](788 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:20, 02:19](740 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:21, 03:01](651 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:13](626 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:52] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:29, 01:22](953 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:19, 00:43](1083 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:20, 00:53](828 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:00] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:23, 02:45](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 03:15] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 03:13](919 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:18, 03:12](916 MB) -PASS -- TEST 'conus13km_debug_intel' [10:28, 09:01](1004 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [10:25, 09:01](674 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:25, 08:00](1140 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:25, 08:54](1072 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:10] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:20](944 MB) - -PASS -- COMPILE 'hafsw_intel' [09:11, 07:21] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:46, 03:37](713 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:18, 02:55](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:50, 04:47](787 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [10:45, 08:01](817 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:49, 08:41](836 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:35, 03:32](483 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:50, 04:21](486 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:27, 01:45](399 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:10, 04:41](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:30, 02:33](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:30, 02:23](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:31, 02:58](586 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:20, 01:02](427 MB) -PASS -- TEST 'gnv1_nested_intel' [04:53, 02:56](1706 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:18] ( 1470 warnings 1424 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:30, 08:18](606 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:39] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:35, 05:03](639 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:35, 05:08](817 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:15, 18:32] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:54, 03:51](793 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:11, 07:44] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:43, 04:22](771 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:44, 04:38](748 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:35, 11:13](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:12, 04:49] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:04](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:03](740 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 01:54](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 01:55](641 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:13, 01:56](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:21, 01:42](764 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 01:43](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:37](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:31, 04:14](707 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:30, 04:08](688 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:42](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 02:46](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:14, 02:46](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:26] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 03:45](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 04:54] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 01:43](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:38] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 01:00](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:49](463 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:36](462 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 06:32] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:30, 02:26](1790 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [59:15, 57:25] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:29, 03:13](1793 MB) - -PASS -- COMPILE 'atml_intel' [08:12, 06:33] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:31, 04:00](1897 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:28, 03:58](1898 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:19, 02:10](1035 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:12, 03:35] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:29, 04:12](1921 MB) - -PASS -- COMPILE 'atmw_intel' [09:11, 07:16] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 01:16](1762 MB) - -PASS -- COMPILE 'atmaero_intel' [07:12, 05:59] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:28, 02:44](1947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:28, 03:16](1597 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 03:19](1610 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:00] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [15:46, 13:25](4446 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:42] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:19, 06:00](830 MB) +PASS -- TEST 'control_wam_debug_intel' [10:21, 08:38](1540 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:47] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 02:42](1040 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:20, 04:05](749 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:19, 02:22](746 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:19, 04:55](800 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:18, 02:42](792 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:19, 02:19](747 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:19, 03:01](648 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:17, 01:16](625 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:41] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:26, 01:23](954 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:20, 00:47](1091 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:21, 00:52](824 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:45] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:21, 02:50](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:12] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 03:14](919 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:23](915 MB) +PASS -- TEST 'conus13km_debug_intel' [10:23, 08:58](1005 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [10:22, 08:53](672 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:21, 08:02](1137 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:20, 09:10](1069 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:00] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:33](945 MB) + +PASS -- COMPILE 'hafsw_intel' [09:11, 07:20] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:43, 03:34](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:17, 02:56](1068 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:47, 04:45](789 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [10:44, 07:57](819 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:48, 08:28](838 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:30, 03:31](481 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:45, 04:27](487 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:23, 01:49](398 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:57, 04:41](457 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 02:32](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:26, 02:22](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:29, 02:58](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:19, 00:59](429 MB) +PASS -- TEST 'gnv1_nested_intel' [04:42, 03:01](1704 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:19] ( 1470 warnings 1424 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:27, 08:14](609 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:30] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:31, 05:02](640 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:33, 05:06](801 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:20] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:36, 03:49](795 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:11, 07:17] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:41, 04:22](768 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:41, 04:27](754 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:35, 10:57](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [41:12, 39:35] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 01:43](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:14, 01:03](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 01:38](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 01:39](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 01:40](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 01:43](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 01:44](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 01:49](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:30, 04:10](707 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:29, 04:10](688 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 01:43](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:16, 02:47](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:15, 02:46](2032 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:25] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 03:47](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:04] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 01:42](752 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:40] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 01:01](317 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:48](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:35](463 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [00:14, 58:12] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:33, 02:39](1789 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [53:14, 51:30] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:34, 03:24](1778 MB) + +PASS -- COMPILE 'atml_intel' [08:11, 06:52] ( 14 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:38, 03:35](1896 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:19, 02:02](1043 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:53] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:24, 03:44](1923 MB) + +PASS -- COMPILE 'atmw_intel' [09:11, 07:24] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:22, 01:44](1762 MB) + +PASS -- COMPILE 'atmaero_intel' [07:10, 05:58] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:26, 02:55](1947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:26, 03:28](1600 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:24, 03:21](1607 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:15] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [15:43, 13:40](4445 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:46] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:18, 06:01](826 MB) SYNOPSIS: -Starting Date/Time: 20250120 16:27:12 -Ending Date/Time: 20250120 18:44:49 -Total Time: 02h:17m:58s -Compiles Completed: 42/42 -Tests Completed: 187/187 +Starting Date/Time: 20250124 00:43:55 +Ending Date/Time: 20250124 02:28:05 +Total Time: 01h:44m:33s +Compiles Completed: 43/43 +Tests Completed: 187/188 +Failed Tests: +* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f6/bil-fire8/scratch/Fernando.Andrade-maldonado/regression-testing/wm/2387/ufs-weather-model/tests/logs/log_gaeac6/run_cpld_restart_p8_lnd_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF GAEAC6 REGRESSION TESTING LOG==== +====START OF GAEAC6 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +7f24a0021dcc8bf882d8abb1e8df76d52db41a0e + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20250122 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_839014 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: bil-fire8 +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swal_intel' [10:11, 08:25] ( 6 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [07:33, 05:23](2069 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [06:29, 05:02](1621 MB) + +SYNOPSIS: +Starting Date/Time: 20250124 11:16:06 +Ending Date/Time: 20250124 11:41:41 +Total Time: 00h:25m:45s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 7ca73d83d6..3a8d90f194 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: -56bfd86ccf3c69e9263950b543821416e61d0c43 +d010f320cfc5493ac49f186c3e0ffb15ba26c0c7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 55576eba972ad53cc6546f00d409fa27361f78bd CMEPS-interface/CMEPS (cmeps_v0.4.1-2312-g55576eb) + cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) + 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) + 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -26,390 +26,458 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_399661 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250122 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_822273 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:11, 12:41] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:32, 07:38](3303 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:27] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:13, 19:39](1993 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:22, 20:44](2191 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:17, 08:14](1270 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:10, 23:54](1890 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:48, 19:17](1950 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:07] ( 1523 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:07, 25:29](1931 MB) - -PASS -- COMPILE 's2swa_intel' [15:12, 13:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:37, 09:38](3330 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:35, 09:21](3347 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:28, 04:43](3267 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:30, 09:11](3362 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:35, 04:43](3275 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:20, 09:01](3563 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:23, 08:49](3348 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:19, 07:26](3227 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:33, 08:47](3344 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:24, 10:34](3526 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:03, 06:49](3601 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:44, 10:21](4317 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:57, 06:37](4396 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:20, 07:46](3313 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 12:38] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:20, 06:18](1983 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:26, 06:27](2062 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:03] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:10, 14:05](3385 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 05:31] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:12, 06:44](2012 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:18] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:28, 04:28](2039 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 12:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:45, 07:59](3034 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:44, 02:25](3047 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:44, 01:30](2465 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:43] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:21, 08:25](3358 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:48] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:14, 17:39](2024 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:13, 08:23](1284 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:04, 20:35](1928 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:38] ( 1523 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:24, 26:36](1977 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:23, 03:24](706 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:45, 02:40](1589 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:48, 02:39](1599 MB) -PASS -- TEST 'control_latlon_intel' [04:39, 02:34](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:45, 02:39](1589 MB) -PASS -- TEST 'control_c48_intel' [09:44, 07:15](1717 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:28, 06:36](852 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:40, 07:10](1725 MB) -PASS -- TEST 'control_c192_intel' [09:59, 07:30](1747 MB) -PASS -- TEST 'control_c384_intel' [12:11, 08:10](1989 MB) -PASS -- TEST 'control_c384gdas_intel' [13:19, 08:12](1379 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:41](660 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:26, 01:00](501 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:42](660 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:36](655 MB) -PASS -- TEST 'control_iovr5_intel' [04:23, 02:31](649 MB) -PASS -- TEST 'control_p8_intel' [04:57, 02:58](1896 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 03:08](1888 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 02:53](1898 MB) -PASS -- TEST 'control_restart_p8_intel' [04:50, 01:42](1133 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:53, 02:54](1883 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:55, 01:48](1126 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:47, 03:02](1871 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:45, 03:14](1953 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:41, 05:06](1898 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 04:11](1942 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:59, 03:35](1882 MB) -PASS -- TEST 'merra2_thompson_intel' [05:53, 03:31](1890 MB) -PASS -- TEST 'regional_control_intel' [07:35, 05:25](1118 MB) -PASS -- TEST 'regional_restart_intel' [04:36, 02:58](1098 MB) -PASS -- TEST 'regional_decomp_intel' [07:33, 05:42](1115 MB) -PASS -- TEST 'regional_2threads_intel' [06:39, 04:05](1064 MB) -PASS -- TEST 'regional_noquilt_intel' [07:41, 05:22](1422 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:23](1121 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:22](1119 MB) -PASS -- TEST 'regional_wofs_intel' [09:38, 07:08](1900 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:29] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:41, 07:54](1117 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 04:13](1269 MB) -PASS -- TEST 'rap_decomp_intel' [10:32, 08:13](1035 MB) -PASS -- TEST 'rap_2threads_intel' [10:33, 08:51](1088 MB) -PASS -- TEST 'rap_restart_intel' [06:41, 04:12](1082 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:40, 07:51](1110 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:34, 08:13](1030 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:42, 05:52](1129 MB) -PASS -- TEST 'hrrr_control_intel' [05:43, 04:06](1033 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:34, 04:10](1032 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:33, 04:21](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:12](993 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:49, 07:44](1092 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:34, 09:49](1976 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:31, 09:29](2048 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 10:09] -PASS -- TEST 'control_csawmg_intel' [08:40, 06:16](1026 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:17](745 MB) - -PASS -- COMPILE 'wam_intel' [11:10, 10:01] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:51, 11:16](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 10:22] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:54, 02:47](1882 MB) -PASS -- TEST 'regional_control_faster_intel' [06:38, 04:57](1122 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:55] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:35](1612 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:29](1622 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:09](831 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:50](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:42, 04:21](1144 MB) -PASS -- TEST 'control_ras_debug_intel' [04:25, 02:53](839 MB) -PASS -- TEST 'control_diag_debug_intel' [05:54, 02:48](1686 MB) -PASS -- TEST 'control_debug_p8_intel' [05:48, 02:56](1909 MB) -PASS -- TEST 'regional_debug_intel' [20:44, 17:50](1099 MB) -PASS -- TEST 'rap_control_debug_intel' [07:27, 05:05](1212 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:57](1207 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 05:00](1213 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 05:00](1210 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:24, 05:10](1201 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:39, 05:24](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:17](1216 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 05:13](1206 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:27, 05:07](1213 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 05:24](1209 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:08](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 05:08](1213 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:16](1212 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 05:07](1216 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 05:25](1209 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:02](1213 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 09:00](1222 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:02] -PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:23](717 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:56] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:54, 13:46](1657 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 09:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:06, 03:54](1149 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:39, 06:34](1057 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:38, 03:25](987 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:35, 07:28](999 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:51](968 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:41](924 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:45, 04:59](1032 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 01:54](923 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:52, 02:04](1188 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:00](1163 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:49, 01:13](1093 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 09:59] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:18](980 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:38] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 05:04](1089 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 05:02](1085 MB) -PASS -- TEST 'conus13km_debug_intel' [16:58, 14:42](1246 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 15:02](928 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:46, 12:34](1205 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 15:00](1269 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:29] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 05:07](1140 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 11:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:16, 05:13](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:32, 06:06](1109 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:32, 07:14](813 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:24, 14:53](849 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:32, 19:08](832 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:07, 05:37](493 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:24, 06:58](512 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:49, 02:45](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:18, 07:29](469 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:52](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:56, 03:47](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:15](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:13](401 MB) -PASS -- TEST 'gnv1_nested_intel' [07:43, 04:16](1704 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:00] ( 1465 warnings 1444 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 13:07](579 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:16] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:05, 10:53](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:10, 10:23](694 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:29, 08:14](719 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:01] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:25, 06:40](822 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:22, 06:41](800 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:02, 16:36](1207 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:56] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:09](1133 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 02:07](1083 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:50](1035 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:48](1031 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:45](1032 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:49](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:51](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:42](1029 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:21, 06:23](1073 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 06:28](1051 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:53](1162 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:30](2448 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:09](2512 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:19] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:31](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:39] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:52](1160 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:03] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:48](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:53](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:36](324 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:37] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:32, 00:35](562 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:19](460 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:02] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:06, 03:45](1993 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:53, 04:48](1985 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 10:53] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:01, 04:27](1865 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:58, 04:35](1849 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:26](1093 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:37] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:53, 05:57](1886 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:37] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:53, 02:04](1917 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 10:44] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:57, 04:37](3198 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 05:05](3084 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:44, 05:18](3098 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:38] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [19:32, 16:58](1073 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:55] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:39, 08:46](1055 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:47] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [08:43, 05:40](979 MB) - -PASS -- COMPILE 'atm_gnu' [06:10, 04:17] -PASS -- TEST 'control_c48_gnu' [11:40, 09:33](1512 MB) -PASS -- TEST 'control_stochy_gnu' [05:22, 03:27](491 MB) -PASS -- TEST 'control_ras_gnu' [07:21, 04:59](496 MB) -PASS -- TEST 'control_p8_gnu' [06:54, 04:29](1449 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:51, 04:23](1469 MB) -PASS -- TEST 'control_flake_gnu' [12:27, 10:41](536 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 04:13] -PASS -- TEST 'rap_control_gnu' [13:37, 11:29](808 MB) -PASS -- TEST 'rap_decomp_gnu' [13:32, 11:41](811 MB) -PASS -- TEST 'rap_2threads_gnu' [20:38, 17:16](913 MB) -PASS -- TEST 'rap_restart_gnu' [08:39, 05:55](576 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [14:38, 11:32](809 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:34, 11:40](809 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:43, 08:31](584 MB) -PASS -- TEST 'hrrr_control_gnu' [08:33, 05:53](804 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:38, 05:53](795 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [10:34, 08:39](904 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [08:32, 06:02](832 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:28, 03:05](561 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:29, 03:02](651 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:49, 11:08](806 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 03:52] -PASS -- TEST 'control_csawmg_gnu' [10:37, 08:33](736 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:47] -PASS -- TEST 'control_diag_debug_gnu' [03:44, 01:40](1276 MB) -PASS -- TEST 'regional_debug_gnu' [13:38, 11:19](730 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:42](821 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:42](822 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:44](820 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:40](820 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:40, 03:03](908 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:28, 04:28](809 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:26, 02:52](826 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:40](818 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:38](454 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:49](453 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:45](1441 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:41](819 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:46](830 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:35, 04:31](816 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:26] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:07] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:36, 09:50](697 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:36, 05:12](698 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:35, 15:34](742 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:29, 07:58](733 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:29, 05:25](686 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:37, 07:18](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:27, 02:42](535 MB) -PASS -- TEST 'conus13km_control_gnu' [05:55, 03:15](866 MB) -PASS -- TEST 'conus13km_2threads_gnu' [04:46, 01:35](873 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:45, 01:50](558 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:58] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:40, 05:57](718 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:45] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:23, 02:38](710 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:23, 02:33](706 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:47, 06:55](881 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:46, 07:09](571 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [07:42, 05:47](890 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:41, 06:55](949 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:47] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:39](741 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:35] - -PASS -- COMPILE 's2s_gnu' [17:11, 16:05] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:07, 11:06](1511 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:10, 03:11] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 15:56] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:01, 25:20](1454 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:59] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:33] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:17, 03:08](692 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:13, 13:22] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [55:15, 07:39](3261 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 16:18] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:06, 19:43](1968 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:15, 20:57](2145 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:08, 08:19](1246 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:00, 23:38](1861 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 16:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:53, 19:31](1944 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:13, 06:21] ( 1523 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [35:04, 25:15](1898 MB) + +PASS -- COMPILE 's2swa_intel' [20:13, 13:21] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:12, 09:42](3319 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [57:25, 09:06](3322 MB) +PASS -- TEST 'cpld_restart_p8_intel' [51:19, 04:55](3226 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [57:20, 09:11](3335 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:29, 04:53](3246 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [58:18, 09:10](3519 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:07, 08:51](3311 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [55:15, 07:53](3180 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [58:28, 09:40](3326 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [58:09, 10:39](3490 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [35:00, 06:29](3596 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [03:12, 11:07](4288 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [35:33, 06:30](4349 MB) + +PASS -- COMPILE 's2swal_intel' [21:13, 13:29] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [57:20, 09:33](3259 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [55:06, 07:40](3297 MB) + +PASS -- COMPILE 's2sw_intel' [19:13, 12:25] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:55, 06:22](1962 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:00, 06:25](2044 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:13, 06:24] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [24:10, 13:48](3333 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:13, 05:55] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [17:02, 06:37](1962 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:13, 11:36] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:59, 04:27](2031 MB) + +PASS -- COMPILE 's2s_intel' [14:10, 12:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [00:49, 08:02](3021 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [55:52, 02:29](3010 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:46, 01:28](2455 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:11, 18:00] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [56:20, 08:41](3319 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 15:49] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [07:06, 17:54](1985 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:17, 08:42](1243 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:02, 21:07](1897 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:10, 05:48] ( 1523 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:06, 26:47](1932 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 10:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [50:32, 03:29](680 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [49:50, 02:48](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [50:56, 02:57](1582 MB) +PASS -- TEST 'control_latlon_intel' [50:47, 02:44](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [50:55, 02:41](1580 MB) +PASS -- TEST 'control_c48_intel' [54:47, 07:13](1695 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [53:31, 06:38](829 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [54:46, 07:14](1698 MB) +PASS -- TEST 'control_c192_intel' [54:57, 07:42](1725 MB) +PASS -- TEST 'control_c384_intel' [52:47, 08:33](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [42:26, 08:22](1348 MB) +PASS -- TEST 'control_stochy_intel' [07:26, 01:48](634 MB) +PASS -- TEST 'control_stochy_restart_intel' [23:31, 01:05](476 MB) +PASS -- TEST 'control_lndp_intel' [07:27, 01:41](638 MB) +PASS -- TEST 'control_iovr4_intel' [07:26, 02:35](634 MB) +PASS -- TEST 'control_iovr5_intel' [06:27, 02:42](612 MB) +PASS -- TEST 'control_p8_intel' [06:01, 03:00](1878 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 03:09](1866 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [25:59, 02:59](1869 MB) +PASS -- TEST 'control_restart_p8_intel' [22:47, 01:45](1114 MB) +PASS -- TEST 'control_noqr_p8_intel' [25:55, 03:01](1865 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:50, 01:42](1133 MB) +PASS -- TEST 'control_decomp_p8_intel' [24:48, 03:06](1856 MB) +PASS -- TEST 'control_2threads_p8_intel' [24:50, 03:17](1942 MB) +PASS -- TEST 'control_p8_lndp_intel' [26:46, 05:11](1874 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [25:53, 04:16](1926 MB) +PASS -- TEST 'control_p8_mynn_intel' [24:59, 03:15](1875 MB) +PASS -- TEST 'merra2_thompson_intel' [24:54, 03:31](1866 MB) +PASS -- TEST 'regional_control_intel' [23:40, 05:27](1095 MB) +PASS -- TEST 'regional_restart_intel' [04:44, 02:55](1075 MB) +PASS -- TEST 'regional_decomp_intel' [22:39, 05:44](1104 MB) +PASS -- TEST 'regional_2threads_intel' [24:35, 04:06](1044 MB) +PASS -- TEST 'regional_noquilt_intel' [24:40, 05:32](1403 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [25:40, 05:24](1103 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [24:35, 05:37](1105 MB) +PASS -- TEST 'regional_wofs_intel' [26:35, 07:14](1883 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 10:28] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [27:43, 08:00](1085 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [23:02, 04:22](1251 MB) +PASS -- TEST 'rap_decomp_intel' [26:47, 08:23](1012 MB) +PASS -- TEST 'rap_2threads_intel' [26:37, 08:56](1078 MB) +PASS -- TEST 'rap_restart_intel' [39:48, 04:11](1076 MB) +PASS -- TEST 'rap_sfcdiff_intel' [25:43, 08:13](1090 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:39, 08:14](1020 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [41:50, 05:57](1113 MB) +PASS -- TEST 'hrrr_control_intel' [06:38, 04:11](1018 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:30, 04:12](1009 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:34, 04:24](1070 MB) +PASS -- TEST 'hrrr_control_restart_intel' [39:29, 02:14](978 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:47, 07:47](1071 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:45](1971 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 09:17](2042 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 10:19] +PASS -- TEST 'control_csawmg_intel' [08:34, 06:14](997 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:20](724 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 09:59] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:44, 11:18](1631 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:33] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:46, 02:50](1863 MB) +PASS -- TEST 'regional_control_faster_intel' [06:33, 04:57](1104 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [54:13, 07:55] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:28](1581 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:25](1588 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:32](792 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:50](792 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:29](1099 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:56](786 MB) +PASS -- TEST 'control_diag_debug_intel' [04:47, 02:52](1638 MB) +PASS -- TEST 'control_debug_p8_intel' [40:41, 02:49](1882 MB) +PASS -- TEST 'regional_debug_intel' [54:42, 17:47](1056 MB) +PASS -- TEST 'rap_control_debug_intel' [41:26, 05:08](1174 MB) +PASS -- TEST 'hrrr_control_debug_intel' [41:30, 04:58](1165 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [41:27, 05:08](1167 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [40:25, 05:10](1171 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [39:29, 05:09](1173 MB) +PASS -- TEST 'rap_diag_debug_intel' [40:39, 05:22](1257 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [39:25, 05:18](1167 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [40:24, 05:18](1168 MB) +PASS -- TEST 'rap_lndp_debug_intel' [40:26, 05:16](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [39:28, 05:06](1176 MB) +PASS -- TEST 'rap_noah_debug_intel' [39:27, 05:10](1178 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:24, 05:14](1173 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [42:26, 08:24](1176 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [39:32, 05:15](1173 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [40:29, 05:08](1173 MB) +PASS -- TEST 'rap_flake_debug_intel' [40:27, 05:11](1173 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [44:41, 08:39](1171 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [57:18, 04:22] +PASS -- TEST 'control_csawmg_debug_gnu' [39:39, 02:25](703 MB) + +PASS -- COMPILE 'wam_debug_intel' [57:17, 04:44] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [51:46, 14:13](1648 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [58:16, 09:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [37:03, 04:02](1122 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [43:39, 06:40](1039 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [40:34, 03:33](969 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [40:32, 07:34](988 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [32:32, 03:56](926 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [31:36, 03:44](917 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:38, 05:25](1011 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:00](901 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [57:16, 10:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:51, 02:09](1167 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:41, 01:00](1146 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:39, 01:15](1077 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [57:16, 10:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:37, 04:27](956 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [52:16, 04:42] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 05:13](1051 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:06](1049 MB) +PASS -- TEST 'conus13km_debug_intel' [18:54, 14:29](1175 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:50, 14:15](883 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:47, 12:37](1150 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:47, 14:25](1246 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:16, 04:38] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:26, 05:14](1098 MB) + +PASS -- COMPILE 'hafsw_intel' [59:17, 11:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:14, 05:02](697 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:33, 05:42](1092 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:28, 07:01](785 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [21:17, 14:49](827 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:34, 18:37](844 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:54, 05:34](475 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:20, 06:50](494 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:41, 02:46](364 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:00, 07:20](463 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:43, 03:44](490 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:51, 03:32](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:55, 04:22](550 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:16](374 MB) +PASS -- TEST 'gnv1_nested_intel' [12:33, 04:03](1715 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [51:16, 05:08] ( 1465 warnings 1444 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:51, 13:11](546 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:11, 11:34] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:59, 10:32](594 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [26:01, 10:34](711 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [33:12, 11:51] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:26, 08:26](661 MB) + +PASS -- COMPILE 'hafs_all_intel' [32:12, 11:21] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [22:14, 06:53](796 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:13, 06:49](774 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:57, 16:28](1202 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [28:12, 06:49] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [16:22, 03:01](1166 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:19, 01:46](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [15:18, 02:51](1034 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [15:19, 02:57](1010 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [15:19, 02:54](1018 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [15:18, 02:56](1142 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [15:18, 02:58](1135 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [14:17, 02:49](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [17:17, 06:33](1065 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [16:12, 06:25](1036 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [12:17, 02:59](1164 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [11:19, 04:00](2509 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [13:20, 04:08](2516 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [23:12, 03:32] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:19, 06:33](1078 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [25:11, 06:40] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:18, 02:59](1155 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [19:11, 01:17] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:35, 00:56](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:23, 01:00](319 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:25, 00:32](315 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [19:11, 01:37] +FAILED: RUN DID NOT COMPLETE -- TEST 'datm_cdeps_lm4_gswp3_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [, ]( MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [28:12, 11:00] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:10, 03:54](1971 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [26:12, 10:41] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:54, 04:51](1956 MB) + +PASS -- COMPILE 'atml_intel' [27:12, 11:33] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [07:55, 03:56](1836 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 02:12](1078 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 05:59] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:53, 05:08](1838 MB) + +PASS -- COMPILE 'atmw_intel' [13:12, 10:57] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:48, 01:57](1903 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:52, 04:39](3145 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:54, 04:57](3067 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:43, 05:43](3067 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:35] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [12:10, 10:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:29, 11:48](1088 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [41:12, 06:38] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [13:37, 08:26](1040 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [41:15, 06:55] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [10:40, 04:58](973 MB) + +PASS -- COMPILE 'atm_gnu' [39:12, 04:40] +PASS -- TEST 'control_c48_gnu' [13:38, 09:35](1502 MB) +PASS -- TEST 'control_stochy_gnu' [08:22, 03:30](482 MB) +PASS -- TEST 'control_ras_gnu' [09:22, 05:00](491 MB) +PASS -- TEST 'control_p8_gnu' [09:52, 04:35](1447 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:51, 04:32](1445 MB) +PASS -- TEST 'control_flake_gnu' [14:23, 10:41](528 MB) + +PASS -- COMPILE 'rrfs_gnu' [39:14, 04:18] +PASS -- TEST 'rap_control_gnu' [16:36, 11:30](806 MB) +PASS -- TEST 'rap_decomp_gnu' [15:31, 11:39](799 MB) +PASS -- TEST 'rap_2threads_gnu' [20:40, 17:09](903 MB) +PASS -- TEST 'rap_restart_gnu' [07:38, 05:53](561 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [14:45, 11:37](800 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:31, 11:51](833 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:45, 08:32](566 MB) +PASS -- TEST 'hrrr_control_gnu' [08:36, 06:02](803 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [09:30, 05:55](821 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [12:35, 08:38](890 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [09:33, 05:56](799 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [06:27, 03:08](546 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:26, 03:01](639 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [14:42, 11:12](789 MB) + +PASS -- COMPILE 'csawmg_gnu' [38:11, 03:59] +PASS -- TEST 'control_csawmg_gnu' [10:34, 08:30](733 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [42:12, 06:41] +PASS -- TEST 'control_diag_debug_gnu' [03:46, 01:41](1255 MB) +PASS -- TEST 'regional_debug_gnu' [12:32, 10:34](718 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:21, 02:48](812 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:38](798 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [05:21, 02:36](804 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [05:21, 02:39](803 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:37, 02:53](886 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:23, 04:11](799 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:40](802 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:41](799 MB) +PASS -- TEST 'control_ras_debug_gnu' [07:21, 01:38](431 MB) +PASS -- TEST 'control_stochy_debug_gnu' [07:21, 01:49](433 MB) +PASS -- TEST 'control_debug_p8_gnu' [07:44, 01:43](1412 MB) +PASS -- TEST 'rap_flake_debug_gnu' [07:24, 02:39](804 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [08:23, 02:42](807 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [08:36, 04:24](805 MB) + +PASS -- COMPILE 'wam_debug_gnu' [37:12, 02:24] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [38:15, 04:07] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:36, 09:49](688 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [09:38, 05:11](690 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [19:34, 15:34](727 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [12:29, 08:06](725 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [11:35, 05:23](690 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:36, 07:20](539 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:28, 02:42](518 MB) +PASS -- TEST 'conus13km_control_gnu' [08:55, 03:10](859 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:48, 01:35](860 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 01:54](535 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [43:12, 09:50] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [11:40, 05:59](712 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [38:14, 06:44] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [07:23, 02:35](690 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [08:23, 02:33](689 MB) +PASS -- TEST 'conus13km_debug_gnu' [11:45, 06:52](858 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [11:40, 07:00](546 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:38, 05:45](860 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:39, 06:52](924 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:11, 06:46] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:23, 02:39](713 MB) + +PASS -- COMPILE 's2swa_gnu' [20:12, 16:49] + +PASS -- COMPILE 's2s_gnu' [19:12, 16:18] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:09, 11:15](1502 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [06:11, 03:11] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 15:52] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [36:11, 24:36](1441 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 03:02] + +PASS -- COMPILE 'datm_cdeps_gnu' [18:12, 15:42] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:19, 03:08](692 MB) SYNOPSIS: -Starting Date/Time: 20250117 22:44:14 -Ending Date/Time: 20250118 00:36:39 -Total Time: 01h:52m:43s -Compiles Completed: 61/61 -Tests Completed: 249/249 +Starting Date/Time: 20250123 01:38:06 +Ending Date/Time: 20250123 06:26:28 +Total Time: 04h:48m:39s +Compiles Completed: 62/62 +Tests Completed: 247/250 +Failed Tests: +* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/pr-2387/tests/logs/log_hera/run_cpld_restart_p8_lnd_intel.log +* TEST datm_cdeps_lm4_gswp3_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/pr-2387/tests/logs/log_hera/run_datm_cdeps_lm4_gswp3_intel.log +* TEST datm_cdeps_lm4_gswp3_rst_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +0fc9036195cc178e1d4938163575ebb6cade49d2 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) + 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250122 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1696385 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swal_intel' [16:12, 14:16] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [14:03, 10:22](3232 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:58, 05:33](3154 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:37] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:59, 00:38](562 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:23](451 MB) + +SYNOPSIS: +Starting Date/Time: 20250123 21:00:55 +Ending Date/Time: 20250123 21:42:23 +Total Time: 00h:45m:14s +Compiles Completed: 2/2 +Tests Completed: 4/4 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 589154b88c..6cdf002ae1 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,21 +1,20 @@ ====START OF hercules REGRESSION TESTING LOG==== UFSWM hash used in testing: - -8b8eac654f051017e26b76099b5eb7471f0a110d +d010f320cfc5493ac49f186c3e0ffb15ba26c0c7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 55576eba972ad53cc6546f00d409fa27361f78bd CMEPS-interface/CMEPS (cmeps_v0.4.1-2312-g55576eb) + cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) + 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -24,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,414 +37,441 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_2292685 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250122 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_1591501 UFS_TEST.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE s2swa_32bit_intel [11:47, 11:46](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [08:49, 08:04] (2133260 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [16:30, 16:29](1 warnings,11 remarks) -PASS -- TEST cpld_control_gfsv17_intel [18:25, 17:39] (2012876 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [20:27, 19:16] (2316908 MB) -PASS -- TEST cpld_restart_gfsv17_intel [08:34, 07:33] (1340912 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [20:37, 19:43] (1925664 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [18:03, 18:03](1 warnings,11 remarks) -PASS -- TEST cpld_control_sfs_intel [17:17, 16:53] (1979640 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [07:10, 07:10](1523 warnings,1943 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [24:55, 24:03] (1987856 MB) - -PASS -- COMPILE s2swa_intel [13:27, 13:26](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_intel [09:40, 08:54] (2197328 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [09:12, 08:27] (2198848 MB) -PASS -- TEST cpld_restart_p8_intel [05:28, 04:39] (1961800 MB) -PASS -- TEST cpld_control_qr_p8_intel [09:26, 08:40] (2216508 MB) -PASS -- TEST cpld_restart_qr_p8_intel [05:26, 04:46] (1740448 MB) -PASS -- TEST cpld_2threads_p8_intel [11:01, 10:21] (2436572 MB) -PASS -- TEST cpld_decomp_p8_intel [09:25, 08:39] (2186576 MB) -PASS -- TEST cpld_mpi_p8_intel [08:04, 07:28] (2104668 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [09:22, 08:35] (2206008 MB) -PASS -- TEST cpld_control_c192_p8_intel [18:20, 17:01] (2993180 MB) -PASS -- TEST cpld_restart_c192_p8_intel [08:22, 06:34] (2914324 MB) -PASS -- TEST cpld_bmark_p8_intel [15:30, 10:50] (3857376 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [13:20, 07:26] (3684872 MB) -PASS -- TEST cpld_s2sa_p8_intel [07:55, 07:17] (2170020 MB) - -PASS -- COMPILE s2sw_intel [12:23, 12:22](1 warnings,11 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [08:20, 07:43] (2025836 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [06:39, 05:57] (2104492 MB) - -PASS -- COMPILE s2swa_debug_intel [07:09, 07:09](1413 warnings,1173 remarks) -PASS -- TEST cpld_debug_p8_intel [14:52, 14:07] (2233528 MB) - -PASS -- COMPILE s2sw_debug_intel [07:05, 07:05](1413 warnings,1173 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [06:59, 06:25] (2041312 MB) - -PASS -- COMPILE s2s_aoflux_intel [11:36, 11:36],3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [04:46, 04:09] (2066960 MB) - -PASS -- COMPILE s2s_intel [09:54, 09:53](1 warnings,3 remarks) -PASS -- TEST cpld_control_c48_intel [06:20, 05:55] (3036308 MB) -PASS -- TEST cpld_warmstart_c48_intel [02:20, 01:52] (3029448 MB) -PASS -- TEST cpld_restart_c48_intel [01:23, 01:06] (2481068 MB) - -PASS -- COMPILE s2swa_faster_intel [11:59, 11:59](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_faster_intel [09:17, 08:30] (2206656 MB) - -PASS -- COMPILE s2sw_pdlib_intel [16:10, 16:09](1 warnings,11 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [15:52, 15:09] (2069556 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [08:09, 07:19] (1381264 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [24:38, 23:56] (1986572 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [04:26, 04:25](1523 warnings,1943 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [25:13, 24:30] (2045932 MB) - -PASS -- COMPILE atm_dyn32_intel [09:51, 09:51](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:10, 02:59] (703164 MB) -PASS -- TEST control_CubedSphereGrid_intel [02:35, 02:13] (1609636 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [02:38, 02:12] (1615320 MB) -PASS -- TEST control_latlon_intel [02:29, 02:09] (1607140 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [02:35, 02:08] (1596156 MB) -PASS -- TEST control_c48_intel [06:50, 06:28] (1707596 MB) -PASS -- TEST control_c48.v2.sfc_intel [06:05, 05:54] (832844 MB) -PASS -- TEST control_c48_lnd_iau_intel [06:45, 06:28] (1707964 MB) -PASS -- TEST control_c192_intel [06:53, 06:20] (1769912 MB) -PASS -- TEST control_c384_intel [08:26, 07:24] (2023560 MB) -PASS -- TEST control_c384gdas_intel [10:45, 09:17] (1522528 MB) -PASS -- TEST control_stochy_intel [01:41, 01:30] (659640 MB) -PASS -- TEST control_stochy_restart_intel [01:11, 00:53] (537536 MB) -PASS -- TEST control_lndp_intel [01:29, 01:21] (675008 MB) -PASS -- TEST control_iovr4_intel [02:25, 02:13] (656740 MB) -PASS -- TEST control_iovr5_intel [02:24, 02:10] (660244 MB) -PASS -- TEST control_p8_intel [04:10, 03:31] (1895104 MB) -PASS -- TEST control_p8.v2.sfc_intel [03:29, 02:48] (1893876 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:30, 02:47] (1896792 MB) -PASS -- TEST control_restart_p8_intel [02:08, 01:35] (1157192 MB) -PASS -- TEST control_noqr_p8_intel [03:15, 02:39] (1888108 MB) -PASS -- TEST control_restart_noqr_p8_intel [02:08, 01:32] (1216328 MB) -PASS -- TEST control_decomp_p8_intel [03:11, 02:38] (1871780 MB) -PASS -- TEST control_2threads_p8_intel [04:08, 03:30] (1951788 MB) -PASS -- TEST control_p8_lndp_intel [04:49, 04:25] (1900004 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:25, 03:41] (1969804 MB) -PASS -- TEST control_p8_mynn_intel [03:28, 02:48] (1903672 MB) -PASS -- TEST merra2_thompson_intel [03:43, 03:02] (1894472 MB) -PASS -- TEST regional_control_intel [05:01, 04:42] (1231832 MB) -PASS -- TEST regional_restart_intel [02:59, 02:40] (1186672 MB) -PASS -- TEST regional_decomp_intel [05:10, 04:56] (1214348 MB) -PASS -- TEST regional_2threads_intel [04:33, 04:15] (1119380 MB) -PASS -- TEST regional_noquilt_intel [04:54, 04:36] (1552680 MB) -PASS -- TEST regional_netcdf_parallel_intel [04:58, 04:36] (1225664 MB) -PASS -- TEST regional_2dwrtdecomp_intel [05:02, 04:43] (1227644 MB) -PASS -- TEST regional_wofs_intel [06:17, 05:59] (2084000 MB) - -PASS -- COMPILE rrfs_intel [08:56, 08:55](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [07:19, 06:39] (1219664 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:10, 03:31] (1375148 MB) -PASS -- TEST rap_decomp_intel [07:39, 07:01] (1146044 MB) -PASS -- TEST rap_2threads_intel [09:40, 09:00] (1226600 MB) -PASS -- TEST rap_restart_intel [04:25, 03:42] (1154492 MB) -PASS -- TEST rap_sfcdiff_intel [07:25, 06:46] (1212436 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [08:01, 07:21] (1155540 MB) -PASS -- TEST rap_sfcdiff_restart_intel [05:46, 05:12] (1191144 MB) -PASS -- TEST hrrr_control_intel [04:17, 03:37] (1084928 MB) -PASS -- TEST hrrr_control_decomp_intel [04:21, 03:40] (1039388 MB) -PASS -- TEST hrrr_control_2threads_intel [05:24, 04:45] (1151420 MB) -PASS -- TEST hrrr_control_restart_intel [02:30, 02:11] (1036356 MB) -PASS -- TEST rrfs_v1beta_intel [07:29, 06:43] (1197596 MB) -PASS -- TEST rrfs_v1nssl_intel [08:38, 08:24] (2004964 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:45, 08:20] (2158236 MB) - -PASS -- COMPILE csawmg_intel [08:46, 08:45] -PASS -- TEST control_csawmg_intel [06:10, 05:44] (1043464 MB) -PASS -- TEST control_ras_intel [03:11, 03:00] (812692 MB) - -PASS -- COMPILE wam_intel [08:40, 08:40],1 remarks) -PASS -- TEST control_wam_intel [10:16, 09:51] (1666496 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [08:48, 08:48],1 remarks) -PASS -- TEST control_p8_faster_intel [03:11, 02:29] (1894656 MB) -PASS -- TEST regional_control_faster_intel [04:43, 04:24] (1223192 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [06:38, 06:37](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:22, 02:03] (1635036 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:25, 02:03] (1636540 MB) -PASS -- TEST control_stochy_debug_intel [03:31, 03:19] (839028 MB) -PASS -- TEST control_lndp_debug_intel [04:36, 04:24] (830444 MB) -PASS -- TEST control_csawmg_debug_intel [04:52, 04:34] (1154916 MB) -PASS -- TEST control_ras_debug_intel [02:32, 02:25] (843024 MB) -PASS -- TEST control_diag_debug_intel [04:43, 04:15] (1685400 MB) -PASS -- TEST control_debug_p8_intel [03:30, 03:10] (1922308 MB) -PASS -- TEST regional_debug_intel [15:23, 15:01] (1153820 MB) -PASS -- TEST rap_control_debug_intel [05:24, 05:17] (1216580 MB) -PASS -- TEST hrrr_control_debug_intel [04:24, 04:11] (1217016 MB) -PASS -- TEST hrrr_gf_debug_intel [06:04, 05:52] (1222900 MB) -PASS -- TEST hrrr_c3_debug_intel [04:19, 04:09] (1231152 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [08:08, 07:59] (1232256 MB) -PASS -- TEST rap_diag_debug_intel [04:41, 04:26] (1319112 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [04:33, 04:19] (1214608 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [08:14, 08:05] (1226452 MB) -PASS -- TEST rap_lndp_debug_intel [04:20, 04:11] (1221008 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [04:27, 04:19] (1216804 MB) -PASS -- TEST rap_noah_debug_intel [05:29, 05:21] (1215280 MB) -PASS -- TEST rap_sfcdiff_debug_intel [04:21, 04:13] (1231200 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [06:57, 06:44] (1231328 MB) -PASS -- TEST rrfs_v1beta_debug_intel [04:22, 04:11] (1224216 MB) -PASS -- TEST rap_clm_lake_debug_intel [04:29, 04:15] (1223396 MB) -PASS -- TEST rap_flake_debug_intel [08:14, 08:02] (1217036 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [07:41, 07:04] (1235196 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [03:52, 03:52] -PASS -- TEST control_csawmg_debug_gnu [02:58, 02:39] (1044972 MB) - -PASS -- COMPILE wam_debug_intel [03:45, 03:45](837 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [08:30, 08:30](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:11, 03:34] (1242220 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [06:20, 05:38] (1160316 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [03:46, 02:58] (1028848 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [08:37, 08:03] (1131412 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:54, 04:04] (1075256 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:54, 03:07] (997160 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [05:05, 04:14] (1073940 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [01:55, 01:44] (937140 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [08:06, 08:05](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:06, 01:39] (1298444 MB) -PASS -- TEST conus13km_2threads_intel [01:22, 01:00] (1190596 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:49, 01:26] (1162444 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [08:15, 08:14](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:16, 03:48] (1097180 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:51, 03:50](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:28, 05:19] (1102000 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:11, 04:00] (1097908 MB) -PASS -- TEST conus13km_debug_intel [12:08, 11:43] (1350712 MB) -PASS -- TEST conus13km_debug_qr_intel [23:27, 23:06] (1005708 MB) -PASS -- TEST conus13km_debug_2threads_intel [13:35, 13:12] (1233176 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [11:55, 11:29] (1408104 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:49, 03:49](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:42, 04:27] (1159160 MB) - -PASS -- COMPILE hafsw_intel [09:45, 09:44](1 warnings,10 remarks) -PASS -- TEST hafs_regional_atm_intel [07:39, 06:01] (857408 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:14, 05:56] (1265168 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [09:03, 07:42] (919984 MB) -PASS -- TEST hafs_regional_atm_wav_intel [15:25, 14:26] (972228 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [19:23, 18:10] (985096 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [08:06, 07:24] (592420 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [10:16, 09:13] (608336 MB) -PASS -- TEST hafs_global_1nest_atm_intel [04:11, 03:40] (438200 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:23, 09:42] (542952 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:28, 04:55] (602072 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:20, 04:44] (601608 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:54, 05:11] (662888 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [02:09, 01:51] (461440 MB) - -PASS -- COMPILE hafsw_debug_intel [04:02, 04:02](1465 warnings,1445 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:48, 12:05] (638260 MB) - -PASS -- COMPILE hafsw_faster_intel [10:43, 10:41],9 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [18:50, 18:03] (761904 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [20:02, 19:17] (832740 MB) - -PASS -- COMPILE hafs_mom6w_intel [11:05, 11:05],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:42, 12:12] (816432 MB) - -PASS -- COMPILE hafs_all_intel [10:18, 10:17],9 remarks) -PASS -- TEST hafs_regional_docn_intel [06:33, 05:36] (935720 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [06:35, 05:40] (912924 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [17:24, 16:48] (1344008 MB) - -PASS -- COMPILE datm_cdeps_intel [06:12, 06:11],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [03:10, 03:03] (1138004 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:26, 01:19] (1103020 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [02:15, 02:08] (1025836 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [02:16, 02:10] (1020148 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:21, 02:13] (1023116 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:21, 02:12] (1155520 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:05, 02:59] (1129304 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:11, 02:06] (1021044 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:37, 04:58] (1165736 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [05:31, 04:56] (1166108 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:15, 02:12] (1152100 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:06, 03:01] (2411224 MB) -PASS -- TEST datm_cdeps_gfs_intel [03:09, 03:04] (2452036 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:58, 03:57](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [05:18, 05:12] (1076152 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [06:09, 06:08],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:14, 02:08] (1169680 MB) - -PASS -- COMPILE datm_cdeps_land_intel [01:10, 01:10],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:18, 00:58] (334144 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:07, 00:54] (562940 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:47, 00:33] (570396 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [09:02, 09:01],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [04:41, 04:04] (2019500 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [09:05, 09:04](1 warnings,1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [04:55, 04:20] (2023912 MB) - -PASS -- COMPILE atml_intel [09:30, 09:29](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [06:32, 05:43] (1904216 MB) -PASS -- TEST control_p8_atmlnd_intel [06:56, 06:06] (1897000 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [04:49, 04:22] (1129864 MB) - -PASS -- COMPILE atml_debug_intel [04:56, 04:55](880 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [10:49, 10:01] (1916028 MB) - -PASS -- COMPILE atmw_intel [10:07, 10:07],9 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:29, 01:50] (1925680 MB) - -PASS -- COMPILE atmaero_intel [08:46, 08:45],1 remarks) -PASS -- TEST atmaero_control_p8_intel [05:24, 04:45] (2014120 MB) -PASS -- TEST atmaero_control_p8_rad_intel [06:06, 05:24] (1788612 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [05:59, 05:32] (1795572 MB) - -PASS -- COMPILE atmaq_debug_intel [03:30, 03:30](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [18:54, 17:43] (4567136 MB) - -PASS -- COMPILE atm_fbh_intel [08:08, 08:08](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [10:08, 09:52] (1109392 MB) - -PASS -- COMPILE datm_cdeps_intelllvm [10:01, 10:00] -PASS -- TEST datm_cdeps_control_cfsr_intelllvm [02:24, 02:17] (1166540 MB) - -PASS -- COMPILE datm_cdeps_debug_intelllvm [01:43, 01:43](2 warnings -PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [06:32, 06:26] (1073440 MB) - -PASS -- COMPILE atm_gnu [04:13, 04:13] -PASS -- TEST control_c48_gnu [08:08, 07:44] (1525168 MB) -PASS -- TEST control_stochy_gnu [02:38, 02:27] (721608 MB) -PASS -- TEST control_ras_gnu [04:04, 03:55] (722520 MB) -PASS -- TEST control_p8_gnu [05:21, 04:43] (1702648 MB) -PASS -- TEST control_p8_ugwpv1_gnu [04:13, 03:42] (1721688 MB) -PASS -- TEST control_flake_gnu [05:04, 04:51] (806652 MB) - -PASS -- COMPILE rrfs_gnu [04:19, 04:19] -PASS -- TEST rap_control_gnu [09:03, 08:24] (1074344 MB) -PASS -- TEST rap_decomp_gnu [09:08, 08:27] (1072412 MB) -PASS -- TEST rap_2threads_gnu [11:45, 11:07] (975632 MB) -PASS -- TEST rap_restart_gnu [04:40, 04:10] (878296 MB) -PASS -- TEST rap_sfcdiff_gnu [08:39, 08:03] (1072592 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [08:58, 08:19] (1071788 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [06:51, 06:10] (877492 MB) -PASS -- TEST hrrr_control_gnu [04:56, 04:14] (1060816 MB) -PASS -- TEST hrrr_control_noqr_gnu [04:35, 04:08] (1128696 MB) -PASS -- TEST hrrr_control_decomp_gnu [04:59, 04:18] (1060344 MB) -PASS -- TEST hrrr_control_restart_gnu [02:36, 02:15] (874252 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [02:20, 02:08] (924780 MB) -PASS -- TEST rrfs_v1beta_gnu [08:51, 08:11] (1070408 MB) - -PASS -- COMPILE csawmg_gnu [04:25, 04:24] -PASS -- TEST control_csawmg_gnu [07:38, 07:21] (1048164 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [06:35, 06:34] -PASS -- TEST control_diag_debug_gnu [01:47, 01:29] (1617036 MB) -PASS -- TEST regional_debug_gnu [07:58, 07:39] (1105156 MB) -PASS -- TEST rap_control_debug_gnu [02:12, 02:05] (1088492 MB) -PASS -- TEST hrrr_control_debug_gnu [02:16, 02:09] (1078892 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:13, 02:04] (1084884 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:08, 01:59] (1085872 MB) -PASS -- TEST rap_diag_debug_gnu [02:21, 02:05] (1258884 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:23, 03:14] (1086136 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:09, 02:02] (1087604 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [02:17, 02:06] (1080612 MB) -PASS -- TEST control_ras_debug_gnu [01:28, 01:17] (717792 MB) -PASS -- TEST control_stochy_debug_gnu [02:38, 02:27] (721368 MB) -PASS -- TEST control_debug_p8_gnu [01:37, 01:19] (1715188 MB) -PASS -- TEST rap_flake_debug_gnu [02:16, 02:07] (1088560 MB) -PASS -- TEST rap_clm_lake_debug_gnu [02:13, 02:07] (1086892 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:19, 03:42] (1093772 MB) - -PASS -- COMPILE wam_debug_gnu [02:55, 02:54] -PASS -- TEST control_wam_debug_gnu [06:24, 06:03] (1551288 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:22, 04:22] -PASS -- TEST rap_control_dyn32_phy32_gnu [08:20, 07:43] (952768 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:49, 04:01] (941396 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:41, 07:06] (916688 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [07:37, 06:51] (875460 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:51, 04:06] (940420 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [06:29, 05:44] (856764 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:23, 02:04] (851412 MB) -PASS -- TEST conus13km_control_gnu [03:02, 02:39] (1257592 MB) -PASS -- TEST conus13km_2threads_gnu [07:17, 06:56] (1103776 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [02:02, 01:34] (920524 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [08:57, 08:57] -PASS -- TEST rap_control_dyn64_phy32_gnu [04:50, 04:31] (979284 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [07:16, 07:16] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:05, 01:57] (973328 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:15, 02:04] (963236 MB) -PASS -- TEST conus13km_debug_gnu [05:44, 05:24] (1275776 MB) -PASS -- TEST conus13km_debug_qr_gnu [06:05, 05:38] (952660 MB) -PASS -- TEST conus13km_debug_2threads_gnu [19:05, 18:44] (1125672 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [05:51, 05:30] (1344400 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [07:16, 07:16] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:29, 02:20] (999084 MB) - -PASS -- COMPILE s2swa_gnu [16:49, 16:49] -PASS -- COMPILE s2s_gnu [16:08, 16:08] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [09:07, 08:16] (3066740 MB) - -PASS -- COMPILE s2swa_debug_gnu [03:12, 03:12] -PASS -- COMPILE s2sw_pdlib_gnu [15:32, 15:31] -PASS -- TEST cpld_control_pdlib_p8_gnu [28:33, 27:49] (3014412 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [03:18, 03:18] -PASS -- TEST cpld_debug_pdlib_p8_gnu [14:52, 14:09] (2917572 MB) - -PASS -- COMPILE datm_cdeps_gnu [14:34, 14:33] -PASS -- TEST datm_cdeps_control_cfsr_gnu [02:53, 02:46] (767920 MB) +PASS -- COMPILE s2swa_32bit_intel [11:17, 11:17](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [09:49, 09:00] (2150288 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [15:14, 15:14](1 warnings,11 remarks) +PASS -- TEST cpld_control_gfsv17_intel [19:22, 18:26] (2020564 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [19:27, 18:20] (2326176 MB) +PASS -- TEST cpld_restart_gfsv17_intel [08:08, 06:56] (1355472 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [20:24, 19:29] (1923668 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [17:35, 17:35](1 warnings,11 remarks) +PASS -- TEST cpld_control_sfs_intel [17:50, 17:18] (1979956 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [07:47, 07:47](1523 warnings,1943 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [24:46, 23:50] (1989836 MB) + +PASS -- COMPILE s2swa_intel [13:00, 13:00](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_intel [11:30, 10:32] (2200692 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [10:53, 10:00] (2202364 MB) +PASS -- TEST cpld_restart_p8_intel [06:10, 05:15] (1952240 MB) +PASS -- TEST cpld_control_qr_p8_intel [10:48, 09:58] (2215524 MB) +PASS -- TEST cpld_restart_qr_p8_intel [05:51, 05:09] (1737248 MB) +PASS -- TEST cpld_2threads_p8_intel [12:11, 11:26] (2443624 MB) +PASS -- TEST cpld_decomp_p8_intel [10:12, 09:23] (2198052 MB) +PASS -- TEST cpld_mpi_p8_intel [09:42, 08:53] (2098444 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [10:19, 09:28] (2207960 MB) +PASS -- TEST cpld_control_c192_p8_intel [17:04, 15:41] (2980052 MB) +PASS -- TEST cpld_restart_c192_p8_intel [09:20, 07:28] (2907716 MB) +PASS -- TEST cpld_bmark_p8_intel [18:40, 13:42] (3862980 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [14:06, 07:42] (3682120 MB) + +PASS -- COMPILE s2swal_intel [13:13, 13:13](1 warnings,12 remarks) +PASS -- TEST cpld_control_p8_lnd_intel [10:58, 10:12] (2167332 MB) +PASS -- TEST cpld_s2sa_p8_intel [08:51, 08:05] (2177604 MB) + +PASS -- COMPILE s2sw_intel [12:38, 12:38](1 warnings,11 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [08:32, 07:47] (2017020 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [06:46, 06:01] (2109772 MB) + +PASS -- COMPILE s2swa_debug_intel [07:47, 07:47](1413 warnings,1173 remarks) +PASS -- TEST cpld_debug_p8_intel [15:18, 14:30] (2238844 MB) + +PASS -- COMPILE s2sw_debug_intel [06:37, 06:36](1413 warnings,1173 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [06:58, 06:16] (2034868 MB) + +PASS -- COMPILE s2s_aoflux_intel [10:48, 10:48],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:37, 04:56] (2058204 MB) + +PASS -- COMPILE s2s_intel [10:38, 10:38](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [06:32, 06:02] (3028920 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:37, 02:11] (3022768 MB) +PASS -- TEST cpld_restart_c48_intel [01:17, 01:01] (2476552 MB) + +PASS -- COMPILE s2swa_faster_intel [12:41, 12:41](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_faster_intel [09:44, 08:51] (2199056 MB) + +PASS -- COMPILE s2sw_pdlib_intel [15:33, 15:33](1 warnings,11 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [15:18, 14:29] (2064364 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [08:14, 07:20] (1394688 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [16:36, 15:51] (1999516 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [04:44, 04:44](1523 warnings,1943 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [27:13, 26:17] (2039020 MB) + +PASS -- COMPILE atm_dyn32_intel [09:06, 09:06](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:07, 02:55] (702600 MB) +PASS -- TEST control_CubedSphereGrid_intel [02:35, 02:11] (1605556 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [02:46, 02:18] (1620508 MB) +PASS -- TEST control_latlon_intel [02:33, 02:15] (1618720 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [02:41, 02:17] (1620912 MB) +PASS -- TEST control_c48_intel [06:53, 06:32] (1708728 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:12, 05:59] (832860 MB) +PASS -- TEST control_c48_lnd_iau_intel [06:52, 06:31] (1710584 MB) +PASS -- TEST control_c192_intel [07:10, 06:38] (1765936 MB) +PASS -- TEST control_c384_intel [08:40, 07:31] (2017992 MB) +PASS -- TEST control_c384gdas_intel [09:02, 07:31] (1506512 MB) +PASS -- TEST control_stochy_intel [01:39, 01:27] (664912 MB) +PASS -- TEST control_stochy_restart_intel [01:12, 00:54] (536692 MB) +PASS -- TEST control_lndp_intel [01:30, 01:21] (669504 MB) +PASS -- TEST control_iovr4_intel [02:26, 02:11] (659668 MB) +PASS -- TEST control_iovr5_intel [02:21, 02:08] (668852 MB) +PASS -- TEST control_p8_intel [03:23, 02:39] (1903972 MB) +PASS -- TEST control_p8.v2.sfc_intel [03:26, 02:41] (1892620 MB) +PASS -- TEST control_p8_ugwpv1_intel [03:19, 02:33] (1899500 MB) +PASS -- TEST control_restart_p8_intel [02:21, 01:42] (1163168 MB) +PASS -- TEST control_noqr_p8_intel [03:05, 02:30] (1897040 MB) +PASS -- TEST control_restart_noqr_p8_intel [02:11, 01:32] (1209372 MB) +PASS -- TEST control_decomp_p8_intel [03:10, 02:34] (1886700 MB) +PASS -- TEST control_2threads_p8_intel [04:45, 04:09] (1960972 MB) +PASS -- TEST control_p8_lndp_intel [05:59, 05:28] (1891308 MB) +PASS -- TEST control_p8_rrtmgp_intel [04:30, 03:53] (1978508 MB) +PASS -- TEST control_p8_mynn_intel [04:13, 03:32] (1902648 MB) +PASS -- TEST merra2_thompson_intel [03:52, 03:04] (1911320 MB) +PASS -- TEST regional_control_intel [05:01, 04:45] (1225744 MB) +PASS -- TEST regional_restart_intel [02:54, 02:40] (1182860 MB) +PASS -- TEST regional_decomp_intel [05:17, 04:59] (1215772 MB) +PASS -- TEST regional_2threads_intel [04:43, 04:25] (1113356 MB) +PASS -- TEST regional_noquilt_intel [04:47, 04:32] (1546700 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:01, 04:41] (1208284 MB) +PASS -- TEST regional_2dwrtdecomp_intel [04:58, 04:43] (1221156 MB) +PASS -- TEST regional_wofs_intel [06:16, 05:58] (2059480 MB) + +PASS -- COMPILE rrfs_intel [08:33, 08:33](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:30, 06:54] (1213060 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:20, 03:28] (1359544 MB) +PASS -- TEST rap_decomp_intel [07:49, 07:14] (1147076 MB) +PASS -- TEST rap_2threads_intel [10:00, 09:23] (1225784 MB) +PASS -- TEST rap_restart_intel [04:18, 03:37] (1133948 MB) +PASS -- TEST rap_sfcdiff_intel [07:25, 06:50] (1205616 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [07:41, 07:03] (1159744 MB) +PASS -- TEST rap_sfcdiff_restart_intel [06:00, 05:14] (1206352 MB) +PASS -- TEST hrrr_control_intel [04:15, 03:38] (1089488 MB) +PASS -- TEST hrrr_control_decomp_intel [04:14, 03:33] (1042792 MB) +PASS -- TEST hrrr_control_2threads_intel [05:25, 04:41] (1145128 MB) +PASS -- TEST hrrr_control_restart_intel [02:07, 01:59] (1034592 MB) +PASS -- TEST rrfs_v1beta_intel [07:26, 06:40] (1188884 MB) +PASS -- TEST rrfs_v1nssl_intel [08:48, 08:39] (1993496 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:26, 08:12] (2204520 MB) + +PASS -- COMPILE csawmg_intel [08:13, 08:13] +PASS -- TEST control_csawmg_intel [05:53, 05:39] (1049884 MB) +PASS -- TEST control_ras_intel [03:06, 02:58] (864904 MB) + +PASS -- COMPILE wam_intel [08:30, 08:30],1 remarks) +PASS -- TEST control_wam_intel [10:15, 09:55] (1663780 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [08:47, 08:47],1 remarks) +PASS -- TEST control_p8_faster_intel [03:07, 02:28] (1902520 MB) +PASS -- TEST regional_control_faster_intel [04:33, 04:16] (1222108 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [06:20, 06:20](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:35, 02:16] (1627684 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:25, 02:01] (1629788 MB) +PASS -- TEST control_stochy_debug_intel [02:45, 02:35] (831828 MB) +PASS -- TEST control_lndp_debug_intel [02:44, 02:37] (841320 MB) +PASS -- TEST control_csawmg_debug_intel [05:24, 05:05] (1151036 MB) +PASS -- TEST control_ras_debug_intel [02:28, 02:21] (848140 MB) +PASS -- TEST control_diag_debug_intel [02:41, 02:23] (1697340 MB) +PASS -- TEST control_debug_p8_intel [03:41, 03:18] (1926052 MB) +PASS -- TEST regional_debug_intel [15:35, 15:16] (1163684 MB) +PASS -- TEST rap_control_debug_intel [04:20, 04:13] (1222652 MB) +PASS -- TEST hrrr_control_debug_intel [04:31, 04:24] (1216240 MB) +PASS -- TEST hrrr_gf_debug_intel [04:19, 04:10] (1219352 MB) +PASS -- TEST hrrr_c3_debug_intel [04:22, 04:11] (1219884 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:26, 04:14] (1229292 MB) +PASS -- TEST rap_diag_debug_intel [04:42, 04:30] (1308904 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [04:50, 04:39] (1233540 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [04:21, 04:15] (1231560 MB) +PASS -- TEST rap_lndp_debug_intel [04:24, 04:13] (1219548 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:44, 04:32] (1221216 MB) +PASS -- TEST rap_noah_debug_intel [04:13, 04:05] (1224472 MB) +PASS -- TEST rap_sfcdiff_debug_intel [04:18, 04:11] (1227876 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [06:51, 06:42] (1219412 MB) +PASS -- TEST rrfs_v1beta_debug_intel [04:14, 04:07] (1224828 MB) +PASS -- TEST rap_clm_lake_debug_intel [04:24, 04:12] (1222792 MB) +PASS -- TEST rap_flake_debug_intel [04:50, 04:42] (1229404 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [07:51, 07:15] (1240424 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [03:59, 03:59] +PASS -- TEST control_csawmg_debug_gnu [03:31, 03:13] (1042760 MB) + +PASS -- COMPILE wam_debug_intel [04:21, 04:21](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [09:01, 09:01](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:22, 03:47] (1247124 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [06:17, 05:43] (1186236 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [03:42, 02:58] (1027484 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:38, 08:01] (1133172 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:58, 04:12] (1064976 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:46, 03:06] (994948 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [04:41, 04:14] (1095736 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [01:45, 01:38] (942944 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [07:58, 07:58](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:07, 01:44] (1296380 MB) +PASS -- TEST conus13km_2threads_intel [01:16, 00:58] (1176496 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:23, 01:04] (1145152 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [08:25, 08:24](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:08, 03:50] (1091104 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:54, 03:54](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:19, 04:12] (1104500 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:20, 04:10] (1109036 MB) +PASS -- TEST conus13km_debug_intel [12:09, 11:43] (1337140 MB) +PASS -- TEST conus13km_debug_qr_intel [12:18, 11:49] (999504 MB) +PASS -- TEST conus13km_debug_2threads_intel [13:12, 12:49] (1232380 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [11:54, 11:34] (1397028 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:54, 03:54](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:43, 04:34] (1162004 MB) + +PASS -- COMPILE hafsw_intel [10:24, 10:24](1 warnings,10 remarks) +PASS -- TEST hafs_regional_atm_intel [06:41, 05:46] (843316 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:28, 06:09] (1257512 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [09:05, 07:56] (921816 MB) +PASS -- TEST hafs_regional_atm_wav_intel [15:47, 14:46] (960800 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [19:48, 18:32] (1133092 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [07:58, 07:16] (599412 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [10:04, 09:03] (609736 MB) +PASS -- TEST hafs_global_1nest_atm_intel [04:12, 03:39] (439128 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:37, 09:52] (554756 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:32, 05:01] (600460 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:20, 04:42] (602644 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:51, 05:12] (654588 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [02:00, 01:43] (456820 MB) + +PASS -- COMPILE hafsw_debug_intel [04:20, 04:19](1465 warnings,1445 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [13:10, 12:27] (634868 MB) + +PASS -- COMPILE hafsw_faster_intel [10:28, 10:28],9 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [19:43, 18:49] (733824 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [19:08, 18:13] (830412 MB) + +PASS -- COMPILE hafs_mom6w_intel [11:08, 11:08],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:44, 12:32] (818180 MB) + +PASS -- COMPILE hafs_all_intel [10:49, 10:48],9 remarks) +PASS -- TEST hafs_regional_docn_intel [06:28, 05:34] (895312 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [06:31, 05:37] (910280 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:04, 16:31] (1342156 MB) + +PASS -- COMPILE datm_cdeps_intel [05:20, 05:20],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [02:20, 02:14] (1150892 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:25, 01:19] (1111496 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [02:13, 02:07] (1025832 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [02:15, 02:09] (1012184 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:16, 02:10] (1025620 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:20, 02:14] (1152808 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:16, 02:12] (1143916 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:09, 02:05] (1021732 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:33, 04:58] (1167844 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [05:33, 04:59] (1163196 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:13, 02:10] (1151864 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:09, 03:04] (2459644 MB) +PASS -- TEST datm_cdeps_gfs_intel [03:10, 03:05] (2456028 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:10, 03:09](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [05:17, 05:13] (1082076 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [05:30, 05:30],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:15, 02:11] (1160976 MB) + +PASS -- COMPILE datm_cdeps_land_intel [00:49, 00:49],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:16, 00:57] (337124 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:05, 00:50] (565080 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:47, 00:33] (558352 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [08:49, 08:49],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [04:28, 03:36] (2008388 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [08:44, 08:43](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [06:05, 05:29] (2038540 MB) + +PASS -- COMPILE atml_intel [10:03, 10:03](9 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_intel [05:47, 05:10] (1890116 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:24, 03:05] (1126804 MB) + +PASS -- COMPILE atml_debug_intel [05:29, 05:29](887 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [05:25, 04:49] (1916572 MB) + +PASS -- COMPILE atmw_intel [10:26, 10:26],9 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:29, 01:48] (1924164 MB) + +PASS -- COMPILE atmaero_intel [09:43, 09:42],1 remarks) +PASS -- TEST atmaero_control_p8_intel [05:12, 04:34] (2009216 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:11, 04:32] (1782068 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [05:09, 04:35] (1791088 MB) + +PASS -- COMPILE atmaq_debug_intel [04:44, 04:44](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [18:41, 17:31] (4530292 MB) + +PASS -- COMPILE atm_fbh_intel [08:12, 08:12](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [10:17, 10:05] (1108404 MB) + +PASS -- COMPILE datm_cdeps_intelllvm [10:48, 10:47] +PASS -- TEST datm_cdeps_control_cfsr_intelllvm [03:00, 02:54] (1141440 MB) + +PASS -- COMPILE datm_cdeps_debug_intelllvm [02:05, 02:05](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [06:04, 05:59] (1085628 MB) + +PASS -- COMPILE atm_gnu [04:12, 04:11] +PASS -- TEST control_c48_gnu [08:20, 07:55] (1522156 MB) +PASS -- TEST control_stochy_gnu [02:32, 02:22] (718740 MB) +PASS -- TEST control_ras_gnu [04:04, 03:53] (726620 MB) +PASS -- TEST control_p8_gnu [04:16, 03:38] (1701792 MB) +PASS -- TEST control_p8_ugwpv1_gnu [04:02, 03:30] (1704424 MB) +PASS -- TEST control_flake_gnu [04:57, 04:47] (802584 MB) + +PASS -- COMPILE rrfs_gnu [04:45, 04:45] +PASS -- TEST rap_control_gnu [08:48, 08:15] (1074216 MB) +PASS -- TEST rap_decomp_gnu [09:11, 08:33] (1071864 MB) +PASS -- TEST rap_2threads_gnu [11:23, 10:42] (1015800 MB) +PASS -- TEST rap_restart_gnu [04:58, 04:15] (878008 MB) +PASS -- TEST rap_sfcdiff_gnu [08:42, 08:09] (1071400 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [09:07, 08:33] (1075272 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [06:45, 06:06] (876964 MB) +PASS -- TEST hrrr_control_gnu [04:55, 04:15] (1059036 MB) +PASS -- TEST hrrr_control_noqr_gnu [04:45, 04:12] (1129032 MB) +PASS -- TEST hrrr_control_2threads_gnu [04:32, 03:49] (1035500 MB) +PASS -- TEST hrrr_control_decomp_gnu [04:59, 04:19] (1060308 MB) +PASS -- TEST hrrr_control_restart_gnu [02:34, 02:19] (876792 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [02:37, 02:17] (924356 MB) +PASS -- TEST rrfs_v1beta_gnu [08:51, 08:08] (1070236 MB) + +PASS -- COMPILE csawmg_gnu [04:02, 04:01] +PASS -- TEST control_csawmg_gnu [07:46, 07:29] (1055076 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [06:29, 06:29] +PASS -- TEST control_diag_debug_gnu [01:43, 01:18] (1619988 MB) +PASS -- TEST regional_debug_gnu [08:42, 08:22] (1147876 MB) +PASS -- TEST rap_control_debug_gnu [02:12, 02:06] (1090332 MB) +PASS -- TEST hrrr_control_debug_gnu [02:08, 02:00] (1082748 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:16, 02:09] (1087840 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:19, 02:08] (1089880 MB) +PASS -- TEST rap_diag_debug_gnu [02:30, 02:12] (1262296 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:28, 03:21] (1087440 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:19, 02:09] (1090456 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:17, 02:09] (1083360 MB) +PASS -- TEST control_ras_debug_gnu [01:20, 01:13] (722556 MB) +PASS -- TEST control_stochy_debug_gnu [01:24, 01:17] (716300 MB) +PASS -- TEST control_debug_p8_gnu [01:55, 01:28] (1717900 MB) +PASS -- TEST rap_flake_debug_gnu [02:21, 02:07] (1091392 MB) +PASS -- TEST rap_clm_lake_debug_gnu [02:23, 02:09] (1093672 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:21, 03:39] (1095092 MB) + +PASS -- COMPILE wam_debug_gnu [02:55, 02:55] +PASS -- TEST control_wam_debug_gnu [06:07, 05:45] (1555404 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:43, 04:43] +PASS -- TEST rap_control_dyn32_phy32_gnu [11:08, 10:33] (952960 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:54, 04:06] (943524 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [04:25, 03:42] (874836 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:49, 04:06] (943068 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [06:39, 05:56] (852940 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:33, 02:15] (853656 MB) +PASS -- TEST conus13km_control_gnu [03:24, 02:57] (1258420 MB) +PASS -- TEST conus13km_2threads_gnu [07:22, 06:59] (1105024 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [01:54, 01:32] (923296 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [09:07, 09:07] +PASS -- TEST rap_control_dyn64_phy32_gnu [04:55, 04:36] (979344 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:26, 06:26] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [03:08, 02:56] (964496 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:11, 02:02] (958160 MB) +PASS -- TEST conus13km_debug_gnu [05:51, 05:26] (1273144 MB) +PASS -- TEST conus13km_debug_qr_gnu [06:02, 05:36] (947280 MB) +PASS -- TEST conus13km_debug_2threads_gnu [13:18, 12:55] (1121728 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [05:43, 05:19] (1347444 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [07:11, 07:11] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:23, 02:12] (993800 MB) + +PASS -- COMPILE s2swa_gnu [18:09, 18:09] +PASS -- COMPILE s2s_gnu [15:10, 15:10] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [10:16, 09:34] (3063256 MB) + +PASS -- COMPILE s2swa_debug_gnu [03:33, 03:33] +PASS -- COMPILE s2sw_pdlib_gnu [17:48, 17:48] +PASS -- TEST cpld_control_pdlib_p8_gnu [27:22, 26:45] (3011424 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [04:47, 04:47] +PASS -- TEST cpld_debug_pdlib_p8_gnu [16:04, 15:23] (2901248 MB) + +PASS -- COMPILE datm_cdeps_gnu [14:54, 14:52] +PASS -- TEST datm_cdeps_control_cfsr_gnu [03:12, 03:07] (766764 MB) SYNOPSIS: -Starting Date/Time: 2025-01-17 19:27:11 -Ending Date/Time: 2025-01-20 17:01:55 -Total Time: 69h:34m:44s -Compiles Completed: 60/60 -Tests Completed: 247/248 +Starting Date/Time: 2025-01-22 19:46:20 +Ending Date/Time: 2025-01-23 00:51:16 +Total Time: 05h:04m:56s +Compiles Completed: 61/61 +Tests Completed: 247/249 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: FAILED - -./logs/log_hercules/rt_hrrr_control_2threads_gnu.log: does not exist +Result: SUCCESS ====END OF hercules REGRESSION TESTING LOG==== ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -8b8eac654f051017e26b76099b5eb7471f0a110d +b69eb000484877560bc1e23123dbee1242f7a83e Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQMPASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:05, 00:53](565 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:45, 00:33](572 MB) + (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ +PASS -- COMPILE 'atml_intel' [09:22, 09:22] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:51, 05:12](1888 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:10, 02:44](1134 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:09, 05:09] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:00, 05:28](1908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:19, 04:19] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:22, 07:49](954 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:48, 07:15](895 MB) + +SYNOPSIS: +Starting Date/Time: 20250123 16:23:31 +Ending Date/Time: 20250123 16:51:02 +Total Time: 00h:27m:57s +Compiles Completed: 5/5 +Tests Completed: 10/10 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF HERCULES REGRESSION TESTING LOG==== + (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) + 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -454,11 +480,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -469,23 +495,39 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2303740 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250122 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3111209 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE 'rrfs_gnu' [04:19, 04:18] -PASS -- TEST 'hrrr_control_gnu' [05:04, 04:20](1061 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:28, 03:45](1036 MB) +PASS -- COMPILE 's2swal_intel' [11:22, 11:22] ( 1 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [09:57, 09:10](2168 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:41, 04:51](1950 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:52, 00:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:12, 00:57](330 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:05, 00:53](565 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:45, 00:33](572 MB) + +PASS -- COMPILE 'atml_intel' [09:22, 09:22] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:51, 05:12](1888 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:10, 02:44](1134 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:09, 05:09] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:00, 05:28](1908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:19, 04:19] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:22, 07:49](954 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:48, 07:15](895 MB) SYNOPSIS: -Starting Date/Time: 20250120 17:53:53 -Ending Date/Time: 20250120 18:34:22 -Total Time: 00h:40m:30s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Starting Date/Time: 20250122 19:39:30 +Ending Date/Time: 20250123 16:51:26 +Total Time: 21h:12m:13s +Compiles Completed: 5/5 +Tests Completed: 10/10 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index db2b2049ae..dd70da7e89 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -8b8eac654f051017e26b76099b5eb7471f0a110d +d010f320cfc5493ac49f186c3e0ffb15ba26c0c7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) + 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,260 +38,333 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3427069 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20250122 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2936031 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [45:15, 43:23] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:21, 08:21](2016 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:15, 48:27] ( 1 warnings 1446 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:14, 24:57](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:21, 26:20](2026 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:10, 09:56](1123 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:01, 27:56](1856 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:15, 49:18] ( 1 warnings 1443 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:46, 24:16](1888 MB) - -PASS -- COMPILE 's2swa_intel' [44:14, 42:37] ( 1 warnings 1418 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:20, 10:41](2058 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:27, 10:15](2058 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:17, 05:34](1709 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:15, 10:22](2082 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:20, 05:37](1728 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:07, 09:34](2237 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:07, 10:16](2052 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:28, 08:37](1989 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:26, 10:24](2055 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:21, 09:40](2028 MB) - -PASS -- COMPILE 's2sw_intel' [43:14, 41:14] ( 1 warnings 1303 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:31, 06:28](1909 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:37, 08:18](1971 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:29] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [19:20, 16:32](2079 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:08] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:11, 07:37](1929 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [38:13, 36:59] ( 1019 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:31, 05:28](1961 MB) - -PASS -- COMPILE 's2s_intel' [39:13, 37:36] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:49, 10:21](3008 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:47, 03:05](3002 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:50, 01:46](2458 MB) - -PASS -- COMPILE 's2swa_faster_intel' [35:20, 33:25] ( 1 warnings 1634 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:53, 10:21](2054 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:14, 46:59] ( 1 warnings 1363 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:14, 20:29](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:19, 10:04](1113 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:51, 24:13](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 06:00] ( 1523 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:20, 35:00](1941 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:46] ( 1 warnings 1125 remarks ) -PASS -- TEST 'control_flake_intel' [18:32, 04:33](648 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [19:08, 03:27](1541 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:11, 03:40](1542 MB) -PASS -- TEST 'control_latlon_intel' [19:04, 03:27](1544 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:13, 03:33](1550 MB) -PASS -- TEST 'control_c48_intel' [15:12, 11:10](1697 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:13](829 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [15:12, 11:12](1705 MB) -PASS -- TEST 'control_c192_intel' [14:21, 09:51](1683 MB) -PASS -- TEST 'control_c384_intel' [18:15, 13:38](1815 MB) -PASS -- TEST 'control_c384gdas_intel' [34:14, 13:28](1009 MB) -PASS -- TEST 'control_stochy_intel' [13:30, 02:06](606 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:26, 01:13](440 MB) -PASS -- TEST 'control_lndp_intel' [13:30, 02:00](603 MB) -PASS -- TEST 'control_iovr4_intel' [16:32, 03:11](590 MB) -PASS -- TEST 'control_iovr5_intel' [16:33, 03:10](602 MB) -PASS -- TEST 'control_p8_intel' [19:25, 03:59](1831 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [21:42, 03:59](1837 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [19:17, 03:52](1836 MB) -PASS -- TEST 'control_restart_p8_intel' [03:51, 02:04](1049 MB) -PASS -- TEST 'control_noqr_p8_intel' [19:20, 03:50](1810 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:53, 02:04](1077 MB) -PASS -- TEST 'control_decomp_p8_intel' [19:19, 04:01](1815 MB) -PASS -- TEST 'control_2threads_p8_intel' [19:19, 03:36](1900 MB) -PASS -- TEST 'control_p8_lndp_intel' [23:13, 06:38](1838 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [22:38, 05:08](1894 MB) -PASS -- TEST 'control_p8_mynn_intel' [19:22, 04:07](1851 MB) -PASS -- TEST 'merra2_thompson_intel' [20:24, 04:33](1834 MB) -PASS -- TEST 'regional_control_intel' [22:16, 07:16](1042 MB) -PASS -- TEST 'regional_restart_intel' [07:47, 03:48](1022 MB) -PASS -- TEST 'regional_decomp_intel' [21:09, 07:38](1040 MB) -PASS -- TEST 'regional_2threads_intel' [22:03, 04:17](1003 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [16:46, 07:09](1044 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:39, 07:03](1036 MB) - -PASS -- COMPILE 'rrfs_intel' [36:13, 34:41] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [12:05, 10:05](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:16, 05:33](1182 MB) -PASS -- TEST 'rap_decomp_intel' [13:04, 10:41](975 MB) -PASS -- TEST 'rap_2threads_intel' [17:58, 09:28](1059 MB) -PASS -- TEST 'rap_restart_intel' [10:10, 05:39](989 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:05, 10:03](992 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:04, 10:39](976 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [12:10, 08:07](997 MB) -PASS -- TEST 'hrrr_control_intel' [08:22, 05:15](985 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:22, 05:25](975 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [14:00, 04:50](1049 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:46](914 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:17, 10:04](993 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:45, 13:14](1926 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:48, 12:59](1930 MB) - -PASS -- COMPILE 'csawmg_intel' [36:13, 34:53] ( 1099 remarks ) -PASS -- TEST 'control_csawmg_intel' [12:44, 08:27](963 MB) -PASS -- TEST 'control_ras_intel' [08:25, 04:21](667 MB) - -PASS -- COMPILE 'wam_intel' [37:13, 35:28] ( 1003 remarks ) -PASS -- TEST 'control_wam_intel' [17:48, 14:38](1617 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [40:14, 38:21] ( 1303 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:30, 03:56](1844 MB) -PASS -- TEST 'regional_control_faster_intel' [09:04, 06:49](1038 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:58] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:06, 02:53](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:02, 03:04](1575 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:45](773 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:28, 03:22](781 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:53, 05:29](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [05:28, 03:23](789 MB) -PASS -- TEST 'control_diag_debug_intel' [08:59, 03:32](1633 MB) -PASS -- TEST 'control_debug_p8_intel' [09:01, 03:46](1869 MB) -PASS -- TEST 'regional_debug_intel' [29:48, 22:31](1038 MB) -PASS -- TEST 'rap_control_debug_intel' [09:42, 06:10](1159 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:33, 06:10](1158 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:34, 06:03](1163 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:33, 06:11](1164 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:43, 06:09](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:57, 06:33](1235 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:29, 06:24](1160 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:35, 06:17](1162 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:38, 06:49](1177 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:38, 06:49](1162 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:38, 06:32](1158 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:33, 06:42](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:30, 10:39](1163 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:27, 07:14](1158 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:25, 07:21](1162 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:25, 06:42](1161 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:51, 11:40](1166 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:18] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [20:42, 17:03](1639 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [33:13, 31:35] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:06, 05:11](1061 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:33, 08:19](902 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:44, 04:19](870 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:48, 07:49](915 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:44, 03:59](909 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:32, 04:34](855 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:40, 06:14](902 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:25, 02:19](839 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [35:13, 32:49] ( 3 warnings 1207 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:58, 02:44](1097 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:43, 01:08](1030 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:45, 01:30](1016 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:13, 32:11] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:01, 05:29](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:13, 07:01] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:36, 06:09](1038 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:37, 06:06](1038 MB) -PASS -- TEST 'conus13km_debug_intel' [20:15, 17:47](1143 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:15, 17:49](860 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:06, 10:14](1079 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:08, 17:41](1213 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:11] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:08](1086 MB) - -PASS -- COMPILE 'hafsw_intel' [41:14, 40:10] ( 1 warnings 1437 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:23, 06:40](698 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:36, 06:00](1080 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [20:35, 08:43](756 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:30, 15:39](783 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:47, 19:13](806 MB) -PASS -- TEST 'gnv1_nested_intel' [09:46, 06:34](1667 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:13, 36:29] ( 1283 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:20, 08:18](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:22, 08:23](735 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:22] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:35](1076 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:10](1044 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:32](932 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:34](938 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:23, 03:36](950 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:23, 03:38](1075 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:23, 03:21](1070 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:32](931 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:20, 07:41](898 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:14, 07:57](857 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:38](1064 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 05:14](2423 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 05:12](2418 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:27] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:23, 08:04](1016 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:28] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:34](1072 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:31] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:35, 01:07](238 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:32, 00:58](266 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:37](262 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:13, 36:41] ( 1024 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:12, 04:43](1905 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:13, 36:04] ( 1 warnings 1029 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:04, 06:10](1897 MB) - -PASS -- COMPILE 'atml_intel' [39:14, 37:26] ( 8 warnings 1174 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:06, 05:27](1849 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:04, 05:28](1851 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:43, 03:03](1067 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:10] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:09, 07:11](1879 MB) - -PASS -- COMPILE 'atmw_intel' [38:13, 36:39] ( 1279 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:56, 02:25](1845 MB) - -PASS -- COMPILE 'atmaero_intel' [37:13, 35:56] ( 1107 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:02, 05:14](1931 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [16:03, 06:10](1711 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:51, 06:19](1718 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:12, 31:25] ( 3 warnings 1003 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [21:36, 15:14](1076 MB) +PASS -- COMPILE 's2swa_32bit_intel' [46:14, 44:17] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:12, 08:28](2025 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:14, 48:12] ( 1 warnings 1446 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [29:07, 22:43](1900 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:17, 23:58](2024 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:11, 09:36](1140 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [36:03, 25:50](1858 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:15, 53:13] ( 1 warnings 1443 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [27:47, 22:21](1880 MB) + +PASS -- COMPILE 's2swa_intel' [37:13, 36:03] ( 1 warnings 1418 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [24:23, 10:34](2057 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:28, 10:13](2057 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:19, 05:30](1705 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [24:17, 10:14](2077 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:27, 05:33](1730 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [23:20, 09:32](2251 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [24:14, 10:24](2055 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:27, 08:32](2001 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [24:28, 10:11](2042 MB) + +PASS -- COMPILE 's2swal_intel' [46:14, 44:56] ( 1 warnings 1486 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [16:17, 10:44](2063 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:05, 09:31](2030 MB) + +PASS -- COMPILE 's2sw_intel' [47:14, 41:42] ( 1 warnings 1303 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:01, 06:26](1910 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:11, 08:13](1976 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:11, 06:23] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [21:14, 16:31](2095 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:11, 05:54] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:01, 07:36](1927 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [43:13, 36:53] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:18, 05:32](1968 MB) + +PASS -- COMPILE 's2s_intel' [43:13, 38:23] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:48, 10:20](3015 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:48, 03:04](3002 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:53, 01:46](2451 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:17, 32:29] ( 1 warnings 1635 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:45, 09:45](2060 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 46:54] ( 1 warnings 1363 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:13, 20:38](1916 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:18, 09:38](1115 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:10, 23:35](1872 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 06:09] ( 1523 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:07, 34:51](1964 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [42:14, 39:30] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [06:24, 04:25](647 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:45, 03:27](1535 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 03:48](1545 MB) +PASS -- TEST 'control_latlon_intel' [05:42, 03:26](1540 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:51, 03:48](1538 MB) +PASS -- TEST 'control_c48_intel' [13:47, 11:18](1699 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:32, 10:12](835 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:49, 11:21](1694 MB) +PASS -- TEST 'control_c192_intel' [12:00, 10:02](1677 MB) +PASS -- TEST 'control_c384_intel' [17:55, 13:43](1806 MB) +PASS -- TEST 'control_c384gdas_intel' [17:38, 13:20](1009 MB) +PASS -- TEST 'control_stochy_intel' [04:24, 02:16](603 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:24, 01:15](433 MB) +PASS -- TEST 'control_lndp_intel' [04:23, 02:10](598 MB) +PASS -- TEST 'control_iovr4_intel' [05:27, 03:23](602 MB) +PASS -- TEST 'control_iovr5_intel' [05:26, 03:14](600 MB) +PASS -- TEST 'control_p8_intel' [05:59, 03:49](1841 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 04:03](1832 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:43, 03:44](1838 MB) +PASS -- TEST 'control_restart_p8_intel' [03:50, 02:08](1055 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:55, 03:46](1833 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 02:03](1068 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:49, 03:53](1822 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:48, 03:25](1912 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:40, 06:37](1844 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:48, 05:14](1888 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:51, 04:03](1845 MB) +PASS -- TEST 'merra2_thompson_intel' [06:47, 04:24](1834 MB) +PASS -- TEST 'regional_control_intel' [08:39, 07:06](1036 MB) +PASS -- TEST 'regional_restart_intel' [05:36, 03:50](1013 MB) +PASS -- TEST 'regional_decomp_intel' [09:34, 07:24](1034 MB) +PASS -- TEST 'regional_2threads_intel' [06:35, 04:16](1004 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:40, 07:11](1044 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:41, 07:11](1038 MB) + +PASS -- COMPILE 'rrfs_intel' [37:13, 34:55] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [13:39, 10:12](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:06, 05:43](1195 MB) +PASS -- TEST 'rap_decomp_intel' [13:40, 10:42](984 MB) +PASS -- TEST 'rap_2threads_intel' [12:48, 09:36](1056 MB) +PASS -- TEST 'rap_restart_intel' [07:41, 05:14](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:44, 10:10](995 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:44, 10:53](984 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:43, 07:35](1000 MB) +PASS -- TEST 'hrrr_control_intel' [08:41, 05:16](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:42, 05:29](981 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:47, 04:51](1056 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:44](912 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:54, 10:06](987 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:29, 13:21](1940 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:28, 12:59](1929 MB) + +PASS -- COMPILE 'csawmg_intel' [36:13, 34:47] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:43, 08:13](968 MB) +PASS -- TEST 'control_ras_intel' [06:23, 04:18](667 MB) + +PASS -- COMPILE 'wam_intel' [36:13, 35:10] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [16:41, 14:16](1617 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:28] ( 1304 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:56, 03:38](1839 MB) +PASS -- TEST 'regional_control_faster_intel' [08:39, 06:31](1034 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 08:29] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:41, 02:53](1579 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:53](1571 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:45](773 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:22, 03:23](779 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:36, 05:28](1081 MB) +PASS -- TEST 'control_ras_debug_intel' [05:22, 03:24](777 MB) +PASS -- TEST 'control_diag_debug_intel' [05:40, 03:22](1636 MB) +PASS -- TEST 'control_debug_p8_intel' [05:39, 03:24](1868 MB) +PASS -- TEST 'regional_debug_intel' [23:38, 22:01](1038 MB) +PASS -- TEST 'rap_control_debug_intel' [08:25, 06:11](1161 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:26, 06:02](1154 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:24, 06:10](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:26, 06:09](1164 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:31, 06:08](1166 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:39, 06:27](1244 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 06:15](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:15](1168 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:24, 06:12](1162 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 06:08](1159 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:26, 06:07](1163 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:24, 06:11](1167 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:02](1155 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 06:04](1164 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 06:13](1164 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:24, 06:13](1162 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:43, 10:47](1166 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 05:05] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:50, 16:37](1633 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [33:12, 31:01] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:10, 05:07](1073 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:43, 08:16](909 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:38, 04:17](872 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:45, 07:46](917 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:39, 03:57](912 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:39, 04:34](846 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:09](909 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:24, 02:18](846 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:12, 32:07] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:46, 02:39](1106 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:37, 01:08](1027 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:31](1014 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:23] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:47, 05:25](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:12] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:26, 06:02](1038 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:27, 05:56](1033 MB) +PASS -- TEST 'conus13km_debug_intel' [19:54, 17:48](1149 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:54, 17:39](898 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:48, 10:17](1084 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:49, 17:48](1224 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:07] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:27, 06:08](1082 MB) + +PASS -- COMPILE 'hafsw_intel' [42:14, 40:32] ( 1 warnings 1437 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:14, 06:39](692 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:31, 06:06](1081 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:30, 09:12](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [24:25, 15:44](780 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:41, 19:19](801 MB) +PASS -- TEST 'gnv1_nested_intel' [15:45, 06:36](1649 MB) + +PASS -- COMPILE 'hafs_all_intel' [37:13, 35:52] ( 1283 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:23, 08:47](757 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:28, 08:47](736 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:18] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:22, 03:33](1080 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:13](1048 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:22, 03:28](935 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:22, 03:31](938 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:22, 03:33](930 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:22, 03:34](1074 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:22, 03:38](1071 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:22, 03:29](934 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:23, 07:50](904 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:21, 07:50](852 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:20, 03:36](1068 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:24, 05:01](2417 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [10:23, 05:08](2367 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:25] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:22, 08:09](1024 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:15] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 03:34](1078 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:45] ( 69 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:23](238 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:09](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:27, 00:41](259 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [42:14, 37:08] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:04, 04:46](1905 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [40:14, 36:11] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:01, 06:14](1890 MB) + +PASS -- COMPILE 'atml_intel' [40:13, 38:50] ( 9 warnings 1193 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [15:03, 05:09](1856 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:58](1064 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:32] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:14, 06:41](1890 MB) + +PASS -- COMPILE 'atmw_intel' [38:13, 37:02] ( 1279 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:52, 02:37](1860 MB) + +PASS -- COMPILE 'atmaero_intel' [38:14, 36:05] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:05, 05:17](1921 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:02, 06:22](1701 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:52, 06:27](1705 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:14, 31:13] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:36, 15:31](1044 MB) SYNOPSIS: -Starting Date/Time: 20250120 21:23:03 -Ending Date/Time: 20250121 01:51:07 -Total Time: 04h:28m:23s -Compiles Completed: 37/37 -Tests Completed: 166/166 +Starting Date/Time: 20250124 05:45:23 +Ending Date/Time: 20250124 10:24:39 +Total Time: 04h:39m:52s +Compiles Completed: 38/38 +Tests Completed: 166/167 +Failed Tests: +* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2387/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_p8_lnd_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +7f24a0021dcc8bf882d8abb1e8df76d52db41a0e + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20250122 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2137447 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swal_intel' [45:14, 43:42] ( 1 warnings 1486 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [13:51, 10:43](2046 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:23, 05:43](1716 MB) + +SYNOPSIS: +Starting Date/Time: 20250124 16:17:59 +Ending Date/Time: 20250124 17:27:51 +Total Time: 01h:10m:08s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 1d3a5eb490..fd866e0a33 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -8b8eac654f051017e26b76099b5eb7471f0a110d +0fc9036195cc178e1d4938163575ebb6cade49d2 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) + 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,300 +38,27 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2981978 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250122 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1207471 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:11, 17:57] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:47, 16:01](2079 MB) +PASS -- COMPILE 's2swal_intel' [20:11, 18:26] ( 1 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [19:32, 16:47](2111 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:00, 08:32](1794 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 22:05] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [39:42, 21:59](1951 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [47:19, 23:14](2135 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [33:15, 08:52](1214 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:42, 25:54](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:50] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [38:55, 21:30](1950 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:11] ( 1523 warnings 1943 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:52, 28:31](1938 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 17:39] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [26:02, 16:55](2144 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:47, 16:08](2136 MB) -PASS -- TEST 'cpld_restart_p8_intel' [38:48, 08:34](1793 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [24:39, 16:00](2163 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [34:05, 08:41](1698 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:42, 12:28](2334 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [24:39, 15:37](2124 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [22:46, 13:46](2039 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [27:55, 16:05](2140 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:48, 16:03](2715 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [38:07, 09:08](2713 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:50, 13:04](3703 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [43:19, 07:23](3537 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:35, 08:04](2126 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 16:34] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [23:21, 15:25](1982 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:27, 06:49](2054 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:10, 08:47] ( 1413 warnings 1173 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:30, 14:12](2172 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:47] ( 1413 warnings 1173 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:18, 07:09](2008 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:05] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:27, 04:48](2027 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 14:51] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:02, 08:42](3031 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:00, 03:04](3028 MB) -PASS -- TEST 'cpld_restart_c48_intel' [12:03, 02:02](2476 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:28] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [44:41, 16:22](2142 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:34] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [45:24, 18:46](2012 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:37, 08:54](1258 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:27, 21:18](1927 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 07:06] ( 1523 warnings 1943 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:10, 30:48](1978 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:11, 14:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [29:27, 03:45](690 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [27:45, 02:49](1582 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:46, 02:51](1587 MB) -PASS -- TEST 'control_latlon_intel' [27:43, 02:48](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:53, 02:47](1585 MB) -PASS -- TEST 'control_c48_intel' [32:51, 09:02](1705 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [32:37, 08:10](825 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [32:59, 09:08](1702 MB) -PASS -- TEST 'control_c192_intel' [32:05, 08:07](1734 MB) -PASS -- TEST 'control_c384_intel' [40:03, 09:47](2001 MB) -PASS -- TEST 'control_c384gdas_intel' [47:47, 10:00](1331 MB) -PASS -- TEST 'control_stochy_intel' [30:29, 01:52](638 MB) -PASS -- TEST 'control_stochy_restart_intel' [14:41, 01:04](475 MB) -PASS -- TEST 'control_lndp_intel' [25:28, 01:44](636 MB) -PASS -- TEST 'control_iovr4_intel' [26:28, 02:44](634 MB) -PASS -- TEST 'control_iovr5_intel' [25:30, 02:44](633 MB) -PASS -- TEST 'control_p8_intel' [26:19, 03:20](1879 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [26:22, 03:33](1878 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [26:34, 03:21](1876 MB) -PASS -- TEST 'control_restart_p8_intel' [14:08, 01:59](1089 MB) -PASS -- TEST 'control_noqr_p8_intel' [25:13, 03:15](1864 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [13:25, 01:57](1129 MB) -PASS -- TEST 'control_decomp_p8_intel' [25:12, 03:21](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [25:25, 03:53](1934 MB) -PASS -- TEST 'control_p8_lndp_intel' [25:54, 05:45](1876 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [24:40, 04:59](1944 MB) -PASS -- TEST 'control_p8_mynn_intel' [22:35, 03:31](1880 MB) -PASS -- TEST 'merra2_thompson_intel' [22:44, 03:54](1876 MB) -PASS -- TEST 'regional_control_intel' [24:41, 06:32](1109 MB) -PASS -- TEST 'regional_restart_intel' [10:37, 03:34](1086 MB) -PASS -- TEST 'regional_decomp_intel' [27:44, 06:54](1101 MB) -PASS -- TEST 'regional_2threads_intel' [28:42, 04:42](1048 MB) -PASS -- TEST 'regional_noquilt_intel' [23:43, 06:32](1410 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [27:39, 06:31](1114 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [27:45, 06:30](1107 MB) -PASS -- TEST 'regional_wofs_intel' [28:38, 07:59](1892 MB) - -PASS -- COMPILE 'rrfs_intel' [16:11, 13:35] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [34:31, 08:33](1057 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:01, 05:17](1271 MB) -PASS -- TEST 'rap_decomp_intel' [36:29, 08:47](1015 MB) -PASS -- TEST 'rap_2threads_intel' [38:32, 10:09](1081 MB) -PASS -- TEST 'rap_restart_intel' [20:37, 04:24](1038 MB) -PASS -- TEST 'rap_sfcdiff_intel' [36:29, 08:25](1059 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [34:31, 08:47](1009 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [20:49, 06:17](1072 MB) -PASS -- TEST 'hrrr_control_intel' [32:11, 04:23](1020 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [32:10, 04:28](1014 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [33:37, 05:02](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [16:59, 02:21](934 MB) -PASS -- TEST 'rrfs_v1beta_intel' [23:24, 08:21](1051 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [23:30, 09:58](1976 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [22:26, 09:39](2014 MB) - -PASS -- COMPILE 'csawmg_intel' [15:11, 13:11] -PASS -- TEST 'control_csawmg_intel' [19:38, 06:42](1013 MB) -PASS -- TEST 'control_ras_intel' [14:25, 03:31](715 MB) - -PASS -- COMPILE 'wam_intel' [14:13, 12:39] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [23:48, 12:51](1649 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:10, 14:21] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [14:24, 03:21](1874 MB) -PASS -- TEST 'regional_control_faster_intel' [16:44, 06:15](1109 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:10, 09:27] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:53, 02:33](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:52, 02:24](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [11:28, 03:03](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [10:28, 02:46](815 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:34, 04:18](1117 MB) -PASS -- TEST 'control_ras_debug_intel' [08:22, 02:50](818 MB) -PASS -- TEST 'control_diag_debug_intel' [07:44, 02:46](1665 MB) -PASS -- TEST 'control_debug_p8_intel' [07:45, 02:52](1900 MB) -PASS -- TEST 'regional_debug_intel' [22:43, 17:20](1094 MB) -PASS -- TEST 'rap_control_debug_intel' [09:25, 04:58](1196 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:27, 04:46](1196 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:26, 04:54](1199 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 04:54](1198 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:21, 05:00](1203 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:34, 05:14](1280 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:05](1194 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 04:58](1205 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:27, 05:11](1193 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:25, 04:58](1200 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 04:46](1204 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 04:57](1204 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 07:51](1194 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:30, 04:59](1196 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 04:57](1204 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:59](1198 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:35, 08:31](1197 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:10, 06:23] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:48, 13:28](1676 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:27] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:03, 04:55](1142 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:21, 07:14](997 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:48, 03:49](925 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:24, 08:40](988 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:42, 04:26](958 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 03:56](890 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:50, 05:24](978 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:42, 02:06](885 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:13, 13:20] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:52, 02:35](1161 MB) -PASS -- TEST 'conus13km_2threads_intel' [17:54, 01:30](1116 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [17:55, 01:28](1060 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:11, 12:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:48, 04:37](965 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [14:10, 06:30] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:05](1070 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:49](1075 MB) -PASS -- TEST 'conus13km_debug_intel' [15:58, 13:44](1230 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 13:43](935 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:52, 13:33](1165 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:57, 14:20](1294 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:11, 06:39] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 05:01](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [23:10, 16:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:21, 06:04](733 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:35, 06:42](1131 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:40, 07:39](816 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [35:31, 28:22](845 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [41:37, 34:20](871 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:11, 07:11](492 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [18:45, 08:37](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [13:05, 03:35](370 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:36, 09:40](477 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:01, 04:48](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:59, 04:35](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [13:02, 05:45](572 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [17:35, 01:34](400 MB) -PASS -- TEST 'gnv1_nested_intel' [21:28, 04:22](1714 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:10, 06:36] ( 1465 warnings 1445 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:17, 13:29](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:10, 14:38] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [30:23, 14:53](658 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [30:15, 15:12](723 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [25:12, 16:01] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:46, 11:05](709 MB) - -PASS -- COMPILE 'hafs_all_intel' [22:10, 13:59] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [22:25, 07:34](812 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [24:24, 10:12](762 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [30:02, 16:22](1200 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:11, 08:03] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [16:20, 03:00](1132 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:56](1106 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [16:23, 02:54](1018 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [16:19, 02:57](1025 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [16:19, 04:32](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [13:21, 03:01](1130 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [13:19, 03:01](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [12:18, 02:53](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:16, 06:29](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [16:14, 06:30](1007 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [12:17, 02:59](1155 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [13:19, 04:21](2402 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [12:21, 04:26](2453 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [20:11, 05:24] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:19, 06:31](1080 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [22:12, 07:39] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:20, 03:00](1153 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [26:12, 01:26] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:32, 01:02](251 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:27, 00:57](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:29, 00:38](322 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [25:12, 01:47] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:32, 00:38](565 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:22](445 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:12, 14:42] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:11, 04:13](1967 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [31:12, 13:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:00, 05:15](1975 MB) - -PASS -- COMPILE 'atml_intel' [32:11, 15:02] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:41, 04:54](1862 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:38, 04:57](1859 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 02:51](1072 MB) - -PASS -- COMPILE 'atml_debug_intel' [22:11, 07:33] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:37, 06:10](1898 MB) - -PASS -- COMPILE 'atmw_intel' [30:13, 13:44] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:24, 02:18](1896 MB) - -PASS -- COMPILE 'atmaero_intel' [29:11, 14:09] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:20, 06:39](1966 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:25, 05:23](1747 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:07, 05:30](1753 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [26:13, 06:24] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [30:04, 20:49](4485 MB) - -PASS -- COMPILE 'atm_fbh_intel' [30:13, 12:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [18:33, 13:45](1112 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [27:11, 08:05] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [13:12, 07:56](575 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [24:11, 05:10] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [25:03, 20:15](563 MB) +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:46] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:45, 00:44](559 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:37, 00:25](450 MB) SYNOPSIS: -Starting Date/Time: 20250117 19:12:27 -Ending Date/Time: 20250117 22:03:38 -Total Time: 02h:51m:56s -Compiles Completed: 45/45 -Tests Completed: 191/191 +Starting Date/Time: 20250123 14:49:24 +Ending Date/Time: 20250123 15:42:39 +Total Time: 00h:53m:38s +Compiles Completed: 2/2 +Tests Completed: 4/4 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 482f1ce211..721771bcf5 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -558f4722abc1d8aa24dbd5499ac3826dd9206095 +ce8cf613dbce05cbcf626fae733ca29a834c5eab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) + 21f89339572a93c9f4fb616cdf7c0552b9a020ba FV3 (remotes/origin/feature/s2s_with_lnd) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (remotes/origin/updatedevufs-51-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,241 +38,243 @@ 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-20250107 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2504378 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20250122 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2614407 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:23] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:26, 06:40](3198 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 11:58] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:24, 15:49](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:46, 16:51](1939 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:32, 07:48](1066 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:34, 18:35](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:30, 12:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:32, 15:32](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:17] ( 1502 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:48, 25:43](1941 MB) - -PASS -- COMPILE 's2swa_intel' [13:26, 11:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:56, 08:32](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:21, 08:29](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:02, 05:01](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:47, 08:28](3248 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:11, 05:08](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:26, 16:53](3450 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:41, 08:20](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:13, 06:57](3170 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:21, 08:22](3227 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:14, 13:28](4240 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:59, 09:35](4378 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:08, 08:20](3200 MB) - -PASS -- COMPILE 's2sw_intel' [12:25, 10:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:40, 04:56](1917 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:06, 07:18](1963 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:25, 10:21] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:04, 05:11](1968 MB) - -PASS -- COMPILE 's2s_intel' [11:25, 10:04] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:40, 06:13](2880 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:37, 02:09](2893 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:18, 01:39](2311 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:31, 15:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:13, 08:20](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:57, 15:41](1923 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:08, 07:49](1107 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:01, 18:17](1895 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:13] ( 1502 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:08, 26:59](1961 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:27, 09:35] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:34, 04:05](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:58, 02:44](1559 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:01, 02:40](1570 MB) -PASS -- TEST 'control_latlon_intel' [04:53, 02:43](1554 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:08, 02:47](1564 MB) -PASS -- TEST 'control_c48_intel' [09:22, 06:36](1585 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:01, 06:03](707 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:18, 06:32](1589 MB) -PASS -- TEST 'control_c192_intel' [10:23, 07:25](1684 MB) -PASS -- TEST 'control_c384_intel' [13:47, 09:00](1973 MB) -PASS -- TEST 'control_c384gdas_intel' [14:42, 09:20](1171 MB) -PASS -- TEST 'control_stochy_intel' [04:36, 02:02](617 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:36, 01:21](425 MB) -PASS -- TEST 'control_lndp_intel' [03:31, 01:48](622 MB) -PASS -- TEST 'control_iovr4_intel' [05:36, 02:49](620 MB) -PASS -- TEST 'control_iovr5_intel' [04:35, 02:49](613 MB) -PASS -- TEST 'control_p8_intel' [07:42, 03:15](1852 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:43, 03:25](1855 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:36, 03:09](1850 MB) -PASS -- TEST 'control_restart_p8_intel' [06:19, 02:01](1008 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:28, 03:12](1843 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:46, 02:03](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:17, 03:19](1851 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:14, 06:09](1928 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:02, 05:22](1854 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:25, 04:25](1905 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:23, 03:30](1860 MB) -PASS -- TEST 'merra2_thompson_intel' [08:03, 03:38](1859 MB) -PASS -- TEST 'regional_control_intel' [08:05, 05:18](891 MB) -PASS -- TEST 'regional_restart_intel' [04:52, 03:01](875 MB) -PASS -- TEST 'regional_decomp_intel' [07:55, 05:39](889 MB) -PASS -- TEST 'regional_2threads_intel' [09:52, 07:52](1018 MB) -PASS -- TEST 'regional_noquilt_intel' [07:51, 05:23](1221 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:06, 05:19](890 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:00, 05:22](890 MB) -PASS -- TEST 'regional_wofs_intel' [09:57, 07:17](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [10:26, 08:51] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [11:10, 07:20](1006 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:20, 04:38](1156 MB) -PASS -- TEST 'rap_decomp_intel' [11:10, 07:41](1000 MB) -PASS -- TEST 'rap_2threads_intel' [20:10, 16:12](1075 MB) -PASS -- TEST 'rap_restart_intel' [08:42, 04:02](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:19, 07:18](997 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:19, 07:41](996 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:44, 05:34](883 MB) -PASS -- TEST 'hrrr_control_intel' [08:43, 04:07](994 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:43, 04:09](998 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:41, 08:07](1068 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:44, 02:23](830 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:38, 07:28](993 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:46, 09:38](1954 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:42, 09:23](1939 MB) - -PASS -- COMPILE 'csawmg_intel' [09:25, 08:05] -PASS -- TEST 'control_csawmg_intel' [09:59, 07:03](954 MB) -PASS -- TEST 'control_ras_intel' [05:34, 03:37](654 MB) - -PASS -- COMPILE 'wam_intel' [10:26, 08:13] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:13, 12:14](1645 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:26, 08:25] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:33, 03:07](1846 MB) -PASS -- TEST 'regional_control_faster_intel' [07:05, 05:03](889 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:32] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:03, 02:56](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:06, 02:51](1603 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:37, 03:38](803 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:34, 03:21](802 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:58, 04:54](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [05:34, 03:19](815 MB) -PASS -- TEST 'control_diag_debug_intel' [06:04, 03:11](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [05:51, 03:20](1896 MB) -PASS -- TEST 'regional_debug_intel' [21:12, 18:25](934 MB) -PASS -- TEST 'rap_control_debug_intel' [07:38, 05:51](1184 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:40, 05:43](1178 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:36, 05:43](1184 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:37, 05:50](1182 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 05:45](1186 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:46, 06:07](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:34, 05:47](1189 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:33, 05:54](1187 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:35, 05:54](1188 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:34, 05:44](1183 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:36, 05:37](1182 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:34, 05:43](1183 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:39, 09:05](1182 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:35, 05:45](1180 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:36, 05:44](1188 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:35, 05:47](1184 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:56, 09:33](1189 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:22] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:13, 14:19](1678 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:22, 04:24](1035 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:29, 06:17](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:27, 03:23](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:34, 13:50](934 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:33, 07:11](926 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:34, 03:35](871 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:34, 04:38](791 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:37, 01:54](761 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 08:03] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:15, 02:14](1079 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:04, 02:05](1061 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:57, 01:29](956 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:12] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:03, 04:15](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:27] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 05:29](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:38, 05:25](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [17:21, 15:04](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:19, 15:10](823 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:25, 23:22](1147 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:16, 15:01](1218 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:21] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 05:35](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [11:27, 09:54] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:44, 06:27](690 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:44, 07:34](1050 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:02, 07:42](732 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:54, 13:00](768 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:04, 14:16](786 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:13, 05:52](466 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:48, 07:25](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:26, 03:24](381 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:57, 08:52](448 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:08, 04:12](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:09, 03:53](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:19, 05:04](562 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:40, 01:58](411 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:49] ( 1446 warnings 1444 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:22, 14:29](608 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:26, 09:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:21, 08:28](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:28, 08:28](783 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:28, 10:00] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:43, 06:43](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:28, 09:13] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:45, 07:12](723 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:42, 07:20](704 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:38, 16:09](894 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:28, 09:57] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:51, 03:58](1916 MB) - -PASS -- COMPILE 'atml_intel' [11:26, 09:23] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:21, 05:20] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:30, 08:26] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:14, 04:45](3118 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:13, 05:17](2995 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:51, 05:16](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:19] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:52, 22:51](4475 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:39] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:30, 06:52](3198 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:28, 12:10] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:14, 15:48](1901 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:53, 16:49](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:33, 07:46](1078 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:32, 18:21](1882 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:28, 11:50] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:16, 15:36](1909 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:23] ( 1502 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:41, 26:05](1951 MB) + +PASS -- COMPILE 's2swa_intel' [13:28, 11:46] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:12, 08:24](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:22, 08:38](3218 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:10, 04:51](3152 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:07, 08:33](3246 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:16, 05:03](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [22:35, 17:04](3444 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:07, 08:29](3223 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:07, 07:00](3169 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:23, 08:28](3225 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:10, 13:35](4236 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:30, 09:24](4367 MB) + +PASS -- COMPILE 's2swal_intel' [13:28, 11:49] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:12, 08:27](3200 MB) + +PASS -- COMPILE 's2sw_intel' [13:28, 11:14] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:43, 05:01](1916 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:11, 07:16](1975 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:18] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:02, 05:06](1970 MB) + +PASS -- COMPILE 's2s_intel' [12:27, 10:18] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:41, 06:11](2881 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:37, 02:23](2892 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:20, 01:28](2295 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:33, 16:21] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:18, 08:23](3225 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:52, 15:43](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:00, 07:48](1097 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:02, 18:12](1890 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:19] ( 1502 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:58, 26:56](1959 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:39] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:35, 03:56](663 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:55, 02:34](1560 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:01, 02:44](1572 MB) +PASS -- TEST 'control_latlon_intel' [06:56, 02:44](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:09, 02:38](1565 MB) +PASS -- TEST 'control_c48_intel' [10:25, 06:26](1587 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:02, 05:58](710 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:20, 06:28](1590 MB) +PASS -- TEST 'control_c192_intel' [11:21, 07:22](1686 MB) +PASS -- TEST 'control_c384_intel' [13:37, 08:54](1968 MB) +PASS -- TEST 'control_c384gdas_intel' [14:33, 09:04](1167 MB) +PASS -- TEST 'control_stochy_intel' [04:36, 01:59](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:33, 01:13](426 MB) +PASS -- TEST 'control_lndp_intel' [04:31, 01:44](622 MB) +PASS -- TEST 'control_iovr4_intel' [05:35, 02:45](619 MB) +PASS -- TEST 'control_iovr5_intel' [04:35, 02:45](620 MB) +PASS -- TEST 'control_p8_intel' [07:31, 03:07](1852 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:31, 03:24](1854 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:33, 03:02](1852 MB) +PASS -- TEST 'control_restart_p8_intel' [06:33, 01:54](1009 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:07, 03:08](1846 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:44, 01:55](1021 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:46, 03:15](1857 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:57, 06:06](1925 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:06](1864 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:06, 04:20](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:18, 03:27](1869 MB) +PASS -- TEST 'merra2_thompson_intel' [07:39, 03:34](1858 MB) +PASS -- TEST 'regional_control_intel' [07:59, 05:14](890 MB) +PASS -- TEST 'regional_restart_intel' [06:52, 03:11](877 MB) +PASS -- TEST 'regional_decomp_intel' [07:51, 05:44](897 MB) +PASS -- TEST 'regional_2threads_intel' [10:59, 07:49](1024 MB) +PASS -- TEST 'regional_noquilt_intel' [08:58, 05:20](1219 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:59, 05:14](891 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 05:17](892 MB) +PASS -- TEST 'regional_wofs_intel' [09:52, 07:04](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [10:25, 08:55] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [12:22, 07:29](1003 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:18, 04:38](1159 MB) +PASS -- TEST 'rap_decomp_intel' [11:24, 07:38](1002 MB) +PASS -- TEST 'rap_2threads_intel' [19:05, 15:51](1078 MB) +PASS -- TEST 'rap_restart_intel' [08:27, 03:56](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:16, 07:22](1002 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:10, 07:36](997 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 05:33](884 MB) +PASS -- TEST 'hrrr_control_intel' [08:28, 03:57](994 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:01, 04:08](994 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:18, 08:04](1069 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:22](830 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:31, 07:30](994 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:41, 09:32](1956 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:45, 09:23](1939 MB) + +PASS -- COMPILE 'csawmg_intel' [10:25, 08:11] +PASS -- TEST 'control_csawmg_intel' [10:58, 07:05](955 MB) +PASS -- TEST 'control_ras_intel' [07:33, 03:30](653 MB) + +PASS -- COMPILE 'wam_intel' [10:25, 08:21] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:11, 12:08](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:32] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:29, 03:14](1847 MB) +PASS -- TEST 'regional_control_faster_intel' [06:49, 05:03](886 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:42] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:01, 02:46](1597 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:11, 02:56](1606 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:37, 03:39](804 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:37, 03:17](807 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:01, 05:20](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [05:37, 03:17](813 MB) +PASS -- TEST 'control_diag_debug_intel' [06:06, 03:19](1660 MB) +PASS -- TEST 'control_debug_p8_intel' [05:58, 03:20](1899 MB) +PASS -- TEST 'regional_debug_intel' [21:18, 18:37](921 MB) +PASS -- TEST 'rap_control_debug_intel' [07:38, 05:48](1184 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:42, 05:45](1180 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:38, 05:44](1182 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:35, 05:52](1185 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:37, 05:55](1184 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:44, 05:59](1266 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:35, 05:55](1188 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:33, 05:43](1186 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:34, 05:48](1187 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:34, 05:36](1184 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:35, 05:40](1183 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 05:46](1184 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:39, 09:06](1183 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:37, 05:40](1177 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:35, 05:50](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:34, 05:54](1184 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:50, 09:38](1192 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:28] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:14, 14:28](1676 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:09] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:19, 04:21](1033 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:26, 06:03](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:24, 03:34](874 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:31, 13:45](928 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:18, 07:14](921 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:53, 03:32](872 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:35, 04:38](789 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:36, 02:01](761 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:27, 08:11] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:16, 02:14](1079 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:02, 02:00](1063 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:05, 01:37](957 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:26, 08:12] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:56, 04:22](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:23, 04:36] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:36, 05:36](1066 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:37, 05:23](1059 MB) +PASS -- TEST 'conus13km_debug_intel' [17:18, 14:56](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:16, 15:04](840 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:22, 23:20](1145 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:13, 14:57](1218 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:25] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 05:34](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 10:06] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:46, 06:06](689 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:47, 07:56](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:03, 07:39](739 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:52, 12:33](765 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:06, 14:00](783 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:11, 05:57](467 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:49, 07:18](481 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:20, 03:20](384 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:50, 08:44](439 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:02, 04:05](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:13, 03:48](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:17, 05:03](556 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:38, 02:03](410 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:51] ( 1446 warnings 1444 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:21, 14:29](610 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:43] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:33, 08:24](607 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:45, 08:17](783 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:27, 10:04] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:56, 06:42](779 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:27, 09:15] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:45, 07:00](725 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:43, 07:18](705 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:39, 16:09](904 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:33, 10:05] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:42, 03:53](1919 MB) + +PASS -- COMPILE 'atml_intel' [12:29, 09:44] ( 9 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:27, 05:39] ( 872 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:30, 08:33] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:07, 04:34](3116 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:05, 05:12](2987 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:49, 05:21](3006 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:26, 04:20] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [30:46, 22:23](4475 MB) SYNOPSIS: -Starting Date/Time: 20250121 12:48:08 -Ending Date/Time: 20250121 14:19:48 -Total Time: 01h:32m:26s -Compiles Completed: 33/33 +Starting Date/Time: 20250127 20:23:43 +Ending Date/Time: 20250127 22:01:45 +Total Time: 01h:38m:48s +Compiles Completed: 34/34 Tests Completed: 157/157 NOTES: diff --git a/tests/parm/ufs.configure.atm_lm4.IN b/tests/parm/ufs.configure.atm_lm4.IN index 2eaa5111c7..84ff5f2ad4 100644 --- a/tests/parm/ufs.configure.atm_lm4.IN +++ b/tests/parm/ufs.configure.atm_lm4.IN @@ -26,6 +26,7 @@ MED_attributes:: history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] + samegrid_atmlnd = @[samegrid_atmlnd] history_tile_lnd = 96 history_n_lnd_inst = 6 history_option_lnd_inst = nhours diff --git a/tests/parm/ufs.configure.atm_lnd.IN b/tests/parm/ufs.configure.atm_lnd.IN index 6a01acf8cf..c00fd9ea52 100644 --- a/tests/parm/ufs.configure.atm_lnd.IN +++ b/tests/parm/ufs.configure.atm_lnd.IN @@ -26,6 +26,7 @@ MED_attributes:: history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] + samegrid_atmlnd = @[samegrid_atmlnd] :: # ATM # @@ -46,6 +47,7 @@ LND_attributes:: Diagnostic = 0 mosaic_file = @[mosaic_file] input_dir = @[lnd_input_dir] + fixed_dir = @[lnd_fixed_dir] ic_type = @[lnd_ic_type] layout = @[layout_x]:@[layout_y] # need to be consistent with number of PEs num_soil_levels = 4 @@ -77,13 +79,13 @@ LND_attributes:: runSeq:: @@[coupling_interval_sec] MED med_phases_prep_atm + MED med_phases_prep_lnd MED -> ATM :remapMethod=redist + MED -> LND :remapMethod=redist ATM + LND ATM -> MED :remapMethod=redist MED med_phases_post_atm - MED med_phases_prep_lnd - MED -> LND :remapMethod=redist - LND LND -> MED :remapMethod=redist MED med_phases_post_lnd MED med_phases_restart_write diff --git a/tests/parm/ufs.configure.s2swal_fast.IN b/tests/parm/ufs.configure.s2swal_fast.IN new file mode 100644 index 0000000000..5fd5de3b04 --- /dev/null +++ b/tests/parm/ufs.configure.s2swal_fast.IN @@ -0,0 +1,205 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: @[ESMF_THREADING] + +# EARTH # +EARTH_component_list: MED ATM CHM OCN ICE WAV LND +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] +CHM_attributes:: + Verbosity = 0 +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] +ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] +WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false + mesh_wav = @[MESH_WAV] + user_histname = @[WW3_user_histname] + use_historync = @[WW3_historync] + use_restartnc = @[WW3_restartnc] + restart_from_binary = @[WW3_restart_from_binary] + pio_typename = @[WW3_PIO_FORMAT] + pio_numiotasks = @[WW3_PIO_IOTASKS] + pio_stride = @[WW3_PIO_STRIDE] + pio_rearranger = @[WW3_PIO_REARR] + pio_root = @[WW3_PIO_ROOT] +:: + +# LND # +LND_model: @[lnd_model] +LND_petlist_bounds: @[lnd_petlist_bounds] +LND_omp_num_threads: @[lnd_omp_num_threads] +LND_attributes:: + Verbosity = 1 + Diagnostic = 0 + mosaic_file = @[mosaic_file] + input_dir = @[lnd_input_dir] + fixed_dir = @[lnd_fixed_dir] + ic_type = @[lnd_ic_type] + layout = @[layout_x]:@[layout_y] # need to be consistent with number of PEs + num_soil_levels = 4 + forcing_height = 10 + soil_level_thickness = 0.10:0.30:0.60:1.00 + soil_level_nodes = 0.05:0.25:0.70:1.50 + dynamic_vegetation_option = 4 + canopy_stomatal_resistance_option = 2 + soil_wetness_option = 1 + runoff_option = 1 + surface_exchange_option = 3 + supercooled_soilwater_option = 1 + frozen_soil_adjust_option = 1 + radiative_transfer_option = 3 + snow_albedo_option = @[snow_albedo_option] + precip_partition_option = @[precip_partition_option] + soil_temp_lower_bdy_option = 2 + soil_temp_time_scheme_option = 3 + surface_evap_resistance_option = 1 # not used, it is fixed to 4 in sfc_noahmp_drv.F90 + glacier_option = 1 + surface_thermal_roughness_option = 2 + output_freq = 3600 + restart_freq = -1 + calc_snet = @[CALC_SNET] + initial_albedo = @[initial_albedo] +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_atm + MED med_phases_prep_ice + MED med_phases_prep_wav_accum + MED med_phases_prep_wav_avg + MED med_phases_prep_lnd + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + MED -> WAV :remapMethod=redist + MED -> LND :remapMethod=redist + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + ICE + WAV + LND + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + WAV -> MED :remapMethod=redist + MED med_phases_post_wav + LND -> MED :remapMethod=redist + MED med_phases_post_lnd + MED med_phases_ocnalb_run + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: + +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + LND_model = @[lnd_model] + coupling_mode = @[CPLMODE] + pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] +:: + +ALLCOMP_attributes:: + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 +:: diff --git a/tests/rt.conf b/tests/rt.conf index 1ed8c56eae..d164e31c36 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -56,6 +56,10 @@ RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline | RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8 +COMPILE | s2swal | intel | -DAPP=S2SWAL -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | +RUN | cpld_control_p8_lnd | - noaacloud wcoss2 | baseline | +RUN | cpld_restart_p8_lnd | - noaacloud wcoss2 | | cpld_control_p8_lnd + # Aerosol, no Wave RUN | cpld_s2sa_p8 | - noaacloud | baseline | @@ -304,12 +308,11 @@ COMPILE | atm_ds2s_docn_dice | intel | -DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17 RUN | atm_ds2s_docn_dice | - noaacloud wcoss2 acorn | baseline | cpld_control_nowave_noaero_p8 ### ATM-LND tests ### -COMPILE | atml | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON | | fv3 | -RUN | control_p8_atmlnd_sbs | - noaacloud wcoss2 | baseline | +COMPILE | atml | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 | RUN | control_p8_atmlnd | - noaacloud wcoss2 | baseline | RUN | control_restart_p8_atmlnd | - noaacloud wcoss2 | | control_p8_atmlnd -COMPILE | atml_debug | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DDEBUG=ON | | fv3 | +COMPILE | atml_debug | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DDEBUG=ON | | fv3 | RUN | control_p8_atmlnd_debug | - noaacloud wcoss2 | baseline | ### ATM-WAV tests ### diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..b0873351ef 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,8 @@ +cpld_control_p8_lnd intel +cpld_restart_p8_lnd intel +datm_cdeps_lnd_gswp3 intel +datm_cdeps_lnd_era5 intel +datm_cdeps_lnd_era5_rst intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel +control_p8_atmlnd_debug intel diff --git a/tests/tests/control_p8_atmlnd b/tests/tests/control_p8_atmlnd index 68b65d0e5b..e9bc04d246 100644 --- a/tests/tests/control_p8_atmlnd +++ b/tests/tests/control_p8_atmlnd @@ -4,6 +4,8 @@ # ############################################################################### +source tests/control_p8 + export TEST_DESCR="Compare global control results with previous trunk version" export CNTL_DIR=control_p8_atmlnd @@ -95,124 +97,7 @@ export LIST_FILES="sfcf000.tile1.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" -export_fv3 -export_tiled -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="12 -1" -export OUTPUT_GRID='cubed_sphere_grid' -export WRITE_DOPOST=.false. -export OUTPUT_FH='0 21 24' - -export IALB=2 -export IEMS=2 -export LSM=2 -export IOPT_DVEG=4 -export IOPT_CRS=2 -export IOPT_RAD=3 -export IOPT_ALB=1 -export IOPT_STC=3 -export IOPT_SFC=3 -export IOPT_TRS=2 -export IOPT_DIAG=2 - -export D2_BG_K1=0.20 -export D2_BG_K2=0.04 -export PSM_BC=1 -export DDDMP=0.1 - -# Merra2 Aerosols & NSST -export USE_MERRA2=.true. -export IAER=1011 -export NSTF_NAME=2,1,0,0,0 - -export LHEATSTRG=.false. -export LSEASPRAY=.true. - -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - -# CA -export DO_CA=.true. -export CA_SGS=.true. -export CA_GLOBAL=.false. -export NCA=1 -export NCELLS=5 -export NLIVES=12 -export NTHRESH=18 -export NSEED=1 -export NFRACSEED=0.5 -export CA_TRIGGER=.true. -export NSPINUP=1 -export ISEED_CA=12345 - -export TILEDFIX=.true. -export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'INPUT/C96.facsf.tileX.nc'" -export FNTG3C="'INPUT/C96.substrate_temperature.tileX.nc'" -export FNVEGC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNVETC="'INPUT/C96.vegetation_type.tileX.nc'" -export FNSOTC="'INPUT/C96.soil_type.tileX.nc'" -export FNSOCC="'INPUT/C96.soil_color.tileX.nc'" -export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" -export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'INPUT/C96.slope_type.tileX.nc'" -export FNABSC="'INPUT/C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - -export IMP_PHYSICS=8 -export LGFDLMPRAD=.false. -export DO_SAT_ADJ=.false. -export DNATS=0 -export DZ_MIN=6 - -#required for NML.IN sharing -export MIN_SEAICE=0.15 -export FRAC_GRID=.true. -export MOM6_OUTPUT_DIR=./MOM6_OUTPUT -export MOM6_RESTART_DIR=./RESTART/ -export MOM6_RESTART_SETTING=n -# Following not used for standalone -export USE_CICE_ALB=.false. - -export WRITE_NSFLIP=.true. - -export FV3_RUN="control_run.IN noahmp_run.IN" -export CCPP_SUITE=FV3_GFS_v17_p8 -export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_cpld.IN -export INPUT_NML=global_control.nml.IN -export V2_SFC_FILE=true - -# RRTMGP -export DO_RRTMGP=.false. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. -export DOGP_SGS_CNV=.true. - -export SATMEDMF=.true. +export FV3_RUN="noahmp_run.IN" export CPLLND=.true. export CPLLND2ATM=.true. @@ -222,6 +107,7 @@ export med_model=cmeps export atm_model=fv3 export lnd_model=noahmp export pio_rearranger=box +export samegrid_atmlnd=.true. export CPLMODE=ufs.frac export RUNTYPE=startup export READRESTART=.false. @@ -233,17 +119,21 @@ export lnd_ic_type=sfc export CALC_SNET=.false. export layout_x=3 export layout_y=8 +export OCNRES=100 export LNDRES=C96 export coupling_interval_sec=720 export snow_albedo_option=1 export precip_partition_option=4 export initial_albedo=0.2 +export WRITE_DOPOST=.false. +export OUTPUT_GRID=cubed_sphere_grid export OUTPUT_FH="1 -1" if [[ "$ATMRES" = "$LNDRES" ]]; then export lnd_input_dir="INPUT/" export mosaic_file="INPUT/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="./" else export lnd_input_dir="INPUT/${LNDRES}/" export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="INPUT/${LNDRES}/" fi -export MOM6_TOPOEDITS="" diff --git a/tests/tests/control_p8_atmlnd_sbs b/tests/tests/control_p8_atmlnd_sbs deleted file mode 100644 index 56a3a888f8..0000000000 --- a/tests/tests/control_p8_atmlnd_sbs +++ /dev/null @@ -1,247 +0,0 @@ -############################################################################### -# -# Global control test GFSv16 atmosphere-land only at C96L127, P8 configuration -# -############################################################################### - -export TEST_DESCR="Compare global control results with previous trunk version" - -export CNTL_DIR=control_p8_atmlnd_sbs - -export LIST_FILES="sfcf000.tile1.nc \ - sfcf000.tile2.nc - sfcf000.tile3.nc - sfcf000.tile4.nc - sfcf000.tile5.nc - sfcf000.tile6.nc - sfcf012.tile1.nc \ - sfcf012.tile2.nc \ - sfcf012.tile3.nc \ - sfcf012.tile4.nc \ - sfcf012.tile5.nc \ - sfcf012.tile6.nc \ - sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf000.tile1.nc \ - atmf000.tile2.nc \ - atmf000.tile3.nc \ - atmf000.tile4.nc \ - atmf000.tile5.nc \ - atmf000.tile6.nc \ - atmf012.tile1.nc \ - atmf012.tile2.nc \ - atmf012.tile3.nc \ - atmf012.tile4.nc \ - atmf012.tile5.nc \ - atmf012.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.tile6.nc \ - RESTART/20210323.060000.ca_data.tile1.nc \ - RESTART/20210323.060000.ca_data.tile2.nc \ - RESTART/20210323.060000.ca_data.tile3.nc \ - RESTART/20210323.060000.ca_data.tile4.nc \ - RESTART/20210323.060000.ca_data.tile5.nc \ - RESTART/20210323.060000.ca_data.tile6.nc \ - RESTART/20210323.060000.coupler.res \ - RESTART/20210323.060000.fv_core.res.nc \ - RESTART/20210323.060000.fv_core.res.tile1.nc \ - RESTART/20210323.060000.fv_core.res.tile2.nc \ - RESTART/20210323.060000.fv_core.res.tile3.nc \ - RESTART/20210323.060000.fv_core.res.tile4.nc \ - RESTART/20210323.060000.fv_core.res.tile5.nc \ - RESTART/20210323.060000.fv_core.res.tile6.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210323.060000.fv_tracer.res.tile1.nc \ - RESTART/20210323.060000.fv_tracer.res.tile2.nc \ - RESTART/20210323.060000.fv_tracer.res.tile3.nc \ - RESTART/20210323.060000.fv_tracer.res.tile4.nc \ - RESTART/20210323.060000.fv_tracer.res.tile5.nc \ - RESTART/20210323.060000.fv_tracer.res.tile6.nc \ - RESTART/20210323.060000.phy_data.tile1.nc \ - RESTART/20210323.060000.phy_data.tile2.nc \ - RESTART/20210323.060000.phy_data.tile3.nc \ - RESTART/20210323.060000.phy_data.tile4.nc \ - RESTART/20210323.060000.phy_data.tile5.nc \ - RESTART/20210323.060000.phy_data.tile6.nc \ - RESTART/20210323.060000.sfc_data.tile1.nc \ - RESTART/20210323.060000.sfc_data.tile2.nc \ - RESTART/20210323.060000.sfc_data.tile3.nc \ - RESTART/20210323.060000.sfc_data.tile4.nc \ - RESTART/20210323.060000.sfc_data.tile5.nc \ - RESTART/20210323.060000.sfc_data.tile6.nc \ - ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc \ - ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc \ - ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc \ - ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc \ - ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc \ - ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc \ - ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc \ - ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc \ - ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc \ - ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc \ - ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ - ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" - -export_fv3 -export_tiled -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="12 -1" -export OUTPUT_GRID='cubed_sphere_grid' -export WRITE_DOPOST=.false. -export OUTPUT_FH='0 21 24' - -export IALB=2 -export IEMS=2 -export LSM=2 -export IOPT_DVEG=4 -export IOPT_CRS=2 -export IOPT_RAD=3 -export IOPT_ALB=1 -export IOPT_STC=3 -export IOPT_SFC=3 -export IOPT_TRS=2 -export IOPT_DIAG=2 - -export D2_BG_K1=0.20 -export D2_BG_K2=0.04 -export PSM_BC=1 -export DDDMP=0.1 - -# Merra2 Aerosols & NSST -export USE_MERRA2=.true. -export IAER=1011 -export NSTF_NAME=2,1,0,0,0 - -export LHEATSTRG=.false. -export LSEASPRAY=.true. - -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - -# CA -export DO_CA=.true. -export CA_SGS=.true. -export CA_GLOBAL=.false. -export NCA=1 -export NCELLS=5 -export NLIVES=12 -export NTHRESH=18 -export NSEED=1 -export NFRACSEED=0.5 -export CA_TRIGGER=.true. -export NSPINUP=1 -export ISEED_CA=12345 - -export TILEDFIX=.true. -export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'INPUT/C96.facsf.tileX.nc'" -export FNTG3C="'INPUT/C96.substrate_temperature.tileX.nc'" -export FNVEGC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNVETC="'INPUT/C96.vegetation_type.tileX.nc'" -export FNSOTC="'INPUT/C96.soil_type.tileX.nc'" -export FNSOCC="'INPUT/C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'INPUT/C96.slope_type.tileX.nc'" -export FNABSC="'INPUT/C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - -export IMP_PHYSICS=8 -export LGFDLMPRAD=.false. -export DO_SAT_ADJ=.false. -export DNATS=0 -export DZ_MIN=6 - -#required for NML.IN sharing -export MIN_SEAICE=0.15 -export FRAC_GRID=.true. -export MOM6_OUTPUT_DIR=./MOM6_OUTPUT -export MOM6_RESTART_DIR=./RESTART/ -export MOM6_RESTART_SETTING=n -# Following not used for standalone -export USE_CICE_ALB=.false. - -export WRITE_NSFLIP=.true. - -export FV3_RUN="control_run.IN noahmp_run.IN" -export CCPP_SUITE=FV3_GFS_v17_p8 -export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_cpld.IN -export INPUT_NML=global_control.nml.IN -export V2_SFC_FILE=true - -# RRTMGP -export DO_RRTMGP=.false. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. -export DOGP_SGS_CNV=.true. - -export SATMEDMF=.true. - -export CPLLND=.true. -export CPLLND2ATM=.false. - -export UFS_CONFIGURE=ufs.configure.atm_lnd.IN -export med_model=cmeps -export atm_model=fv3 -export lnd_model=noahmp -export pio_rearranger=box -export CPLMODE=ufs.frac -export RUNTYPE=startup -export READRESTART=.false. -export CMEPS_RESTART_DIR=./RESTART/ -export cap_dbug_flag=0 -export ATM_tasks=144 -export LND_tasks=144 -export lnd_ic_type=sfc -export CALC_SNET=.false. -export layout_x=3 -export layout_y=8 -export LNDRES=C96 -export coupling_interval_sec=720 -export snow_albedo_option=1 -export precip_partition_option=4 -export initial_albedo=0.2 -export OUTPUT_FH="1 -1" -if [[ "$ATMRES" = "$LNDRES" ]]; then - export lnd_input_dir="INPUT/" - export mosaic_file="INPUT/${LNDRES}_mosaic.nc" -else - export lnd_input_dir="INPUT/${LNDRES}/" - export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" -fi -export MOM6_TOPOEDITS="" diff --git a/tests/tests/control_restart_p8_atmlnd b/tests/tests/control_restart_p8_atmlnd index a52c955dbe..1bb6b85bb9 100644 --- a/tests/tests/control_restart_p8_atmlnd +++ b/tests/tests/control_restart_p8_atmlnd @@ -4,6 +4,8 @@ # ############################################################################### +source tests/control_restart_p8 + export TEST_DESCR="Compare global control results with previous trunk version" export CNTL_DIR=control_p8_atmlnd @@ -27,130 +29,9 @@ export LIST_FILES="sfcf024.tile1.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" -export_fv3 -export_tiled -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='cubed_sphere_grid' -export WRITE_DOPOST=.false. -export FHROT=12 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( (${FHROT}+${SHOUR})*3600 )))" - -export WARM_START=.true. -export NGGPS_IC=.false. -export EXTERNAL_IC=.false. -export MAKE_NH=.false. -export MOUNTAIN=.true. -export NA_INIT=0 - -export IALB=2 -export IEMS=2 -export LSM=2 -export IOPT_DVEG=4 -export IOPT_CRS=2 -export IOPT_RAD=3 -export IOPT_ALB=1 -export IOPT_STC=3 -export IOPT_SFC=3 -export IOPT_TRS=2 -export IOPT_DIAG=2 - -export D2_BG_K1=0.20 -export D2_BG_K2=0.04 -export PSM_BC=1 -export DDDMP=0.1 - -# Merra2 Aerosols & NSST -export USE_MERRA2=.true. -export IAER=1011 -export NSTF_NAME=2,0,0,0,0 - -export LHEATSTRG=.false. -export LSEASPRAY=.true. - -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - -# CA -export DO_CA=.true. -export CA_SGS=.true. -export CA_GLOBAL=.false. -export NCA=1 -export NCELLS=5 -export NLIVES=12 -export NTHRESH=18 -export NSEED=1 -export NFRACSEED=0.5 -export CA_TRIGGER=.true. -export NSPINUP=1 -export ISEED_CA=12345 - -export TILEDFIX=.true. -export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'INPUT/C96.facsf.tileX.nc'" -export FNTG3C="'INPUT/C96.substrate_temperature.tileX.nc'" -export FNVEGC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNVETC="'INPUT/C96.vegetation_type.tileX.nc'" -export FNSOTC="'INPUT/C96.soil_type.tileX.nc'" -export FNSOCC="'INPUT/C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'INPUT/C96.slope_type.tileX.nc'" -export FNABSC="'INPUT/C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - -export IMP_PHYSICS=8 -export LGFDLMPRAD=.false. -export DO_SAT_ADJ=.false. -export DNATS=0 -export DZ_MIN=6 - -#required for NML.IN sharing -export MIN_SEAICE=0.15 -export FRAC_GRID=.true. -export MOM6_OUTPUT_DIR=./MOM6_OUTPUT -export MOM6_RESTART_DIR=./RESTART/ -export MOM6_RESTART_SETTING=n -# Following not used for standalone -export USE_CICE_ALB=.false. - -export WRITE_NSFLIP=.true. - -export FV3_RUN="control_run.IN noahmp_run.IN" -export CCPP_SUITE=FV3_GFS_v17_p8 -export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_cpld.IN -export INPUT_NML=global_control.nml.IN -export V2_SFC_FILE=true - -# RRTMGP -export DO_RRTMGP=.false. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. -export DOGP_SGS_CNV=.true. - -export SATMEDMF=.true. +export FV3_RUN="noahmp_run.IN" export CPLLND=.true. export CPLLND2ATM=.true. @@ -160,6 +41,7 @@ export med_model=cmeps export atm_model=fv3 export lnd_model=noahmp export pio_rearranger=box +export samegrid_atmlnd=.true. export CPLMODE=ufs.frac export RUNTYPE=continue export READRESTART=.true. @@ -171,17 +53,21 @@ export lnd_ic_type=sfc export CALC_SNET=.false. export layout_x=3 export layout_y=8 +export OCNRES=100 export LNDRES=C96 export coupling_interval_sec=720 export snow_albedo_option=1 export precip_partition_option=4 export initial_albedo=0.2 +export WRITE_DOPOST=.false. +export OUTPUT_GRID=cubed_sphere_grid export OUTPUT_FH="1 -1" if [[ "$ATMRES" = "$LNDRES" ]]; then export lnd_input_dir="INPUT/" export mosaic_file="INPUT/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="./" else export lnd_input_dir="INPUT/${LNDRES}/" export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="INPUT/${LNDRES}/" fi -export MOM6_TOPOEDITS="" diff --git a/tests/tests/cpld_control_p8_lnd b/tests/tests/cpld_control_p8_lnd new file mode 100644 index 0000000000..8cf35ee7f3 --- /dev/null +++ b/tests/tests/cpld_control_p8_lnd @@ -0,0 +1,104 @@ +# +# cpld_control P8 test with land component model +# + +source tests/cpld_control_p8 + +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3-NOAHMP system - C96MX100" + +export CNTL_DIR=cpld_control_p8_lnd + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 \ + ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" + +export CPLLND=.true. +export CPLLND2ATM=.true. +export UFS_CONFIGURE=ufs.configure.s2swal_fast.IN +export lnd_model=noahmp +export LND_tasks=144 +export lnd_ic_type=sfc +export CALC_SNET=.false. +export layout_x=3 +export layout_y=8 +export LNDRES=C96 +export coupling_interval_sec=720 +export snow_albedo_option=1 +export precip_partition_option=4 +export initial_albedo=0.2 +if [[ "$ATMRES" = "$LNDRES" ]]; then + export lnd_input_dir="INPUT/" + export mosaic_file="INPUT/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="./" + export samegrid_atmlnd=.true. +else + export lnd_input_dir="INPUT/${LNDRES}/" + export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="INPUT/${LNDRES}/" + export samegrid_atmlnd=.false. +fi diff --git a/tests/tests/cpld_restart_p8_lnd b/tests/tests/cpld_restart_p8_lnd new file mode 100644 index 0000000000..dd6124e36f --- /dev/null +++ b/tests/tests/cpld_restart_p8_lnd @@ -0,0 +1,94 @@ +# +# cpld_restart P8 test with land component +# + +source tests/cpld_restart_p8 + +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3-NOAHMP system - C96MX100" + +export CNTL_DIR=cpld_control_p8_lnd + +export LIST_FILES="sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 \ + ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" + +# LND warm start +export FV3_RUN="cpld_control_run.IN noahmp_run.IN" +export CPLLND=.true. +export CPLLND2ATM=.true. +export UFS_CONFIGURE=ufs.configure.s2swal_fast.IN +export lnd_model=noahmp +export LND_tasks=144 +export lnd_ic_type=sfc +export CALC_SNET=.false. +export layout_x=3 +export layout_y=8 +export LNDRES=C96 +export coupling_interval_sec=720 +export snow_albedo_option=1 +export precip_partition_option=4 +export initial_albedo=0.2 +if [[ "$ATMRES" = "$LNDRES" ]]; then + export lnd_input_dir="INPUT/" + export mosaic_file="INPUT/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="./" + export samegrid_atmlnd=.true. +else + export lnd_input_dir="INPUT/${LNDRES}/" + export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="INPUT/${LNDRES}/" + export samegrid_atmlnd=.false. +fi diff --git a/tests/tests/datm_cdeps_lm4_gswp3 b/tests/tests/datm_cdeps_lm4_gswp3 index ea57b3b5c5..0f35fa733a 100644 --- a/tests/tests/datm_cdeps_lm4_gswp3 +++ b/tests/tests/datm_cdeps_lm4_gswp3 @@ -99,6 +99,7 @@ export UFS_CONFIGURE="ufs.configure.atm_lm4.IN" export med_model="cmeps" export atm_model="datm" export lnd_model="lm4" +export samegrid_atmlnd=.false. export CPLMODE=ufs.nfrac.aoflux export RUNTYPE="startup" export READRESTART=.false. @@ -117,4 +118,4 @@ export TOPOEDITS="" export FV3_RUN="lm4_run.IN" export DIAG_TABLE="diag_table_datm_lm4" export FIELD_TABLE_ADDITIONAL=field_table_lm4 -export INPUT_NML="input_datm_lm4.nml.IN" \ No newline at end of file +export INPUT_NML="input_datm_lm4.nml.IN" diff --git a/tests/tests/datm_cdeps_lm4_gswp3_rst b/tests/tests/datm_cdeps_lm4_gswp3_rst index efa4e6fcf4..780f9dc989 100644 --- a/tests/tests/datm_cdeps_lm4_gswp3_rst +++ b/tests/tests/datm_cdeps_lm4_gswp3_rst @@ -100,6 +100,7 @@ export UFS_CONFIGURE="ufs.configure.atm_lm4.IN" export med_model="cmeps" export atm_model="datm" export lnd_model="lm4" +export samegrid_atmlnd=.false. export CPLMODE=ufs.nfrac.aoflux export RUNTYPE="continue" export READRESTART=.false. @@ -123,4 +124,4 @@ export LM4_RESTART_PREFIX=${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT}+ export FV3_RUN="lm4_run.IN" export DIAG_TABLE="diag_table_datm_lm4" export INPUT_NML="input_datm_lm4.nml.IN" -export FIELD_TABLE_ADDITIONAL=field_table_lm4 \ No newline at end of file +export FIELD_TABLE_ADDITIONAL=field_table_lm4 diff --git a/tests/tests/datm_cdeps_lnd_era5 b/tests/tests/datm_cdeps_lnd_era5 index 5e889fff1f..dcb3586256 100644 --- a/tests/tests/datm_cdeps_lnd_era5 +++ b/tests/tests/datm_cdeps_lnd_era5 @@ -38,6 +38,7 @@ export UFS_CONFIGURE=ufs.configure.atm_lnd.IN export med_model=cmeps export atm_model=datm export lnd_model=noahmp +export samegrid_atmlnd=.false. export CPLMODE=ufs.nfrac.aoflux export RUNTYPE=startup export READRESTART=.false. @@ -46,10 +47,12 @@ export ATM_compute_tasks=144 export LND_tasks=144 export lnd_ic_type='custom' export lnd_input_dir='INPUT/' +export lnd_fixed_dir='INPUT/' export CALC_SNET=.true. export layout_x=3 export layout_y=8 export LNDRES=C96 +export ATMRES=$LNDRES export mosaic_file="INPUT/${LNDRES}_mosaic.nc" export coupling_interval_sec=3600 export snow_albedo_option=2 diff --git a/tests/tests/datm_cdeps_lnd_era5_rst b/tests/tests/datm_cdeps_lnd_era5_rst index 70e6c4c5e3..4199a80a80 100644 --- a/tests/tests/datm_cdeps_lnd_era5_rst +++ b/tests/tests/datm_cdeps_lnd_era5_rst @@ -39,6 +39,7 @@ export UFS_CONFIGURE=ufs.configure.atm_lnd.IN export med_model=cmeps export atm_model=datm export lnd_model=noahmp +export samegrid_atmlnd=.false. export CPLMODE=ufs.nfrac.aoflux export RUNTYPE=continue export READRESTART=.false. @@ -47,10 +48,12 @@ export ATM_compute_tasks=144 export LND_tasks=144 export lnd_ic_type='custom' export lnd_input_dir='INPUT/' +export lnd_fixed_dir='INPUT/' export CALC_SNET=.true. export layout_x=3 export layout_y=8 export LNDRES=C96 +export ATMRES=$LNDRES export mosaic_file="INPUT/${LNDRES}_mosaic.nc" export coupling_interval_sec=3600 export snow_albedo_option=2 diff --git a/tests/tests/datm_cdeps_lnd_gswp3 b/tests/tests/datm_cdeps_lnd_gswp3 index 5905ef145a..fa4bd905d4 100644 --- a/tests/tests/datm_cdeps_lnd_gswp3 +++ b/tests/tests/datm_cdeps_lnd_gswp3 @@ -41,6 +41,7 @@ export UFS_CONFIGURE=ufs.configure.atm_lnd.IN export med_model=cmeps export atm_model=datm export lnd_model=noahmp +export samegrid_atmlnd=.false. export CPLMODE=ufs.nfrac.aoflux export RUNTYPE=startup export READRESTART=.false. @@ -50,10 +51,12 @@ export ICE_tasks=0 export LND_tasks=144 export lnd_ic_type='custom' export lnd_input_dir='INPUT/' +export lnd_fixed_dir='INPUT/' export CALC_SNET=.true. export layout_x=3 export layout_y=8 export LNDRES=C96 +export ATMRES=$LNDRES export mosaic_file="INPUT/${LNDRES}_mosaic.nc" export coupling_interval_sec=3600 export snow_albedo_option=1 @@ -61,4 +64,3 @@ export precip_partition_option=4 export initial_albedo=0.25 export TOPOEDITS="" export FV3_RUN="lnd_datm_cdeps_gswp.IN noahmp_run.IN" - From a498735b8b03a357f2f3757e00e479a52bb8ab03 Mon Sep 17 00:00:00 2001 From: Rhae Sung Kim Date: Mon, 3 Feb 2025 14:28:34 -0500 Subject: [PATCH 2/3] Updates to radiation, cloud, and land processes for improved surface temperature and radiative flux biases + Allow model_configure to provide a path for FV3ATM output #2581 + Update CICD to move label deletion to Jenkinsfile #2568 (#2548) * UFSWM - Updates to radiation, cloud, and land processes for improved surface temperature and radiative flux biases + Allow users to provide custom paths for fv3atm output. Default `./` is retained for the regression testing of the ufs-weather-model + Move CI label deletion to Jenkinsfile * FV3 - Updates to radiation, cloud, and land processes for improved surface temperature and radiative flux biases * ccpp-physics - Updates to radiation, cloud, and land processes for improved surface temperature and radiative flux biases --- .cicd/Jenkinsfile | 11 + .cicd/scripts/post_test_results.sh | 13 - FV3 | 2 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 1 + tests/fv3_conf/fv3_slurm.IN_hercules | 1 + tests/fv3_conf/fv3_slurm.IN_orion | 1 + tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_derecho.log | 564 ++++++------ tests/logs/RegressionTests_gaeac5.log | 697 ++++++++------- tests/logs/RegressionTests_gaeac6.log | 592 +++++++------ tests/logs/RegressionTests_hera.log | 802 +++++++++-------- tests/logs/RegressionTests_hercules.log | 833 +++++++++--------- tests/logs/RegressionTests_jet.log | 576 ++++++------ tests/logs/RegressionTests_orion.log | 312 ++++++- tests/logs/RegressionTests_wcoss2.log | 466 +++++----- tests/parm/model_configure.IN | 1 + tests/test_changes.list | 236 ++++- 20 files changed, 2856 insertions(+), 2356 deletions(-) diff --git a/.cicd/Jenkinsfile b/.cicd/Jenkinsfile index d271ba32fb..1b3535b644 100644 --- a/.cicd/Jenkinsfile +++ b/.cicd/Jenkinsfile @@ -123,6 +123,17 @@ def generateStage(nodeLabel) { catch(err) { echo "Error: Post Results from ${nodeLabel}" } + sh ''' + export machine=${NODE_NAME} + export CHANGE_ID=${CHANGE_ID} + GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4) + GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1) + set +x + + echo "Testing concluded...removing label ${label} for ${machine} from ${GIT_URL}" + echo "https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels /${machine}-${label}" + 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/{$machine-RT,$machine-BL} + ''' } } } diff --git a/.cicd/scripts/post_test_results.sh b/.cicd/scripts/post_test_results.sh index 26729ac123..b36aaa985b 100755 --- a/.cicd/scripts/post_test_results.sh +++ b/.cicd/scripts/post_test_results.sh @@ -41,19 +41,6 @@ function post_test() { GIT_URL=${GIT_URL:-"ufs-weather-model"} CHANGE_ID=${CHANGE_ID:-"develop"} - GIT_OWNER=$(echo ${GIT_URL} | cut -d '/' -f4) - GIT_REPO_NAME=$(echo ${GIT_URL} | cut -d '/' -f5 | cut -d '.' -f1) - -set +x - echo "GIT_URL=${GIT_URL}" - echo "CHANGE_ID=${CHANGE_ID}" - echo "GIT_OWNER=${GIT_OWNER} GIT_REPO_NAME=${GIT_REPO_NAME}" - - echo "Testing concluded...removing label ${label} for ${machine} from ${GIT_URL}" - echo "https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels /${machine}-${label}" - 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/${machine}-${label} -set -x - git config user.email "ecc.platform@noaa.gov" git config user.name "epic-cicd-jenkins" diff --git a/FV3 b/FV3 index c2eb454e3a..2c902a670e 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c2eb454e3a4a31762f3f2d4c020fa017eea0a867 +Subproject commit 2c902a670e89416ef49254c827e8ba45a68ce596 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 71c4859734..1c474b70e7 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20250122 +export BL_DATE=20250129 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index fded44ea40..d4394b26de 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -566,6 +566,7 @@ export OUTPUT_HISTORY=.true. export HISTORY_FILE_ON_NATIVE_GRID=.false. export WRITE_DOPOST=.false. export NUM_FILES=2 +export FV3ATM_OUTPUT_DIR="./" export FILENAME_BASE="'atm' 'sfc'" export OUTPUT_GRID="'cubed_sphere_grid'" export OUTPUT_FILE="'netcdf'" diff --git a/tests/fv3_conf/fv3_slurm.IN_hercules b/tests/fv3_conf/fv3_slurm.IN_hercules index c474cea31a..758a4cd6c7 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hercules +++ b/tests/fv3_conf/fv3_slurm.IN_hercules @@ -44,6 +44,7 @@ elif [[ @[RT_COMPILER] == gnu ]]; then export MV2_HOMOGENEOUS_CLUSTER=1 export MV2_USE_ALIGNED_ALLOC=1 fi +export FI_MLX_INJECT_LIMIT=0 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion index 6221286a5f..5f67dd2550 100644 --- a/tests/fv3_conf/fv3_slurm.IN_orion +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -35,6 +35,7 @@ export OMP_NUM_THREADS=@[THRD] #export PSM_SHAREDCONTEXTS=1 export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +export FI_MLX_INJECT_LIMIT=0 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 2064956ca1..cae1c451c1 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Jan 24 02:31:13 UTC 2025 +Sat Feb 1 18:53:28 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 261.209374 - 0: The maximum resident set size (KB) = 1444280 + 0: The total amount of wall time = 270.057953 + 0: The maximum resident set size (KB) = 1439264 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/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 = 898.596863 - 0: The maximum resident set size (KB) = 1423760 + 0: The total amount of wall time = 884.936167 + 0: The maximum resident set size (KB) = 1415620 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/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 = 230.932286 - 0: The maximum resident set size (KB) = 1426492 + 0: The total amount of wall time = 239.687656 + 0: The maximum resident set size (KB) = 1408888 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/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 = 237.659021 - 0: The maximum resident set size (KB) = 1420064 + 0: The total amount of wall time = 237.302738 + 0: The maximum resident set size (KB) = 1408804 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/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.966055 - 0: The maximum resident set size (KB) = 1422512 + 0: The total amount of wall time = 238.639967 + 0: The maximum resident set size (KB) = 1419344 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/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 = 233.819689 - 0: The maximum resident set size (KB) = 1414824 + 0: The total amount of wall time = 305.316349 + 0: The maximum resident set size (KB) = 1404484 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1945597/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/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 = 231.400420 - 0: The maximum resident set size (KB) = 1424780 + 0: The total amount of wall time = 236.184426 + 0: The maximum resident set size (KB) = 1418260 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jan 24 03:42:57 UTC 2025 -Elapsed time: 01h:11m:45s. Have a nice day! +Sat Feb 1 20:08:14 UTC 2025 +Elapsed time: 01h:14m:46s. 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 46b6a936e8..e04f29be22 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Fri Jan 24 00:53:56 UTC 2025 +Sat Feb 1 17:16:08 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1633720/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2893054/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 = 2476.263104 - 0: The maximum resident set size (KB) = 1491168 + 0: The total amount of wall time = 2469.378750 + 0: The maximum resident set size (KB) = 1490884 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1633720/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2893054/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 = 662.263266 - 0: The maximum resident set size (KB) = 1495952 + 0: The total amount of wall time = 826.839054 + 0: The maximum resident set size (KB) = 1478812 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1633720/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2893054/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 = 666.677233 - 0: The maximum resident set size (KB) = 1493700 + 0: The total amount of wall time = 693.772947 + 0: The maximum resident set size (KB) = 1477892 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jan 24 02:31:12 UTC 2025 -Elapsed time: 01h:37m:16s. Have a nice day! +Sat Feb 1 18:53:27 UTC 2025 +Elapsed time: 01h:37m:20s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index d10b0466a1..be42038784 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Jan 23 22:11:22 UTC 2025 +Sat Feb 1 14:39:08 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_905248/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1765652/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 = 1400.218854 - 0: The maximum resident set size (KB) = 768752 + 0: The total amount of wall time = 1396.470249 + 0: The maximum resident set size (KB) = 758488 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_905248/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1765652/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 = 2207.914111 - 0: The maximum resident set size (KB) = 724580 + 0: The total amount of wall time = 2218.897881 + 0: The maximum resident set size (KB) = 688420 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_905248/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1765652/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 = 2203.715305 - 0: The maximum resident set size (KB) = 714620 + 0: The total amount of wall time = 2232.343734 + 0: The maximum resident set size (KB) = 709996 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_905248/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1765652/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 = 2202.404532 - 0: The maximum resident set size (KB) = 724172 + 0: The total amount of wall time = 2244.704154 + 0: The maximum resident set size (KB) = 687828 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jan 24 00:56:07 UTC 2025 -Elapsed time: 02h:44m:46s. Have a nice day! +Sat Feb 1 17:16:07 UTC 2025 +Elapsed time: 02h:36m:59s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 056f915d19..17ca79975c 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -0fc9036195cc178e1d4938163575ebb6cade49d2 +692fa94443d70a890d1771aba742f93963fdecbb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) + 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) + 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -26,7 +26,7 @@ Submodule hashes used in testing: 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,290 +38,290 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20250122 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_96797 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_64072 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [24:38, 22:06] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:27, 06:26](3206 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:36, 23:49] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:12, 13:56](1916 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:37, 15:12](1957 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:18, 07:07](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:56, 15:56](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:35, 23:51] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:32, 13:52](1914 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:29, 11:45] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:01, 23:57](1946 MB) - -PASS -- COMPILE 's2swa_intel' [24:38, 22:17] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:50, 08:09](3229 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:50, 08:10](3235 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:15, 04:47](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:37, 08:00](3254 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:29, 04:44](3179 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:41, 13:43](3805 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:30, 08:05](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:22, 06:27](3536 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:52, 08:04](3234 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:43, 09:15](3814 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 06:30](3621 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [26:46, 10:44](4546 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:08, 06:53](4672 MB) - -PASS -- COMPILE 's2swal_intel' [24:38, 22:28] ( 6 warnings 12 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [12:49, 08:20](3230 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:32, 04:56](3160 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:19, 07:58](3205 MB) - -PASS -- COMPILE 's2sw_intel' [22:35, 20:23] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 04:56](1925 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:01, 06:56](1984 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:28, 11:43] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:47, 12:46](3300 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:28, 11:21] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:33, 05:56](1954 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:26, 16:23] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:35, 04:58](1989 MB) - -PASS -- COMPILE 's2s_intel' [19:27, 17:37] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:04, 05:45](2882 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:05, 02:07](2894 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:05, 01:20](2309 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:27, 24:40] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:17, 08:08](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:26, 22:37] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:17, 13:54](1930 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:10, 07:10](1106 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:46, 15:49](1892 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:27, 11:33] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:31, 25:11](1964 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:19, 14:39] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:48, 03:23](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 02:08](1560 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:28, 02:11](1568 MB) -PASS -- TEST 'control_latlon_intel' [05:16, 02:07](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:19, 02:08](1561 MB) -PASS -- TEST 'control_c48_intel' [09:22, 05:45](1588 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:44, 05:17](708 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:21, 05:42](1589 MB) -PASS -- TEST 'control_c192_intel' [09:48, 06:05](1694 MB) -PASS -- TEST 'control_c384_intel' [14:17, 06:52](1974 MB) -PASS -- TEST 'control_c384gdas_intel' [17:30, 07:39](1173 MB) -PASS -- TEST 'control_stochy_intel' [03:44, 01:25](622 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:44, 00:51](433 MB) -PASS -- TEST 'control_lndp_intel' [03:48, 01:26](621 MB) -PASS -- TEST 'control_iovr4_intel' [04:52, 02:06](616 MB) -PASS -- TEST 'control_iovr5_intel' [04:52, 02:06](617 MB) -PASS -- TEST 'control_p8_intel' [06:39, 03:00](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:27, 03:07](1852 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:26, 02:59](1856 MB) -PASS -- TEST 'control_restart_p8_intel' [05:24, 01:56](1010 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:42, 03:01](1850 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:19, 02:01](1013 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:27, 03:00](1847 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:17, 04:37](1936 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:21, 04:41](1859 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:34, 03:50](1913 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:27, 03:04](1867 MB) -PASS -- TEST 'merra2_thompson_intel' [06:14, 03:17](1854 MB) -PASS -- TEST 'regional_control_intel' [07:57, 04:46](900 MB) -PASS -- TEST 'regional_restart_intel' [06:04, 02:52](880 MB) -PASS -- TEST 'regional_decomp_intel' [07:57, 04:59](902 MB) -PASS -- TEST 'regional_noquilt_intel' [06:58, 04:42](1218 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:59, 04:42](894 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:01, 04:47](894 MB) -PASS -- TEST 'regional_wofs_intel' [08:58, 05:50](1589 MB) - -PASS -- COMPILE 'rrfs_intel' [15:17, 13:00] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:09, 06:06](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:26, 03:52](1166 MB) -PASS -- TEST 'rap_decomp_intel' [09:11, 06:26](1007 MB) -PASS -- TEST 'rap_2threads_intel' [14:10, 11:28](1087 MB) -PASS -- TEST 'rap_restart_intel' [06:09, 03:13](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:01, 06:05](1006 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:57, 06:21](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:23, 04:36](883 MB) -PASS -- TEST 'hrrr_control_intel' [06:06, 03:12](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:07, 03:16](998 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:16, 05:42](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:38, 01:45](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:05, 05:58](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:33, 08:02](1954 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:33, 07:46](1947 MB) - -PASS -- COMPILE 'csawmg_intel' [14:17, 11:55] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:52, 06:25](958 MB) -PASS -- TEST 'control_ras_intel' [06:33, 02:52](654 MB) - -PASS -- COMPILE 'wam_intel' [14:17, 11:47] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:49, 10:13](1654 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:28, 12:08] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:22, 03:08](1863 MB) -PASS -- TEST 'regional_control_faster_intel' [06:59, 04:33](901 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:23, 14:33] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:06, 02:15](1606 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:15, 02:13](1607 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:40, 02:52](813 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:31, 02:35](809 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:03, 04:29](1117 MB) -PASS -- TEST 'control_ras_debug_intel' [04:41, 02:41](816 MB) -PASS -- TEST 'control_diag_debug_intel' [05:15, 02:36](1671 MB) -PASS -- TEST 'control_debug_p8_intel' [06:14, 02:58](1900 MB) -PASS -- TEST 'regional_debug_intel' [20:06, 16:43](925 MB) -PASS -- TEST 'rap_control_debug_intel' [07:39, 04:49](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:37, 04:39](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:42, 04:54](1190 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 04:58](1193 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:38, 04:39](1189 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:52, 04:53](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:38, 04:43](1191 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:42, 04:48](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:42, 04:46](1190 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 04:44](1188 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:38, 04:33](1186 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:41, 04:39](1188 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:32, 07:29](1187 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:44, 04:35](1186 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 04:42](1191 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:25, 04:47](1193 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:03, 07:58](1197 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:15, 07:16] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:20, 12:04](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:19, 11:37] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:48, 03:48](1031 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 05:09](879 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:01, 02:44](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:08, 09:34](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:55, 04:57](930 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 02:55](874 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:19, 03:54](790 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 01:31](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:20, 11:30] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:27, 01:47](1081 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:23, 01:15](1080 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:11, 01:06](962 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:18, 11:44] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:56, 03:38](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:17, 07:40] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 04:32](1067 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 04:31](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [17:06, 12:39](1148 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 12:43](832 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:35, 13:42](1154 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:32, 13:10](1216 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:17, 07:24] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:43, 04:32](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [20:25, 18:04] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:45, 04:30](701 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:12, 05:03](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:50, 06:23](766 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:37, 10:31](776 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:05, 11:39](800 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:18, 04:37](472 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:32, 05:41](489 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:59, 02:17](388 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:24, 06:06](447 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:09, 03:16](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:06, 03:04](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:15, 03:50](581 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:32, 01:11](424 MB) -PASS -- TEST 'gnv1_nested_intel' [10:16, 03:59](1701 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:19, 08:49] ( 1470 warnings 1424 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:22, 12:29](626 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:22, 17:20] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:22, 06:51](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:31, 06:54](684 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:16, 19:14] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:28, 05:18](666 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:14, 16:17] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:34, 05:40](733 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:22, 05:42](724 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:14, 16:11](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:13, 08:34] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:36, 02:30](769 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:45, 01:32](757 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:32, 02:23](650 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:31, 02:26](652 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:26, 02:27](649 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:35, 02:30](771 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:39, 02:32](771 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:22, 02:23](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:48, 05:41](702 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:53, 05:41](683 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:30, 02:32](771 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:35, 03:55](2041 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 03:54](2039 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:20, 05:52] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:28, 05:09](753 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:20, 08:32] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:36, 02:30](770 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:12, 02:43] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:08](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:03](455 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:30, 00:40](453 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:18, 13:40] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:36, 03:50](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:15, 12:44] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:28, 04:51](1910 MB) - -PASS -- COMPILE 'atml_intel' [17:19, 15:20] ( 14 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [09:39, 05:55](1878 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 03:19](1034 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:24, 11:01] ( 892 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:37, 05:32](1916 MB) - -PASS -- COMPILE 'atmw_intel' [16:20, 14:15] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:28, 02:23](1873 MB) - -PASS -- COMPILE 'atmaero_intel' [15:23, 13:04] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:37, 04:07](3128 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:37, 04:15](3003 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:19, 04:21](3016 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:15, 08:02] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:35, 21:48](4550 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:25, 11:25] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:42, 08:02](847 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:27, 21:33] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:11, 06:22](3212 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:32, 23:14] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:46, 14:21](1912 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:15, 15:08](1945 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:10, 07:09](1076 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:56, 16:05](1882 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:28, 23:13] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [27:16, 13:50](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:27, 11:46] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:35, 23:39](1938 MB) + +PASS -- COMPILE 's2swa_intel' [23:31, 21:39] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:09, 08:15](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:22, 08:06](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [20:20, 04:41](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:56, 08:28](3251 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [20:22, 04:51](3182 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:01, 14:07](3807 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:56, 08:00](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:50, 06:44](3535 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:10, 08:20](3234 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:20, 09:17](3820 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [21:59, 06:38](3620 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [32:45, 10:46](4544 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:03, 07:00](4677 MB) + +PASS -- COMPILE 's2swal_intel' [24:33, 22:07] ( 6 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [18:01, 08:13](3232 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [13:07, 05:03](3158 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [16:44, 08:04](3209 MB) + +PASS -- COMPILE 's2sw_intel' [21:31, 19:57] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:24, 04:20](1925 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:41, 06:43](1978 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:18, 11:38] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:48, 12:52](3304 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:27, 11:03] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:21, 05:59](1955 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:28, 16:10] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:44, 04:26](1981 MB) + +PASS -- COMPILE 's2s_intel' [18:15, 16:37] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [20:04, 05:41](2886 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [14:03, 02:04](2902 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:59, 01:23](2290 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:17, 23:49] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:01, 08:00](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:17, 21:46] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:53, 14:08](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:58, 07:16](1106 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:50, 16:10](1903 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:23, 11:10] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:41, 25:22](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:20, 14:16] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [12:31, 03:26](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [10:58, 02:09](1562 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:22, 02:08](1565 MB) +PASS -- TEST 'control_latlon_intel' [05:04, 02:05](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:06, 02:07](1567 MB) +PASS -- TEST 'control_c48_intel' [08:02, 05:39](1591 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:41, 05:16](708 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:09, 05:41](1589 MB) +PASS -- TEST 'control_c192_intel' [09:37, 06:05](1695 MB) +PASS -- TEST 'control_c384_intel' [12:41, 06:46](1974 MB) +PASS -- TEST 'control_c384gdas_intel' [14:41, 07:05](1172 MB) +PASS -- TEST 'control_stochy_intel' [03:32, 01:23](622 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:37, 00:52](432 MB) +PASS -- TEST 'control_lndp_intel' [03:35, 01:19](621 MB) +PASS -- TEST 'control_iovr4_intel' [04:37, 02:04](617 MB) +PASS -- TEST 'control_iovr5_intel' [04:41, 02:04](617 MB) +PASS -- TEST 'control_p8_intel' [06:37, 03:02](1854 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:26, 03:08](1856 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:22, 03:05](1864 MB) +PASS -- TEST 'control_restart_p8_intel' [05:16, 02:01](1010 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:23, 03:02](1849 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:15, 01:54](1022 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:18, 03:12](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:24, 04:40](1941 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:12, 04:46](1856 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:24, 04:11](1910 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:30, 03:20](1860 MB) +PASS -- TEST 'merra2_thompson_intel' [08:22, 03:35](1851 MB) +PASS -- TEST 'regional_control_intel' [08:01, 04:48](902 MB) +PASS -- TEST 'regional_restart_intel' [05:55, 02:51](878 MB) +PASS -- TEST 'regional_decomp_intel' [08:02, 04:56](903 MB) +PASS -- TEST 'regional_noquilt_intel' [06:59, 04:31](1223 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:57, 04:40](901 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:49, 04:43](895 MB) +PASS -- TEST 'regional_wofs_intel' [08:58, 05:52](1590 MB) + +PASS -- COMPILE 'rrfs_intel' [14:24, 12:49] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [19:23, 06:08](1007 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:07, 03:46](1162 MB) +PASS -- TEST 'rap_decomp_intel' [19:23, 06:23](1007 MB) +PASS -- TEST 'rap_2threads_intel' [24:26, 11:31](1096 MB) +PASS -- TEST 'rap_restart_intel' [06:11, 03:12](885 MB) +PASS -- TEST 'rap_sfcdiff_intel' [18:26, 06:05](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [19:27, 06:22](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 04:34](882 MB) +PASS -- TEST 'hrrr_control_intel' [16:14, 03:13](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [16:14, 03:17](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [18:24, 05:44](1074 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:42, 01:44](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [18:22, 05:59](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [20:44, 08:08](1956 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:50, 07:45](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [13:19, 11:46] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [20:06, 06:33](961 MB) +PASS -- TEST 'control_ras_intel' [15:40, 02:52](653 MB) + +PASS -- COMPILE 'wam_intel' [13:17, 11:37] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [22:14, 10:15](1647 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:16, 12:05] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:14, 03:03](1865 MB) +PASS -- TEST 'regional_control_faster_intel' [06:50, 04:29](892 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [22:21, 14:32] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:59, 02:16](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:10, 02:11](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:31, 02:49](810 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:31, 02:39](811 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:03, 04:42](1114 MB) +PASS -- TEST 'control_ras_debug_intel' [05:37, 02:39](814 MB) +PASS -- TEST 'control_diag_debug_intel' [05:19, 02:35](1666 MB) +PASS -- TEST 'control_debug_p8_intel' [06:03, 03:07](1904 MB) +PASS -- TEST 'regional_debug_intel' [19:53, 16:53](921 MB) +PASS -- TEST 'rap_control_debug_intel' [06:36, 04:39](1194 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:31, 04:35](1184 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:28, 04:47](1187 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 04:41](1188 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:36, 04:49](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:38, 04:54](1273 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:38, 04:54](1192 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:36, 04:45](1197 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:35, 04:42](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:36, 04:45](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:33, 04:37](1187 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:39, 04:49](1190 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:36](1188 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:38, 04:44](1183 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:43, 04:41](1195 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:37, 04:39](1189 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:17, 08:11](1196 MB) + +PASS -- COMPILE 'wam_debug_intel' [17:14, 07:04] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:08, 12:15](1684 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:21, 11:26] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:15, 03:26](1038 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:08, 05:06](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:03, 02:43](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:59, 09:31](930 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:07, 04:54](927 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 02:52](873 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:58, 03:53](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:34, 01:31](774 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:22, 11:22] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:29, 01:47](1076 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:18, 01:16](1079 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:21, 01:05](964 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:21, 11:37] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:58, 03:37](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [19:22, 07:27] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:35, 04:29](1066 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 04:22](1064 MB) +PASS -- TEST 'conus13km_debug_intel' [15:18, 12:36](1146 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:17, 12:45](833 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:23, 13:38](1148 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:15, 12:47](1213 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [19:21, 07:11] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 04:41](1093 MB) + +PASS -- COMPILE 'hafsw_intel' [29:23, 17:45] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:35, 04:28](703 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:52, 05:02](1067 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:45, 06:23](765 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:32, 10:38](775 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:01, 11:38](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:09, 04:38](470 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:33, 05:41](486 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:53, 02:15](386 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:46, 06:05](461 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:59, 03:16](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:16, 03:04](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:12, 03:45](582 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:37, 01:10](424 MB) +PASS -- TEST 'gnv1_nested_intel' [12:21, 03:56](1703 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [18:19, 08:34] ( 1470 warnings 1424 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:18, 12:25](624 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:20, 17:14] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:29, 06:48](620 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:24, 06:55](684 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:20, 18:50] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:04, 05:19](666 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:16, 15:54] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:21, 05:36](733 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:23, 05:38](723 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:15, 16:07](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:14, 08:30] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:31, 02:29](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:30, 01:30](757 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:22, 02:21](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:25, 02:24](649 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:34, 02:25](650 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:36, 02:30](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:26, 02:30](757 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:35, 02:24](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:44, 05:40](699 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:09, 05:39](682 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:26, 02:29](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:33, 03:53](2040 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:30, 03:52](2038 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:13, 05:45] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:27, 05:08](752 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:14, 08:27] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 02:30](770 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:13, 02:37] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:41, 01:04](304 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:33, 00:59](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:36, 00:43](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:16, 13:45] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:27, 03:48](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:14, 12:43] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:27, 05:07](1898 MB) + +PASS -- COMPILE 'atml_intel' [17:23, 15:08] ( 14 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [09:47, 06:07](1883 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:55, 03:42](1036 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:14, 10:50] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:30, 05:33](1922 MB) + +PASS -- COMPILE 'atmw_intel' [16:21, 14:02] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:23, 02:27](1877 MB) + +PASS -- COMPILE 'atmaero_intel' [15:15, 12:50] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:24, 04:14](3131 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:45, 04:17](3007 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:21, 04:21](3013 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:16, 07:55] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:26, 21:39](4549 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:14, 11:21] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:34, 08:02](844 MB) SYNOPSIS: -Starting Date/Time: 20250123 14:07:05 -Ending Date/Time: 20250123 15:58:57 -Total Time: 01h:52m:53s +Starting Date/Time: 20250130 06:35:10 +Ending Date/Time: 20250130 08:37:20 +Total Time: 02h:03m:11s Compiles Completed: 43/43 Tests Completed: 187/187 diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log index 89ca4d69b2..97d6b818cc 100644 --- a/tests/logs/RegressionTests_gaeac5.log +++ b/tests/logs/RegressionTests_gaeac5.log @@ -1,7 +1,7 @@ ====START OF GAEAC5 REGRESSION TESTING LOG==== UFSWM hash used in testing: -7f24a0021dcc8bf882d8abb1e8df76d52db41a0e +692fa94443d70a890d1771aba742f93963fdecbb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) + 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) + 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -26,7 +26,7 @@ Submodule hashes used in testing: 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,310 +38,407 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20250122 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2395802 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_828013 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:19, 20:46] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:15, 10:28](3182 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:25, 28:54] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [45:35, 16:57](1897 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:55, 17:49](1940 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:05, 09:37](1075 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:36, 19:17](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:22, 23:52] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [37:27, 16:35](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:18, 16:28] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:22, 27:48](1933 MB) - -PASS -- COMPILE 's2swa_intel' [24:22, 22:54] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [33:19, 10:19](3214 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:48, 12:21](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:06, 06:08](3142 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [32:13, 10:18](3235 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:16, 08:23](3162 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [32:04, 12:44](3444 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [32:04, 10:10](3208 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [33:03, 10:54](3158 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:10, 12:14](3214 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [32:40, 10:30](3493 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:37, 07:36](3601 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [51:16, 14:39](4280 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:46, 10:50](4361 MB) - -PASS -- COMPILE 's2swal_intel' [26:23, 24:36] ( 6 warnings 12 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [43:25, 10:03](3223 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:18, 08:28](3146 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [33:40, 12:09](3195 MB) - -PASS -- COMPILE 's2sw_intel' [21:19, 19:38] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:20, 07:14](1917 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:20, 09:44](1981 MB) - -PASS -- COMPILE 's2swa_debug_intel' [19:18, 17:38] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [20:09, 16:24](3267 MB) - -PASS -- COMPILE 's2sw_debug_intel' [15:15, 13:16] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:52, 08:24](1936 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:18, 17:27] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:26, 05:50](1965 MB) - -PASS -- COMPILE 's2s_intel' [19:14, 17:42] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:58, 07:44](2870 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [28:02, 03:52](2883 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:39, 03:11](2295 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:16, 21:44] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [29:34, 12:06](3217 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:16, 21:04] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:28, 15:25](1925 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:52, 09:30](1089 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:12, 19:30](1897 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:14, 14:33] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [53:20, 29:49](1941 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:13, 16:03] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [25:34, 06:00](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [23:10, 03:09](1551 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:04, 05:14](1563 MB) -PASS -- TEST 'control_latlon_intel' [25:01, 05:14](1555 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:12, 05:21](1555 MB) -PASS -- TEST 'control_c48_intel' [28:25, 08:16](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [27:54, 07:49](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [26:26, 06:16](1572 MB) -PASS -- TEST 'control_c192_intel' [30:06, 09:37](1683 MB) -PASS -- TEST 'control_c384_intel' [34:29, 14:22](1968 MB) -PASS -- TEST 'control_c384gdas_intel' [38:13, 16:51](1168 MB) -PASS -- TEST 'control_stochy_intel' [23:11, 04:20](609 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:55, 00:59](417 MB) -PASS -- TEST 'control_lndp_intel' [12:24, 04:14](608 MB) -PASS -- TEST 'control_iovr4_intel' [08:23, 05:08](607 MB) -PASS -- TEST 'control_iovr5_intel' [07:23, 04:43](605 MB) -PASS -- TEST 'control_p8_intel' [08:36, 05:32](1848 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:38, 05:47](1854 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:53, 03:34](1840 MB) -PASS -- TEST 'control_restart_p8_intel' [07:50, 04:14](996 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:57, 05:12](1844 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:34, 03:49](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:32, 05:15](1845 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:33, 05:41](1927 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:14, 05:04](1851 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:44, 06:15](1894 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:42, 03:16](1847 MB) -PASS -- TEST 'merra2_thompson_intel' [09:39, 06:10](1843 MB) -PASS -- TEST 'regional_control_intel' [09:16, 06:51](883 MB) -PASS -- TEST 'regional_restart_intel' [05:10, 02:33](862 MB) -PASS -- TEST 'regional_decomp_intel' [10:16, 06:58](876 MB) -PASS -- TEST 'regional_2threads_intel' [09:08, 05:53](1006 MB) -PASS -- TEST 'regional_noquilt_intel' [09:11, 06:45](1203 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:15, 06:55](877 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:07, 06:50](877 MB) -PASS -- TEST 'regional_wofs_intel' [10:55, 08:31](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [16:16, 15:04] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:34, 09:22](986 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:55, 06:30](1167 MB) -PASS -- TEST 'rap_decomp_intel' [10:50, 07:42](991 MB) -PASS -- TEST 'rap_2threads_intel' [13:40, 10:27](1065 MB) -PASS -- TEST 'rap_restart_intel' [09:31, 06:01](871 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:36, 09:21](986 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:46, 09:13](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:55, 05:31](874 MB) -PASS -- TEST 'hrrr_control_intel' [09:36, 06:17](987 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:36, 06:22](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:47, 04:02](1058 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:09, 02:30](819 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:32, 09:13](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:09, 11:20](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:12, 11:01](1932 MB) - -PASS -- COMPILE 'csawmg_intel' [16:14, 14:13] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:11, 07:11](941 MB) -PASS -- TEST 'control_ras_intel' [05:50, 03:59](642 MB) - -PASS -- COMPILE 'wam_intel' [16:14, 14:44] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [17:38, 14:00](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 15:11] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:44, 05:38](1851 MB) -PASS -- TEST 'regional_control_faster_intel' [09:02, 06:42](877 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:14, 15:29] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:23, 03:18](1583 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:18, 03:11](1585 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:05, 05:20](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:03, 05:28](783 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:57, 06:56](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [07:57, 05:24](789 MB) -PASS -- TEST 'control_diag_debug_intel' [08:13, 05:11](1633 MB) -PASS -- TEST 'control_debug_p8_intel' [08:19, 05:27](1872 MB) -PASS -- TEST 'regional_debug_intel' [21:12, 18:42](891 MB) -PASS -- TEST 'rap_control_debug_intel' [09:55, 07:14](1161 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:01, 07:29](1159 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:00, 07:35](1161 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:57, 05:45](1159 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:03, 07:36](1169 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:04, 07:32](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:10, 05:47](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:06, 07:22](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:02, 07:38](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:59, 07:44](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:07, 07:32](1163 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:19, 07:38](1158 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:09, 10:12](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:03, 07:34](1157 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:04, 07:40](1163 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:10, 07:40](1169 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:28, 11:16](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:13, 11:13] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:37, 15:51](1662 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:14, 13:49] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:32, 04:23](1042 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:44, 06:39](866 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:22, 04:02](865 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:46, 09:36](915 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:25, 04:17](913 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:39, 06:08](862 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:24, 04:48](782 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:05, 02:20](755 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:13, 14:14] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:37, 04:11](1078 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:25, 03:37](1067 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:36, 03:53](951 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:13, 14:01] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:45, 06:50](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:15, 10:43] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:00, 07:27](1041 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:09, 07:23](1040 MB) -PASS -- TEST 'conus13km_debug_intel' [18:29, 15:41](1128 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:53, 14:36](800 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:43, 13:54](1116 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:28, 16:06](1196 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:14, 11:10] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:59, 05:34](1069 MB) - -PASS -- COMPILE 'hafsw_intel' [20:15, 19:05] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:35, 07:34](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:06, 04:58](1076 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:08, 10:10](745 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:43, 12:05](773 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:09, 15:12](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:41, 07:50](467 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:01, 09:07](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:53, 05:17](397 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:55, 09:59](488 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:34, 06:13](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:40, 04:06](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:28, 05:11](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:11, 02:09](426 MB) -PASS -- TEST 'gnv1_nested_intel' [11:29, 07:37](1700 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:14, 13:26] ( 1470 warnings 1424 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:43, 13:27](612 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:16, 17:31] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:29, 10:12](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:48, 10:11](809 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:17, 17:57] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:41, 08:28](805 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:14, 17:46] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:37, 08:24](741 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:36, 08:51](723 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:54, 22:16](890 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:15, 13:50] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:00, 02:38](754 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:03, 03:50](752 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:51, 04:39](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:19, 04:41](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:08, 02:33](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:47, 04:45](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:52, 04:50](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:14, 04:39](640 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:47, 06:52](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:50, 08:40](679 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:52, 04:48](752 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:02, 06:48](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:48, 06:48](2033 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [11:13, 09:43] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:05, 05:28](750 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [17:14, 15:24] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:16, 04:50](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [10:13, 08:48] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:19, 04:13](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:13, 03:50](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:38, 03:24](460 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [11:12, 09:17] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [05:45, 02:39](450 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [06:31, 02:27](251 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:13, 16:55] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:02, 06:24](1911 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [18:15, 16:30] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:38, 07:45](1899 MB) - -PASS -- COMPILE 'atml_intel' [18:15, 17:07] ( 14 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [12:56, 08:41](1875 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:49, 05:56](1009 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:15, 13:05] ( 892 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:26, 07:59](1906 MB) - -PASS -- COMPILE 'atmw_intel' [17:13, 15:33] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:52, 04:41](1877 MB) - -PASS -- COMPILE 'atmaero_intel' [17:14, 15:37] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:04, 08:40](3098 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [12:53, 09:28](2987 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:43, 09:20](2996 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:15, 11:06] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:09, 18:51](4443 MB) - -PASS -- COMPILE 'atm_fbh_intel' [16:15, 14:14] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:22, 11:41](825 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [25:17, 23:21] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [21:07, 17:33](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [16:14, 14:54] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [30:56, 27:12](1929 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [24:15, 22:48] -PASS -- TEST 'cpld_control_sfs_intelllvm' [17:16, 14:55](1897 MB) - -PASS -- COMPILE 's2swa_intelllvm' [23:14, 21:32] -PASS -- TEST 'cpld_control_p8_intelllvm' [16:15, 12:18](3218 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:19, 18:55] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:18, 10:42](3182 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:20, 23:19] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:39, 15:36](1901 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:47, 16:06](1942 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:41, 07:42](1074 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:27, 17:36](1877 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:20, 23:25] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:52, 17:01](1898 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:18, 13:19] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:19, 25:12](1924 MB) + +PASS -- COMPILE 's2swa_intel' [21:19, 19:44] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:36, 12:44](3215 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:34, 12:42](3212 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:10, 08:06](3137 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:29, 12:42](3239 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:16, 08:04](3164 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:21, 12:48](3442 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:21, 11:57](3213 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:22, 09:04](3158 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:34, 12:38](3215 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:20, 12:41](3490 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:58, 09:41](3596 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:17, 12:53](4267 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:02, 10:37](4364 MB) + +PASS -- COMPILE 's2swal_intel' [20:19, 18:58] ( 6 warnings 12 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_lnd_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:57, 12:07](3195 MB) + +PASS -- COMPILE 's2sw_intel' [19:19, 18:07] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:34, 07:16](1914 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:19, 09:45](1980 MB) + +PASS -- COMPILE 's2swa_debug_intel' [15:18, 13:31] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:17, 14:06](3267 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:17, 11:56] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:16, 05:54](1941 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:18, 15:42] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:50, 07:18](1978 MB) + +PASS -- COMPILE 's2s_intel' [17:13, 15:31] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:02, 07:41](2877 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:26, 01:41](2884 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:50, 03:07](2297 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:16, 21:18] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:09, 10:33](3217 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:14, 21:07] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:31, 15:32](1925 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:59, 07:47](1102 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:00, 20:02](1889 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:12, 12:59] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:01, 29:36](1942 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:14, 16:31] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [08:21, 05:46](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:59, 04:50](1548 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:29, 05:12](1562 MB) +PASS -- TEST 'control_latlon_intel' [07:33, 04:46](1558 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:34, 03:40](1557 MB) +PASS -- TEST 'control_c48_intel' [11:49, 08:21](1572 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:34, 05:42](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:39, 08:15](1572 MB) +PASS -- TEST 'control_c192_intel' [12:23, 09:29](1682 MB) +PASS -- TEST 'control_c384_intel' [19:43, 16:00](1970 MB) +PASS -- TEST 'control_c384gdas_intel' [21:19, 16:59](1169 MB) +PASS -- TEST 'control_stochy_intel' [06:52, 04:16](608 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:52, 01:36](415 MB) +PASS -- TEST 'control_lndp_intel' [06:56, 03:53](610 MB) +PASS -- TEST 'control_iovr4_intel' [04:53, 02:29](606 MB) +PASS -- TEST 'control_iovr5_intel' [05:08, 02:28](604 MB) +PASS -- TEST 'control_p8_intel' [08:30, 05:24](1852 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:04, 05:15](1853 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:30, 05:20](1852 MB) +PASS -- TEST 'control_restart_p8_intel' [06:15, 02:11](1001 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:28, 03:31](1841 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:38, 03:43](1003 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:47, 05:32](1842 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:27, 05:17](1920 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:11, 05:22](1845 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:30, 06:28](1897 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:28, 05:39](1853 MB) +PASS -- TEST 'merra2_thompson_intel' [08:24, 05:32](1842 MB) +PASS -- TEST 'regional_control_intel' [07:11, 04:48](875 MB) +PASS -- TEST 'regional_restart_intel' [05:00, 02:33](859 MB) +PASS -- TEST 'regional_decomp_intel' [10:35, 06:56](876 MB) +PASS -- TEST 'regional_2threads_intel' [07:03, 04:13](1003 MB) +PASS -- TEST 'regional_noquilt_intel' [09:53, 06:39](1208 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:11, 04:38](878 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:14, 06:50](876 MB) +PASS -- TEST 'regional_wofs_intel' [09:19, 06:19](1570 MB) + +PASS -- COMPILE 'rrfs_intel' [17:13, 15:55] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:57, 09:21](988 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:00, 04:35](1169 MB) +PASS -- TEST 'rap_decomp_intel' [12:57, 09:31](994 MB) +PASS -- TEST 'rap_2threads_intel' [13:53, 10:09](1067 MB) +PASS -- TEST 'rap_restart_intel' [06:36, 04:05](871 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:57, 06:40](987 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:54, 09:40](984 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:48, 07:25](876 MB) +PASS -- TEST 'hrrr_control_intel' [08:21, 04:22](988 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:21, 04:23](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:53, 06:19](1058 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:04, 04:24](824 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:55, 06:37](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 10:44](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:05, 10:46](1930 MB) + +PASS -- COMPILE 'csawmg_intel' [16:14, 15:09] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [11:00, 08:48](942 MB) +PASS -- TEST 'control_ras_intel' [08:49, 05:29](646 MB) + +PASS -- COMPILE 'wam_intel' [16:13, 15:04] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [17:27, 14:03](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 15:43] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [09:25, 06:00](1843 MB) +PASS -- TEST 'regional_control_faster_intel' [09:07, 06:48](877 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:14, 15:32] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:18, 05:16](1584 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:10, 05:06](1585 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:12, 05:42](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:05, 05:29](784 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:59, 06:55](1083 MB) +PASS -- TEST 'control_ras_debug_intel' [07:50, 05:25](791 MB) +PASS -- TEST 'control_diag_debug_intel' [09:14, 05:58](1643 MB) +PASS -- TEST 'control_debug_p8_intel' [06:10, 03:47](1875 MB) +PASS -- TEST 'regional_debug_intel' [19:22, 16:17](889 MB) +PASS -- TEST 'rap_control_debug_intel' [10:07, 07:45](1168 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:32, 07:15](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:30, 07:31](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:19, 07:35](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:17, 05:50](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:22, 07:31](1248 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:59, 07:40](1161 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:05, 07:38](1165 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:01, 06:03](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:09, 07:37](1168 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:38, 07:21](1159 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:06, 05:31](1161 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:57, 10:20](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:04, 07:10](1156 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:56, 07:28](1161 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:52, 04:56](1161 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:23, 10:52](1167 MB) + +PASS -- COMPILE 'wam_debug_intel' [14:16, 12:25] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:59, 15:31](1668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:14, 14:50] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:39, 04:24](1047 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:42, 08:09](869 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:53, 05:47](866 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:37, 09:22](917 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:36, 06:10](918 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:38, 05:56](864 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:25, 06:38](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:01, 04:14](753 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 14:15] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:55, 04:29](1072 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:35, 01:42](1051 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:54, 03:49](949 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:14, 14:03] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:45, 06:44](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 11:18] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:18, 08:06](1044 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:56, 07:39](1040 MB) +PASS -- TEST 'conus13km_debug_intel' [19:27, 16:34](1123 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:39, 13:50](803 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:26, 11:42](1118 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:26, 13:11](1192 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:13, 11:12] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:15, 07:31](1069 MB) + +PASS -- COMPILE 'hafsw_intel' [20:14, 18:54] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:57, 07:35](714 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:15, 06:55](1081 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:53, 10:05](744 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:47, 13:59](775 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:38, 15:32](805 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:14, 07:50](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:58, 09:11](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:39, 05:15](398 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:30, 10:04](487 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:53, 06:16](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:01, 06:02](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:39, 07:06](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:13, 04:05](427 MB) +PASS -- TEST 'gnv1_nested_intel' [09:12, 06:02](1702 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:12, 12:08] ( 1470 warnings 1424 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:41, 15:34](615 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:14, 17:05] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:39, 08:12](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:35, 10:25](812 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:18, 17:41] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:05, 09:26](809 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:22, 16:54] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:49, 09:03](740 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:35, 09:03](726 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [26:02, 22:13](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:15, 13:13] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:13, 04:50](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:09, 03:44](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:08, 04:41](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:03, 04:42](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:54, 04:39](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:50, 04:46](764 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:21, 02:37](752 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:59, 02:28](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:02, 06:42](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:21, 08:34](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:53, 04:48](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:48, 04:40](2035 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [09:04, 06:48](2035 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:13, 08:57] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:52, 07:37](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:13, 14:07] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:37, 04:47](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [11:13, 09:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:52, 03:54](313 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:04, 03:37](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:04, 01:28](464 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [11:13, 09:17] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:27, 00:34](450 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [06:26, 03:10](252 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:13, 15:27] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:06, 04:17](1908 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:19, 15:44] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:36, 07:28](1907 MB) + +PASS -- COMPILE 'atml_intel' [19:13, 17:54] ( 14 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [13:14, 09:07](1878 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:42, 06:07](1024 MB) + +PASS -- COMPILE 'atml_debug_intel' [16:14, 15:08] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:01, 08:35](1905 MB) + +PASS -- COMPILE 'atmw_intel' [18:13, 17:03] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:36, 05:20](1882 MB) + +PASS -- COMPILE 'atmaero_intel' [19:14, 17:49] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:41, 08:53](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:36, 08:57](2987 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:30, 09:17](2991 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [14:15, 13:10] ( 887 warnings 6 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_atmaq_debug_intel' [, ]( MB) + +PASS -- COMPILE 'atm_fbh_intel' [16:15, 14:35] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:39, 11:41](832 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [25:18, 23:16] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intelllvm' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [16:14, 14:27] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intelllvm' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [27:16, 25:23] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_intelllvm' [, ]( MB) + +PASS -- COMPILE 's2swa_intelllvm' [24:22, 22:21] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intelllvm' [, ]( MB) SYNOPSIS: -Starting Date/Time: 20250124 13:30:22 -Ending Date/Time: 20250124 15:55:56 -Total Time: 02h:27m:16s +Starting Date/Time: 20250129 23:35:27 +Ending Date/Time: 20250130 02:10:16 +Total Time: 02h:37m:26s Compiles Completed: 48/48 -Tests Completed: 194/194 +Tests Completed: 187/194 +Failed Tests: +* TEST cpld_control_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2548/ufs-weather-model/tests/logs/log_gaeac5/run_cpld_control_p8_lnd_intel.log +* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST regional_atmaq_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2548/ufs-weather-model/tests/logs/log_gaeac5/run_regional_atmaq_debug_intel.log +* TEST cpld_control_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2548/ufs-weather-model/tests/logs/log_gaeac5/run_cpld_control_gfsv17_intelllvm.log +* TEST cpld_debug_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2548/ufs-weather-model/tests/logs/log_gaeac5/run_cpld_debug_gfsv17_intelllvm.log +* TEST cpld_control_sfs_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2548/ufs-weather-model/tests/logs/log_gaeac5/run_cpld_control_sfs_intelllvm.log +* TEST cpld_control_p8_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2548/ufs-weather-model/tests/logs/log_gaeac5/run_cpld_control_p8_intelllvm.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF GAEAC5 REGRESSION TESTING LOG==== +====START OF GAEAC5 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +692fa94443d70a890d1771aba742f93963fdecbb + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3831570 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swal_intel' [27:21, 25:55] ( 6 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [16:25, 11:59](3222 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [15:14, 10:09](3144 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [15:14, 13:42] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:51, 20:47](4381 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [28:21, 27:02] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [21:50, 17:53](1899 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [20:16, 18:37] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [30:47, 26:07](1920 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [28:21, 26:15] +PASS -- TEST 'cpld_control_sfs_intelllvm' [18:44, 15:42](1901 MB) + +PASS -- COMPILE 's2swa_intelllvm' [29:21, 27:44] +PASS -- TEST 'cpld_control_p8_intelllvm' [17:17, 12:44](3218 MB) + +SYNOPSIS: +Starting Date/Time: 20250130 14:49:10 +Ending Date/Time: 20250130 15:49:59 +Total Time: 01h:02m:19s +Compiles Completed: 6/6 +Tests Completed: 7/7 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 6d9e29b029..47b954b79a 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,7 +1,7 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -d010f320cfc5493ac49f186c3e0ffb15ba26c0c7 +692fa94443d70a890d1771aba742f93963fdecbb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) + 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) + 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -26,7 +26,7 @@ Submodule hashes used in testing: 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,297 +38,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-20250122 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4138242 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1533890 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [35:16, 33:49] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:41, 04:30](2034 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:11, 11:40] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:28, 10:34](1927 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:29, 11:50](1953 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:27, 05:09](1085 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:26, 12:16](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:11, 11:50] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [12:22, 10:15](1917 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [32:12, 30:47] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [18:28, 16:12](1949 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:24] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:34, 05:17](2069 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:35, 05:25](2065 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:29, 03:01](1622 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:32, 05:32](2097 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:30, 03:08](1464 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:31, 06:09](2231 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:31, 05:12](2062 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:31, 04:26](2017 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:35, 05:20](2071 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [09:48, 06:00](2431 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [06:45, 04:20](2672 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [11:40, 07:07](3597 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [07:45, 04:40](3421 MB) - -PASS -- COMPILE 's2swal_intel' [11:14, 09:47] ( 6 warnings 12 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [08:30, 05:28](2069 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:28, 05:24](1927 MB) - -PASS -- COMPILE 's2sw_intel' [20:14, 18:53] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [04:27, 03:03](1939 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:38, 04:34](1855 MB) - -PASS -- COMPILE 's2swa_debug_intel' [26:11, 24:20] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:28, 09:00](2090 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:45] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:29, 06:26](1970 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:11, 07:00] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:25, 03:14](1980 MB) - -PASS -- COMPILE 's2s_intel' [08:11, 07:08] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:21, 04:11](2869 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:14] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:39, 20:03](2035 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [58:19, 56:16] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:29, 13:25](1921 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:31, 12:10](1953 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:29, 06:18](1085 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:29, 12:08](1899 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:12, 11:44] ( 6 warnings 11 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [26:13, 24:45] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:29, 28:35](1953 MB) + +PASS -- COMPILE 's2swa_intel' [10:11, 08:19] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [24:43, 20:58](2063 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:40, 05:17](2060 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:29, 15:07](1624 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:39, 07:51](2088 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [14:27, 12:35](1457 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [25:39, 21:49](2231 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [24:40, 20:46](2051 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:34, 12:13](2019 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:39, 05:26](2068 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [11:52, 09:52](2427 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [20:47, 18:39](2670 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [11:33, 08:35](3588 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [07:42, 05:03](3421 MB) + +PASS -- COMPILE 's2swal_intel' [10:10, 08:17] ( 6 warnings 12 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_lnd_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:26, 12:55](1927 MB) + +PASS -- COMPILE 's2sw_intel' [09:10, 07:55] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:24, 05:49](1936 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:26, 04:30](1852 MB) + +PASS -- COMPILE 's2swa_debug_intel' [26:13, 24:11] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:29, 08:47](2091 MB) + +PASS -- COMPILE 's2sw_debug_intel' [35:14, 33:24] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:25, 04:18](1959 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:10, 06:48] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:27, 03:14](1985 MB) + +PASS -- COMPILE 's2s_intel' [08:11, 07:02] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [17:23, 16:05](2876 MB) PASS -- TEST 'cpld_warmstart_c48_intel' [03:21, 01:16](2884 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:19, 00:48](2296 MB) - -PASS -- COMPILE 's2swa_faster_intel' [10:11, 09:04] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:27, 05:21](2068 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:15] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:28, 10:25](1933 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:28, 05:11](1112 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:26, 12:20](1915 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:44] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [19:24, 18:02](1962 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:40] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:17, 02:31](534 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:23, 01:47](1435 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:24, 01:45](1440 MB) -PASS -- TEST 'control_latlon_intel' [03:23, 01:44](1437 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:27, 01:44](1432 MB) -PASS -- TEST 'control_c48_intel' [06:25, 04:35](1571 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 04:16](693 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:25, 04:35](1575 MB) -PASS -- TEST 'control_c192_intel' [06:25, 04:50](1689 MB) -PASS -- TEST 'control_c384_intel' [11:31, 09:53](1962 MB) -PASS -- TEST 'control_c384gdas_intel' [11:47, 10:00](1181 MB) -PASS -- TEST 'control_stochy_intel' [03:14, 01:15](487 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:16, 00:43](291 MB) -PASS -- TEST 'control_lndp_intel' [03:15, 01:07](489 MB) -PASS -- TEST 'control_iovr4_intel' [03:15, 01:48](484 MB) -PASS -- TEST 'control_iovr5_intel' [03:15, 01:43](486 MB) -PASS -- TEST 'control_p8_intel' [03:20, 01:53](1724 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:27, 02:02](1721 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:20, 02:33](1731 MB) -PASS -- TEST 'control_restart_p8_intel' [03:23, 01:12](871 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:23, 01:54](1719 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:24, 01:08](884 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:20, 02:13](1718 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:24, 02:12](1799 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:21, 03:18](1730 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:24, 02:40](1783 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:25, 02:08](1733 MB) -PASS -- TEST 'merra2_thompson_intel' [04:25, 02:19](1727 MB) -PASS -- TEST 'regional_control_intel' [05:18, 03:21](875 MB) -PASS -- TEST 'regional_restart_intel' [03:20, 01:51](843 MB) -PASS -- TEST 'regional_decomp_intel' [07:18, 06:02](876 MB) -PASS -- TEST 'regional_2threads_intel' [04:19, 02:37](1019 MB) -PASS -- TEST 'regional_noquilt_intel' [05:19, 03:16](1201 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:21, 03:20](874 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:17, 03:24](876 MB) -PASS -- TEST 'regional_wofs_intel' [07:18, 04:32](1567 MB) - -PASS -- COMPILE 'rrfs_intel' [07:11, 06:07] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [06:23, 04:59](866 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:32, 02:52](1160 MB) -PASS -- TEST 'rap_decomp_intel' [06:23, 05:02](865 MB) -PASS -- TEST 'rap_2threads_intel' [07:23, 05:47](939 MB) -PASS -- TEST 'rap_restart_intel' [05:20, 02:32](743 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:23, 04:49](866 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:23, 05:02](868 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:20, 03:38](741 MB) -PASS -- TEST 'hrrr_control_intel' [04:22, 02:35](860 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:23, 02:42](860 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:22, 03:03](932 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:23](694 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:23, 04:53](867 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:19, 06:12](1822 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:19, 05:54](1815 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 05:52] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:18, 04:14](818 MB) -PASS -- TEST 'control_ras_intel' [04:15, 02:12](519 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 05:51] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:24, 07:33](1517 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 06:00] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:20, 01:56](1722 MB) -PASS -- TEST 'regional_control_faster_intel' [05:18, 03:11](876 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:40] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:21, 01:46](1461 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:26, 01:47](1462 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:16, 02:06](662 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:53](660 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:19, 02:50](961 MB) -PASS -- TEST 'control_ras_debug_intel' [03:15, 01:55](667 MB) -PASS -- TEST 'control_diag_debug_intel' [03:21, 01:56](1517 MB) -PASS -- TEST 'control_debug_p8_intel' [03:19, 01:48](1761 MB) -PASS -- TEST 'regional_debug_intel' [13:20, 11:09](890 MB) -PASS -- TEST 'rap_control_debug_intel' [05:17, 03:22](1039 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:22](1034 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:21](1040 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:23](1040 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:21](1043 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:18, 03:37](1127 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:25](1042 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 03:28](1041 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:25](1042 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 03:20](1040 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:16](1040 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 03:22](1039 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:16, 05:22](1039 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 03:19](1035 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:19](1042 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:16, 03:26](1038 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:20, 05:36](1041 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:05] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:21, 08:38](1540 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:47] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 02:42](1040 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:20, 04:05](749 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:19, 02:22](746 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:19, 04:55](800 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:18, 02:42](792 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:19, 02:19](747 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:19, 03:01](648 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:17, 01:16](625 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:41] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:26, 01:23](954 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:20, 00:47](1091 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:21, 00:52](824 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:45] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:21, 02:50](771 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:12] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 03:14](919 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:23](915 MB) -PASS -- TEST 'conus13km_debug_intel' [10:23, 08:58](1005 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [10:22, 08:53](672 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:21, 08:02](1137 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:20, 09:10](1069 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:00] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:33](945 MB) - -PASS -- COMPILE 'hafsw_intel' [09:11, 07:20] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:43, 03:34](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:17, 02:56](1068 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:47, 04:45](789 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [10:44, 07:57](819 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:48, 08:28](838 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:30, 03:31](481 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:45, 04:27](487 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:23, 01:49](398 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:57, 04:41](457 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 02:32](502 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:26, 02:22](503 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:29, 02:58](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:19, 00:59](429 MB) -PASS -- TEST 'gnv1_nested_intel' [04:42, 03:01](1704 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:19] ( 1470 warnings 1424 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:27, 08:14](609 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:30] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:31, 05:02](640 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:33, 05:06](801 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:20] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:36, 03:49](795 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:11, 07:17] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:41, 04:22](768 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:41, 04:27](754 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:35, 10:57](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [41:12, 39:35] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 01:43](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:14, 01:03](751 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 01:38](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 01:39](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 01:40](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 01:43](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 01:44](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 01:49](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:30, 04:10](707 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:29, 04:10](688 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 01:43](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:16, 02:47](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:15, 02:46](2032 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:25] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 03:47](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:04] ( 5 warnings 2 remarks ) +PASS -- TEST 'cpld_restart_c48_intel' [12:20, 10:52](2297 MB) + +PASS -- COMPILE 's2swa_faster_intel' [10:12, 09:06] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:28, 05:12](2063 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:12, 11:29] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:29, 24:37](1932 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:28, 09:57](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:26, 12:08](1917 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [36:13, 34:35] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [19:27, 18:06](1955 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [02:15, 00:37] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:18, 05:29](530 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:32, 01:40](1429 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:32, 02:17](1433 MB) +PASS -- TEST 'control_latlon_intel' [05:31, 01:56](1432 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:36, 03:20](1431 MB) +PASS -- TEST 'control_c48_intel' [06:33, 04:35](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 04:18](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:32, 04:35](1576 MB) +PASS -- TEST 'control_c192_intel' [08:35, 04:45](1693 MB) +PASS -- TEST 'control_c384_intel' [13:43, 09:44](1959 MB) +PASS -- TEST 'control_c384gdas_intel' [13:58, 10:02](1179 MB) +PASS -- TEST 'control_stochy_intel' [05:18, 03:22](489 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:16, 00:44](291 MB) +PASS -- TEST 'control_lndp_intel' [05:18, 03:31](487 MB) +PASS -- TEST 'control_iovr4_intel' [05:19, 03:30](485 MB) +PASS -- TEST 'control_iovr5_intel' [05:18, 03:31](484 MB) +PASS -- TEST 'control_p8_intel' [05:35, 04:01](1727 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:38, 02:38](1728 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:35, 01:53](1723 MB) +PASS -- TEST 'control_restart_p8_intel' [04:23, 02:42](874 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:35, 03:59](1718 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:23, 02:15](887 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:34, 02:32](1717 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:34, 02:53](1805 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:32, 03:46](1727 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:35, 04:00](1775 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:36, 03:45](1738 MB) +PASS -- TEST 'merra2_thompson_intel' [05:35, 03:37](1720 MB) +PASS -- TEST 'regional_control_intel' [06:31, 04:07](878 MB) +PASS -- TEST 'regional_restart_intel' [03:19, 01:51](861 MB) +PASS -- TEST 'regional_decomp_intel' [05:31, 03:30](878 MB) +PASS -- TEST 'regional_2threads_intel' [06:31, 03:19](1023 MB) +PASS -- TEST 'regional_noquilt_intel' [05:31, 03:14](1207 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:20, 03:22](878 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:17, 04:16](875 MB) +PASS -- TEST 'regional_wofs_intel' [06:20, 04:23](1571 MB) + +PASS -- COMPILE 'rrfs_intel' [07:10, 06:06] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [06:23, 04:46](866 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:32, 11:51](1163 MB) +PASS -- TEST 'rap_decomp_intel' [06:23, 04:59](866 MB) +PASS -- TEST 'rap_2threads_intel' [07:23, 05:45](940 MB) +PASS -- TEST 'rap_restart_intel' [04:20, 02:47](744 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:23, 04:47](867 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:23, 04:58](870 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:21, 04:19](742 MB) +PASS -- TEST 'hrrr_control_intel' [18:24, 16:32](860 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [13:22, 12:03](861 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [14:24, 12:22](937 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:17, 03:36](693 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:23, 04:41](866 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:19, 06:09](1818 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:19, 05:57](1814 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 05:42] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [17:20, 15:49](820 MB) +PASS -- TEST 'control_ras_intel' [04:15, 02:12](521 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 05:44] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:22, 12:07](1508 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:59] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:23, 02:14](1723 MB) +PASS -- TEST 'regional_control_faster_intel' [05:20, 03:10](878 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 05:48] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:20, 17:35](1456 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:23, 01:34](1462 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:14, 02:05](660 MB) +PASS -- TEST 'control_lndp_debug_intel' [11:15, 10:00](660 MB) +PASS -- TEST 'control_csawmg_debug_intel' [13:19, 11:50](963 MB) +PASS -- TEST 'control_ras_debug_intel' [16:17, 14:29](667 MB) +PASS -- TEST 'control_diag_debug_intel' [09:21, 07:46](1523 MB) +PASS -- TEST 'control_debug_p8_intel' [19:21, 17:47](1761 MB) +PASS -- TEST 'regional_debug_intel' [13:20, 11:14](889 MB) +PASS -- TEST 'rap_control_debug_intel' [10:16, 08:14](1042 MB) +PASS -- TEST 'hrrr_control_debug_intel' [12:16, 10:46](1038 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [12:16, 10:43](1040 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [12:16, 10:44](1038 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [12:16, 10:26](1044 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:17, 03:32](1126 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:23](1044 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:15, 06:30](1038 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:16, 05:32](1043 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:16, 10:35](1040 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:20](1038 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:15, 07:00](1040 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:15, 08:52](1037 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:18](1033 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [15:16, 13:37](1041 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:16, 08:30](1044 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:20, 08:40](1044 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 03:09] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:21, 08:54](1546 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [51:14, 49:25] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:33, 03:28](1040 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:19, 04:04](748 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:20, 03:17](746 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:19, 05:49](792 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:19, 02:35](791 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:19, 03:20](743 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:19, 03:01](651 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:16, 01:13](627 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:52] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:24, 01:22](952 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:18, 05:03](1082 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:18, 00:52](828 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:51] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:20, 07:34](774 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:07] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:15, 04:52](913 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:15, 07:09](921 MB) +PASS -- TEST 'conus13km_debug_intel' [12:23, 10:22](1005 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:22, 15:14](672 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:24, 07:58](1135 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:22, 11:25](1070 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:01] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:16, 05:56](948 MB) + +PASS -- COMPILE 'hafsw_intel' [09:12, 07:43] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:41, 03:43](709 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:17, 02:58](1072 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:46, 04:45](789 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [09:43, 07:52](814 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [13:48, 11:32](835 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:30, 05:50](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:45, 04:21](486 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:24, 01:44](399 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:56, 07:18](457 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:27, 03:14](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:26, 02:22](504 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:29, 03:15](592 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:19, 03:51](428 MB) +PASS -- TEST 'gnv1_nested_intel' [04:42, 02:56](1706 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:21] ( 1470 warnings 1424 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:29, 08:11](604 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:10] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:32, 05:00](639 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:33, 05:17](799 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:41] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:36, 03:54](796 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:16, 13:39] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:44, 04:21](770 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:45, 04:20](752 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:38, 10:56](890 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:11, 05:06] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 01:44](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:02](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:37](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:14, 01:39](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 01:39](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:12](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:36](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:28, 04:05](707 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:25, 05:48](688 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:43](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:16, 02:44](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:17, 02:45](1969 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:27] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 03:45](734 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:52] ( 5 warnings 2 remarks ) PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 01:42](752 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:40] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 01:01](317 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:48](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:35](463 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:40] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:59](319 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:49](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:41](460 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [00:14, 58:12] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:33, 02:39](1789 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:12, 06:35] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:24, 03:34](1790 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [53:14, 51:30] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:34, 03:24](1778 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 06:13] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:23, 04:17](1784 MB) -PASS -- COMPILE 'atml_intel' [08:11, 06:52] ( 14 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [05:38, 03:35](1896 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:19, 02:02](1043 MB) +PASS -- COMPILE 'atml_intel' [58:14, 56:09] ( 14 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [06:24, 05:07](1889 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:18, 03:25](1029 MB) -PASS -- COMPILE 'atml_debug_intel' [05:11, 03:53] ( 892 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:24, 03:44](1923 MB) +PASS -- COMPILE 'atml_debug_intel' [05:10, 03:52] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:25, 03:40](1925 MB) -PASS -- COMPILE 'atmw_intel' [09:11, 07:24] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:22, 01:44](1762 MB) +PASS -- COMPILE 'atmw_intel' [08:11, 07:05] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 02:02](1756 MB) -PASS -- COMPILE 'atmaero_intel' [07:10, 05:58] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:26, 02:55](1947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:26, 03:28](1600 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:24, 03:21](1607 MB) +PASS -- COMPILE 'atmaero_intel' [03:15, 01:36] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [21:27, 07:48](1943 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:26, 03:15](1597 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [21:23, 09:43](1614 MB) -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:15] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [15:43, 13:40](4445 MB) +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:06] ( 887 warnings 6 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_atmaq_debug_intel' [, ]( MB) -PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:46] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:18, 06:01](826 MB) +PASS -- COMPILE 'atm_fbh_intel' [07:12, 05:32] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:19, 06:01](827 MB) SYNOPSIS: -Starting Date/Time: 20250124 00:43:55 -Ending Date/Time: 20250124 02:28:05 -Total Time: 01h:44m:33s +Starting Date/Time: 20250130 01:33:01 +Ending Date/Time: 20250130 04:06:04 +Total Time: 02h:33m:24s Compiles Completed: 43/43 -Tests Completed: 187/188 +Tests Completed: 184/188 Failed Tests: -* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f6/bil-fire8/scratch/Fernando.Andrade-maldonado/regression-testing/wm/2387/ufs-weather-model/tests/logs/log_gaeac6/run_cpld_restart_p8_lnd_intel.log +* TEST cpld_control_sfs_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f6/bil-fire8/scratch/Fernando.Andrade-maldonado/regression-testing/wm/2548/ufs-weather-model/tests/logs/log_gaeac6/run_cpld_control_sfs_intel.log +* TEST cpld_control_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f6/bil-fire8/scratch/Fernando.Andrade-maldonado/regression-testing/wm/2548/ufs-weather-model/tests/logs/log_gaeac6/run_cpld_control_p8_lnd_intel.log +* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST regional_atmaq_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f6/bil-fire8/scratch/Fernando.Andrade-maldonado/regression-testing/wm/2548/ufs-weather-model/tests/logs/log_gaeac6/run_regional_atmaq_debug_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -341,7 +347,7 @@ Result: FAILURE ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -7f24a0021dcc8bf882d8abb1e8df76d52db41a0e +1fba02b041f68c7d7a241f206c1d3816768bbde0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -349,12 +355,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) + 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) + 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -366,7 +372,7 @@ Submodule hashes used in testing: 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -378,24 +384,30 @@ 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-20250122 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_839014 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2663694 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-b) - NEW BASELINES FROM FILE: test_changes.list * (-e) - USE ECFLOW -PASS -- COMPILE 's2swal_intel' [10:11, 08:25] ( 6 warnings 12 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [07:33, 05:23](2069 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [06:29, 05:02](1621 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:11, 11:43] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:21, 10:16](1918 MB) + +PASS -- COMPILE 's2swal_intel' [24:16, 22:58] ( 6 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [07:25, 05:37](2069 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:27, 03:02](1624 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:08] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [16:37, 13:41](4445 MB) SYNOPSIS: -Starting Date/Time: 20250124 11:16:06 -Ending Date/Time: 20250124 11:41:41 -Total Time: 00h:25m:45s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Starting Date/Time: 20250130 14:39:59 +Ending Date/Time: 20250130 16:18:35 +Total Time: 01h:38m:47s +Compiles Completed: 3/3 +Tests Completed: 4/4 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 3a8d90f194..e33863e260 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,20 +1,20 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -d010f320cfc5493ac49f186c3e0ffb15ba26c0c7 +692fa94443d70a890d1771aba742f93963fdecbb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) + 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) - 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -26,399 +26,398 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250122 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_822273 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2067262 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:13, 13:22] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [55:15, 07:39](3261 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 16:18] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:06, 19:43](1968 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:15, 20:57](2145 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:08, 08:19](1246 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:00, 23:38](1861 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 16:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:53, 19:31](1944 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:13, 06:21] ( 1523 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [35:04, 25:15](1898 MB) - -PASS -- COMPILE 's2swa_intel' [20:13, 13:21] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:12, 09:42](3319 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [57:25, 09:06](3322 MB) -PASS -- TEST 'cpld_restart_p8_intel' [51:19, 04:55](3226 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [57:20, 09:11](3335 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:29, 04:53](3246 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [58:18, 09:10](3519 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:07, 08:51](3311 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [55:15, 07:53](3180 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [58:28, 09:40](3326 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [58:09, 10:39](3490 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [35:00, 06:29](3596 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [03:12, 11:07](4288 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [35:33, 06:30](4349 MB) - -PASS -- COMPILE 's2swal_intel' [21:13, 13:29] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [57:20, 09:33](3259 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [55:06, 07:40](3297 MB) - -PASS -- COMPILE 's2sw_intel' [19:13, 12:25] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:55, 06:22](1962 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:00, 06:25](2044 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:13, 06:24] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [24:10, 13:48](3333 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:13, 05:55] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [17:02, 06:37](1962 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:13, 11:36] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:59, 04:27](2031 MB) - -PASS -- COMPILE 's2s_intel' [14:10, 12:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [00:49, 08:02](3021 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [55:52, 02:29](3010 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:46, 01:28](2455 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:11, 18:00] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [56:20, 08:41](3319 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 15:49] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [07:06, 17:54](1985 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:17, 08:42](1243 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:02, 21:07](1897 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:10, 05:48] ( 1523 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:06, 26:47](1932 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 10:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [50:32, 03:29](680 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [49:50, 02:48](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [50:56, 02:57](1582 MB) -PASS -- TEST 'control_latlon_intel' [50:47, 02:44](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [50:55, 02:41](1580 MB) -PASS -- TEST 'control_c48_intel' [54:47, 07:13](1695 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [53:31, 06:38](829 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [54:46, 07:14](1698 MB) -PASS -- TEST 'control_c192_intel' [54:57, 07:42](1725 MB) -PASS -- TEST 'control_c384_intel' [52:47, 08:33](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [42:26, 08:22](1348 MB) -PASS -- TEST 'control_stochy_intel' [07:26, 01:48](634 MB) -PASS -- TEST 'control_stochy_restart_intel' [23:31, 01:05](476 MB) -PASS -- TEST 'control_lndp_intel' [07:27, 01:41](638 MB) -PASS -- TEST 'control_iovr4_intel' [07:26, 02:35](634 MB) -PASS -- TEST 'control_iovr5_intel' [06:27, 02:42](612 MB) -PASS -- TEST 'control_p8_intel' [06:01, 03:00](1878 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 03:09](1866 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [25:59, 02:59](1869 MB) -PASS -- TEST 'control_restart_p8_intel' [22:47, 01:45](1114 MB) -PASS -- TEST 'control_noqr_p8_intel' [25:55, 03:01](1865 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:50, 01:42](1133 MB) -PASS -- TEST 'control_decomp_p8_intel' [24:48, 03:06](1856 MB) -PASS -- TEST 'control_2threads_p8_intel' [24:50, 03:17](1942 MB) -PASS -- TEST 'control_p8_lndp_intel' [26:46, 05:11](1874 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [25:53, 04:16](1926 MB) -PASS -- TEST 'control_p8_mynn_intel' [24:59, 03:15](1875 MB) -PASS -- TEST 'merra2_thompson_intel' [24:54, 03:31](1866 MB) -PASS -- TEST 'regional_control_intel' [23:40, 05:27](1095 MB) -PASS -- TEST 'regional_restart_intel' [04:44, 02:55](1075 MB) -PASS -- TEST 'regional_decomp_intel' [22:39, 05:44](1104 MB) -PASS -- TEST 'regional_2threads_intel' [24:35, 04:06](1044 MB) -PASS -- TEST 'regional_noquilt_intel' [24:40, 05:32](1403 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [25:40, 05:24](1103 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [24:35, 05:37](1105 MB) -PASS -- TEST 'regional_wofs_intel' [26:35, 07:14](1883 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 10:28] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [27:43, 08:00](1085 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [23:02, 04:22](1251 MB) -PASS -- TEST 'rap_decomp_intel' [26:47, 08:23](1012 MB) -PASS -- TEST 'rap_2threads_intel' [26:37, 08:56](1078 MB) -PASS -- TEST 'rap_restart_intel' [39:48, 04:11](1076 MB) -PASS -- TEST 'rap_sfcdiff_intel' [25:43, 08:13](1090 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:39, 08:14](1020 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [41:50, 05:57](1113 MB) -PASS -- TEST 'hrrr_control_intel' [06:38, 04:11](1018 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:30, 04:12](1009 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:34, 04:24](1070 MB) -PASS -- TEST 'hrrr_control_restart_intel' [39:29, 02:14](978 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:47, 07:47](1071 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:45](1971 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 09:17](2042 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 10:19] -PASS -- TEST 'control_csawmg_intel' [08:34, 06:14](997 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:20](724 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 09:59] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:44, 11:18](1631 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:33] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:46, 02:50](1863 MB) -PASS -- TEST 'regional_control_faster_intel' [06:33, 04:57](1104 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [54:13, 07:55] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:28](1581 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:25](1588 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:32](792 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:50](792 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:29](1099 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:56](786 MB) -PASS -- TEST 'control_diag_debug_intel' [04:47, 02:52](1638 MB) -PASS -- TEST 'control_debug_p8_intel' [40:41, 02:49](1882 MB) -PASS -- TEST 'regional_debug_intel' [54:42, 17:47](1056 MB) -PASS -- TEST 'rap_control_debug_intel' [41:26, 05:08](1174 MB) -PASS -- TEST 'hrrr_control_debug_intel' [41:30, 04:58](1165 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [41:27, 05:08](1167 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [40:25, 05:10](1171 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [39:29, 05:09](1173 MB) -PASS -- TEST 'rap_diag_debug_intel' [40:39, 05:22](1257 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [39:25, 05:18](1167 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [40:24, 05:18](1168 MB) -PASS -- TEST 'rap_lndp_debug_intel' [40:26, 05:16](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [39:28, 05:06](1176 MB) -PASS -- TEST 'rap_noah_debug_intel' [39:27, 05:10](1178 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:24, 05:14](1173 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [42:26, 08:24](1176 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [39:32, 05:15](1173 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [40:29, 05:08](1173 MB) -PASS -- TEST 'rap_flake_debug_intel' [40:27, 05:11](1173 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [44:41, 08:39](1171 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [57:18, 04:22] -PASS -- TEST 'control_csawmg_debug_gnu' [39:39, 02:25](703 MB) - -PASS -- COMPILE 'wam_debug_intel' [57:17, 04:44] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [51:46, 14:13](1648 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [58:16, 09:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [37:03, 04:02](1122 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [43:39, 06:40](1039 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [40:34, 03:33](969 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [40:32, 07:34](988 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [32:32, 03:56](926 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [31:36, 03:44](917 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:38, 05:25](1011 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:00](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [57:16, 10:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:51, 02:09](1167 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:41, 01:00](1146 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:39, 01:15](1077 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [57:16, 10:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:37, 04:27](956 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [52:16, 04:42] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 05:13](1051 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:06](1049 MB) -PASS -- TEST 'conus13km_debug_intel' [18:54, 14:29](1175 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:50, 14:15](883 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:47, 12:37](1150 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:47, 14:25](1246 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:16, 04:38] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:26, 05:14](1098 MB) - -PASS -- COMPILE 'hafsw_intel' [59:17, 11:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:14, 05:02](697 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:33, 05:42](1092 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:28, 07:01](785 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [21:17, 14:49](827 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:34, 18:37](844 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:54, 05:34](475 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:20, 06:50](494 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:41, 02:46](364 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:00, 07:20](463 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:43, 03:44](490 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:51, 03:32](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:55, 04:22](550 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:16](374 MB) -PASS -- TEST 'gnv1_nested_intel' [12:33, 04:03](1715 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [51:16, 05:08] ( 1465 warnings 1444 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:51, 13:11](546 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:11, 11:34] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:59, 10:32](594 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [26:01, 10:34](711 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [33:12, 11:51] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:26, 08:26](661 MB) - -PASS -- COMPILE 'hafs_all_intel' [32:12, 11:21] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [22:14, 06:53](796 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:13, 06:49](774 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:57, 16:28](1202 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [28:12, 06:49] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [16:22, 03:01](1166 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:19, 01:46](1102 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [15:18, 02:51](1034 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [15:19, 02:57](1010 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [15:19, 02:54](1018 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [15:18, 02:56](1142 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [15:18, 02:58](1135 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [14:17, 02:49](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [17:17, 06:33](1065 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [16:12, 06:25](1036 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [12:17, 02:59](1164 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [11:19, 04:00](2509 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [13:20, 04:08](2516 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [23:12, 03:32] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:19, 06:33](1078 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [25:11, 06:40] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:18, 02:59](1155 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [19:11, 01:17] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:35, 00:56](254 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:23, 01:00](319 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:25, 00:32](315 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [19:11, 01:37] -FAILED: RUN DID NOT COMPLETE -- TEST 'datm_cdeps_lm4_gswp3_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [, ]( MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [28:12, 11:00] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:10, 03:54](1971 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [26:12, 10:41] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:54, 04:51](1956 MB) - -PASS -- COMPILE 'atml_intel' [27:12, 11:33] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [07:55, 03:56](1836 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 02:12](1078 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 05:59] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:53, 05:08](1838 MB) - -PASS -- COMPILE 'atmw_intel' [13:12, 10:57] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:48, 01:57](1903 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 10:34] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:52, 04:39](3145 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:54, 04:57](3067 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:43, 05:43](3067 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:35] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [12:10, 10:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:29, 11:48](1088 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [41:12, 06:38] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [13:37, 08:26](1040 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [41:15, 06:55] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [10:40, 04:58](973 MB) - -PASS -- COMPILE 'atm_gnu' [39:12, 04:40] -PASS -- TEST 'control_c48_gnu' [13:38, 09:35](1502 MB) -PASS -- TEST 'control_stochy_gnu' [08:22, 03:30](482 MB) -PASS -- TEST 'control_ras_gnu' [09:22, 05:00](491 MB) -PASS -- TEST 'control_p8_gnu' [09:52, 04:35](1447 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [08:51, 04:32](1445 MB) -PASS -- TEST 'control_flake_gnu' [14:23, 10:41](528 MB) - -PASS -- COMPILE 'rrfs_gnu' [39:14, 04:18] -PASS -- TEST 'rap_control_gnu' [16:36, 11:30](806 MB) -PASS -- TEST 'rap_decomp_gnu' [15:31, 11:39](799 MB) -PASS -- TEST 'rap_2threads_gnu' [20:40, 17:09](903 MB) -PASS -- TEST 'rap_restart_gnu' [07:38, 05:53](561 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [14:45, 11:37](800 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:31, 11:51](833 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:45, 08:32](566 MB) -PASS -- TEST 'hrrr_control_gnu' [08:36, 06:02](803 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [09:30, 05:55](821 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [12:35, 08:38](890 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [09:33, 05:56](799 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:27, 03:08](546 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:26, 03:01](639 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [14:42, 11:12](789 MB) - -PASS -- COMPILE 'csawmg_gnu' [38:11, 03:59] -PASS -- TEST 'control_csawmg_gnu' [10:34, 08:30](733 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [42:12, 06:41] -PASS -- TEST 'control_diag_debug_gnu' [03:46, 01:41](1255 MB) -PASS -- TEST 'regional_debug_gnu' [12:32, 10:34](718 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:21, 02:48](812 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:38](798 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [05:21, 02:36](804 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [05:21, 02:39](803 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:37, 02:53](886 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:23, 04:11](799 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:40](802 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:41](799 MB) -PASS -- TEST 'control_ras_debug_gnu' [07:21, 01:38](431 MB) -PASS -- TEST 'control_stochy_debug_gnu' [07:21, 01:49](433 MB) -PASS -- TEST 'control_debug_p8_gnu' [07:44, 01:43](1412 MB) -PASS -- TEST 'rap_flake_debug_gnu' [07:24, 02:39](804 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [08:23, 02:42](807 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [08:36, 04:24](805 MB) - -PASS -- COMPILE 'wam_debug_gnu' [37:12, 02:24] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [38:15, 04:07] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:36, 09:49](688 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [09:38, 05:11](690 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [19:34, 15:34](727 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [12:29, 08:06](725 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [11:35, 05:23](690 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:36, 07:20](539 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:28, 02:42](518 MB) -PASS -- TEST 'conus13km_control_gnu' [08:55, 03:10](859 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:48, 01:35](860 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 01:54](535 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [43:12, 09:50] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [11:40, 05:59](712 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [38:14, 06:44] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [07:23, 02:35](690 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [08:23, 02:33](689 MB) -PASS -- TEST 'conus13km_debug_gnu' [11:45, 06:52](858 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [11:40, 07:00](546 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:38, 05:45](860 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:39, 06:52](924 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:11, 06:46] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:23, 02:39](713 MB) - -PASS -- COMPILE 's2swa_gnu' [20:12, 16:49] - -PASS -- COMPILE 's2s_gnu' [19:12, 16:18] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:09, 11:15](1502 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [06:11, 03:11] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 15:52] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [36:11, 24:36](1441 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:11, 13:28] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:21, 07:36](3319 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:55] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:13, 19:54](1978 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:22, 21:10](2162 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:15, 08:22](1256 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:05, 23:39](1874 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:48, 19:46](1933 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 06:11] ( 1523 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:05, 25:18](1910 MB) + +PASS -- COMPILE 's2swa_intel' [15:11, 13:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:34, 09:37](3356 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:33, 09:03](3348 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:40, 04:53](3250 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:18, 09:00](3372 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:31, 04:52](3271 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:20, 09:10](3553 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:18, 09:02](3341 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:19, 07:29](3226 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:29, 08:58](3361 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:26, 10:44](3518 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:14, 07:02](3567 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:07, 11:01](4320 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:39, 06:47](4369 MB) + +PASS -- COMPILE 's2swal_intel' [15:11, 13:34] ( 1 warnings 10 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_lnd_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:16, 07:43](3339 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 12:40] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:01, 06:20](1977 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:03, 06:30](2053 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:10, 06:12] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:08, 13:42](3411 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:50] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:12, 07:01](1989 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:44] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 04:29](2023 MB) + +PASS -- COMPILE 's2s_intel' [14:12, 12:15] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:50, 07:58](3033 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:49, 02:30](3034 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:58, 01:29](2479 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:11, 18:22] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:24, 08:26](3344 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 16:23] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:10, 17:47](2019 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:22, 08:25](1275 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:08, 20:36](1922 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 06:09] ( 1523 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:10, 26:28](1975 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:34, 03:34](706 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:56, 02:44](1584 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:02, 02:56](1591 MB) +PASS -- TEST 'control_latlon_intel' [06:54, 02:40](1598 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:01, 02:45](1600 MB) +PASS -- TEST 'control_c48_intel' [09:54, 07:13](1727 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:31, 06:39](847 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:53, 07:13](1727 MB) +PASS -- TEST 'control_c192_intel' [10:15, 07:45](1748 MB) +PASS -- TEST 'control_c384_intel' [13:18, 08:40](1987 MB) +PASS -- TEST 'control_c384gdas_intel' [14:17, 08:24](1370 MB) +PASS -- TEST 'control_stochy_intel' [03:29, 01:43](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:39, 01:05](509 MB) +PASS -- TEST 'control_lndp_intel' [03:30, 01:39](658 MB) +PASS -- TEST 'control_iovr4_intel' [04:34, 02:37](643 MB) +PASS -- TEST 'control_iovr5_intel' [04:33, 02:38](648 MB) +PASS -- TEST 'control_p8_intel' [04:59, 03:03](1881 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:01, 03:16](1890 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:59, 02:58](1884 MB) +PASS -- TEST 'control_restart_p8_intel' [03:52, 01:43](1125 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:54, 02:58](1873 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:00, 01:43](1168 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:53, 03:05](1868 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:49, 03:20](1949 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:43, 05:20](1875 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:00, 04:19](1944 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:00, 03:10](1884 MB) +PASS -- TEST 'merra2_thompson_intel' [05:58, 03:31](1893 MB) +PASS -- TEST 'regional_control_intel' [07:41, 05:38](1085 MB) +PASS -- TEST 'regional_restart_intel' [05:36, 03:17](1085 MB) +PASS -- TEST 'regional_decomp_intel' [07:40, 05:48](1099 MB) +PASS -- TEST 'regional_2threads_intel' [05:40, 04:04](1063 MB) +PASS -- TEST 'regional_noquilt_intel' [07:45, 05:26](1423 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:26](1116 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 05:40](1111 MB) +PASS -- TEST 'regional_wofs_intel' [08:37, 07:06](1904 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:20] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:46, 07:55](1109 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:07, 04:19](1264 MB) +PASS -- TEST 'rap_decomp_intel' [10:41, 08:20](1033 MB) +PASS -- TEST 'rap_2threads_intel' [10:40, 08:52](1100 MB) +PASS -- TEST 'rap_restart_intel' [06:49, 04:14](1092 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:43, 07:54](1106 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:43, 08:19](1027 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:53, 06:05](1128 MB) +PASS -- TEST 'hrrr_control_intel' [05:42, 04:04](1040 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:37, 04:12](1023 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:34, 04:24](1086 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:13](995 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:49, 08:02](1069 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:37](1980 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 09:30](2055 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:02] +PASS -- TEST 'control_csawmg_intel' [08:43, 06:27](1021 MB) +PASS -- TEST 'control_ras_intel' [05:27, 03:25](735 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 10:08] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:55, 11:32](1652 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:32] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:55, 02:51](1879 MB) +PASS -- TEST 'regional_control_faster_intel' [06:39, 04:55](1118 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 08:13] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 02:29](1618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:46, 02:24](1626 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:12](827 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:55](827 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:30](1136 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:57](835 MB) +PASS -- TEST 'control_diag_debug_intel' [04:48, 02:51](1688 MB) +PASS -- TEST 'control_debug_p8_intel' [04:40, 02:51](1911 MB) +PASS -- TEST 'regional_debug_intel' [20:37, 18:11](1105 MB) +PASS -- TEST 'rap_control_debug_intel' [07:25, 05:19](1204 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:00](1207 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 05:21](1205 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 05:04](1209 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 05:21](1198 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:25](1292 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:18](1206 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:25, 05:27](1213 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:27, 05:11](1205 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 05:22](1209 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:22, 05:08](1187 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 05:16](1217 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:29, 08:46](1214 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 05:21](1176 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:32, 05:14](1212 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 05:19](1189 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:51](1215 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:33] +PASS -- TEST 'control_csawmg_debug_gnu' [04:39, 02:23](721 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:41] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:47, 13:36](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:00, 04:07](1135 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:44](1052 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 03:31](988 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:38, 07:33](1015 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:34, 03:53](973 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:41](936 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:40, 05:11](1020 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:53](925 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:58, 02:08](1188 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:03](1166 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:14](1091 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:18](980 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:51] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 05:02](1089 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 05:06](1054 MB) +PASS -- TEST 'conus13km_debug_intel' [16:54, 14:13](1238 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 14:15](931 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:49, 12:45](1212 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:49, 14:23](1341 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:54] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 05:11](1131 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 11:50] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:19, 05:13](724 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:33, 06:09](1111 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:11](805 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:20, 14:58](839 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:27, 18:55](872 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:57, 05:45](489 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:23, 07:03](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:53](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:05, 07:31](481 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:53](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 03:53](517 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:17](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:13](398 MB) +PASS -- TEST 'gnv1_nested_intel' [07:29, 04:08](1728 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:17] ( 1465 warnings 1444 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 13:24](580 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:48] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:57, 10:18](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:03, 10:28](691 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 11:55] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:26, 08:14](685 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 11:11] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:20, 06:43](814 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:48](795 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:38](1214 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:36] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:55](1154 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:44](1117 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:50](1030 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:45](1030 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:48](1029 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:50](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:49](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:41](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:14, 06:19](1073 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:11, 06:32](1050 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:52](1172 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:10](2525 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:04](2463 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:36] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:24](1070 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:25] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:49](1161 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:15] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:46](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 00:48](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:33](325 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:25] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:36](569 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:20](459 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:06] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:05, 03:42](1939 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:55, 04:49](1981 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 11:14] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:59, 03:56](1858 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:08](1091 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 05:47] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:57, 05:07](1881 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 11:05] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:49, 02:00](1918 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:40] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:55, 04:19](3179 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:54, 05:23](3057 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 05:08](3101 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:32] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:10, 09:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:27, 11:38](1112 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:54] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:37, 08:29](1052 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [09:11, 07:07] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:38, 05:01](978 MB) + +PASS -- COMPILE 'atm_gnu' [06:10, 05:00] +PASS -- TEST 'control_c48_gnu' [11:41, 09:41](1508 MB) +PASS -- TEST 'control_stochy_gnu' [05:22, 03:32](493 MB) +PASS -- TEST 'control_ras_gnu' [07:21, 04:57](499 MB) +PASS -- TEST 'control_p8_gnu' [06:54, 04:30](1458 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:48, 04:36](1444 MB) +PASS -- TEST 'control_flake_gnu' [12:24, 10:27](540 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:20] +PASS -- TEST 'rap_control_gnu' [13:38, 11:34](804 MB) +PASS -- TEST 'rap_decomp_gnu' [13:31, 11:46](808 MB) +PASS -- TEST 'rap_2threads_gnu' [19:37, 17:27](907 MB) +PASS -- TEST 'rap_restart_gnu' [07:39, 05:55](569 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:36, 11:24](807 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:34, 11:42](811 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:54, 08:46](573 MB) +PASS -- TEST 'hrrr_control_gnu' [07:36, 05:59](809 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:31, 05:55](788 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:34, 08:40](897 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:57](801 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:26, 03:04](558 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 03:04](647 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:43, 11:16](800 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:57] +PASS -- TEST 'control_csawmg_gnu' [10:35, 08:36](734 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:54] +PASS -- TEST 'control_diag_debug_gnu' [03:44, 01:37](1270 MB) +PASS -- TEST 'regional_debug_gnu' [13:36, 12:01](745 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:38](811 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:40](814 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:21, 02:42](821 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:21, 02:38](822 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:35, 02:54](901 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:23, 04:08](821 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:39](817 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:42](813 MB) +PASS -- TEST 'control_ras_debug_gnu' [18:23, 16:04](451 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:47](446 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:41](1444 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:40](821 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:23, 02:43](823 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:28](832 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:28] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:10] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:38, 09:44](696 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:37, 05:09](696 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:33, 15:29](734 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:29, 08:01](732 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:29, 05:18](687 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:42, 07:18](549 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:31, 02:44](530 MB) +PASS -- TEST 'conus13km_control_gnu' [05:55, 03:10](865 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:51, 01:35](870 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:49, 01:49](539 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:58] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:38, 06:03](723 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:46] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:23, 02:35](701 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:24, 02:33](700 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:47, 06:48](880 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:42, 06:54](569 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [07:40, 05:54](891 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:51](949 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:49] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:37](728 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:30] + +PASS -- COMPILE 's2s_gnu' [18:11, 16:14] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:07, 11:43](1495 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:09] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 16:02] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:11, 22:08](1451 MB) PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 03:02] -PASS -- COMPILE 'datm_cdeps_gnu' [18:12, 15:42] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:19, 03:08](692 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:44] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:05](697 MB) SYNOPSIS: -Starting Date/Time: 20250123 01:38:06 -Ending Date/Time: 20250123 06:26:28 -Total Time: 04h:48m:39s +Starting Date/Time: 20250130 04:32:42 +Ending Date/Time: 20250130 06:24:07 +Total Time: 01h:51m:48s Compiles Completed: 62/62 -Tests Completed: 247/250 +Tests Completed: 248/250 Failed Tests: -* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/pr-2387/tests/logs/log_hera/run_cpld_restart_p8_lnd_intel.log -* TEST datm_cdeps_lm4_gswp3_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch2/NCEPDEV/marine/Jong.Kim/UFS-RT/pr-2387/tests/logs/log_hera/run_datm_cdeps_lm4_gswp3_intel.log -* TEST datm_cdeps_lm4_gswp3_rst_intel: FAILED: UNABLE TO START TEST +* TEST cpld_control_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2548/ufs-weather-model/tests/logs/log_hera/run_cpld_control_p8_lnd_intel.log +* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO START TEST -- LOG: N/A NOTES: @@ -432,20 +431,20 @@ Result: FAILURE ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -0fc9036195cc178e1d4938163575ebb6cade49d2 +9405db9e8a2159a1e5bd80da2936acddfd5cb7a7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) + 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) - 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -457,27 +456,24 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250122 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_1696385 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_4107113 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list * (-e) - USE ECFLOW -PASS -- COMPILE 's2swal_intel' [16:12, 14:16] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [14:03, 10:22](3232 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:58, 05:33](3154 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:37] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:59, 00:38](562 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:23](451 MB) +PASS -- COMPILE 's2swal_intel' [15:11, 13:54] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [15:24, 09:37](3267 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [11:25, 04:47](3156 MB) SYNOPSIS: -Starting Date/Time: 20250123 21:00:55 -Ending Date/Time: 20250123 21:42:23 -Total Time: 00h:45m:14s -Compiles Completed: 2/2 -Tests Completed: 4/4 +Starting Date/Time: 20250130 17:58:47 +Ending Date/Time: 20250130 18:42:03 +Total Time: 00h:43m:31s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 6cdf002ae1..80b3b5416c 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF hercules REGRESSION TESTING LOG==== UFSWM hash used in testing: -d010f320cfc5493ac49f186c3e0ffb15ba26c0c7 +692fa94443d70a890d1771aba742f93963fdecbb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) + 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) + 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -26,7 +26,7 @@ Submodule hashes used in testing: 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -37,441 +37,412 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250122 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_1591501 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_833487 UFS_TEST.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE s2swa_32bit_intel [11:17, 11:17](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [09:49, 09:00] (2150288 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [15:14, 15:14](1 warnings,11 remarks) -PASS -- TEST cpld_control_gfsv17_intel [19:22, 18:26] (2020564 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [19:27, 18:20] (2326176 MB) -PASS -- TEST cpld_restart_gfsv17_intel [08:08, 06:56] (1355472 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [20:24, 19:29] (1923668 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [17:35, 17:35](1 warnings,11 remarks) -PASS -- TEST cpld_control_sfs_intel [17:50, 17:18] (1979956 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [07:47, 07:47](1523 warnings,1943 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [24:46, 23:50] (1989836 MB) - -PASS -- COMPILE s2swa_intel [13:00, 13:00](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_intel [11:30, 10:32] (2200692 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [10:53, 10:00] (2202364 MB) -PASS -- TEST cpld_restart_p8_intel [06:10, 05:15] (1952240 MB) -PASS -- TEST cpld_control_qr_p8_intel [10:48, 09:58] (2215524 MB) -PASS -- TEST cpld_restart_qr_p8_intel [05:51, 05:09] (1737248 MB) -PASS -- TEST cpld_2threads_p8_intel [12:11, 11:26] (2443624 MB) -PASS -- TEST cpld_decomp_p8_intel [10:12, 09:23] (2198052 MB) -PASS -- TEST cpld_mpi_p8_intel [09:42, 08:53] (2098444 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [10:19, 09:28] (2207960 MB) -PASS -- TEST cpld_control_c192_p8_intel [17:04, 15:41] (2980052 MB) -PASS -- TEST cpld_restart_c192_p8_intel [09:20, 07:28] (2907716 MB) -PASS -- TEST cpld_bmark_p8_intel [18:40, 13:42] (3862980 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [14:06, 07:42] (3682120 MB) - -PASS -- COMPILE s2swal_intel [13:13, 13:13](1 warnings,12 remarks) -PASS -- TEST cpld_control_p8_lnd_intel [10:58, 10:12] (2167332 MB) -PASS -- TEST cpld_s2sa_p8_intel [08:51, 08:05] (2177604 MB) - -PASS -- COMPILE s2sw_intel [12:38, 12:38](1 warnings,11 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [08:32, 07:47] (2017020 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [06:46, 06:01] (2109772 MB) - -PASS -- COMPILE s2swa_debug_intel [07:47, 07:47](1413 warnings,1173 remarks) -PASS -- TEST cpld_debug_p8_intel [15:18, 14:30] (2238844 MB) - -PASS -- COMPILE s2sw_debug_intel [06:37, 06:36](1413 warnings,1173 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [06:58, 06:16] (2034868 MB) - -PASS -- COMPILE s2s_aoflux_intel [10:48, 10:48],3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:37, 04:56] (2058204 MB) - -PASS -- COMPILE s2s_intel [10:38, 10:38](1 warnings,3 remarks) -PASS -- TEST cpld_control_c48_intel [06:32, 06:02] (3028920 MB) -PASS -- TEST cpld_warmstart_c48_intel [02:37, 02:11] (3022768 MB) -PASS -- TEST cpld_restart_c48_intel [01:17, 01:01] (2476552 MB) - -PASS -- COMPILE s2swa_faster_intel [12:41, 12:41](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_faster_intel [09:44, 08:51] (2199056 MB) - -PASS -- COMPILE s2sw_pdlib_intel [15:33, 15:33](1 warnings,11 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [15:18, 14:29] (2064364 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [08:14, 07:20] (1394688 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [16:36, 15:51] (1999516 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [04:44, 04:44](1523 warnings,1943 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [27:13, 26:17] (2039020 MB) - -PASS -- COMPILE atm_dyn32_intel [09:06, 09:06](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:07, 02:55] (702600 MB) -PASS -- TEST control_CubedSphereGrid_intel [02:35, 02:11] (1605556 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [02:46, 02:18] (1620508 MB) -PASS -- TEST control_latlon_intel [02:33, 02:15] (1618720 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [02:41, 02:17] (1620912 MB) -PASS -- TEST control_c48_intel [06:53, 06:32] (1708728 MB) -PASS -- TEST control_c48.v2.sfc_intel [06:12, 05:59] (832860 MB) -PASS -- TEST control_c48_lnd_iau_intel [06:52, 06:31] (1710584 MB) -PASS -- TEST control_c192_intel [07:10, 06:38] (1765936 MB) -PASS -- TEST control_c384_intel [08:40, 07:31] (2017992 MB) -PASS -- TEST control_c384gdas_intel [09:02, 07:31] (1506512 MB) -PASS -- TEST control_stochy_intel [01:39, 01:27] (664912 MB) -PASS -- TEST control_stochy_restart_intel [01:12, 00:54] (536692 MB) -PASS -- TEST control_lndp_intel [01:30, 01:21] (669504 MB) -PASS -- TEST control_iovr4_intel [02:26, 02:11] (659668 MB) -PASS -- TEST control_iovr5_intel [02:21, 02:08] (668852 MB) -PASS -- TEST control_p8_intel [03:23, 02:39] (1903972 MB) -PASS -- TEST control_p8.v2.sfc_intel [03:26, 02:41] (1892620 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:19, 02:33] (1899500 MB) -PASS -- TEST control_restart_p8_intel [02:21, 01:42] (1163168 MB) -PASS -- TEST control_noqr_p8_intel [03:05, 02:30] (1897040 MB) -PASS -- TEST control_restart_noqr_p8_intel [02:11, 01:32] (1209372 MB) -PASS -- TEST control_decomp_p8_intel [03:10, 02:34] (1886700 MB) -PASS -- TEST control_2threads_p8_intel [04:45, 04:09] (1960972 MB) -PASS -- TEST control_p8_lndp_intel [05:59, 05:28] (1891308 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:30, 03:53] (1978508 MB) -PASS -- TEST control_p8_mynn_intel [04:13, 03:32] (1902648 MB) -PASS -- TEST merra2_thompson_intel [03:52, 03:04] (1911320 MB) -PASS -- TEST regional_control_intel [05:01, 04:45] (1225744 MB) -PASS -- TEST regional_restart_intel [02:54, 02:40] (1182860 MB) -PASS -- TEST regional_decomp_intel [05:17, 04:59] (1215772 MB) -PASS -- TEST regional_2threads_intel [04:43, 04:25] (1113356 MB) -PASS -- TEST regional_noquilt_intel [04:47, 04:32] (1546700 MB) -PASS -- TEST regional_netcdf_parallel_intel [05:01, 04:41] (1208284 MB) -PASS -- TEST regional_2dwrtdecomp_intel [04:58, 04:43] (1221156 MB) -PASS -- TEST regional_wofs_intel [06:16, 05:58] (2059480 MB) - -PASS -- COMPILE rrfs_intel [08:33, 08:33](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [07:30, 06:54] (1213060 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:20, 03:28] (1359544 MB) -PASS -- TEST rap_decomp_intel [07:49, 07:14] (1147076 MB) -PASS -- TEST rap_2threads_intel [10:00, 09:23] (1225784 MB) -PASS -- TEST rap_restart_intel [04:18, 03:37] (1133948 MB) -PASS -- TEST rap_sfcdiff_intel [07:25, 06:50] (1205616 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [07:41, 07:03] (1159744 MB) -PASS -- TEST rap_sfcdiff_restart_intel [06:00, 05:14] (1206352 MB) -PASS -- TEST hrrr_control_intel [04:15, 03:38] (1089488 MB) -PASS -- TEST hrrr_control_decomp_intel [04:14, 03:33] (1042792 MB) -PASS -- TEST hrrr_control_2threads_intel [05:25, 04:41] (1145128 MB) -PASS -- TEST hrrr_control_restart_intel [02:07, 01:59] (1034592 MB) -PASS -- TEST rrfs_v1beta_intel [07:26, 06:40] (1188884 MB) -PASS -- TEST rrfs_v1nssl_intel [08:48, 08:39] (1993496 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:26, 08:12] (2204520 MB) - -PASS -- COMPILE csawmg_intel [08:13, 08:13] -PASS -- TEST control_csawmg_intel [05:53, 05:39] (1049884 MB) -PASS -- TEST control_ras_intel [03:06, 02:58] (864904 MB) - -PASS -- COMPILE wam_intel [08:30, 08:30],1 remarks) -PASS -- TEST control_wam_intel [10:15, 09:55] (1663780 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [08:47, 08:47],1 remarks) -PASS -- TEST control_p8_faster_intel [03:07, 02:28] (1902520 MB) -PASS -- TEST regional_control_faster_intel [04:33, 04:16] (1222108 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [06:20, 06:20](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:35, 02:16] (1627684 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:25, 02:01] (1629788 MB) -PASS -- TEST control_stochy_debug_intel [02:45, 02:35] (831828 MB) -PASS -- TEST control_lndp_debug_intel [02:44, 02:37] (841320 MB) -PASS -- TEST control_csawmg_debug_intel [05:24, 05:05] (1151036 MB) -PASS -- TEST control_ras_debug_intel [02:28, 02:21] (848140 MB) -PASS -- TEST control_diag_debug_intel [02:41, 02:23] (1697340 MB) -PASS -- TEST control_debug_p8_intel [03:41, 03:18] (1926052 MB) -PASS -- TEST regional_debug_intel [15:35, 15:16] (1163684 MB) -PASS -- TEST rap_control_debug_intel [04:20, 04:13] (1222652 MB) -PASS -- TEST hrrr_control_debug_intel [04:31, 04:24] (1216240 MB) -PASS -- TEST hrrr_gf_debug_intel [04:19, 04:10] (1219352 MB) -PASS -- TEST hrrr_c3_debug_intel [04:22, 04:11] (1219884 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [04:26, 04:14] (1229292 MB) -PASS -- TEST rap_diag_debug_intel [04:42, 04:30] (1308904 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [04:50, 04:39] (1233540 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [04:21, 04:15] (1231560 MB) -PASS -- TEST rap_lndp_debug_intel [04:24, 04:13] (1219548 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [04:44, 04:32] (1221216 MB) -PASS -- TEST rap_noah_debug_intel [04:13, 04:05] (1224472 MB) -PASS -- TEST rap_sfcdiff_debug_intel [04:18, 04:11] (1227876 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [06:51, 06:42] (1219412 MB) -PASS -- TEST rrfs_v1beta_debug_intel [04:14, 04:07] (1224828 MB) -PASS -- TEST rap_clm_lake_debug_intel [04:24, 04:12] (1222792 MB) -PASS -- TEST rap_flake_debug_intel [04:50, 04:42] (1229404 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [07:51, 07:15] (1240424 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [03:59, 03:59] -PASS -- TEST control_csawmg_debug_gnu [03:31, 03:13] (1042760 MB) - -PASS -- COMPILE wam_debug_intel [04:21, 04:21](837 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [09:01, 09:01](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:22, 03:47] (1247124 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [06:17, 05:43] (1186236 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [03:42, 02:58] (1027484 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [08:38, 08:01] (1133172 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:58, 04:12] (1064976 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:46, 03:06] (994948 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [04:41, 04:14] (1095736 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [01:45, 01:38] (942944 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [07:58, 07:58](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:07, 01:44] (1296380 MB) -PASS -- TEST conus13km_2threads_intel [01:16, 00:58] (1176496 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:23, 01:04] (1145152 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [08:25, 08:24](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:08, 03:50] (1091104 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:54, 03:54](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:19, 04:12] (1104500 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:20, 04:10] (1109036 MB) -PASS -- TEST conus13km_debug_intel [12:09, 11:43] (1337140 MB) -PASS -- TEST conus13km_debug_qr_intel [12:18, 11:49] (999504 MB) -PASS -- TEST conus13km_debug_2threads_intel [13:12, 12:49] (1232380 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [11:54, 11:34] (1397028 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:54, 03:54](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:43, 04:34] (1162004 MB) - -PASS -- COMPILE hafsw_intel [10:24, 10:24](1 warnings,10 remarks) -PASS -- TEST hafs_regional_atm_intel [06:41, 05:46] (843316 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:28, 06:09] (1257512 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [09:05, 07:56] (921816 MB) -PASS -- TEST hafs_regional_atm_wav_intel [15:47, 14:46] (960800 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [19:48, 18:32] (1133092 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [07:58, 07:16] (599412 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [10:04, 09:03] (609736 MB) -PASS -- TEST hafs_global_1nest_atm_intel [04:12, 03:39] (439128 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:37, 09:52] (554756 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:32, 05:01] (600460 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:20, 04:42] (602644 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:51, 05:12] (654588 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [02:00, 01:43] (456820 MB) - -PASS -- COMPILE hafsw_debug_intel [04:20, 04:19](1465 warnings,1445 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [13:10, 12:27] (634868 MB) - -PASS -- COMPILE hafsw_faster_intel [10:28, 10:28],9 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [19:43, 18:49] (733824 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [19:08, 18:13] (830412 MB) +PASS -- COMPILE s2swa_32bit_intel [12:42, 12:42](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [09:00, 08:12] (2140280 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [17:10, 17:10](1 warnings,11 remarks) +PASS -- TEST cpld_control_gfsv17_intel [18:50, 18:00] (2004408 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [19:58, 19:07] (2328648 MB) +PASS -- TEST cpld_restart_gfsv17_intel [07:46, 06:54] (1351332 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [19:18, 18:30] (1923740 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [17:36, 17:36](1 warnings,11 remarks) +PASS -- TEST cpld_control_sfs_intel [17:10, 16:49] (1981460 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [07:09, 07:09](1523 warnings,1943 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [24:45, 23:49] (1982176 MB) + +PASS -- COMPILE s2swa_intel [12:45, 12:45](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_intel [10:40, 09:45] (2216340 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [10:18, 09:30] (2205396 MB) +PASS -- TEST cpld_restart_p8_intel [05:57, 04:57] (1957968 MB) +PASS -- TEST cpld_control_qr_p8_intel [10:20, 09:34] (2226596 MB) +PASS -- TEST cpld_restart_qr_p8_intel [05:46, 05:09] (1735276 MB) +PASS -- TEST cpld_2threads_p8_intel [12:11, 11:23] (2439620 MB) +PASS -- TEST cpld_decomp_p8_intel [10:33, 09:55] (2186048 MB) +PASS -- TEST cpld_mpi_p8_intel [09:51, 09:01] (2106308 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [09:46, 09:10] (2202700 MB) +PASS -- TEST cpld_control_c192_p8_intel [17:41, 16:15] (2984844 MB) +PASS -- TEST cpld_restart_c192_p8_intel [08:51, 07:02] (2912620 MB) +PASS -- TEST cpld_bmark_p8_intel [17:27, 12:33] (3873404 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [14:35, 08:10] (3679088 MB) + +PASS -- COMPILE s2swal_intel [12:43, 12:43](1 warnings,12 remarks) +PASS -- TEST cpld_control_p8_lnd_intel [10:14, 09:17] (2173552 MB) +PASS -- TEST cpld_restart_p8_lnd_intel [05:59, 05:00] (1950796 MB) +PASS -- TEST cpld_s2sa_p8_intel [08:53, 08:13] (2171660 MB) + +PASS -- COMPILE s2sw_intel [12:11, 12:11](1 warnings,11 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [08:26, 07:46] (2020828 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [06:48, 06:04] (2110704 MB) + +PASS -- COMPILE s2swa_debug_intel [04:58, 04:58](1413 warnings,1173 remarks) +PASS -- TEST cpld_debug_p8_intel [15:03, 14:15] (2234064 MB) + +PASS -- COMPILE s2sw_debug_intel [04:44, 04:44](1413 warnings,1173 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [06:36, 05:55] (2040872 MB) + +PASS -- COMPILE s2s_aoflux_intel [10:26, 10:26],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [04:52, 04:13] (2067740 MB) + +PASS -- COMPILE s2s_intel [10:19, 10:19](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [08:16, 07:47] (3037832 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:13, 01:46] (3024796 MB) +PASS -- TEST cpld_restart_c48_intel [01:30, 01:03] (2482864 MB) + +PASS -- COMPILE s2swa_faster_intel [12:18, 12:18](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_faster_intel [08:52, 08:12] (2207952 MB) + +PASS -- COMPILE s2sw_pdlib_intel [16:47, 16:46](1 warnings,11 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [16:12, 15:28] (2075356 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [07:54, 07:03] (1397320 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [16:24, 15:50] (2001060 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [04:33, 04:33](1523 warnings,1943 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [26:03, 25:19] (2043728 MB) + +PASS -- COMPILE atm_dyn32_intel [09:10, 09:10](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:07, 02:56] (716152 MB) +PASS -- TEST control_CubedSphereGrid_intel [02:37, 02:15] (1619480 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [02:40, 02:15] (1608416 MB) +PASS -- TEST control_latlon_intel [02:27, 02:08] (1609688 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [02:39, 02:18] (1606164 MB) +PASS -- TEST control_c48_intel [06:45, 06:24] (1696416 MB) +PASS -- TEST control_c48.v2.sfc_intel [08:28, 08:14] (835104 MB) +PASS -- TEST control_c48_lnd_iau_intel [06:47, 06:26] (1702560 MB) +PASS -- TEST control_c192_intel [07:10, 06:43] (1755952 MB) +PASS -- TEST control_c384_intel [08:34, 07:29] (2021212 MB) +PASS -- TEST control_c384gdas_intel [09:01, 07:34] (1511348 MB) +PASS -- TEST control_stochy_intel [01:39, 01:31] (669872 MB) +PASS -- TEST control_stochy_restart_intel [01:18, 01:05] (527392 MB) +PASS -- TEST control_lndp_intel [01:35, 01:25] (667472 MB) +PASS -- TEST control_iovr4_intel [02:20, 02:10] (660784 MB) +PASS -- TEST control_iovr5_intel [02:17, 02:09] (664264 MB) +PASS -- TEST control_p8_intel [03:39, 03:00] (1903904 MB) +PASS -- TEST control_p8.v2.sfc_intel [03:44, 03:05] (1891704 MB) +PASS -- TEST control_p8_ugwpv1_intel [03:35, 02:59] (1893148 MB) +PASS -- TEST control_restart_p8_intel [02:06, 01:34] (1150512 MB) +PASS -- TEST control_noqr_p8_intel [03:43, 03:08] (1890764 MB) +PASS -- TEST control_restart_noqr_p8_intel [01:59, 01:35] (1212040 MB) +PASS -- TEST control_decomp_p8_intel [03:19, 02:42] (1871268 MB) +PASS -- TEST control_2threads_p8_intel [04:16, 03:37] (1950484 MB) +PASS -- TEST control_p8_lndp_intel [04:51, 04:26] (1896040 MB) +PASS -- TEST control_p8_rrtmgp_intel [04:24, 03:46] (1966416 MB) +PASS -- TEST control_p8_mynn_intel [03:28, 02:49] (1908180 MB) +PASS -- TEST merra2_thompson_intel [03:48, 03:02] (1899472 MB) +PASS -- TEST regional_control_intel [05:04, 04:50] (1229940 MB) +PASS -- TEST regional_restart_intel [02:57, 02:40] (1179460 MB) +PASS -- TEST regional_decomp_intel [05:12, 04:54] (1208796 MB) +PASS -- TEST regional_2threads_intel [04:56, 04:31] (1111664 MB) +PASS -- TEST regional_noquilt_intel [04:51, 04:35] (1547660 MB) +PASS -- TEST regional_netcdf_parallel_intel [04:58, 04:40] (1216508 MB) +PASS -- TEST regional_2dwrtdecomp_intel [04:52, 04:38] (1226824 MB) +PASS -- TEST regional_wofs_intel [06:31, 06:16] (2072776 MB) + +PASS -- COMPILE rrfs_intel [08:32, 08:31](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:25, 06:49] (1209828 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:05, 03:29] (1375104 MB) +PASS -- TEST rap_decomp_intel [07:42, 07:08] (1124904 MB) +PASS -- TEST rap_2threads_intel [09:02, 08:21] (1214012 MB) +PASS -- TEST rap_restart_intel [04:25, 03:40] (1144188 MB) +PASS -- TEST rap_sfcdiff_intel [07:29, 06:51] (1203344 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [07:42, 07:06] (1143484 MB) +PASS -- TEST rap_sfcdiff_restart_intel [05:53, 05:06] (1221852 MB) +PASS -- TEST hrrr_control_intel [04:10, 03:32] (1081180 MB) +PASS -- TEST hrrr_control_decomp_intel [04:18, 03:40] (1038000 MB) +PASS -- TEST hrrr_control_2threads_intel [05:17, 04:39] (1156440 MB) +PASS -- TEST hrrr_control_restart_intel [02:10, 01:55] (1020372 MB) +PASS -- TEST rrfs_v1beta_intel [07:49, 07:01] (1204032 MB) +PASS -- TEST rrfs_v1nssl_intel [09:13, 08:58] (2002856 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:41, 08:32] (2187248 MB) + +PASS -- COMPILE csawmg_intel [08:07, 08:07] +PASS -- TEST control_csawmg_intel [05:59, 05:43] (1056612 MB) +PASS -- TEST control_ras_intel [03:19, 03:03] (835032 MB) + +PASS -- COMPILE wam_intel [08:44, 08:44],1 remarks) +PASS -- TEST control_wam_intel [10:30, 10:10] (1661492 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [08:46, 08:46],1 remarks) +PASS -- TEST control_p8_faster_intel [03:06, 02:30] (1897408 MB) +PASS -- TEST regional_control_faster_intel [04:38, 04:18] (1221208 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [06:29, 06:29](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:26, 02:01] (1645792 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:23, 01:56] (1632420 MB) +PASS -- TEST control_stochy_debug_intel [02:46, 02:37] (834056 MB) +PASS -- TEST control_lndp_debug_intel [02:27, 02:21] (839216 MB) +PASS -- TEST control_csawmg_debug_intel [04:53, 04:34] (1156820 MB) +PASS -- TEST control_ras_debug_intel [02:32, 02:22] (847532 MB) +PASS -- TEST control_diag_debug_intel [02:43, 02:21] (1695868 MB) +PASS -- TEST control_debug_p8_intel [02:48, 02:26] (1922956 MB) +PASS -- TEST regional_debug_intel [14:47, 14:29] (1150520 MB) +PASS -- TEST rap_control_debug_intel [04:16, 04:08] (1220340 MB) +PASS -- TEST hrrr_control_debug_intel [04:12, 04:02] (1215956 MB) +PASS -- TEST hrrr_gf_debug_intel [04:12, 04:04] (1232432 MB) +PASS -- TEST hrrr_c3_debug_intel [04:22, 04:06] (1216788 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:16, 04:10] (1226628 MB) +PASS -- TEST rap_diag_debug_intel [04:34, 04:20] (1312628 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [04:27, 04:19] (1231316 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [04:23, 04:16] (1223548 MB) +PASS -- TEST rap_lndp_debug_intel [04:23, 04:15] (1222212 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:17, 04:11] (1233112 MB) +PASS -- TEST rap_noah_debug_intel [04:12, 04:07] (1231012 MB) +PASS -- TEST rap_sfcdiff_debug_intel [04:16, 04:07] (1223016 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [06:45, 06:33] (1235660 MB) +PASS -- TEST rrfs_v1beta_debug_intel [04:11, 04:05] (1216124 MB) +PASS -- TEST rap_clm_lake_debug_intel [04:37, 04:26] (1224160 MB) +PASS -- TEST rap_flake_debug_intel [04:16, 04:05] (1219736 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [07:57, 07:17] (1236484 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:17, 04:16] +PASS -- TEST control_csawmg_debug_gnu [02:17, 01:57] (1041900 MB) + +PASS -- COMPILE wam_debug_intel [04:31, 04:31](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [09:26, 09:26](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:00, 03:23] (1260792 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [06:05, 05:29] (1136644 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [04:49, 04:02] (1014612 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:35, 08:01] (1132168 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:53, 04:08] (1025388 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:00, 03:13] (985276 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [04:59, 04:18] (1099420 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:04, 01:40] (946164 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [09:26, 09:26](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:13, 01:46] (1279908 MB) +PASS -- TEST conus13km_2threads_intel [01:17, 00:57] (1187012 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:26, 01:06] (1142988 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [09:26, 09:26](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:08, 03:50] (1078852 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:55, 03:55](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:27, 05:17] (1100048 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:13, 04:04] (1096708 MB) +PASS -- TEST conus13km_debug_intel [11:45, 11:28] (1350168 MB) +PASS -- TEST conus13km_debug_qr_intel [12:21, 11:58] (992840 MB) +PASS -- TEST conus13km_debug_2threads_intel [13:18, 13:02] (1233128 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [12:01, 11:41] (1405592 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:36, 03:35](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:32, 04:22] (1166660 MB) + +PASS -- COMPILE hafsw_intel [10:09, 10:09](1 warnings,10 remarks) +PASS -- TEST hafs_regional_atm_intel [07:05, 06:12] (834080 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:06, 05:53] (1260616 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [08:32, 07:33] (917068 MB) +PASS -- TEST hafs_regional_atm_wav_intel [15:32, 14:40] (957048 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [18:14, 17:07] (975388 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [07:54, 07:18] (597540 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [10:28, 09:22] (606852 MB) +PASS -- TEST hafs_global_1nest_atm_intel [04:03, 03:36] (443144 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:55, 10:12] (557532 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:23, 04:56] (599712 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:13, 04:41] (605984 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:44, 05:05] (662316 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [02:05, 01:47] (459220 MB) + +PASS -- COMPILE hafsw_debug_intel [04:01, 04:01](1465 warnings,1445 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [13:19, 12:31] (636800 MB) + +PASS -- COMPILE hafsw_faster_intel [11:05, 11:05],9 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [19:38, 18:48] (753544 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [19:08, 18:16] (840704 MB) PASS -- COMPILE hafs_mom6w_intel [11:08, 11:08],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:44, 12:32] (818180 MB) - -PASS -- COMPILE hafs_all_intel [10:49, 10:48],9 remarks) -PASS -- TEST hafs_regional_docn_intel [06:28, 05:34] (895312 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [06:31, 05:37] (910280 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [17:04, 16:31] (1342156 MB) - -PASS -- COMPILE datm_cdeps_intel [05:20, 05:20],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [02:20, 02:14] (1150892 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:25, 01:19] (1111496 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [02:13, 02:07] (1025832 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [02:15, 02:09] (1012184 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:16, 02:10] (1025620 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:20, 02:14] (1152808 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:16, 02:12] (1143916 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:09, 02:05] (1021732 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:33, 04:58] (1167844 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [05:33, 04:59] (1163196 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:13, 02:10] (1151864 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:09, 03:04] (2459644 MB) -PASS -- TEST datm_cdeps_gfs_intel [03:10, 03:05] (2456028 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:10, 03:09](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [05:17, 05:13] (1082076 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [05:30, 05:30],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:15, 02:11] (1160976 MB) - -PASS -- COMPILE datm_cdeps_land_intel [00:49, 00:49],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:16, 00:57] (337124 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:05, 00:50] (565080 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:47, 00:33] (558352 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [08:49, 08:49],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [04:28, 03:36] (2008388 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [08:44, 08:43](1 warnings,1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [06:05, 05:29] (2038540 MB) - -PASS -- COMPILE atml_intel [10:03, 10:03](9 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_intel [05:47, 05:10] (1890116 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:24, 03:05] (1126804 MB) - -PASS -- COMPILE atml_debug_intel [05:29, 05:29](887 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [05:25, 04:49] (1916572 MB) - -PASS -- COMPILE atmw_intel [10:26, 10:26],9 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:29, 01:48] (1924164 MB) - -PASS -- COMPILE atmaero_intel [09:43, 09:42],1 remarks) -PASS -- TEST atmaero_control_p8_intel [05:12, 04:34] (2009216 MB) -PASS -- TEST atmaero_control_p8_rad_intel [05:11, 04:32] (1782068 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [05:09, 04:35] (1791088 MB) - -PASS -- COMPILE atmaq_debug_intel [04:44, 04:44](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [18:41, 17:31] (4530292 MB) - -PASS -- COMPILE atm_fbh_intel [08:12, 08:12](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [10:17, 10:05] (1108404 MB) - -PASS -- COMPILE datm_cdeps_intelllvm [10:48, 10:47] -PASS -- TEST datm_cdeps_control_cfsr_intelllvm [03:00, 02:54] (1141440 MB) - -PASS -- COMPILE datm_cdeps_debug_intelllvm [02:05, 02:05](2 warnings -PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [06:04, 05:59] (1085628 MB) - -PASS -- COMPILE atm_gnu [04:12, 04:11] -PASS -- TEST control_c48_gnu [08:20, 07:55] (1522156 MB) -PASS -- TEST control_stochy_gnu [02:32, 02:22] (718740 MB) -PASS -- TEST control_ras_gnu [04:04, 03:53] (726620 MB) -PASS -- TEST control_p8_gnu [04:16, 03:38] (1701792 MB) -PASS -- TEST control_p8_ugwpv1_gnu [04:02, 03:30] (1704424 MB) -PASS -- TEST control_flake_gnu [04:57, 04:47] (802584 MB) - -PASS -- COMPILE rrfs_gnu [04:45, 04:45] -PASS -- TEST rap_control_gnu [08:48, 08:15] (1074216 MB) -PASS -- TEST rap_decomp_gnu [09:11, 08:33] (1071864 MB) -PASS -- TEST rap_2threads_gnu [11:23, 10:42] (1015800 MB) -PASS -- TEST rap_restart_gnu [04:58, 04:15] (878008 MB) -PASS -- TEST rap_sfcdiff_gnu [08:42, 08:09] (1071400 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [09:07, 08:33] (1075272 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [06:45, 06:06] (876964 MB) -PASS -- TEST hrrr_control_gnu [04:55, 04:15] (1059036 MB) -PASS -- TEST hrrr_control_noqr_gnu [04:45, 04:12] (1129032 MB) -PASS -- TEST hrrr_control_2threads_gnu [04:32, 03:49] (1035500 MB) -PASS -- TEST hrrr_control_decomp_gnu [04:59, 04:19] (1060308 MB) -PASS -- TEST hrrr_control_restart_gnu [02:34, 02:19] (876792 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [02:37, 02:17] (924356 MB) -PASS -- TEST rrfs_v1beta_gnu [08:51, 08:08] (1070236 MB) - -PASS -- COMPILE csawmg_gnu [04:02, 04:01] -PASS -- TEST control_csawmg_gnu [07:46, 07:29] (1055076 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [06:29, 06:29] -PASS -- TEST control_diag_debug_gnu [01:43, 01:18] (1619988 MB) -PASS -- TEST regional_debug_gnu [08:42, 08:22] (1147876 MB) -PASS -- TEST rap_control_debug_gnu [02:12, 02:06] (1090332 MB) -PASS -- TEST hrrr_control_debug_gnu [02:08, 02:00] (1082748 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:16, 02:09] (1087840 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:19, 02:08] (1089880 MB) -PASS -- TEST rap_diag_debug_gnu [02:30, 02:12] (1262296 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:28, 03:21] (1087440 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:19, 02:09] (1090456 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [02:17, 02:09] (1083360 MB) -PASS -- TEST control_ras_debug_gnu [01:20, 01:13] (722556 MB) -PASS -- TEST control_stochy_debug_gnu [01:24, 01:17] (716300 MB) -PASS -- TEST control_debug_p8_gnu [01:55, 01:28] (1717900 MB) -PASS -- TEST rap_flake_debug_gnu [02:21, 02:07] (1091392 MB) -PASS -- TEST rap_clm_lake_debug_gnu [02:23, 02:09] (1093672 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:21, 03:39] (1095092 MB) - -PASS -- COMPILE wam_debug_gnu [02:55, 02:55] -PASS -- TEST control_wam_debug_gnu [06:07, 05:45] (1555404 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:43, 04:43] -PASS -- TEST rap_control_dyn32_phy32_gnu [11:08, 10:33] (952960 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:54, 04:06] (943524 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [04:25, 03:42] (874836 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:49, 04:06] (943068 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [06:39, 05:56] (852940 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:33, 02:15] (853656 MB) -PASS -- TEST conus13km_control_gnu [03:24, 02:57] (1258420 MB) -PASS -- TEST conus13km_2threads_gnu [07:22, 06:59] (1105024 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [01:54, 01:32] (923296 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [09:07, 09:07] -PASS -- TEST rap_control_dyn64_phy32_gnu [04:55, 04:36] (979344 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:26, 06:26] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [03:08, 02:56] (964496 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:11, 02:02] (958160 MB) -PASS -- TEST conus13km_debug_gnu [05:51, 05:26] (1273144 MB) -PASS -- TEST conus13km_debug_qr_gnu [06:02, 05:36] (947280 MB) -PASS -- TEST conus13km_debug_2threads_gnu [13:18, 12:55] (1121728 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [05:43, 05:19] (1347444 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [07:11, 07:11] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:23, 02:12] (993800 MB) - -PASS -- COMPILE s2swa_gnu [18:09, 18:09] -PASS -- COMPILE s2s_gnu [15:10, 15:10] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [10:16, 09:34] (3063256 MB) - -PASS -- COMPILE s2swa_debug_gnu [03:33, 03:33] -PASS -- COMPILE s2sw_pdlib_gnu [17:48, 17:48] -PASS -- TEST cpld_control_pdlib_p8_gnu [27:22, 26:45] (3011424 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [04:47, 04:47] -PASS -- TEST cpld_debug_pdlib_p8_gnu [16:04, 15:23] (2901248 MB) - -PASS -- COMPILE datm_cdeps_gnu [14:54, 14:52] -PASS -- TEST datm_cdeps_control_cfsr_gnu [03:12, 03:07] (766764 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:11, 12:04] (818144 MB) + +PASS -- COMPILE hafs_all_intel [11:25, 11:24],9 remarks) +PASS -- TEST hafs_regional_docn_intel [07:11, 06:17] (926376 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [07:11, 06:17] (888868 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:09, 16:35] (1340796 MB) + +PASS -- COMPILE datm_cdeps_intel [07:25, 07:25],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [02:55, 02:50] (1161316 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:52, 01:45] (1102760 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [03:07, 03:02] (1028424 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [02:16, 02:10] (1025552 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:15, 02:10] (1032448 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:17, 03:13] (1145532 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:31, 02:25] (1134276 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:24, 02:17] (1027388 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:28, 04:55] (1169396 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [05:30, 04:57] (1163940 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:06, 03:03] (1144396 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:25, 04:20] (2435620 MB) +PASS -- TEST datm_cdeps_gfs_intel [03:10, 03:05] (2393392 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [04:24, 04:24](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [09:22, 09:17] (1078988 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [05:32, 05:31],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:17, 02:12] (1164328 MB) + +PASS -- COMPILE datm_cdeps_land_intel [00:48, 00:47],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:09, 00:53] (341600 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [00:59, 00:47] (563368 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:50, 00:35] (566528 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [09:55, 09:55],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [04:34, 04:02] (2023144 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [09:13, 09:13](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [04:50, 04:19] (2039024 MB) + +PASS -- COMPILE atml_intel [09:18, 09:17](9 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_intel [05:44, 05:13] (1887604 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:06, 02:39] (1141600 MB) + +PASS -- COMPILE atml_debug_intel [05:04, 05:04](887 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [05:07, 04:32] (1906496 MB) + +PASS -- COMPILE atmw_intel [09:54, 09:54],9 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:19, 01:43] (1926196 MB) + +PASS -- COMPILE atmaero_intel [08:54, 08:54],1 remarks) +PASS -- TEST atmaero_control_p8_intel [04:26, 03:51] (2001832 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:10, 04:32] (1804228 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [04:59, 04:30] (1787884 MB) + +PASS -- COMPILE atmaq_debug_intel [03:39, 03:39](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [19:04, 17:55] (4537784 MB) + +PASS -- COMPILE atm_fbh_intel [07:47, 07:47](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [10:13, 10:03] (1114136 MB) + +PASS -- COMPILE datm_cdeps_intelllvm [12:27, 12:27] +PASS -- TEST datm_cdeps_control_cfsr_intelllvm [03:07, 03:03] (1118880 MB) + +PASS -- COMPILE datm_cdeps_debug_intelllvm [01:41, 01:41](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [06:12, 06:06] (1080392 MB) + +PASS -- COMPILE atm_gnu [04:51, 04:51] +PASS -- TEST control_c48_gnu [12:07, 11:45] (1526212 MB) +PASS -- TEST control_stochy_gnu [02:37, 02:26] (719464 MB) +PASS -- TEST control_ras_gnu [04:08, 04:00] (720180 MB) +PASS -- TEST control_p8_gnu [04:07, 03:32] (1697232 MB) +PASS -- TEST control_p8_ugwpv1_gnu [04:00, 03:32] (1720672 MB) +PASS -- TEST control_flake_gnu [04:51, 04:43] (802856 MB) + +PASS -- COMPILE rrfs_gnu [04:37, 04:37] +PASS -- TEST rap_control_gnu [08:57, 08:24] (1071424 MB) +PASS -- TEST rap_decomp_gnu [08:52, 08:16] (1074432 MB) +PASS -- TEST rap_restart_gnu [05:10, 04:24] (877896 MB) +PASS -- TEST rap_sfcdiff_gnu [08:44, 08:09] (1072828 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [08:57, 08:22] (1071116 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [07:02, 06:18] (877208 MB) +PASS -- TEST hrrr_control_gnu [04:45, 04:09] (1059648 MB) +PASS -- TEST hrrr_control_noqr_gnu [04:43, 04:15] (1128340 MB) +PASS -- TEST hrrr_control_2threads_gnu [04:46, 03:58] (1037264 MB) +PASS -- TEST hrrr_control_decomp_gnu [04:38, 04:03] (1062104 MB) +PASS -- TEST hrrr_control_restart_gnu [02:25, 02:18] (879396 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [02:20, 02:13] (927800 MB) +PASS -- TEST rrfs_v1beta_gnu [08:39, 08:00] (1069656 MB) + +PASS -- COMPILE csawmg_gnu [04:27, 04:27] +PASS -- TEST control_csawmg_gnu [07:25, 07:12] (1056232 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [06:13, 06:13] +PASS -- TEST control_diag_debug_gnu [01:31, 01:15] (1616456 MB) +PASS -- TEST regional_debug_gnu [07:27, 07:06] (1130100 MB) +PASS -- TEST rap_control_debug_gnu [02:08, 02:03] (1089936 MB) +PASS -- TEST hrrr_control_debug_gnu [02:08, 01:59] (1084692 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:09, 02:03] (1086072 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:29, 02:11] (1084724 MB) +PASS -- TEST rap_diag_debug_gnu [02:23, 02:07] (1261120 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:33, 03:22] (1085140 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:06, 02:01] (1091476 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:16, 02:10] (1080948 MB) +PASS -- TEST control_ras_debug_gnu [01:24, 01:19] (718348 MB) +PASS -- TEST control_stochy_debug_gnu [01:31, 01:23] (714892 MB) +PASS -- TEST control_debug_p8_gnu [01:50, 01:23] (1715700 MB) +PASS -- TEST rap_flake_debug_gnu [02:07, 01:58] (1087568 MB) +PASS -- TEST rap_clm_lake_debug_gnu [02:08, 02:01] (1094800 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:28, 03:51] (1093564 MB) + +PASS -- COMPILE wam_debug_gnu [02:51, 02:51] +PASS -- TEST control_wam_debug_gnu [06:05, 05:44] (1554172 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:28, 04:28] +PASS -- TEST rap_control_dyn32_phy32_gnu [08:22, 07:50] (955056 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:52, 03:58] (942896 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:45, 04:01] (941024 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [06:35, 05:54] (856856 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:25, 02:07] (854724 MB) +PASS -- TEST conus13km_control_gnu [02:53, 02:30] (1257776 MB) +PASS -- TEST conus13km_2threads_gnu [07:38, 07:13] (1108476 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [01:54, 01:29] (922888 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [08:42, 08:41] +PASS -- TEST rap_control_dyn64_phy32_gnu [05:01, 04:42] (983728 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:20, 06:20] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:22, 02:13] (970220 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:14, 02:01] (960416 MB) +PASS -- TEST conus13km_debug_gnu [05:51, 05:24] (1275168 MB) +PASS -- TEST conus13km_debug_qr_gnu [05:55, 05:32] (947748 MB) +PASS -- TEST conus13km_debug_2threads_gnu [13:21, 12:59] (1124376 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [05:42, 05:22] (1342712 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [06:07, 06:07] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:13, 02:04] (997256 MB) + +PASS -- COMPILE s2swa_gnu [16:22, 16:22] +PASS -- COMPILE s2s_gnu [15:06, 15:06] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [09:53, 09:12] (3049308 MB) + +PASS -- COMPILE s2swa_debug_gnu [04:08, 04:08] +PASS -- COMPILE s2sw_pdlib_gnu [14:44, 14:43] +PASS -- TEST cpld_control_pdlib_p8_gnu [26:43, 25:59] (3086144 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [03:13, 03:13] +PASS -- TEST cpld_debug_pdlib_p8_gnu [13:49, 13:10] (2894844 MB) + +PASS -- COMPILE datm_cdeps_gnu [14:17, 14:17] +PASS -- TEST datm_cdeps_control_cfsr_gnu [02:32, 02:25] (772400 MB) SYNOPSIS: -Starting Date/Time: 2025-01-22 19:46:20 -Ending Date/Time: 2025-01-23 00:51:16 -Total Time: 05h:04m:56s +Starting Date/Time: 2025-01-30 08:28:22 +Ending Date/Time: 2025-01-30 14:26:49 +Total Time: 05h:58m:27s Compiles Completed: 61/61 -Tests Completed: 247/249 +Tests Completed: 246/249 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 +Result: FAILED ====END OF hercules REGRESSION TESTING LOG==== ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -b69eb000484877560bc1e23123dbee1242f7a83e +692fa94443d70a890d1771aba742f93963fdecbb Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQMPASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:05, 00:53](565 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:45, 00:33](572 MB) - (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ -PASS -- COMPILE 'atml_intel' [09:22, 09:22] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [05:51, 05:12](1888 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:10, 02:44](1134 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:09, 05:09] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:00, 05:28](1908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:19, 04:19] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:22, 07:49](954 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:48, 07:15](895 MB) - -SYNOPSIS: -Starting Date/Time: 20250123 16:23:31 -Ending Date/Time: 20250123 16:51:02 -Total Time: 00h:27m:57s -Compiles Completed: 5/5 -Tests Completed: 10/10 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: SUCCESS - -====END OF HERCULES REGRESSION TESTING LOG==== - (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) + 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) + 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -483,7 +454,7 @@ Result: SUCCESS 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -495,39 +466,29 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250122 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3111209 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_848241 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE 's2swal_intel' [11:22, 11:22] ( 1 warnings 12 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [09:57, 09:10](2168 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:41, 04:51](1950 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:52, 00:52] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:12, 00:57](330 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:05, 00:53](565 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:45, 00:33](572 MB) - -PASS -- COMPILE 'atml_intel' [09:22, 09:22] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [05:51, 05:12](1888 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:10, 02:44](1134 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:09, 05:09] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:00, 05:28](1908 MB) +PASS -- COMPILE 'rrfs_gnu' [04:51, 04:51] +PASS -- TEST 'rap_control_gnu' [08:46, 08:10](1072 MB) +PASS -- TEST 'rap_2threads_gnu' [08:08, 07:30](976 MB) -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:19, 04:19] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:22, 07:49](954 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:48, 07:15](895 MB) +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:44, 04:43] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:14, 07:40](952 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:49, 04:01](947 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:11, 09:26](887 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:21, 03:33](893 MB) SYNOPSIS: -Starting Date/Time: 20250122 19:39:30 -Ending Date/Time: 20250123 16:51:26 -Total Time: 21h:12m:13s -Compiles Completed: 5/5 -Tests Completed: 10/10 +Starting Date/Time: 20250130 15:53:51 +Ending Date/Time: 20250130 17:50:08 +Total Time: 01h:56m:41s +Compiles Completed: 2/2 +Tests Completed: 6/6 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index dd70da7e89..d5a258b247 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -d010f320cfc5493ac49f186c3e0ffb15ba26c0c7 +1fba02b041f68c7d7a241f206c1d3816768bbde0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) + 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) + 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -26,7 +26,7 @@ Submodule hashes used in testing: 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,333 +38,263 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20250122 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2936031 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2580254 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [46:14, 44:17] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:12, 08:28](2025 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:14, 48:12] ( 1 warnings 1446 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [29:07, 22:43](1900 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:17, 23:58](2024 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:11, 09:36](1140 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [36:03, 25:50](1858 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:15, 53:13] ( 1 warnings 1443 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [27:47, 22:21](1880 MB) - -PASS -- COMPILE 's2swa_intel' [37:13, 36:03] ( 1 warnings 1418 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [24:23, 10:34](2057 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:28, 10:13](2057 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:19, 05:30](1705 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [24:17, 10:14](2077 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:27, 05:33](1730 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:20, 09:32](2251 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [24:14, 10:24](2055 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [19:27, 08:32](2001 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [24:28, 10:11](2042 MB) - -PASS -- COMPILE 's2swal_intel' [46:14, 44:56] ( 1 warnings 1486 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [16:17, 10:44](2063 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:05, 09:31](2030 MB) - -PASS -- COMPILE 's2sw_intel' [47:14, 41:42] ( 1 warnings 1303 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:01, 06:26](1910 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:11, 08:13](1976 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:11, 06:23] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [21:14, 16:31](2095 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:11, 05:54] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:01, 07:36](1927 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [43:13, 36:53] ( 1019 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:18, 05:32](1968 MB) - -PASS -- COMPILE 's2s_intel' [43:13, 38:23] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:48, 10:20](3015 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:48, 03:04](3002 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:53, 01:46](2451 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:17, 32:29] ( 1 warnings 1635 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:45, 09:45](2060 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 46:54] ( 1 warnings 1363 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:13, 20:38](1916 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:18, 09:38](1115 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:10, 23:35](1872 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 06:09] ( 1523 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:07, 34:51](1964 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [42:14, 39:30] ( 1 warnings 1125 remarks ) -PASS -- TEST 'control_flake_intel' [06:24, 04:25](647 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:45, 03:27](1535 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 03:48](1545 MB) -PASS -- TEST 'control_latlon_intel' [05:42, 03:26](1540 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:51, 03:48](1538 MB) -PASS -- TEST 'control_c48_intel' [13:47, 11:18](1699 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:32, 10:12](835 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:49, 11:21](1694 MB) -PASS -- TEST 'control_c192_intel' [12:00, 10:02](1677 MB) -PASS -- TEST 'control_c384_intel' [17:55, 13:43](1806 MB) -PASS -- TEST 'control_c384gdas_intel' [17:38, 13:20](1009 MB) -PASS -- TEST 'control_stochy_intel' [04:24, 02:16](603 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:24, 01:15](433 MB) -PASS -- TEST 'control_lndp_intel' [04:23, 02:10](598 MB) -PASS -- TEST 'control_iovr4_intel' [05:27, 03:23](602 MB) -PASS -- TEST 'control_iovr5_intel' [05:26, 03:14](600 MB) -PASS -- TEST 'control_p8_intel' [05:59, 03:49](1841 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 04:03](1832 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:43, 03:44](1838 MB) -PASS -- TEST 'control_restart_p8_intel' [03:50, 02:08](1055 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:55, 03:46](1833 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 02:03](1068 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:49, 03:53](1822 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:48, 03:25](1912 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:40, 06:37](1844 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:48, 05:14](1888 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:51, 04:03](1845 MB) -PASS -- TEST 'merra2_thompson_intel' [06:47, 04:24](1834 MB) -PASS -- TEST 'regional_control_intel' [08:39, 07:06](1036 MB) -PASS -- TEST 'regional_restart_intel' [05:36, 03:50](1013 MB) -PASS -- TEST 'regional_decomp_intel' [09:34, 07:24](1034 MB) -PASS -- TEST 'regional_2threads_intel' [06:35, 04:16](1004 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:40, 07:11](1044 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:41, 07:11](1038 MB) - -PASS -- COMPILE 'rrfs_intel' [37:13, 34:55] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [13:39, 10:12](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:06, 05:43](1195 MB) -PASS -- TEST 'rap_decomp_intel' [13:40, 10:42](984 MB) -PASS -- TEST 'rap_2threads_intel' [12:48, 09:36](1056 MB) -PASS -- TEST 'rap_restart_intel' [07:41, 05:14](987 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:44, 10:10](995 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:44, 10:53](984 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:43, 07:35](1000 MB) -PASS -- TEST 'hrrr_control_intel' [08:41, 05:16](984 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:42, 05:29](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:47, 04:51](1056 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:44](912 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:54, 10:06](987 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:29, 13:21](1940 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:28, 12:59](1929 MB) - -PASS -- COMPILE 'csawmg_intel' [36:13, 34:47] ( 1099 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:43, 08:13](968 MB) -PASS -- TEST 'control_ras_intel' [06:23, 04:18](667 MB) - -PASS -- COMPILE 'wam_intel' [36:13, 35:10] ( 1003 remarks ) -PASS -- TEST 'control_wam_intel' [16:41, 14:16](1617 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:28] ( 1304 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:56, 03:38](1839 MB) -PASS -- TEST 'regional_control_faster_intel' [08:39, 06:31](1034 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 08:29] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:41, 02:53](1579 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:53](1571 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:45](773 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:22, 03:23](779 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:36, 05:28](1081 MB) -PASS -- TEST 'control_ras_debug_intel' [05:22, 03:24](777 MB) -PASS -- TEST 'control_diag_debug_intel' [05:40, 03:22](1636 MB) -PASS -- TEST 'control_debug_p8_intel' [05:39, 03:24](1868 MB) -PASS -- TEST 'regional_debug_intel' [23:38, 22:01](1038 MB) -PASS -- TEST 'rap_control_debug_intel' [08:25, 06:11](1161 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:26, 06:02](1154 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:24, 06:10](1162 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:26, 06:09](1164 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:31, 06:08](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:39, 06:27](1244 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 06:15](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:15](1168 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:24, 06:12](1162 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 06:08](1159 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:26, 06:07](1163 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:24, 06:11](1167 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:02](1155 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 06:04](1164 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 06:13](1164 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:24, 06:13](1162 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:43, 10:47](1166 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:05] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:50, 16:37](1633 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [33:12, 31:01] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:10, 05:07](1073 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:43, 08:16](909 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:38, 04:17](872 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:45, 07:46](917 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:39, 03:57](912 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:39, 04:34](846 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:09](909 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:24, 02:18](846 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:12, 32:07] ( 3 warnings 1207 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:46, 02:39](1106 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:37, 01:08](1027 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:31](1014 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:23] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:47, 05:25](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:12] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:26, 06:02](1038 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:27, 05:56](1033 MB) -PASS -- TEST 'conus13km_debug_intel' [19:54, 17:48](1149 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:54, 17:39](898 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:48, 10:17](1084 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:49, 17:48](1224 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:07] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:27, 06:08](1082 MB) - -PASS -- COMPILE 'hafsw_intel' [42:14, 40:32] ( 1 warnings 1437 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:14, 06:39](692 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:31, 06:06](1081 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:30, 09:12](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [24:25, 15:44](780 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:41, 19:19](801 MB) -PASS -- TEST 'gnv1_nested_intel' [15:45, 06:36](1649 MB) - -PASS -- COMPILE 'hafs_all_intel' [37:13, 35:52] ( 1283 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:23, 08:47](757 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:28, 08:47](736 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:18] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:22, 03:33](1080 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:13](1048 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:22, 03:28](935 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:22, 03:31](938 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:22, 03:33](930 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:22, 03:34](1074 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:22, 03:38](1071 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:22, 03:29](934 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:23, 07:50](904 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:21, 07:50](852 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:20, 03:36](1068 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:24, 05:01](2417 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [10:23, 05:08](2367 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:25] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:22, 08:09](1024 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:15] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 03:34](1078 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:45] ( 69 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:23](238 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:09](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:27, 00:41](259 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [42:14, 37:08] ( 1024 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:04, 04:46](1905 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [40:14, 36:11] ( 1 warnings 1029 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:01, 06:14](1890 MB) - -PASS -- COMPILE 'atml_intel' [40:13, 38:50] ( 9 warnings 1193 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [15:03, 05:09](1856 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:58](1064 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:32] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:14, 06:41](1890 MB) - -PASS -- COMPILE 'atmw_intel' [38:13, 37:02] ( 1279 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:52, 02:37](1860 MB) - -PASS -- COMPILE 'atmaero_intel' [38:14, 36:05] ( 1107 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:05, 05:17](1921 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:02, 06:22](1701 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:52, 06:27](1705 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:14, 31:13] ( 3 warnings 1003 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:36, 15:31](1044 MB) +PASS -- COMPILE 's2swa_32bit_intel' [44:14, 42:42] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:28, 08:23](2028 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:15, 47:27] ( 1 warnings 1446 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:10, 24:45](1876 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [31:27, 26:33](2019 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:19, 09:52](1131 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:03, 26:13](1863 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:15, 49:09] ( 1 warnings 1443 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:48, 24:20](1885 MB) + +PASS -- COMPILE 's2swa_intel' [46:15, 44:40] ( 1 warnings 1418 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:12, 10:41](2051 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:21, 10:25](2066 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:17, 05:35](1712 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:07, 10:33](2082 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:23, 05:42](1734 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:04, 09:56](2245 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:00, 10:43](2044 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:13, 08:37](2003 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:13, 10:15](2064 MB) + +PASS -- COMPILE 's2swal_intel' [45:15, 43:43] ( 1 warnings 1486 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [13:18, 10:37](2069 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:22, 06:27](1710 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:07, 09:31](2002 MB) + +PASS -- COMPILE 's2sw_intel' [43:14, 41:34] ( 1 warnings 1303 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:03, 06:22](1906 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:13, 08:02](1975 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:02] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [19:16, 16:33](2091 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:07] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:00, 07:38](1929 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [39:14, 37:15] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:16, 05:38](1964 MB) + +PASS -- COMPILE 's2s_intel' [40:14, 38:20] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:51, 10:20](3004 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:52, 03:04](3009 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:47, 02:01](2454 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:18, 32:31] ( 1 warnings 1635 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:45, 10:15](2068 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [48:14, 46:27] ( 1 warnings 1363 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:13, 20:28](1931 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:23, 09:39](1124 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:18, 23:32](1897 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:03] ( 1523 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:08, 35:01](1962 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [40:14, 38:13] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [14:29, 04:21](646 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [15:05, 03:19](1553 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:06, 03:26](1554 MB) +PASS -- TEST 'control_latlon_intel' [17:01, 03:15](1544 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:09, 03:35](1546 MB) +PASS -- TEST 'control_c48_intel' [14:05, 11:10](1693 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:33, 10:13](834 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [14:06, 11:11](1698 MB) +PASS -- TEST 'control_c192_intel' [30:19, 09:51](1686 MB) +PASS -- TEST 'control_c384_intel' [38:26, 13:48](1811 MB) +PASS -- TEST 'control_c384gdas_intel' [37:13, 13:12](1008 MB) +PASS -- TEST 'control_stochy_intel' [10:27, 02:28](607 MB) +PASS -- TEST 'control_stochy_restart_intel' [13:27, 01:12](432 MB) +PASS -- TEST 'control_lndp_intel' [11:27, 02:00](604 MB) +PASS -- TEST 'control_iovr4_intel' [11:30, 03:14](604 MB) +PASS -- TEST 'control_iovr5_intel' [12:30, 03:13](603 MB) +PASS -- TEST 'control_p8_intel' [16:22, 03:43](1832 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [21:27, 03:55](1835 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [21:15, 03:39](1842 MB) +PASS -- TEST 'control_restart_p8_intel' [11:54, 02:05](1040 MB) +PASS -- TEST 'control_noqr_p8_intel' [14:23, 03:42](1825 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [13:55, 02:05](1084 MB) +PASS -- TEST 'control_decomp_p8_intel' [17:17, 03:45](1830 MB) +PASS -- TEST 'control_2threads_p8_intel' [22:20, 03:24](1908 MB) +PASS -- TEST 'control_p8_lndp_intel' [24:07, 06:33](1840 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [23:18, 05:09](1901 MB) +PASS -- TEST 'control_p8_mynn_intel' [19:20, 03:56](1845 MB) +PASS -- TEST 'merra2_thompson_intel' [18:16, 04:18](1841 MB) +PASS -- TEST 'regional_control_intel' [09:58, 07:08](1041 MB) +PASS -- TEST 'regional_restart_intel' [16:38, 03:49](1019 MB) +PASS -- TEST 'regional_decomp_intel' [09:58, 07:28](1041 MB) +PASS -- TEST 'regional_2threads_intel' [06:38, 04:15](1001 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [12:44, 07:06](1035 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [18:36, 07:05](1038 MB) + +PASS -- COMPILE 'rrfs_intel' [39:14, 35:19] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [41:50, 29:44](988 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [18:07, 05:34](1182 MB) +PASS -- TEST 'rap_decomp_intel' [22:44, 10:38](976 MB) +PASS -- TEST 'rap_2threads_intel' [21:43, 10:26](1065 MB) +PASS -- TEST 'rap_restart_intel' [09:48, 05:12](986 MB) +PASS -- TEST 'rap_sfcdiff_intel' [21:44, 10:03](985 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:40, 10:38](976 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:49, 07:31](997 MB) +PASS -- TEST 'hrrr_control_intel' [15:46, 05:04](980 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [15:41, 05:16](972 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [21:43, 11:08](1051 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:27, 02:49](916 MB) +PASS -- TEST 'rrfs_v1beta_intel' [19:51, 09:56](976 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [23:45, 13:25](1926 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [22:30, 12:50](1928 MB) + +PASS -- COMPILE 'csawmg_intel' [36:14, 35:00] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [17:37, 08:01](965 MB) +PASS -- TEST 'control_ras_intel' [13:24, 04:16](671 MB) + +PASS -- COMPILE 'wam_intel' [37:14, 35:17] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [23:52, 14:12](1616 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:14, 37:33] ( 1304 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:02, 03:44](1837 MB) +PASS -- TEST 'regional_control_faster_intel' [09:45, 06:49](1039 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [19:12, 08:30] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:43, 02:52](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:44, 02:49](1576 MB) +PASS -- TEST 'control_stochy_debug_intel' [12:24, 03:44](773 MB) +PASS -- TEST 'control_lndp_debug_intel' [12:24, 03:22](776 MB) +PASS -- TEST 'control_csawmg_debug_intel' [13:36, 05:27](1088 MB) +PASS -- TEST 'control_ras_debug_intel' [10:22, 03:25](779 MB) +PASS -- TEST 'control_diag_debug_intel' [10:45, 03:22](1646 MB) +PASS -- TEST 'control_debug_p8_intel' [08:47, 03:25](1864 MB) +PASS -- TEST 'regional_debug_intel' [31:41, 27:57](1024 MB) +PASS -- TEST 'rap_control_debug_intel' [09:27, 06:08](1163 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:25, 06:00](1164 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:24, 06:08](1164 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:25, 06:19](1164 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:25, 06:08](1165 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:36, 07:27](1243 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 06:14](1171 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:11](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:25, 06:17](1164 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 06:10](1169 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:07](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:24, 06:11](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:08](1163 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:25, 06:10](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 06:12](1162 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:24, 06:09](1162 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:59, 10:42](1166 MB) + +PASS -- COMPILE 'wam_debug_intel' [15:12, 05:19] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:45, 16:46](1647 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [38:15, 30:57] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:07, 05:13](1064 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [31:50, 29:22](902 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:43, 04:17](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [16:02, 07:45](905 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:41, 03:59](903 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [22:45, 19:22](856 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:46, 06:48](905 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:19](851 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [39:13, 32:00] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:54, 02:38](1100 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:11](1021 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:44, 01:46](1011 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [38:13, 31:23] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:04, 05:24](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 05:11] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 06:25](1037 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:24, 06:08](1040 MB) +PASS -- TEST 'conus13km_debug_intel' [22:04, 17:39](1150 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:48, 17:33](864 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:43, 10:16](1081 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:44, 17:51](1203 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:12, 05:04] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:28, 08:28](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [42:14, 40:37] ( 1 warnings 1437 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:19, 06:55](692 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:32, 06:08](1075 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:32, 09:07](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [20:27, 16:21](784 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:40, 19:11](801 MB) +PASS -- TEST 'gnv1_nested_intel' [11:40, 06:41](1666 MB) + +PASS -- COMPILE 'hafs_all_intel' [33:13, 30:22] ( 1283 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [17:25, 08:33](751 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:27, 08:35](741 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:26] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:43](1075 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:43, 02:14](1047 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:28, 03:32](934 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:35](936 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:27, 03:36](936 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:27, 03:20](1076 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:38](1058 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:26, 03:32](934 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:13, 07:50](897 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:31, 07:34](859 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:36](1095 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:08](2436 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 05:07](2302 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:33] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:20, 08:07](1030 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:08] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:36](1076 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:48] ( 69 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:34, 01:15](237 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:25, 01:20](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:36](261 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [39:13, 37:17] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:57, 04:45](1886 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:13, 36:33] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:05, 06:13](1908 MB) + +PASS -- COMPILE 'atml_intel' [40:13, 38:29] ( 9 warnings 1193 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [14:06, 10:17](1856 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [13:44, 04:30](1070 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:33] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:55, 06:28](1874 MB) + +PASS -- COMPILE 'atmw_intel' [39:13, 37:17] ( 1279 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:50, 07:48](1849 MB) + +PASS -- COMPILE 'atmaero_intel' [38:13, 36:00] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:01, 05:21](1931 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [15:05, 06:11](1708 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:52, 06:23](1722 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:23] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:34, 15:26](1058 MB) SYNOPSIS: -Starting Date/Time: 20250124 05:45:23 -Ending Date/Time: 20250124 10:24:39 -Total Time: 04h:39m:52s +Starting Date/Time: 20250130 19:34:09 +Ending Date/Time: 20250131 00:15:32 +Total Time: 04h:41m:55s Compiles Completed: 38/38 -Tests Completed: 166/167 -Failed Tests: -* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2387/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_p8_lnd_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -7f24a0021dcc8bf882d8abb1e8df76d52db41a0e - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd --529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20250122 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2137447 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swal_intel' [45:14, 43:42] ( 1 warnings 1486 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [13:51, 10:43](2046 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:23, 05:43](1716 MB) - -SYNOPSIS: -Starting Date/Time: 20250124 16:17:59 -Ending Date/Time: 20250124 17:27:51 -Total Time: 01h:10m:08s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Tests Completed: 167/167 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index fd866e0a33..05fcbb8aa7 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -0fc9036195cc178e1d4938163575ebb6cade49d2 +692fa94443d70a890d1771aba742f93963fdecbb Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 805d64e6cd64931600ddbf3a5a180343247832cd FV3 (remotes/origin/feature/s2s_with_lnd) + 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) + 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -26,7 +26,7 @@ Submodule hashes used in testing: 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,27 +38,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: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250122 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1207471 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3094730 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swal_intel' [20:11, 18:26] ( 1 warnings 12 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [19:32, 16:47](2111 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:00, 08:32](1794 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:11, 17:43] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:46, 16:39](2077 MB) -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:46] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:45, 00:44](559 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:37, 00:25](450 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 20:36] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:49, 21:55](1951 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:31, 23:01](2136 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:23, 08:46](1216 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:48, 25:50](1885 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:09] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:47, 21:27](1939 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:26] ( 1523 warnings 1943 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:53, 28:23](1942 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 17:53] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:53, 16:50](2148 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:45, 16:09](2135 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:55, 08:22](1802 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:39, 15:49](2165 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:48, 08:31](1696 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:35, 12:23](2334 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:39, 16:04](2124 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:32, 13:43](2035 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:45, 16:00](2141 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:44, 15:58](2719 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:10, 08:51](2716 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:00, 12:45](3704 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:28, 08:01](3546 MB) + +PASS -- COMPILE 's2swal_intel' [19:11, 17:27] ( 1 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [19:48, 17:09](2111 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:01, 08:29](1776 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:28, 08:04](2126 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 16:07] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:06, 15:17](1981 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:19, 06:53](2056 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:25] ( 1413 warnings 1173 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:25, 13:45](2161 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:09] ( 1413 warnings 1173 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:07, 07:04](2008 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:19] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:20, 04:45](2024 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 14:51] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:58, 08:44](3031 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:57, 03:11](3021 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:10, 02:02](2485 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 18:03] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:34, 16:17](2143 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:03] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:13, 18:36](2008 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:25, 08:55](1249 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:15, 21:19](1927 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:31] ( 1523 warnings 1943 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:12, 31:11](1983 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:10, 13:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:44](689 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:45, 02:46](1583 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 02:50](1586 MB) +PASS -- TEST 'control_latlon_intel' [04:41, 02:45](1579 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:51, 02:49](1579 MB) +PASS -- TEST 'control_c48_intel' [10:52, 09:00](1706 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 08:11](835 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:51, 08:59](1709 MB) +PASS -- TEST 'control_c192_intel' [11:06, 08:10](1731 MB) +PASS -- TEST 'control_c384_intel' [13:21, 09:48](1977 MB) +PASS -- TEST 'control_c384gdas_intel' [13:59, 09:52](1323 MB) +PASS -- TEST 'control_stochy_intel' [03:26, 01:48](643 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:45, 01:07](461 MB) +PASS -- TEST 'control_lndp_intel' [03:25, 01:42](641 MB) +PASS -- TEST 'control_iovr4_intel' [04:28, 02:44](642 MB) +PASS -- TEST 'control_iovr5_intel' [04:25, 02:43](636 MB) +PASS -- TEST 'control_p8_intel' [06:12, 03:23](1877 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:12, 03:31](1875 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 03:14](1879 MB) +PASS -- TEST 'control_restart_p8_intel' [04:19, 01:55](1091 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:19, 03:13](1870 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:31, 01:54](1125 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:15, 03:19](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:09, 03:57](1944 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:43, 05:39](1873 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:34, 05:00](1936 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:30](1883 MB) +PASS -- TEST 'merra2_thompson_intel' [06:50, 03:52](1878 MB) +PASS -- TEST 'regional_control_intel' [08:37, 06:33](1106 MB) +PASS -- TEST 'regional_restart_intel' [05:37, 03:33](1088 MB) +PASS -- TEST 'regional_decomp_intel' [08:37, 06:48](1109 MB) +PASS -- TEST 'regional_2threads_intel' [06:32, 04:38](1053 MB) +PASS -- TEST 'regional_noquilt_intel' [08:44, 06:31](1410 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:52, 06:31](1108 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:45, 06:30](1116 MB) +PASS -- TEST 'regional_wofs_intel' [09:40, 07:58](1892 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:57] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:24, 08:36](1065 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:00, 05:18](1266 MB) +PASS -- TEST 'rap_decomp_intel' [10:57, 08:46](1014 MB) +PASS -- TEST 'rap_2threads_intel' [12:21, 10:08](1083 MB) +PASS -- TEST 'rap_restart_intel' [07:41, 04:25](1036 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:18, 08:23](1052 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:07, 08:40](1018 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:35, 06:17](1070 MB) +PASS -- TEST 'hrrr_control_intel' [07:13, 04:20](1018 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:04, 04:26](1011 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:24, 05:00](1077 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:49, 02:22](943 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:20, 08:20](1043 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:51](1976 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:25, 09:31](2020 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:23] +PASS -- TEST 'control_csawmg_intel' [08:39, 06:40](1016 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:28](715 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:48] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:44, 12:47](1647 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 13:12] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:28, 03:15](1871 MB) +PASS -- TEST 'regional_control_faster_intel' [08:39, 06:16](1111 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:36] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:43, 02:30](1612 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:21](1612 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:24, 03:03](817 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:45](818 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:36](1125 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:52](825 MB) +PASS -- TEST 'control_diag_debug_intel' [04:41, 02:49](1666 MB) +PASS -- TEST 'control_debug_p8_intel' [04:43, 02:49](1906 MB) +PASS -- TEST 'regional_debug_intel' [18:40, 17:05](1090 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 04:52](1207 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:42](1197 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:51](1205 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:52](1196 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:58](1197 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:36, 05:09](1286 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 05:07](1203 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:27, 05:05](1205 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:27, 04:54](1203 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 05:04](1197 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 05:01](1200 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 05:39](1209 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:27, 08:02](1203 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:52](1202 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 04:49](1208 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:02](1204 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:24, 08:26](1209 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:10, 06:08] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:44, 13:26](1672 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:41] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:53, 04:58](1142 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:15, 07:12](1005 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:39, 03:47](925 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:18, 08:38](988 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:36, 04:25](955 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:27, 03:55](888 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:29, 05:25](972 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:59, 02:04](873 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:27] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:59, 02:32](1162 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:54, 01:10](1112 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:47, 01:30](1071 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 12:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:33](964 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:55] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:57](1076 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:45](1076 MB) +PASS -- TEST 'conus13km_debug_intel' [17:50, 15:56](1227 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:40](962 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:38, 13:29](1169 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 13:34](1293 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 06:34] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:05](1136 MB) + +PASS -- COMPILE 'hafsw_intel' [17:11, 15:44] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:21, 05:52](740 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:22](1126 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:29](837 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [31:18, 28:34](842 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:21, 34:17](873 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:01, 07:08](497 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:25, 08:30](510 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:55, 03:30](369 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:33, 09:38](509 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:57, 04:41](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:01, 04:26](521 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:51, 05:40](569 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:34](404 MB) +PASS -- TEST 'gnv1_nested_intel' [08:09, 04:18](1715 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:10, 07:08] ( 1465 warnings 1445 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:01, 13:13](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:51] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:11, 15:14](634 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:13, 15:28](722 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 15:02] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:42, 11:12](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:11, 14:19] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:18, 07:29](807 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:15, 07:28](799 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:02, 16:23](1220 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:05] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 03:02](1154 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:55](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:53](1024 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:56](1013 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:57](1011 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:59](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:00](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:55](1021 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:12, 06:34](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:03, 06:27](997 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:59](1153 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:17, 04:22](2455 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:17, 04:24](2442 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:41] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:25](1077 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 07:51] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 03:01](1141 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:20] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 01:01](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:53](328 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:36](322 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:47] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:37](560 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:21](445 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 13:50] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:08, 04:08](1969 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:22] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:02, 05:14](1971 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 14:44] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [07:04, 04:23](1861 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:49, 02:28](1068 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:10, 07:56] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:02, 05:15](1885 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:38] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:24, 02:19](1896 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 13:06] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:17, 04:43](1978 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:24](1747 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:01, 05:26](1765 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:31] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:08, 20:34](4494 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:54, 12:48] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:31, 13:47](1102 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [09:10, 07:52] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:07, 07:52](578 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [06:10, 04:54] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [22:03, 19:39](622 MB) SYNOPSIS: -Starting Date/Time: 20250123 14:49:24 -Ending Date/Time: 20250123 15:42:39 -Total Time: 00h:53m:38s -Compiles Completed: 2/2 -Tests Completed: 4/4 +Starting Date/Time: 20250129 20:37:04 +Ending Date/Time: 20250129 22:21:50 +Total Time: 01h:45m:24s +Compiles Completed: 46/46 +Tests Completed: 192/192 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 721771bcf5..01c7d44858 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -ce8cf613dbce05cbcf626fae733ca29a834c5eab +a12ae93f30f3ada40a228fa002c6b5b142bdd025 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - cb180b0ab5cb618b503d695d6f214a03f845ab06 CMEPS-interface/CMEPS (cmeps0.9.2-42-gcb180b0a) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 21f89339572a93c9f4fb616cdf7c0552b9a020ba FV3 (remotes/origin/feature/s2s_with_lnd) + 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - ed3d4af782050e043b2f9817dff93e96aba26d45 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4595-ged3d4af7) + 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -26,8 +26,8 @@ Submodule hashes used in testing: 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 2b832ca7a9eaf1a979940f34a55944351bf9f6e3 NOAHMP-interface/noahmp (v3.7.1-454-g2b832ca) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (remotes/origin/updatedevufs-51-gaf14207b) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) + af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,242 +38,242 @@ 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-20250122 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2614407 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_25833 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:39] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:30, 06:52](3198 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:28, 12:10] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:14, 15:48](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:53, 16:49](1938 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:33, 07:46](1078 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:32, 18:21](1882 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:28, 11:50] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:16, 15:36](1909 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:23] ( 1502 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:41, 26:05](1951 MB) - -PASS -- COMPILE 's2swa_intel' [13:28, 11:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:12, 08:24](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:22, 08:38](3218 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:10, 04:51](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:07, 08:33](3246 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:16, 05:03](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [22:35, 17:04](3444 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:07, 08:29](3223 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:07, 07:00](3169 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:23, 08:28](3225 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:10, 13:35](4236 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:30, 09:24](4367 MB) - -PASS -- COMPILE 's2swal_intel' [13:28, 11:49] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:12, 08:27](3200 MB) - -PASS -- COMPILE 's2sw_intel' [13:28, 11:14] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:43, 05:01](1916 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:11, 07:16](1975 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:18] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:02, 05:06](1970 MB) - -PASS -- COMPILE 's2s_intel' [12:27, 10:18] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:41, 06:11](2881 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:37, 02:23](2892 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:20, 01:28](2295 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:33, 16:21] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:18, 08:23](3225 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:52, 15:43](1921 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:00, 07:48](1097 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:02, 18:12](1890 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:19] ( 1502 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:58, 26:56](1959 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:35, 03:56](663 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:55, 02:34](1560 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:01, 02:44](1572 MB) -PASS -- TEST 'control_latlon_intel' [06:56, 02:44](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:09, 02:38](1565 MB) -PASS -- TEST 'control_c48_intel' [10:25, 06:26](1587 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:02, 05:58](710 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:20, 06:28](1590 MB) -PASS -- TEST 'control_c192_intel' [11:21, 07:22](1686 MB) -PASS -- TEST 'control_c384_intel' [13:37, 08:54](1968 MB) -PASS -- TEST 'control_c384gdas_intel' [14:33, 09:04](1167 MB) -PASS -- TEST 'control_stochy_intel' [04:36, 01:59](619 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:33, 01:13](426 MB) -PASS -- TEST 'control_lndp_intel' [04:31, 01:44](622 MB) -PASS -- TEST 'control_iovr4_intel' [05:35, 02:45](619 MB) -PASS -- TEST 'control_iovr5_intel' [04:35, 02:45](620 MB) -PASS -- TEST 'control_p8_intel' [07:31, 03:07](1852 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:31, 03:24](1854 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:33, 03:02](1852 MB) -PASS -- TEST 'control_restart_p8_intel' [06:33, 01:54](1009 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:07, 03:08](1846 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:44, 01:55](1021 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:46, 03:15](1857 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:57, 06:06](1925 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:06](1864 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:06, 04:20](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:18, 03:27](1869 MB) -PASS -- TEST 'merra2_thompson_intel' [07:39, 03:34](1858 MB) -PASS -- TEST 'regional_control_intel' [07:59, 05:14](890 MB) -PASS -- TEST 'regional_restart_intel' [06:52, 03:11](877 MB) -PASS -- TEST 'regional_decomp_intel' [07:51, 05:44](897 MB) -PASS -- TEST 'regional_2threads_intel' [10:59, 07:49](1024 MB) -PASS -- TEST 'regional_noquilt_intel' [08:58, 05:20](1219 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:59, 05:14](891 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 05:17](892 MB) -PASS -- TEST 'regional_wofs_intel' [09:52, 07:04](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [10:25, 08:55] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [12:22, 07:29](1003 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:18, 04:38](1159 MB) -PASS -- TEST 'rap_decomp_intel' [11:24, 07:38](1002 MB) -PASS -- TEST 'rap_2threads_intel' [19:05, 15:51](1078 MB) -PASS -- TEST 'rap_restart_intel' [08:27, 03:56](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:16, 07:22](1002 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:10, 07:36](997 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 05:33](884 MB) -PASS -- TEST 'hrrr_control_intel' [08:28, 03:57](994 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:01, 04:08](994 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:18, 08:04](1069 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:22](830 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:31, 07:30](994 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:41, 09:32](1956 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:45, 09:23](1939 MB) - -PASS -- COMPILE 'csawmg_intel' [10:25, 08:11] -PASS -- TEST 'control_csawmg_intel' [10:58, 07:05](955 MB) -PASS -- TEST 'control_ras_intel' [07:33, 03:30](653 MB) - -PASS -- COMPILE 'wam_intel' [10:25, 08:21] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:11, 12:08](1640 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:29, 11:30] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:39, 07:01](3192 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:29, 11:58] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:05, 16:20](1905 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:28, 17:07](1945 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:06, 08:00](1079 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:07, 18:39](1879 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:29, 11:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:22, 15:47](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:21, 05:27] ( 1502 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:10, 26:02](1943 MB) + +PASS -- COMPILE 's2swa_intel' [15:30, 11:52] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:16, 08:46](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:54, 08:47](3221 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:42, 05:10](3155 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:23, 08:49](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:27, 05:27](3172 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [21:56, 17:12](3450 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:23, 08:53](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:36, 07:36](3169 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:55, 08:50](3224 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [38:25, 13:50](4238 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [03:00, 10:05](4373 MB) + +PASS -- COMPILE 's2swal_intel' [14:30, 11:44] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:16, 08:53](3205 MB) + +PASS -- COMPILE 's2sw_intel' [14:29, 10:58] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:54, 05:28](1917 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:18, 07:36](1980 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:27, 10:21] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:21, 05:35](1979 MB) + +PASS -- COMPILE 's2s_intel' [13:28, 10:26] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:50, 06:23](2879 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 02:32](2889 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:55, 01:54](2305 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:35, 16:08] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:44, 09:05](3223 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:45] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:17, 16:06](1922 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:32, 08:13](1105 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:24, 18:51](1891 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:21] ( 1502 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:36, 27:08](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:35] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [08:47, 04:03](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:19, 02:45](1558 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:24, 02:45](1569 MB) +PASS -- TEST 'control_latlon_intel' [08:12, 02:50](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:25, 02:39](1565 MB) +PASS -- TEST 'control_c48_intel' [11:43, 06:31](1588 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:13, 06:00](710 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:43, 06:34](1585 MB) +PASS -- TEST 'control_c192_intel' [13:37, 07:21](1685 MB) +PASS -- TEST 'control_c384_intel' [19:30, 09:11](1969 MB) +PASS -- TEST 'control_c384gdas_intel' [19:26, 09:35](1168 MB) +PASS -- TEST 'control_stochy_intel' [06:47, 01:54](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:43, 01:19](425 MB) +PASS -- TEST 'control_lndp_intel' [06:46, 01:52](617 MB) +PASS -- TEST 'control_iovr4_intel' [06:42, 02:45](619 MB) +PASS -- TEST 'control_iovr5_intel' [06:40, 02:39](619 MB) +PASS -- TEST 'control_p8_intel' [08:40, 03:32](1853 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:44, 03:32](1859 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:39, 03:30](1853 MB) +PASS -- TEST 'control_restart_p8_intel' [08:38, 02:14](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:34, 03:18](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [09:05, 02:10](1020 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:29, 03:19](1858 MB) +PASS -- TEST 'control_2threads_p8_intel' [13:38, 06:46](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:11, 05:27](1855 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:15, 04:37](1911 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:11, 03:43](1859 MB) +PASS -- TEST 'merra2_thompson_intel' [10:17, 03:55](1858 MB) +PASS -- TEST 'regional_control_intel' [10:05, 06:09](897 MB) +PASS -- TEST 'regional_restart_intel' [09:11, 03:41](875 MB) +PASS -- TEST 'regional_decomp_intel' [09:57, 06:23](889 MB) +PASS -- TEST 'regional_2threads_intel' [13:09, 08:16](1015 MB) +PASS -- TEST 'regional_noquilt_intel' [09:13, 06:00](1220 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:07, 06:16](889 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:58, 05:49](881 MB) +PASS -- TEST 'regional_wofs_intel' [10:58, 07:14](1584 MB) + +PASS -- COMPILE 'rrfs_intel' [11:25, 08:52] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [13:31, 07:27](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:42, 04:56](1159 MB) +PASS -- TEST 'rap_decomp_intel' [13:09, 07:41](1000 MB) +PASS -- TEST 'rap_2threads_intel' [22:04, 16:06](1077 MB) +PASS -- TEST 'rap_restart_intel' [12:23, 03:56](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:38, 07:32](1002 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:27, 07:38](993 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [13:57, 05:36](884 MB) +PASS -- TEST 'hrrr_control_intel' [10:11, 04:05](993 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:29, 04:02](992 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [14:52, 08:22](1070 MB) +PASS -- TEST 'hrrr_control_restart_intel' [09:53, 02:21](828 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:57, 07:21](990 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:50, 09:39](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:49, 09:29](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [10:26, 08:10] +PASS -- TEST 'control_csawmg_intel' [13:23, 07:35](956 MB) +PASS -- TEST 'control_ras_intel' [09:40, 03:29](654 MB) + +PASS -- COMPILE 'wam_intel' [10:25, 08:23] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [18:28, 12:05](1641 MB) PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:32] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:29, 03:14](1847 MB) -PASS -- TEST 'regional_control_faster_intel' [06:49, 05:03](886 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:42] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:01, 02:46](1597 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:11, 02:56](1606 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:37, 03:39](804 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:37, 03:17](807 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:01, 05:20](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [05:37, 03:17](813 MB) -PASS -- TEST 'control_diag_debug_intel' [06:06, 03:19](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [05:58, 03:20](1899 MB) -PASS -- TEST 'regional_debug_intel' [21:18, 18:37](921 MB) -PASS -- TEST 'rap_control_debug_intel' [07:38, 05:48](1184 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:42, 05:45](1180 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:38, 05:44](1182 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:35, 05:52](1185 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:37, 05:55](1184 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:44, 05:59](1266 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:35, 05:55](1188 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:33, 05:43](1186 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:34, 05:48](1187 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:34, 05:36](1184 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:35, 05:40](1183 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 05:46](1184 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:39, 09:06](1183 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:37, 05:40](1177 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:35, 05:50](1183 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:34, 05:54](1184 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:50, 09:38](1192 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:28] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:14, 14:28](1676 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:09] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:19, 04:21](1033 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:26, 06:03](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:24, 03:34](874 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:31, 13:45](928 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:18, 07:14](921 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:53, 03:32](872 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:35, 04:38](789 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:36, 02:01](761 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:27, 08:11] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:16, 02:14](1079 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:02, 02:00](1063 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:05, 01:37](957 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:26, 08:12] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:56, 04:22](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:23, 04:36] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:36, 05:36](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:37, 05:23](1059 MB) -PASS -- TEST 'conus13km_debug_intel' [17:18, 14:56](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:16, 15:04](840 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:22, 23:20](1145 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:13, 14:57](1218 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:25] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 05:34](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [11:25, 10:06] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:46, 06:06](689 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:47, 07:56](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:03, 07:39](739 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:52, 12:33](765 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:06, 14:00](783 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:11, 05:57](467 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:49, 07:18](481 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:20, 03:20](384 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:50, 08:44](439 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:02, 04:05](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:13, 03:48](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:17, 05:03](556 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:38, 02:03](410 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:51] ( 1446 warnings 1444 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:21, 14:29](610 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:33, 08:24](607 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:45, 08:17](783 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:27, 10:04] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:56, 06:42](779 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:27, 09:15] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:45, 07:00](725 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:43, 07:18](705 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:39, 16:09](904 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:33, 10:05] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:42, 03:53](1919 MB) - -PASS -- COMPILE 'atml_intel' [12:29, 09:44] ( 9 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:27, 05:39] ( 872 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:30, 08:33] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:07, 04:34](3116 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:05, 05:12](2987 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:49, 05:21](3006 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:26, 04:20] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [30:46, 22:23](4475 MB) +PASS -- TEST 'control_p8_faster_intel' [11:51, 03:24](1857 MB) +PASS -- TEST 'regional_control_faster_intel' [14:10, 05:32](889 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:25, 07:46] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:18, 03:03](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:25, 02:46](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [11:43, 03:40](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [11:55, 03:22](802 MB) +PASS -- TEST 'control_csawmg_debug_intel' [13:20, 05:23](1106 MB) +PASS -- TEST 'control_ras_debug_intel' [10:50, 03:27](811 MB) +PASS -- TEST 'control_diag_debug_intel' [11:28, 03:26](1659 MB) +PASS -- TEST 'control_debug_p8_intel' [11:08, 03:32](1889 MB) +PASS -- TEST 'regional_debug_intel' [26:28, 19:03](940 MB) +PASS -- TEST 'rap_control_debug_intel' [12:54, 05:51](1184 MB) +PASS -- TEST 'hrrr_control_debug_intel' [11:49, 05:34](1185 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [12:49, 05:46](1183 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [11:41, 05:43](1183 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [12:41, 05:46](1187 MB) +PASS -- TEST 'rap_diag_debug_intel' [15:08, 06:03](1275 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:52, 06:02](1188 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:51, 05:48](1187 MB) +PASS -- TEST 'rap_lndp_debug_intel' [13:43, 05:48](1188 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:45, 05:43](1187 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:44, 05:39](1188 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [13:47, 05:39](1186 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:50, 09:02](1187 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [13:45, 05:45](1180 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [13:49, 05:51](1185 MB) +PASS -- TEST 'rap_flake_debug_intel' [13:48, 05:48](1183 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:11, 09:45](1190 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:34] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:23, 14:31](1683 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:27, 08:12] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:32, 04:25](1035 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:40, 06:07](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:38, 03:38](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:01, 14:05](926 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [19:42, 07:12](921 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [15:29, 03:42](873 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:47, 04:56](791 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [13:49, 02:13](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:27, 08:17] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [13:33, 02:27](1079 MB) +PASS -- TEST 'conus13km_2threads_intel' [14:25, 02:20](1061 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [16:12, 01:34](957 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:26, 08:17] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:16, 04:17](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:24, 04:38] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:51, 05:27](1062 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:54, 05:32](1066 MB) +PASS -- TEST 'conus13km_debug_intel' [25:34, 15:09](1151 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:44, 15:22](824 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [33:48, 23:21](1145 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:31, 15:01](1219 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:24, 04:26] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:52, 05:31](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [13:41, 09:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [18:11, 07:23](691 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [21:04, 08:06](1052 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [22:27, 08:38](771 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:06, 14:09](772 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:41, 15:13](789 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [18:35, 06:29](468 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [22:29, 08:17](481 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [17:46, 04:16](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [32:36, 09:34](435 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [16:23, 05:11](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:32, 04:47](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [21:01, 05:44](564 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:55, 02:30](406 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:24, 04:52] ( 1446 warnings 1444 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [31:00, 15:25](610 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:40, 09:42] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:48, 08:48](608 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:53, 08:42](784 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:39, 09:43] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [22:08, 07:10](778 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:39, 09:05] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [23:18, 08:14](724 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [23:15, 08:17](707 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:22, 16:15](893 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:28, 10:09] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [17:39, 04:31](1915 MB) + +PASS -- COMPILE 'atml_intel' [12:37, 09:56] ( 9 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [08:27, 05:50] ( 872 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [12:32, 08:39] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [17:50, 04:47](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [17:27, 05:11](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [17:15, 05:31](3009 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:26, 04:27] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [35:30, 23:27](4475 MB) SYNOPSIS: -Starting Date/Time: 20250127 20:23:43 -Ending Date/Time: 20250127 22:01:45 -Total Time: 01h:38m:48s +Starting Date/Time: 20250131 17:48:22 +Ending Date/Time: 20250131 19:55:51 +Total Time: 02h:08m:30s Compiles Completed: 34/34 Tests Completed: 157/157 diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index cb7637225a..fb7de3eb9b 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -21,6 +21,7 @@ history_file_on_native_grid: @[HISTORY_FILE_ON_NATIVE_GRID] write_dopost: @[WRITE_DOPOST] write_nsflip: @[WRITE_NSFLIP] num_files: @[NUM_FILES] +fv3atm_output_dir: @[FV3ATM_OUTPUT_DIR] filename_base: @[FILENAME_BASE] output_grid: @[OUTPUT_GRID] output_file: @[OUTPUT_FILE] diff --git a/tests/test_changes.list b/tests/test_changes.list index b0873351ef..daaa30f295 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,8 +1,234 @@ -cpld_control_p8_lnd intel -cpld_restart_p8_lnd intel -datm_cdeps_lnd_gswp3 intel -datm_cdeps_lnd_era5 intel -datm_cdeps_lnd_era5_rst intel +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +control_flake intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c48.v2.sfc intel +control_c48_lnd_iau intel +control_c192 intel +control_c384 intel +control_c384gdas intel +control_stochy intel +control_stochy_restart intel +control_lndp intel +control_iovr4 intel +control_iovr5 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +control_p8_rrtmgp intel +control_p8_mynn intel +merra2_thompson intel +regional_control intel +regional_restart intel +regional_decomp intel +regional_2threads intel +regional_noquilt intel +regional_netcdf_parallel intel +regional_2dwrtdecomp intel +regional_wofs intel +rap_control intel +regional_spp_sppt_shum_skeb intel +rap_decomp intel +rap_2threads intel +rap_restart intel +rap_sfcdiff intel +rap_sfcdiff_decomp intel +rap_sfcdiff_restart intel +hrrr_control intel +hrrr_control_decomp intel +hrrr_control_2threads intel +hrrr_control_restart intel +rrfs_v1beta intel +rrfs_v1nssl intel +rrfs_v1nssl_nohailnoccn intel +control_csawmg intel +control_ras intel +control_wam intel +control_p8_faster intel +regional_control_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_stochy_debug intel +control_lndp_debug intel +control_csawmg_debug intel +control_ras_debug intel +control_diag_debug intel +control_debug_p8 intel +regional_debug intel +rap_control_debug intel +hrrr_control_debug intel +hrrr_gf_debug intel +hrrr_c3_debug intel +rap_unified_drag_suite_debug intel +rap_diag_debug intel +rap_cires_ugwp_debug intel +rap_unified_ugwp_debug intel +rap_lndp_debug intel +rap_progcld_thompson_debug intel +rap_noah_debug intel +rap_sfcdiff_debug intel +rap_noah_sfcdiff_cires_ugwp_debug intel +rrfs_v1beta_debug intel +rap_clm_lake_debug intel +rap_flake_debug intel +gnv1_c96_no_nest_debug intel +control_csawmg_debug gnu +control_wam_debug intel +regional_spp_sppt_shum_skeb_dyn32_phy32 intel +rap_control_dyn32_phy32 intel +hrrr_control_dyn32_phy32 intel +rap_2threads_dyn32_phy32 intel +hrrr_control_2threads_dyn32_phy32 intel +hrrr_control_decomp_dyn32_phy32 intel +rap_restart_dyn32_phy32 intel +hrrr_control_restart_dyn32_phy32 intel +conus13km_control intel +conus13km_2threads intel +conus13km_restart_mismatch intel +rap_control_dyn64_phy32 intel +rap_control_debug_dyn32_phy32 intel +hrrr_control_debug_dyn32_phy32 intel +conus13km_debug intel +conus13km_debug_qr intel +conus13km_debug_2threads intel +conus13km_radar_tten_debug intel +rap_control_dyn64_phy32_debug intel +hafs_regional_atm intel +hafs_regional_atm_thompson_gfdlsf intel +hafs_regional_atm_ocn intel +hafs_regional_atm_wav intel +hafs_regional_atm_ocn_wav intel +hafs_regional_1nest_atm intel +hafs_regional_telescopic_2nests_atm intel +hafs_global_1nest_atm intel +hafs_global_multiple_4nests_atm intel +hafs_regional_specified_moving_1nest_atm intel +hafs_regional_storm_following_1nest_atm intel +hafs_regional_storm_following_1nest_atm_ocn intel +hafs_global_storm_following_1nest_atm intel +gnv1_nested intel +hafs_regional_storm_following_1nest_atm_ocn_debug intel +hafs_regional_storm_following_1nest_atm_ocn_wav intel +hafs_regional_storm_following_1nest_atm_ocn_wav_inline intel +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel +hafs_regional_docn intel +hafs_regional_docn_oisst intel +atm_ds2s_docn_pcice intel +atm_ds2s_docn_dice intel +control_p8_atmlnd_sbs intel control_p8_atmlnd intel control_restart_p8_atmlnd intel control_p8_atmlnd_debug intel +atmwav_control_noaero_p8 intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +cpld_regional_atm_fbh intel +cpld_control_p8_lnd intel +cpld_restart_p8_lnd intel +regional_atmaq_debug intel +cpld_control_gfsv17 intelllvm +cpld_debug_gfsv17 intelllvm +cpld_control_sfs intelllvm +cpld_control_p8 intelllvm +rap_control_dyn32_phy32 intelllvm +rap_control_dyn64_phy32 intelllvm +control_c48 gnu +control_stochy gnu +control_ras gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_flake gnu +rap_control gnu +rap_decomp gnu +rap_2threads gnu +rap_restart gnu +rap_sfcdiff gnu +rap_sfcdiff_decomp gnu +rap_sfcdiff_restart gnu +hrrr_control gnu +hrrr_control_noqr gnu +hrrr_control_2threads gnu +hrrr_control_decomp gnu +hrrr_control_restart gnu +hrrr_control_restart_noqr gnu +rrfs_v1beta gnu +control_csawmg gnu +control_diag_debug gnu +regional_debug gnu +rap_control_debug gnu +hrrr_control_debug gnu +hrrr_gf_debug gnu +hrrr_c3_debug gnu +rap_diag_debug gnu +rap_noah_sfcdiff_cires_ugwp_debug gnu +rap_progcld_thompson_debug gnu +rrfs_v1beta_debug gnu +control_ras_debug gnu +control_stochy_debug gnu +control_debug_p8 gnu +rap_flake_debug gnu +rap_clm_lake_debug gnu +gnv1_c96_no_nest_debug gnu +rap_control_dyn32_phy32 gnu +hrrr_control_dyn32_phy32 gnu +rap_2threads_dyn32_phy32 gnu +hrrr_control_2threads_dyn32_phy32 gnu +hrrr_control_decomp_dyn32_phy32 gnu +rap_restart_dyn32_phy32 gnu +hrrr_control_restart_dyn32_phy32 gnu +conus13km_control gnu +conus13km_2threads gnu +conus13km_restart_mismatch gnu +rap_control_dyn64_phy32 gnu +rap_control_debug_dyn32_phy32 gnu +hrrr_control_debug_dyn32_phy32 gnu +conus13km_debug gnu +conus13km_debug_qr gnu +conus13km_debug_2threads gnu +conus13km_radar_tten_debug gnu +rap_control_dyn64_phy32_debug gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu From ee3d52d3620565dbf7bc4f47bd039fe6423fa5c1 Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Wed, 5 Feb 2025 13:02:27 -0500 Subject: [PATCH 3/3] Add Land IAU parameters to default_vars / control_c48_lnd_iau modifications // #2585 Update for WW3 initialization (#2587) * UFSWM - Add Land IAU variables to default_vars and allow control_c48_lnd_iau to run using the global_control.nml.IN template. * WW3 - Updated hash for WW3 initialization (#2585) --------- Co-authored-by: Jessica Meixner --- .gitignore | 3 + WW3 | 2 +- tests/default_vars.sh | 12 + tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 523 +++++------ tests/logs/RegressionTests_derecho.log | 560 ++++++------ tests/logs/RegressionTests_gaeac5.log | 693 +++++++-------- tests/logs/RegressionTests_gaeac6.log | 622 ++++++------- tests/logs/RegressionTests_hera.log | 823 ++++++++---------- tests/logs/RegressionTests_hercules.log | 785 +++++++++-------- tests/logs/RegressionTests_jet.log | 503 ++++++----- tests/logs/RegressionTests_orion.log | 582 ++++++------- tests/logs/RegressionTests_wcoss2.log | 464 +++++----- tests/parm/global_control.nml.IN | 13 + tests/parm/global_control_lnd_iau.nml.IN | 412 --------- tests/test_changes.list | 234 ----- tests/tests/control_c48_lnd_iau | 5 +- 19 files changed, 2740 insertions(+), 3598 deletions(-) delete mode 100644 tests/parm/global_control_lnd_iau.nml.IN diff --git a/.gitignore b/.gitignore index d29bb32d85..ef8248e775 100644 --- a/.gitignore +++ b/.gitignore @@ -79,3 +79,6 @@ fail_compile_* fail_test_* tests/run_dir tests/logs/log_* +compile_0_time.log +tests/modules.ufs_model.lua +tests/ufs_common.lua diff --git a/WW3 b/WW3 index af14207b0b..8e67627882 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit af14207b0b2395a2b4e1e01cdbce51973026228f +Subproject commit 8e676278822292a97b2b69da336444ec7d04c06b diff --git a/tests/default_vars.sh b/tests/default_vars.sh index d4394b26de..39a22ff5dd 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -1062,6 +1062,18 @@ export FNSNOC="'global_snoclim.1.875.grb'" export FNZORC="'igbp'" export FNAISC="'IMS-NIC.blended.ice.monthly.clim.grb'" export LDEBUG=.false. + +# Land IAU defaults +export DO_LAND_IAU=.false. +export LAND_IAU_FHRS=3,6,9 +export LAND_IAU_DELHRS=6 +export LAND_IAU_INC_FILES="'sfc_inc',''" +export LSOIL_INCR=3 +export LAND_IAU_FILTER_INC=.false. +export LAND_IAU_UPD_STC=.true. +export LAND_IAU_UPD_SLC=.true. +export LAND_IAU_DP_STCSMC_ADJ=.true. +export LAND_IAU_MIN_T_INC=0.0001 } # Add section for tiled grid namelist diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index cae1c451c1..bed41b740a 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Sat Feb 1 18:53:28 UTC 2025 +Wed Feb 5 01:31:02 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3736050/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 = 270.057953 - 0: The maximum resident set size (KB) = 1439264 + 0: The total amount of wall time = 261.939060 + 0: The maximum resident set size (KB) = 1447916 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3736050/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 = 884.936167 - 0: The maximum resident set size (KB) = 1415620 + 0: The total amount of wall time = 907.212535 + 0: The maximum resident set size (KB) = 1421024 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3736050/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 = 239.687656 - 0: The maximum resident set size (KB) = 1408888 + 0: The total amount of wall time = 238.140480 + 0: The maximum resident set size (KB) = 1425468 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3736050/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 = 237.302738 - 0: The maximum resident set size (KB) = 1408804 + 0: The total amount of wall time = 235.527246 + 0: The maximum resident set size (KB) = 1420308 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3736050/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 = 238.639967 - 0: The maximum resident set size (KB) = 1419344 + 0: The total amount of wall time = 236.557088 + 0: The maximum resident set size (KB) = 1407552 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3736050/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 = 305.316349 - 0: The maximum resident set size (KB) = 1404484 + 0: The total amount of wall time = 246.182621 + 0: The maximum resident set size (KB) = 1428132 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3518014/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3736050/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 = 236.184426 - 0: The maximum resident set size (KB) = 1418260 + 0: The total amount of wall time = 241.245833 + 0: The maximum resident set size (KB) = 1431212 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sat Feb 1 20:08:14 UTC 2025 -Elapsed time: 01h:14m:46s. Have a nice day! +Wed Feb 5 02:43:33 UTC 2025 +Elapsed time: 01h:12m:31s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index e04f29be22..87580ccab7 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 @@ -Sat Feb 1 17:16:08 UTC 2025 +Tue Feb 4 23:51:58 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2893054/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3230979/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 = 2469.378750 - 0: The maximum resident set size (KB) = 1490884 + 0: The total amount of wall time = 2510.972220 + 0: The maximum resident set size (KB) = 1509764 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2893054/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3230979/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 = 826.839054 - 0: The maximum resident set size (KB) = 1478812 + 0: The total amount of wall time = 782.594695 + 0: The maximum resident set size (KB) = 1492060 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2893054/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3230979/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 = 693.772947 - 0: The maximum resident set size (KB) = 1477892 + 0: The total amount of wall time = 686.717599 + 0: The maximum resident set size (KB) = 1503792 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sat Feb 1 18:53:27 UTC 2025 -Elapsed time: 01h:37m:20s. Have a nice day! +Wed Feb 5 01:31:02 UTC 2025 +Elapsed time: 01h:39m:04s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index be42038784..64692216f1 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Sat Feb 1 14:39:08 UTC 2025 +Tue Feb 4 21:11:31 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1765652/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2044380/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 = 1396.470249 - 0: The maximum resident set size (KB) = 758488 + 0: The total amount of wall time = 1381.775026 + 0: The maximum resident set size (KB) = 748476 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1765652/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2044380/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 = 2218.897881 - 0: The maximum resident set size (KB) = 688420 + 0: The total amount of wall time = 2212.900884 + 0: The maximum resident set size (KB) = 709004 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1765652/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2044380/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 = 2232.343734 - 0: The maximum resident set size (KB) = 709996 + 0: The total amount of wall time = 2288.114093 + 0: The maximum resident set size (KB) = 713220 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1765652/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2044380/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 = 2244.704154 - 0: The maximum resident set size (KB) = 687828 + 0: The total amount of wall time = 2296.965501 + 0: The maximum resident set size (KB) = 718664 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sat Feb 1 17:16:07 UTC 2025 -Elapsed time: 02h:36m:59s. Have a nice day! +Tue Feb 4 23:51:58 UTC 2025 +Elapsed time: 02h:40m:27s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index f5e220ae04..8538492fcc 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -558f4722abc1d8aa24dbd5499ac3826dd9206095 +cf8d8f0ae16e210c8f2deeee26cc24b1ddab6688 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) + 2c902a670e89416ef49254c827e8ba45a68ce596 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + db19a6d1d7fa7ed56f62318501c4abb5fb8b1138 FV3/ccpp/physics (EP4-1119-gdb19a6d1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) + 5e7dcf04d4180241df1cb2626ca08b1c81db6c51 WW3 (remotes/origin/devufs/addbinaryrestartinit) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,270 +38,273 @@ 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-20250107 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1274677 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3182622 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:42] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:20, 07:05](3192 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:12] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:18, 15:37](1910 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:39, 16:35](1941 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:18, 07:39](1075 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:02, 18:22](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 12:07] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:17, 15:24](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:37] ( 1502 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:27, 25:49](1942 MB) - -PASS -- COMPILE 's2swa_intel' [14:28, 12:20] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:14, 08:44](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:30, 08:40](3227 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:05, 05:11](3154 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:00, 08:36](3246 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:21, 05:14](3169 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [25:43, 16:56](3450 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:09, 08:34](3218 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [28:36, 07:22](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:30, 08:49](3228 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:10, 08:34](3203 MB) - -PASS -- COMPILE 's2sw_intel' [12:26, 11:08] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:33, 05:02](1916 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:00, 07:21](1984 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:20] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:00, 05:09](1969 MB) - -PASS -- COMPILE 's2s_intel' [11:26, 10:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:31, 06:08](2882 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:29, 02:13](2889 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:12, 01:28](2309 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:36] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:31, 06:47](3192 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:29, 15:36](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:38, 16:40](1949 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:25, 07:36](1086 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:31, 18:14](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 11:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:23, 15:14](1906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:34] ( 1502 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:29, 25:40](1944 MB) + +PASS -- COMPILE 's2swa_intel' [13:27, 11:43] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:26, 08:46](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:31, 08:42](3223 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:27, 05:03](3152 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:53, 08:40](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:09, 05:06](3168 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [23:28, 16:57](3443 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:03, 08:35](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [29:08, 07:03](3166 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:19, 08:29](3223 MB) + +PASS -- COMPILE 's2swal_intel' [13:28, 11:46] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [32:44, 08:55](3230 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [11:21, 05:23](3156 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [19:20, 08:20](3202 MB) + +PASS -- COMPILE 's2sw_intel' [12:27, 11:00] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:32, 04:48](1923 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:03, 07:10](1979 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:25, 10:11] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:53, 05:02](1979 MB) + +PASS -- COMPILE 's2s_intel' [12:27, 10:30] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:35, 05:59](2879 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:32, 02:10](2889 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:14, 01:15](2304 MB) PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:47] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:15, 08:39](3229 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:38] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:52, 15:33](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:03, 07:44](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:04, 18:11](1900 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:13] ( 1502 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [49:22, 27:14](1968 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [17:45, 04:00](663 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [17:08, 02:39](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:06, 02:41](1568 MB) -PASS -- TEST 'control_latlon_intel' [12:59, 02:33](1563 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:14, 02:38](1562 MB) -PASS -- TEST 'control_c48_intel' [15:20, 06:26](1586 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [14:00, 05:58](704 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:16, 06:36](1580 MB) -PASS -- TEST 'control_c192_intel' [13:15, 07:18](1688 MB) -PASS -- TEST 'control_c384_intel' [06:21, 08:48](1965 MB) -PASS -- TEST 'control_c384gdas_intel' [11:24, 09:16](1164 MB) -PASS -- TEST 'control_stochy_intel' [06:35, 01:57](614 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:36, 01:07](420 MB) -PASS -- TEST 'control_lndp_intel' [07:33, 01:49](618 MB) -PASS -- TEST 'control_iovr4_intel' [08:37, 02:38](611 MB) -PASS -- TEST 'control_iovr5_intel' [08:37, 02:36](611 MB) -PASS -- TEST 'control_p8_intel' [10:30, 02:59](1848 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:29, 03:08](1848 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:25, 02:58](1847 MB) -PASS -- TEST 'control_restart_p8_intel' [06:43, 01:56](1006 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:42, 03:08](1840 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:42, 01:52](1010 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:37, 03:13](1853 MB) -PASS -- TEST 'control_2threads_p8_intel' [14:29, 05:55](1933 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:02, 05:02](1858 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:29, 04:09](1904 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:19, 03:20](1865 MB) -PASS -- TEST 'merra2_thompson_intel' [12:59, 03:34](1852 MB) -PASS -- TEST 'regional_control_intel' [08:54, 05:20](887 MB) -PASS -- TEST 'regional_restart_intel' [05:59, 03:05](877 MB) -PASS -- TEST 'regional_decomp_intel' [08:48, 05:31](889 MB) -PASS -- TEST 'regional_2threads_intel' [11:51, 07:38](1013 MB) -PASS -- TEST 'regional_noquilt_intel' [07:50, 05:10](1216 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:50, 05:15](889 MB) -PASS -- TEST 'regional_wofs_intel' [10:58, 07:00](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [10:25, 08:45] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [18:40, 07:22](999 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [24:37, 04:31](1160 MB) -PASS -- TEST 'rap_decomp_intel' [18:40, 07:40](1003 MB) -PASS -- TEST 'rap_2threads_intel' [26:45, 15:54](1076 MB) -PASS -- TEST 'rap_restart_intel' [08:29, 03:54](884 MB) -PASS -- TEST 'rap_sfcdiff_intel' [18:43, 07:14](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:43, 07:30](997 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:28, 05:26](886 MB) -PASS -- TEST 'hrrr_control_intel' [19:41, 04:01](995 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [15:36, 03:58](993 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [19:47, 07:58](1066 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:41, 02:15](830 MB) -PASS -- TEST 'rrfs_v1beta_intel' [17:43, 07:13](994 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:41, 09:28](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:39, 09:11](1944 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:06] -PASS -- TEST 'control_csawmg_intel' [15:01, 07:06](952 MB) -PASS -- TEST 'control_ras_intel' [10:38, 03:34](653 MB) - -PASS -- COMPILE 'wam_intel' [10:25, 08:17] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:12, 12:08](1640 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:30] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:22, 03:07](1848 MB) -PASS -- TEST 'regional_control_faster_intel' [07:57, 05:04](883 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:39] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:01, 02:56](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:08, 02:48](1607 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:33, 03:32](803 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:34, 03:15](804 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:52, 05:03](1111 MB) -PASS -- TEST 'control_ras_debug_intel' [06:32, 03:18](815 MB) -PASS -- TEST 'control_diag_debug_intel' [06:57, 03:12](1661 MB) -PASS -- TEST 'control_debug_p8_intel' [06:53, 03:20](1893 MB) -PASS -- TEST 'regional_debug_intel' [21:11, 18:46](922 MB) -PASS -- TEST 'rap_control_debug_intel' [08:35, 05:40](1186 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:38, 05:42](1180 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:35, 05:46](1187 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:35, 05:42](1185 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:35, 05:40](1187 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:45, 05:56](1274 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:35, 05:52](1198 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:32, 05:52](1190 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:36, 05:49](1188 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:34, 05:49](1187 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:35, 05:39](1184 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:36, 05:50](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:38, 09:09](1184 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:35, 05:34](1180 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:35, 05:48](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:35, 05:43](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:45, 09:38](1189 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:19, 04:25] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [21:13, 14:15](1684 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:22, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:21, 04:16](1032 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:19, 06:12](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:17, 03:28](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [21:35, 13:54](926 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [16:25, 07:09](924 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:58, 03:29](869 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:30, 04:49](789 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 02:04](758 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 08:05] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:15, 02:20](1081 MB) -PASS -- TEST 'conus13km_2threads_intel' [13:11, 02:06](1062 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:58, 01:36](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:57, 04:14](902 MB) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:14, 08:31](3225 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:26, 11:27] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:46, 15:36](1925 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:57, 07:47](1109 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:03, 18:11](1895 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:17] ( 1502 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [50:15, 26:49](1959 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:23] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [14:43, 03:59](662 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [13:03, 02:40](1563 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:59, 02:37](1570 MB) +PASS -- TEST 'control_latlon_intel' [09:54, 02:34](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:05, 02:34](1565 MB) +PASS -- TEST 'control_c48_intel' [13:21, 06:31](1583 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:58, 05:58](705 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:19, 06:31](1587 MB) +PASS -- TEST 'control_c192_intel' [14:16, 07:12](1690 MB) +PASS -- TEST 'control_c384_intel' [03:13, 08:47](1975 MB) +PASS -- TEST 'control_c384gdas_intel' [13:21, 09:08](1165 MB) +PASS -- TEST 'control_stochy_intel' [07:35, 01:55](616 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:33, 01:13](422 MB) +PASS -- TEST 'control_lndp_intel' [07:33, 01:39](620 MB) +PASS -- TEST 'control_iovr4_intel' [07:36, 02:39](612 MB) +PASS -- TEST 'control_iovr5_intel' [08:36, 02:36](616 MB) +PASS -- TEST 'control_p8_intel' [10:29, 02:56](1851 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:27, 03:03](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:26, 02:57](1850 MB) +PASS -- TEST 'control_restart_p8_intel' [09:44, 01:44](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:42, 02:52](1843 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [09:44, 01:44](1017 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:38, 02:58](1857 MB) +PASS -- TEST 'control_2threads_p8_intel' [13:28, 05:51](1932 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:56, 05:01](1861 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:33, 04:02](1910 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:19, 03:13](1866 MB) +PASS -- TEST 'merra2_thompson_intel' [11:00, 03:35](1859 MB) +PASS -- TEST 'regional_control_intel' [06:51, 05:08](887 MB) +PASS -- TEST 'regional_restart_intel' [04:50, 02:56](874 MB) +PASS -- TEST 'regional_decomp_intel' [07:46, 05:23](889 MB) +PASS -- TEST 'regional_2threads_intel' [12:53, 07:46](1016 MB) +PASS -- TEST 'regional_noquilt_intel' [06:48, 05:05](1218 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:47, 05:10](889 MB) +PASS -- TEST 'regional_wofs_intel' [08:52, 06:57](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:49] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [20:39, 07:14](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:16, 04:36](1162 MB) +PASS -- TEST 'rap_decomp_intel' [11:37, 07:30](1003 MB) +PASS -- TEST 'rap_2threads_intel' [21:47, 15:59](1072 MB) +PASS -- TEST 'rap_restart_intel' [09:32, 03:50](884 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:44, 07:11](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:37, 07:27](997 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [12:38, 05:23](886 MB) +PASS -- TEST 'hrrr_control_intel' [09:32, 03:51](996 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [11:35, 03:56](992 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [16:06, 08:05](1071 MB) +PASS -- TEST 'hrrr_control_restart_intel' [09:37, 02:10](829 MB) +PASS -- TEST 'rrfs_v1beta_intel' [16:35, 07:18](991 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:42, 09:39](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:42, 09:18](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:08] +PASS -- TEST 'control_csawmg_intel' [17:13, 06:54](954 MB) +PASS -- TEST 'control_ras_intel' [09:39, 03:28](651 MB) + +PASS -- COMPILE 'wam_intel' [10:23, 08:17] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [18:10, 12:06](1642 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:28] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [10:28, 03:00](1847 MB) +PASS -- TEST 'regional_control_faster_intel' [07:47, 05:05](878 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:30] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [13:09, 02:59](1598 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:21, 02:55](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [11:40, 03:34](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [11:41, 03:12](803 MB) +PASS -- TEST 'control_csawmg_debug_intel' [14:07, 04:54](1111 MB) +PASS -- TEST 'control_ras_debug_intel' [12:41, 03:16](810 MB) +PASS -- TEST 'control_diag_debug_intel' [15:15, 03:13](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [13:05, 03:07](1892 MB) +PASS -- TEST 'regional_debug_intel' [23:16, 18:17](921 MB) +PASS -- TEST 'rap_control_debug_intel' [09:36, 05:40](1185 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:38, 05:36](1181 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [11:38, 05:48](1188 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:36, 05:35](1185 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:33, 05:42](1185 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:45, 05:48](1273 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:34, 05:41](1189 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [11:36, 05:48](1187 MB) +PASS -- TEST 'rap_lndp_debug_intel' [12:37, 05:49](1191 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:36, 05:42](1185 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:36, 05:38](1186 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:36, 05:34](1187 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:41, 08:58](1185 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:39, 05:33](1182 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:38, 05:42](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:35, 05:47](1186 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:49, 09:36](1187 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 04:26] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:11, 14:08](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:04] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:17, 04:19](1036 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:29, 06:11](877 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:34, 03:27](875 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:40, 13:43](923 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:14, 07:07](917 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:26, 03:31](870 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 04:38](786 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 01:59](761 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:24, 08:04] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:14, 02:12](1081 MB) +PASS -- TEST 'conus13km_2threads_intel' [11:10, 01:56](1059 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:57, 01:35](957 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 08:11] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:55, 04:10](901 MB) PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:31] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:34, 05:28](1060 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:41, 05:24](1064 MB) -PASS -- TEST 'conus13km_debug_intel' [20:18, 15:00](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:16, 15:01](826 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [29:22, 23:12](1144 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:14, 14:58](1223 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:23] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:36, 05:39](1089 MB) - -PASS -- COMPILE 'hafsw_intel' [11:24, 10:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [25:58, 06:39](688 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [26:02, 06:09](1044 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:02, 07:54](734 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:58, 13:12](897 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:05, 14:27](784 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:13, 05:54](481 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:52, 07:27](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [16:35, 03:25](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [43:16, 08:45](448 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:10, 04:10](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:14, 04:01](494 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [25:37, 05:10](562 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:46, 01:54](407 MB) -PASS -- TEST 'gnv1_nested_intel' [11:35, 05:31](1701 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:21, 04:52] ( 1446 warnings 1444 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [37:43, 14:50](613 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:35] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [31:41, 08:25](607 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [39:56, 08:26](786 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:27, 09:50] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [31:01, 06:43](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:29, 09:14] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [16:49, 07:35](726 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:52, 07:43](705 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:33, 16:08](897 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [20:33, 09:27] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 02:52](767 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:26, 01:50](742 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 02:39](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 02:36](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:23, 02:40](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:23, 02:44](766 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 02:46](753 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:23, 02:33](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:36, 06:12](691 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:30, 06:11](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:48](766 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 04:48](2033 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:27, 04:47](2031 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [23:38, 09:28] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:24, 02:48](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [12:26, 00:52] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:39, 01:22](301 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:34, 01:19](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:36, 01:05](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:34, 09:52] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:36, 04:12](1915 MB) - -PASS -- COMPILE 'atml_intel' [20:36, 09:31] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:40, 05:18](1879 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:29, 05:18](1878 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [11:09, 03:05](1017 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:28, 05:20] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:30, 06:53](1922 MB) - -PASS -- COMPILE 'atmw_intel' [15:29, 09:02] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:19, 02:18](1881 MB) - -PASS -- COMPILE 'atmaero_intel' [13:27, 08:37] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:05, 04:35](3117 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:05, 05:15](2995 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:47, 05:16](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:22, 04:25] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:59, 22:52](4487 MB) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:35, 05:24](1059 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:40, 05:23](1058 MB) +PASS -- TEST 'conus13km_debug_intel' [21:19, 14:53](1176 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:18, 14:48](857 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [28:24, 23:03](1130 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:11, 14:57](1224 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:22] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:35, 05:40](1089 MB) + +PASS -- COMPILE 'hafsw_intel' [12:26, 10:02] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [22:53, 06:56](687 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:00, 06:04](1046 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:01, 07:45](738 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:02, 13:05](769 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:07, 14:17](887 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:08, 05:42](488 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:49, 07:15](516 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [17:28, 03:24](378 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [46:16, 08:35](438 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:06, 04:06](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:14, 04:00](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [26:32, 05:13](559 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [18:51, 02:01](406 MB) +PASS -- TEST 'gnv1_nested_intel' [12:41, 05:21](1701 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:23, 04:49] ( 1446 warnings 1444 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [35:39, 14:41](611 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:41] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [32:44, 08:24](604 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [32:48, 08:31](783 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:29, 09:47] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [32:01, 06:39](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:31, 09:09] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [15:46, 07:13](722 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:49, 07:25](704 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:35, 16:09](897 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:29, 09:22] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 02:47](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 01:42](742 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:25, 02:30](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:26, 02:36](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 02:43](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:25, 02:49](766 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 02:50](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:22, 02:35](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:32, 06:05](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:23, 06:11](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 02:42](766 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 04:34](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:44](2032 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [17:31, 09:12] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:26, 02:42](767 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [08:22, 00:50] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:40, 01:21](301 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:34, 01:24](449 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:37, 00:57](447 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:31, 09:54] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:40, 04:11](1921 MB) + +PASS -- COMPILE 'atml_intel' [18:34, 09:44] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [12:41, 04:53](1882 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:04, 02:47](1033 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:26, 05:38] ( 872 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [13:36, 05:52](1927 MB) + +PASS -- COMPILE 'atmw_intel' [14:28, 09:05] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:24, 02:03](1882 MB) + +PASS -- COMPILE 'atmaero_intel' [12:25, 08:36] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:07, 04:27](3116 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [13:08, 05:07](2995 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:51, 05:16](3005 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:22, 04:26] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:36, 22:22](4479 MB) SYNOPSIS: -Starting Date/Time: 20250121 12:48:21 -Ending Date/Time: 20250121 14:49:38 -Total Time: 02h:01m:46s -Compiles Completed: 37/37 -Tests Completed: 177/177 +Starting Date/Time: 20250204 13:48:25 +Ending Date/Time: 20250204 15:51:26 +Total Time: 02h:03m:30s +Compiles Completed: 38/38 +Tests Completed: 178/178 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 17ca79975c..40eb33b7ca 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -692fa94443d70a890d1771aba742f93963fdecbb +c553242dcb9e80cf0668d6fa0b4a8732e68fcd5f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) + 2c902a670e89416ef49254c827e8ba45a68ce596 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) + db19a6d1d7fa7ed56f62318501c4abb5fb8b1138 FV3/ccpp/physics (EP4-1119-gdb19a6d1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) + 5e7dcf04d4180241df1cb2626ca08b1c81db6c51 WW3 (remotes/origin/devufs/addbinaryrestartinit) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,289 +39,289 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20250129 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_64072 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_124832 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:27, 21:33] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:11, 06:22](3212 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:32, 23:14] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:46, 14:21](1912 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:15, 15:08](1945 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:10, 07:09](1076 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:56, 16:05](1882 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:28, 23:13] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [27:16, 13:50](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:27, 11:46] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:35, 23:39](1938 MB) - -PASS -- COMPILE 's2swa_intel' [23:31, 21:39] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:09, 08:15](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:22, 08:06](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [20:20, 04:41](3153 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:56, 08:28](3251 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [20:22, 04:51](3182 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:01, 14:07](3807 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:56, 08:00](3218 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:50, 06:44](3535 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:10, 08:20](3234 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:20, 09:17](3820 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [21:59, 06:38](3620 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [32:45, 10:46](4544 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:03, 07:00](4677 MB) - -PASS -- COMPILE 's2swal_intel' [24:33, 22:07] ( 6 warnings 12 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [18:01, 08:13](3232 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [13:07, 05:03](3158 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:44, 08:04](3209 MB) - -PASS -- COMPILE 's2sw_intel' [21:31, 19:57] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:24, 04:20](1925 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:41, 06:43](1978 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:18, 11:38] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:48, 12:52](3304 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:27, 11:03] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:21, 05:59](1955 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:28, 16:10] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:44, 04:26](1981 MB) - -PASS -- COMPILE 's2s_intel' [18:15, 16:37] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [20:04, 05:41](2886 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [14:03, 02:04](2902 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:59, 01:23](2290 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:17, 23:49] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:01, 08:00](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:17, 21:46] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:53, 14:08](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:58, 07:16](1106 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:50, 16:10](1903 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:23, 11:10] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:41, 25:22](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:20, 14:16] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [12:31, 03:26](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:58, 02:09](1562 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:22, 02:08](1565 MB) -PASS -- TEST 'control_latlon_intel' [05:04, 02:05](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:06, 02:07](1567 MB) -PASS -- TEST 'control_c48_intel' [08:02, 05:39](1591 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:41, 05:16](708 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:09, 05:41](1589 MB) -PASS -- TEST 'control_c192_intel' [09:37, 06:05](1695 MB) -PASS -- TEST 'control_c384_intel' [12:41, 06:46](1974 MB) -PASS -- TEST 'control_c384gdas_intel' [14:41, 07:05](1172 MB) -PASS -- TEST 'control_stochy_intel' [03:32, 01:23](622 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:37, 00:52](432 MB) -PASS -- TEST 'control_lndp_intel' [03:35, 01:19](621 MB) -PASS -- TEST 'control_iovr4_intel' [04:37, 02:04](617 MB) -PASS -- TEST 'control_iovr5_intel' [04:41, 02:04](617 MB) -PASS -- TEST 'control_p8_intel' [06:37, 03:02](1854 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:26, 03:08](1856 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:22, 03:05](1864 MB) -PASS -- TEST 'control_restart_p8_intel' [05:16, 02:01](1010 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:23, 03:02](1849 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:15, 01:54](1022 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:18, 03:12](1845 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:24, 04:40](1941 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:12, 04:46](1856 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:24, 04:11](1910 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:30, 03:20](1860 MB) -PASS -- TEST 'merra2_thompson_intel' [08:22, 03:35](1851 MB) -PASS -- TEST 'regional_control_intel' [08:01, 04:48](902 MB) -PASS -- TEST 'regional_restart_intel' [05:55, 02:51](878 MB) -PASS -- TEST 'regional_decomp_intel' [08:02, 04:56](903 MB) -PASS -- TEST 'regional_noquilt_intel' [06:59, 04:31](1223 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:57, 04:40](901 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:49, 04:43](895 MB) -PASS -- TEST 'regional_wofs_intel' [08:58, 05:52](1590 MB) - -PASS -- COMPILE 'rrfs_intel' [14:24, 12:49] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [19:23, 06:08](1007 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:07, 03:46](1162 MB) -PASS -- TEST 'rap_decomp_intel' [19:23, 06:23](1007 MB) -PASS -- TEST 'rap_2threads_intel' [24:26, 11:31](1096 MB) -PASS -- TEST 'rap_restart_intel' [06:11, 03:12](885 MB) -PASS -- TEST 'rap_sfcdiff_intel' [18:26, 06:05](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [19:27, 06:22](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 04:34](882 MB) -PASS -- TEST 'hrrr_control_intel' [16:14, 03:13](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [16:14, 03:17](997 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [18:24, 05:44](1074 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:42, 01:44](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [18:22, 05:59](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [20:44, 08:08](1956 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:50, 07:45](1947 MB) - -PASS -- COMPILE 'csawmg_intel' [13:19, 11:46] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [20:06, 06:33](961 MB) -PASS -- TEST 'control_ras_intel' [15:40, 02:52](653 MB) - -PASS -- COMPILE 'wam_intel' [13:17, 11:37] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [22:14, 10:15](1647 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:16, 12:05] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:14, 03:03](1865 MB) -PASS -- TEST 'regional_control_faster_intel' [06:50, 04:29](892 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [22:21, 14:32] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:59, 02:16](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:10, 02:11](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:31, 02:49](810 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:31, 02:39](811 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:03, 04:42](1114 MB) -PASS -- TEST 'control_ras_debug_intel' [05:37, 02:39](814 MB) -PASS -- TEST 'control_diag_debug_intel' [05:19, 02:35](1666 MB) -PASS -- TEST 'control_debug_p8_intel' [06:03, 03:07](1904 MB) -PASS -- TEST 'regional_debug_intel' [19:53, 16:53](921 MB) -PASS -- TEST 'rap_control_debug_intel' [06:36, 04:39](1194 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:31, 04:35](1184 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:28, 04:47](1187 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 04:41](1188 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:36, 04:49](1189 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:38, 04:54](1273 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:38, 04:54](1192 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:36, 04:45](1197 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:35, 04:42](1189 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:36, 04:45](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:33, 04:37](1187 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:39, 04:49](1190 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:36](1188 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:38, 04:44](1183 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:43, 04:41](1195 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:37, 04:39](1189 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:17, 08:11](1196 MB) - -PASS -- COMPILE 'wam_debug_intel' [17:14, 07:04] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:08, 12:15](1684 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:21, 11:26] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:15, 03:26](1038 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:08, 05:06](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:03, 02:43](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:59, 09:31](930 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:07, 04:54](927 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 02:52](873 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:58, 03:53](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:34, 01:31](774 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:22, 11:22] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:29, 01:47](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:18, 01:16](1079 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:21, 01:05](964 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:21, 11:37] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:58, 03:37](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [19:22, 07:27] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:35, 04:29](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 04:22](1064 MB) -PASS -- TEST 'conus13km_debug_intel' [15:18, 12:36](1146 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:17, 12:45](833 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:23, 13:38](1148 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:15, 12:47](1213 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [19:21, 07:11] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 04:41](1093 MB) - -PASS -- COMPILE 'hafsw_intel' [29:23, 17:45] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:35, 04:28](703 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:52, 05:02](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:45, 06:23](765 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:32, 10:38](775 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:01, 11:38](803 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:09, 04:38](470 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:33, 05:41](486 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:53, 02:15](386 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:46, 06:05](461 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:59, 03:16](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:16, 03:04](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:12, 03:45](582 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:37, 01:10](424 MB) -PASS -- TEST 'gnv1_nested_intel' [12:21, 03:56](1703 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [18:19, 08:34] ( 1470 warnings 1424 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:18, 12:25](624 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:20, 17:14] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:29, 06:48](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:24, 06:55](684 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:20, 18:50] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:04, 05:19](666 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:16, 15:54] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:21, 05:36](733 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:23, 05:38](723 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:15, 16:07](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:14, 08:30] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:31, 02:29](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:30, 01:30](757 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:22, 02:21](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:25, 02:24](649 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:34, 02:25](650 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:36, 02:30](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:26, 02:30](757 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:35, 02:24](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:44, 05:40](699 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:09, 05:39](682 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:26, 02:29](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:33, 03:53](2040 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:30, 03:52](2038 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:13, 05:45] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:27, 05:08](752 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:14, 08:27] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 02:30](770 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:13, 02:37] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:41, 01:04](304 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:33, 00:59](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:36, 00:43](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:16, 13:45] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:27, 03:48](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:14, 12:43] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:27, 05:07](1898 MB) - -PASS -- COMPILE 'atml_intel' [17:23, 15:08] ( 14 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [09:47, 06:07](1883 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:55, 03:42](1036 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:14, 10:50] ( 892 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:30, 05:33](1922 MB) - -PASS -- COMPILE 'atmw_intel' [16:21, 14:02] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:23, 02:27](1877 MB) - -PASS -- COMPILE 'atmaero_intel' [15:15, 12:50] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:24, 04:14](3131 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:45, 04:17](3007 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:21, 04:21](3013 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:16, 07:55] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:26, 21:39](4549 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:14, 11:21] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:34, 08:02](844 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:27, 22:00] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:21, 06:22](3209 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:25, 23:45] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:51, 14:06](1912 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:11, 15:03](1951 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:27, 07:04](1067 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:58, 16:04](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:26, 23:56] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:14, 13:48](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:25, 12:13] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:54, 23:31](1934 MB) + +PASS -- COMPILE 's2swa_intel' [23:25, 22:01] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:36, 08:07](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:30, 08:12](3235 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:29, 04:51](3155 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:15, 08:03](3251 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:24, 04:49](3179 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:17, 14:09](3798 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:16, 08:02](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:13, 06:26](3536 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:38, 08:12](3236 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:50, 09:41](3817 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:10, 06:43](3625 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:37, 10:36](4543 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:20, 07:07](4680 MB) + +PASS -- COMPILE 's2swal_intel' [24:24, 22:26] ( 6 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [12:16, 08:17](3237 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:31, 05:01](3160 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:43, 07:55](3201 MB) + +PASS -- COMPILE 's2sw_intel' [22:27, 20:11] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:40, 04:42](1924 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:50, 07:01](1994 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:24, 12:08] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:55, 13:01](3303 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:24, 11:25] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:33, 05:56](1955 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:26, 16:30] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:45, 05:04](1974 MB) + +PASS -- COMPILE 's2s_intel' [19:16, 17:08] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:04, 05:46](2880 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:06, 02:10](2891 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:16, 01:29](2306 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:17, 24:03] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:26, 08:09](3233 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:17, 22:03] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:57, 14:15](1932 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:17, 07:19](1083 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:48, 16:05](1897 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:15, 11:18] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:53, 25:01](1962 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:15, 14:28] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:50, 03:26](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:08, 02:10](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:21, 02:10](1573 MB) +PASS -- TEST 'control_latlon_intel' [04:58, 02:08](1560 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:12, 02:09](1564 MB) +PASS -- TEST 'control_c48_intel' [08:01, 05:43](1592 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:35, 05:17](711 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:03, 05:44](1588 MB) +PASS -- TEST 'control_c192_intel' [10:00, 06:07](1690 MB) +PASS -- TEST 'control_c384_intel' [14:24, 06:50](1976 MB) +PASS -- TEST 'control_c384gdas_intel' [16:22, 07:10](1175 MB) +PASS -- TEST 'control_stochy_intel' [03:26, 01:25](623 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:33, 00:51](435 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 01:22](625 MB) +PASS -- TEST 'control_iovr4_intel' [04:36, 02:06](618 MB) +PASS -- TEST 'control_iovr5_intel' [04:35, 02:06](618 MB) +PASS -- TEST 'control_p8_intel' [06:41, 03:07](1854 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:44, 03:12](1857 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:35, 03:00](1858 MB) +PASS -- TEST 'control_restart_p8_intel' [05:27, 01:59](1009 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:24, 02:54](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:26, 02:04](1023 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:20, 03:00](1846 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:24, 04:45](1948 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:13, 04:45](1857 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:21, 04:06](1909 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:24, 03:11](1857 MB) +PASS -- TEST 'merra2_thompson_intel' [06:25, 03:27](1857 MB) +PASS -- TEST 'regional_control_intel' [07:50, 04:53](900 MB) +PASS -- TEST 'regional_restart_intel' [05:47, 02:57](878 MB) +PASS -- TEST 'regional_decomp_intel' [07:57, 05:07](897 MB) +PASS -- TEST 'regional_noquilt_intel' [06:57, 04:47](1212 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:59, 04:54](893 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:56, 04:52](895 MB) +PASS -- TEST 'regional_wofs_intel' [08:02, 05:50](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [15:14, 12:56] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:27, 06:09](1004 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:37, 03:42](1161 MB) +PASS -- TEST 'rap_decomp_intel' [09:27, 06:24](1006 MB) +PASS -- TEST 'rap_2threads_intel' [14:23, 11:31](1082 MB) +PASS -- TEST 'rap_restart_intel' [06:07, 03:14](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:27, 06:09](1002 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:28, 06:24](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:18, 04:35](882 MB) +PASS -- TEST 'hrrr_control_intel' [06:15, 03:13](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:15, 03:17](998 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:15, 05:43](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:44, 01:45](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:33, 06:00](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:50, 08:06](1956 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:53, 07:48](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [14:21, 11:50] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:05, 06:27](958 MB) +PASS -- TEST 'control_ras_intel' [05:40, 02:53](658 MB) + +PASS -- COMPILE 'wam_intel' [13:14, 11:34] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:15, 10:16](1648 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:14, 12:09] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:25, 03:11](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [06:59, 04:40](893 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:14, 14:33] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:13, 02:15](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:11, 02:14](1604 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:35, 02:56](809 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:37, 02:37](812 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:57, 04:53](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [04:37, 02:37](818 MB) +PASS -- TEST 'control_diag_debug_intel' [05:48, 02:34](1668 MB) +PASS -- TEST 'control_debug_p8_intel' [06:00, 02:57](1895 MB) +PASS -- TEST 'regional_debug_intel' [18:57, 16:21](923 MB) +PASS -- TEST 'rap_control_debug_intel' [07:37, 04:49](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:29, 04:42](1190 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:37, 04:42](1188 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:45, 04:52](1190 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 04:39](1190 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:30, 04:54](1272 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:33, 04:45](1190 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:31, 04:54](1197 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:30, 04:42](1192 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:42, 04:46](1190 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:36, 04:36](1188 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:35, 04:41](1188 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:29, 07:45](1187 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:32, 04:49](1187 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:42, 04:46](1193 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:37, 04:44](1189 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:55, 07:58](1195 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:13, 07:10] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:17, 12:09](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:14, 11:36] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:37, 03:37](1036 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:02, 05:10](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:05, 02:47](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:09, 09:35](931 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:57, 04:57](937 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:06, 02:55](874 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:08, 03:52](799 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:36, 01:32](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:20, 11:23] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:25, 01:51](1077 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:18, 01:18](1081 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:25, 01:05](966 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:20, 11:42] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:56, 03:38](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:13, 07:27] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:32, 04:42](1066 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:24](1064 MB) +PASS -- TEST 'conus13km_debug_intel' [15:10, 12:37](1144 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:25, 12:56](831 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:17, 13:44](1150 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:30, 12:41](1212 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:14, 07:15] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 04:44](1094 MB) + +PASS -- COMPILE 'hafsw_intel' [20:17, 17:51] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:39, 04:35](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:59, 05:07](1063 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:57, 06:29](763 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:38, 10:38](772 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:56, 11:44](804 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:17, 04:40](466 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:43, 05:47](484 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:05, 02:19](389 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:51, 06:11](460 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:01, 03:19](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:21, 03:07](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:13, 03:51](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:30, 01:13](423 MB) +PASS -- TEST 'gnv1_nested_intel' [08:24, 04:04](1701 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:18, 08:36] ( 1470 warnings 1424 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:23, 12:23](622 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:16, 17:29] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:31, 06:55](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:35, 07:03](684 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:16, 18:59] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:30, 05:26](668 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:16, 15:57] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:35, 05:44](733 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:31, 05:46](726 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:27, 16:18](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:13, 08:37] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 02:31](769 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:44, 01:33](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:23](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:30, 02:26](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:28, 02:27](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:31](770 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:28, 02:32](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:22, 02:23](653 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:46, 05:47](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:01, 05:43](682 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 02:31](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:37, 03:58](2039 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:30, 03:57](2039 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 05:54] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:27, 05:07](753 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:13, 08:26] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:39, 02:31](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:17, 02:39] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:39, 01:13](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:38, 01:06](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:28, 00:46](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:14, 13:57] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:34, 03:55](1907 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:14, 12:46] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:23, 04:55](1899 MB) + +PASS -- COMPILE 'atml_intel' [17:15, 15:10] ( 14 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [10:45, 07:14](1883 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:04, 04:05](1036 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:22, 10:59] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:45, 05:36](1925 MB) + +PASS -- COMPILE 'atmw_intel' [16:14, 14:05] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:28, 02:21](1882 MB) + +PASS -- COMPILE 'atmaero_intel' [15:14, 12:57] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:00, 04:17](3128 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:53, 04:18](3007 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:19, 04:24](3016 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:14, 08:06] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:38, 21:49](4545 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:20, 11:26] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:33, 08:05](844 MB) SYNOPSIS: -Starting Date/Time: 20250130 06:35:10 -Ending Date/Time: 20250130 08:37:20 -Total Time: 02h:03m:11s +Starting Date/Time: 20250203 17:15:31 +Ending Date/Time: 20250203 19:04:42 +Total Time: 01h:50m:14s Compiles Completed: 43/43 Tests Completed: 187/187 diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log index 97d6b818cc..722faf5048 100644 --- a/tests/logs/RegressionTests_gaeac5.log +++ b/tests/logs/RegressionTests_gaeac5.log @@ -1,7 +1,7 @@ ====START OF GAEAC5 REGRESSION TESTING LOG==== UFSWM hash used in testing: -692fa94443d70a890d1771aba742f93963fdecbb +43af8720758e7f0a8c72ab669c5353cfee69ec17 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) + 2c902a670e89416ef49254c827e8ba45a68ce596 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) + db19a6d1d7fa7ed56f62318501c4abb5fb8b1138 FV3/ccpp/physics (EP4-1119-gdb19a6d1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) + 5e7dcf04d4180241df1cb2626ca08b1c81db6c51 WW3 (remotes/origin/devufs/addbinaryrestartinit) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,406 +39,309 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20250129 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_828013 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3111724 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:19, 18:55] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:18, 10:42](3182 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:20, 23:19] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:39, 15:36](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:47, 16:06](1942 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:41, 07:42](1074 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:27, 17:36](1877 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:20, 23:25] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:52, 17:01](1898 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:18, 13:19] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:19, 25:12](1924 MB) - -PASS -- COMPILE 's2swa_intel' [21:19, 19:44] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:36, 12:44](3215 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:34, 12:42](3212 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:10, 08:06](3137 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:29, 12:42](3239 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:16, 08:04](3164 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:21, 12:48](3442 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:21, 11:57](3213 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:22, 09:04](3158 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:34, 12:38](3215 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:20, 12:41](3490 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:58, 09:41](3596 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:17, 12:53](4267 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:02, 10:37](4364 MB) - -PASS -- COMPILE 's2swal_intel' [20:19, 18:58] ( 6 warnings 12 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_lnd_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:57, 12:07](3195 MB) - -PASS -- COMPILE 's2sw_intel' [19:19, 18:07] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:34, 07:16](1914 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:19, 09:45](1980 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:18, 13:31] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:17, 14:06](3267 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:17, 11:56] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:16, 05:54](1941 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:18, 15:42] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:50, 07:18](1978 MB) - -PASS -- COMPILE 's2s_intel' [17:13, 15:31] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:02, 07:41](2877 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:26, 01:41](2884 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:50, 03:07](2297 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:16, 21:18] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:09, 10:33](3217 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:14, 21:07] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:31, 15:32](1925 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:59, 07:47](1102 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:00, 20:02](1889 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:12, 12:59] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:01, 29:36](1942 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:14, 16:31] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:21, 05:46](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:59, 04:50](1548 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:29, 05:12](1562 MB) -PASS -- TEST 'control_latlon_intel' [07:33, 04:46](1558 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:34, 03:40](1557 MB) -PASS -- TEST 'control_c48_intel' [11:49, 08:21](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:34, 05:42](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:39, 08:15](1572 MB) -PASS -- TEST 'control_c192_intel' [12:23, 09:29](1682 MB) -PASS -- TEST 'control_c384_intel' [19:43, 16:00](1970 MB) -PASS -- TEST 'control_c384gdas_intel' [21:19, 16:59](1169 MB) -PASS -- TEST 'control_stochy_intel' [06:52, 04:16](608 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:52, 01:36](415 MB) -PASS -- TEST 'control_lndp_intel' [06:56, 03:53](610 MB) -PASS -- TEST 'control_iovr4_intel' [04:53, 02:29](606 MB) -PASS -- TEST 'control_iovr5_intel' [05:08, 02:28](604 MB) -PASS -- TEST 'control_p8_intel' [08:30, 05:24](1852 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:04, 05:15](1853 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:30, 05:20](1852 MB) -PASS -- TEST 'control_restart_p8_intel' [06:15, 02:11](1001 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:28, 03:31](1841 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:38, 03:43](1003 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:47, 05:32](1842 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:27, 05:17](1920 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:11, 05:22](1845 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:30, 06:28](1897 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:28, 05:39](1853 MB) -PASS -- TEST 'merra2_thompson_intel' [08:24, 05:32](1842 MB) -PASS -- TEST 'regional_control_intel' [07:11, 04:48](875 MB) -PASS -- TEST 'regional_restart_intel' [05:00, 02:33](859 MB) -PASS -- TEST 'regional_decomp_intel' [10:35, 06:56](876 MB) -PASS -- TEST 'regional_2threads_intel' [07:03, 04:13](1003 MB) -PASS -- TEST 'regional_noquilt_intel' [09:53, 06:39](1208 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:11, 04:38](878 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:14, 06:50](876 MB) -PASS -- TEST 'regional_wofs_intel' [09:19, 06:19](1570 MB) - -PASS -- COMPILE 'rrfs_intel' [17:13, 15:55] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:57, 09:21](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:00, 04:35](1169 MB) -PASS -- TEST 'rap_decomp_intel' [12:57, 09:31](994 MB) -PASS -- TEST 'rap_2threads_intel' [13:53, 10:09](1067 MB) -PASS -- TEST 'rap_restart_intel' [06:36, 04:05](871 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:57, 06:40](987 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:54, 09:40](984 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:48, 07:25](876 MB) -PASS -- TEST 'hrrr_control_intel' [08:21, 04:22](988 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:21, 04:23](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:53, 06:19](1058 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:04, 04:24](824 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:55, 06:37](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 10:44](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:05, 10:46](1930 MB) - -PASS -- COMPILE 'csawmg_intel' [16:14, 15:09] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [11:00, 08:48](942 MB) -PASS -- TEST 'control_ras_intel' [08:49, 05:29](646 MB) - -PASS -- COMPILE 'wam_intel' [16:13, 15:04] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [17:27, 14:03](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 15:43] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:25, 06:00](1843 MB) -PASS -- TEST 'regional_control_faster_intel' [09:07, 06:48](877 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:14, 15:32] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:18, 05:16](1584 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:10, 05:06](1585 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:12, 05:42](782 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:05, 05:29](784 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:59, 06:55](1083 MB) -PASS -- TEST 'control_ras_debug_intel' [07:50, 05:25](791 MB) -PASS -- TEST 'control_diag_debug_intel' [09:14, 05:58](1643 MB) -PASS -- TEST 'control_debug_p8_intel' [06:10, 03:47](1875 MB) -PASS -- TEST 'regional_debug_intel' [19:22, 16:17](889 MB) -PASS -- TEST 'rap_control_debug_intel' [10:07, 07:45](1168 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:32, 07:15](1157 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:30, 07:31](1162 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:19, 07:35](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:17, 05:50](1168 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:22, 07:31](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:59, 07:40](1161 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:05, 07:38](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:01, 06:03](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:09, 07:37](1168 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:38, 07:21](1159 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:06, 05:31](1161 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:57, 10:20](1160 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:04, 07:10](1156 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:56, 07:28](1161 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:52, 04:56](1161 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:23, 10:52](1167 MB) - -PASS -- COMPILE 'wam_debug_intel' [14:16, 12:25] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:59, 15:31](1668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:14, 14:50] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:39, 04:24](1047 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:42, 08:09](869 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:53, 05:47](866 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:37, 09:22](917 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:36, 06:10](918 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:38, 05:56](864 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:25, 06:38](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:01, 04:14](753 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 14:15] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:55, 04:29](1072 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:35, 01:42](1051 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:54, 03:49](949 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:14, 14:03] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:45, 06:44](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 11:18] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:18, 08:06](1044 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:56, 07:39](1040 MB) -PASS -- TEST 'conus13km_debug_intel' [19:27, 16:34](1123 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:39, 13:50](803 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:26, 11:42](1118 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:26, 13:11](1192 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:13, 11:12] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:15, 07:31](1069 MB) - -PASS -- COMPILE 'hafsw_intel' [20:14, 18:54] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:57, 07:35](714 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:15, 06:55](1081 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:53, 10:05](744 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:47, 13:59](775 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:38, 15:32](805 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:14, 07:50](472 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:58, 09:11](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:39, 05:15](398 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:30, 10:04](487 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:53, 06:16](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:01, 06:02](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:39, 07:06](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:13, 04:05](427 MB) -PASS -- TEST 'gnv1_nested_intel' [09:12, 06:02](1702 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:12, 12:08] ( 1470 warnings 1424 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:41, 15:34](615 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:14, 17:05] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:39, 08:12](631 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:35, 10:25](812 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:18, 17:41] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:05, 09:26](809 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:22, 16:54] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:49, 09:03](740 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:35, 09:03](726 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [26:02, 22:13](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:15, 13:13] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:13, 04:50](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:09, 03:44](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:08, 04:41](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:03, 04:42](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:54, 04:39](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:50, 04:46](764 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:21, 02:37](752 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:59, 02:28](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:02, 06:42](698 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:21, 08:34](679 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:53, 04:48](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:48, 04:40](2035 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:04, 06:48](2035 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:13, 08:57] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:52, 07:37](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:13, 14:07] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:37, 04:47](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [11:13, 09:18] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:52, 03:54](313 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:04, 03:37](461 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:04, 01:28](464 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [11:13, 09:17] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:27, 00:34](450 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [06:26, 03:10](252 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:13, 15:27] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:06, 04:17](1908 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:19, 15:44] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:36, 07:28](1907 MB) - -PASS -- COMPILE 'atml_intel' [19:13, 17:54] ( 14 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [13:14, 09:07](1878 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:42, 06:07](1024 MB) - -PASS -- COMPILE 'atml_debug_intel' [16:14, 15:08] ( 892 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:01, 08:35](1905 MB) - -PASS -- COMPILE 'atmw_intel' [18:13, 17:03] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:36, 05:20](1882 MB) - -PASS -- COMPILE 'atmaero_intel' [19:14, 17:49] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:41, 08:53](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [12:36, 08:57](2987 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:30, 09:17](2991 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [14:15, 13:10] ( 887 warnings 6 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_atmaq_debug_intel' [, ]( MB) - -PASS -- COMPILE 'atm_fbh_intel' [16:15, 14:35] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:39, 11:41](832 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [25:18, 23:16] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intelllvm' [, ]( MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [16:14, 14:27] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intelllvm' [, ]( MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [27:16, 25:23] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_intelllvm' [, ]( MB) - -PASS -- COMPILE 's2swa_intelllvm' [24:22, 22:21] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intelllvm' [, ]( MB) +PASS -- COMPILE 's2swa_32bit_intel' [24:16, 23:02] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:16, 08:59](3184 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:17, 24:50] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:25, 15:41](1903 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:45, 15:35](1937 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:17, 07:49](1068 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:34, 17:52](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:17, 24:31] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:38, 16:02](1898 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:17, 15:22] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:09, 26:07](1924 MB) + +PASS -- COMPILE 's2swa_intel' [24:16, 22:15] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:29, 12:36](3213 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:29, 12:03](3215 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:28, 08:00](3140 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:20, 12:53](3233 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:56, 07:39](3159 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:04, 12:32](3444 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:10, 12:31](3208 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:30, 09:42](3159 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:29, 12:15](3213 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:14, 12:32](3493 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:57, 09:27](3596 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:50, 13:54](4273 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:07, 08:48](4363 MB) + +PASS -- COMPILE 's2swal_intel' [24:16, 22:45] ( 6 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [16:40, 11:15](3221 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [11:53, 08:25](3149 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [16:17, 11:52](3197 MB) + +PASS -- COMPILE 's2sw_intel' [21:17, 19:24] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:57, 06:32](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:06, 08:28](1981 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:17, 15:10] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [18:29, 14:19](3271 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:13, 14:01] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:51, 06:08](1933 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:13, 17:43] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:00, 05:31](1974 MB) + +PASS -- COMPILE 's2s_intel' [20:15, 18:19] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:54, 07:42](2873 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:53, 03:49](2874 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:58, 00:59](2295 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:16, 23:02] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:09, 10:11](3218 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:16, 22:44] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:04, 16:24](1916 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 07:15](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:32, 17:28](1891 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:15, 14:40] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:51, 29:11](1943 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:16, 16:01] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:09, 04:55](658 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:11, 04:19](1554 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:05, 04:09](1563 MB) +PASS -- TEST 'control_latlon_intel' [07:59, 04:26](1559 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:21, 04:34](1556 MB) +PASS -- TEST 'control_c48_intel' [11:35, 07:19](1572 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:30, 06:25](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:26, 07:24](1576 MB) +PASS -- TEST 'control_c192_intel' [11:04, 08:04](1684 MB) +PASS -- TEST 'control_c384_intel' [19:51, 15:34](1963 MB) +PASS -- TEST 'control_c384gdas_intel' [21:43, 16:13](1165 MB) +PASS -- TEST 'control_stochy_intel' [05:10, 02:16](612 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:00, 03:01](412 MB) +PASS -- TEST 'control_lndp_intel' [06:04, 03:14](608 MB) +PASS -- TEST 'control_iovr4_intel' [07:44, 04:24](606 MB) +PASS -- TEST 'control_iovr5_intel' [05:04, 03:04](608 MB) +PASS -- TEST 'control_p8_intel' [08:24, 03:38](1842 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:33, 04:10](1843 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:06, 03:47](1841 MB) +PASS -- TEST 'control_restart_p8_intel' [04:45, 01:55](1002 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:21, 03:47](1834 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:44, 01:56](1009 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:16, 03:36](1841 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:04, 04:28](1927 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:36, 05:09](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:48, 04:30](1898 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:03, 03:37](1845 MB) +PASS -- TEST 'merra2_thompson_intel' [06:54, 03:44](1843 MB) +PASS -- TEST 'regional_control_intel' [08:30, 05:06](883 MB) +PASS -- TEST 'regional_restart_intel' [05:41, 03:08](862 MB) +PASS -- TEST 'regional_decomp_intel' [07:02, 05:01](886 MB) +PASS -- TEST 'regional_2threads_intel' [06:03, 03:44](1004 MB) +PASS -- TEST 'regional_noquilt_intel' [09:10, 05:02](1207 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:45, 04:49](873 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:00, 04:41](875 MB) +PASS -- TEST 'regional_wofs_intel' [09:18, 06:33](1572 MB) + +PASS -- COMPILE 'rrfs_intel' [18:13, 16:32] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:23, 07:00](992 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 04:10](1166 MB) +PASS -- TEST 'rap_decomp_intel' [09:56, 07:13](992 MB) +PASS -- TEST 'rap_2threads_intel' [10:48, 08:06](1064 MB) +PASS -- TEST 'rap_restart_intel' [05:44, 03:26](870 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:00, 06:49](989 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:51, 07:03](986 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:48, 04:54](875 MB) +PASS -- TEST 'hrrr_control_intel' [06:12, 03:49](987 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:07, 03:57](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:51, 04:13](1059 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:31, 01:56](823 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:48, 07:11](980 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 08:37](1942 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 08:40](1930 MB) + +PASS -- COMPILE 'csawmg_intel' [19:13, 17:55] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:49, 06:48](947 MB) +PASS -- TEST 'control_ras_intel' [05:26, 03:24](642 MB) + +PASS -- COMPILE 'wam_intel' [23:18, 21:27] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:12, 12:40](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:13, 16:03] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:05, 03:39](1846 MB) +PASS -- TEST 'regional_control_faster_intel' [06:39, 04:52](873 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [18:13, 17:05] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:45, 02:48](1578 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:28, 02:43](1583 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:42, 03:13](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:44, 02:53](784 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:06, 04:25](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [04:34, 02:53](790 MB) +PASS -- TEST 'control_diag_debug_intel' [05:02, 03:00](1634 MB) +PASS -- TEST 'control_debug_p8_intel' [05:50, 03:10](1869 MB) +PASS -- TEST 'regional_debug_intel' [18:35, 16:36](890 MB) +PASS -- TEST 'rap_control_debug_intel' [07:50, 05:08](1168 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:59, 05:03](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:00, 05:05](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:31, 05:05](1160 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 05:04](1169 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:26, 05:24](1247 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:28, 05:09](1166 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 05:12](1165 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:25, 05:07](1168 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:07](1168 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:30, 04:57](1161 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:39, 05:08](1161 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:35, 08:08](1162 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 05:01](1154 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 05:17](1161 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 05:08](1162 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:51, 08:48](1165 MB) + +PASS -- COMPILE 'wam_debug_intel' [20:13, 19:03] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:52, 13:25](1668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:12, 16:16] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 03:45](1042 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:43, 06:01](867 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:50, 03:41](866 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:51, 07:06](919 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:48, 03:45](912 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:52, 03:47](863 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:10](782 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:46, 01:43](755 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:15, 13:42] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:16, 02:01](1073 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:48, 01:00](1056 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:10, 01:24](951 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:13, 13:53] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:01, 04:19](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:15, 10:27] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:38, 05:02](1042 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:52](1038 MB) +PASS -- TEST 'conus13km_debug_intel' [17:13, 14:14](1127 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:07, 14:04](803 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:55, 11:07](1112 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:02, 13:38](1193 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:12, 10:09] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:00](1074 MB) + +PASS -- COMPILE 'hafsw_intel' [19:12, 17:46] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:25, 04:59](713 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 04:23](1081 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:23, 07:45](751 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:28, 11:34](783 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:24, 13:22](804 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:02, 05:37](471 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:49](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:03, 02:52](398 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:34, 07:41](497 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:46, 03:49](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:55, 03:37](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:04, 04:35](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:30](429 MB) +PASS -- TEST 'gnv1_nested_intel' [09:03, 05:47](1700 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:12, 11:36] ( 1470 warnings 1424 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:09, 12:53](613 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:12, 16:28] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:30, 07:39](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:33, 07:50](815 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [24:18, 22:47] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:30, 05:57](810 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:13, 15:23] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:19, 06:17](739 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:20, 06:17](722 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:11, 20:11](890 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:13, 11:30] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 02:46](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 01:35](740 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:37](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:23, 02:42](641 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:56, 02:32](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:50, 02:36](754 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:20, 02:42](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:21, 02:29](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:49, 06:10](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:35, 06:12](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:24, 02:39](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:35, 04:50](2038 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 04:40](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:10, 06:50] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:51, 05:26](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:15, 11:10] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 02:36](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:55] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:39, 02:53](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:35, 01:35](463 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:16, 01:11](461 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [05:11, 03:59] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:07, 00:42](451 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:05, 00:36](253 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:13, 14:01] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:44, 05:04](1917 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:12, 12:40] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:19, 06:15](1905 MB) + +PASS -- COMPILE 'atml_intel' [15:12, 13:50] ( 14 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [12:24, 09:28](1872 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:38, 03:38](1029 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:11, 10:11] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:31, 06:27](1902 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 12:47] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:55, 03:00](1885 MB) + +PASS -- COMPILE 'atmaero_intel' [15:15, 13:38] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:22, 07:45](3101 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:17, 08:06](2983 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:05, 08:58](2992 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:13, 09:09] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:45, 18:21](4447 MB) + +PASS -- COMPILE 'atm_fbh_intel' [12:19, 11:06] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:49, 09:38](830 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [22:13, 20:09] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [18:50, 15:12](1899 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [12:11, 10:54] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [29:20, 26:06](1926 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [21:15, 20:00] +PASS -- TEST 'cpld_control_sfs_intelllvm' [16:48, 14:31](1899 MB) + +PASS -- COMPILE 's2swa_intelllvm' [20:12, 18:34] +PASS -- TEST 'cpld_control_p8_intelllvm' [15:15, 10:10](3216 MB) SYNOPSIS: -Starting Date/Time: 20250129 23:35:27 -Ending Date/Time: 20250130 02:10:16 -Total Time: 02h:37m:26s +Starting Date/Time: 20250204 11:51:53 +Ending Date/Time: 20250204 13:48:54 +Total Time: 01h:58m:58s Compiles Completed: 48/48 -Tests Completed: 187/194 -Failed Tests: -* TEST cpld_control_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2548/ufs-weather-model/tests/logs/log_gaeac5/run_cpld_control_p8_lnd_intel.log -* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST regional_atmaq_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2548/ufs-weather-model/tests/logs/log_gaeac5/run_regional_atmaq_debug_intel.log -* TEST cpld_control_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2548/ufs-weather-model/tests/logs/log_gaeac5/run_cpld_control_gfsv17_intelllvm.log -* TEST cpld_debug_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2548/ufs-weather-model/tests/logs/log_gaeac5/run_cpld_debug_gfsv17_intelllvm.log -* TEST cpld_control_sfs_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2548/ufs-weather-model/tests/logs/log_gaeac5/run_cpld_control_sfs_intelllvm.log -* TEST cpld_control_p8_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2548/ufs-weather-model/tests/logs/log_gaeac5/run_cpld_control_p8_intelllvm.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF GAEAC5 REGRESSION TESTING LOG==== -====START OF GAEAC5 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -692fa94443d70a890d1771aba742f93963fdecbb - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd --529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20250129 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3831570 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swal_intel' [27:21, 25:55] ( 6 warnings 12 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [16:25, 11:59](3222 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [15:14, 10:09](3144 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [15:14, 13:42] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:51, 20:47](4381 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [28:21, 27:02] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [21:50, 17:53](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [20:16, 18:37] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [30:47, 26:07](1920 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [28:21, 26:15] -PASS -- TEST 'cpld_control_sfs_intelllvm' [18:44, 15:42](1901 MB) - -PASS -- COMPILE 's2swa_intelllvm' [29:21, 27:44] -PASS -- TEST 'cpld_control_p8_intelllvm' [17:17, 12:44](3218 MB) - -SYNOPSIS: -Starting Date/Time: 20250130 14:49:10 -Ending Date/Time: 20250130 15:49:59 -Total Time: 01h:02m:19s -Compiles Completed: 6/6 -Tests Completed: 7/7 +Tests Completed: 194/194 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 47b954b79a..381e0b7277 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,7 +1,7 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -692fa94443d70a890d1771aba742f93963fdecbb +43af8720758e7f0a8c72ab669c5353cfee69ec17 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) + 2c902a670e89416ef49254c827e8ba45a68ce596 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) + db19a6d1d7fa7ed56f62318501c4abb5fb8b1138 FV3/ccpp/physics (EP4-1119-gdb19a6d1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) + 5e7dcf04d4180241df1cb2626ca08b1c81db6c51 WW3 (remotes/origin/devufs/addbinaryrestartinit) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,375 +39,293 @@ 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-20250129 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1533890 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1467305 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:14] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:39, 20:03](2035 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [58:19, 56:16] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:29, 13:25](1921 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:31, 12:10](1953 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:29, 06:18](1085 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:29, 12:08](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:12, 11:44] ( 6 warnings 11 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [26:13, 24:45] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:29, 28:35](1953 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:19] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [24:43, 20:58](2063 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:40, 05:17](2060 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:29, 15:07](1624 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:39, 07:51](2088 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:27, 12:35](1457 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [25:39, 21:49](2231 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [24:40, 20:46](2051 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:34, 12:13](2019 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:39, 05:26](2068 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [11:52, 09:52](2427 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [20:47, 18:39](2670 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [11:33, 08:35](3588 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [07:42, 05:03](3421 MB) - -PASS -- COMPILE 's2swal_intel' [10:10, 08:17] ( 6 warnings 12 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_lnd_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:26, 12:55](1927 MB) - -PASS -- COMPILE 's2sw_intel' [09:10, 07:55] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:24, 05:49](1936 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:26, 04:30](1852 MB) - -PASS -- COMPILE 's2swa_debug_intel' [26:13, 24:11] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:29, 08:47](2091 MB) - -PASS -- COMPILE 's2sw_debug_intel' [35:14, 33:24] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:25, 04:18](1959 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:10, 06:48] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:27, 03:14](1985 MB) - -PASS -- COMPILE 's2s_intel' [08:11, 07:02] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [17:23, 16:05](2876 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:21, 01:16](2884 MB) -PASS -- TEST 'cpld_restart_c48_intel' [12:20, 10:52](2297 MB) - -PASS -- COMPILE 's2swa_faster_intel' [10:12, 09:06] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:28, 05:12](2063 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:12, 11:29] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:29, 24:37](1932 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:28, 09:57](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:26, 12:08](1917 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [36:13, 34:35] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [19:27, 18:06](1955 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [02:15, 00:37] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:18, 05:29](530 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:32, 01:40](1429 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:32, 02:17](1433 MB) -PASS -- TEST 'control_latlon_intel' [05:31, 01:56](1432 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:36, 03:20](1431 MB) -PASS -- TEST 'control_c48_intel' [06:33, 04:35](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 04:18](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:32, 04:35](1576 MB) -PASS -- TEST 'control_c192_intel' [08:35, 04:45](1693 MB) -PASS -- TEST 'control_c384_intel' [13:43, 09:44](1959 MB) -PASS -- TEST 'control_c384gdas_intel' [13:58, 10:02](1179 MB) -PASS -- TEST 'control_stochy_intel' [05:18, 03:22](489 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:16, 00:44](291 MB) -PASS -- TEST 'control_lndp_intel' [05:18, 03:31](487 MB) -PASS -- TEST 'control_iovr4_intel' [05:19, 03:30](485 MB) -PASS -- TEST 'control_iovr5_intel' [05:18, 03:31](484 MB) -PASS -- TEST 'control_p8_intel' [05:35, 04:01](1727 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:38, 02:38](1728 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:35, 01:53](1723 MB) -PASS -- TEST 'control_restart_p8_intel' [04:23, 02:42](874 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:35, 03:59](1718 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:23, 02:15](887 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:34, 02:32](1717 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:34, 02:53](1805 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:32, 03:46](1727 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:35, 04:00](1775 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:36, 03:45](1738 MB) -PASS -- TEST 'merra2_thompson_intel' [05:35, 03:37](1720 MB) -PASS -- TEST 'regional_control_intel' [06:31, 04:07](878 MB) -PASS -- TEST 'regional_restart_intel' [03:19, 01:51](861 MB) -PASS -- TEST 'regional_decomp_intel' [05:31, 03:30](878 MB) -PASS -- TEST 'regional_2threads_intel' [06:31, 03:19](1023 MB) -PASS -- TEST 'regional_noquilt_intel' [05:31, 03:14](1207 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:20, 03:22](878 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:17, 04:16](875 MB) -PASS -- TEST 'regional_wofs_intel' [06:20, 04:23](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [07:10, 06:06] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [06:23, 04:46](866 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:32, 11:51](1163 MB) -PASS -- TEST 'rap_decomp_intel' [06:23, 04:59](866 MB) -PASS -- TEST 'rap_2threads_intel' [07:23, 05:45](940 MB) -PASS -- TEST 'rap_restart_intel' [04:20, 02:47](744 MB) +PASS -- COMPILE 's2swa_32bit_intel' [27:15, 26:02] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:32, 04:16](2028 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:45] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:34, 10:23](1918 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:34, 18:07](1959 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [06:26, 05:04](1069 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:26, 12:05](1899 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:32] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:25, 10:10](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [39:12, 37:45] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [17:37, 16:08](1946 MB) + +PASS -- COMPILE 's2swa_intel' [17:11, 15:27] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:39, 05:23](2068 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:46, 05:17](2061 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:31, 03:00](1624 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:34, 05:20](2085 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:34, 03:00](1460 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:36, 06:08](2233 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:33, 05:09](2069 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:39, 04:18](2006 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:44, 05:17](2069 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [08:26, 06:00](2420 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:05, 04:07](2662 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [10:54, 06:54](3592 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [08:10, 04:25](3418 MB) + +PASS -- COMPILE 's2swal_intel' [17:11, 15:12] ( 6 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [07:43, 05:19](2070 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [04:31, 03:03](1620 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:38, 05:14](1922 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 14:33] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [04:31, 03:03](1934 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:33, 04:30](1853 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:56, 03:54] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:40, 08:40](2092 MB) + +PASS -- COMPILE 's2sw_debug_intel' [32:12, 30:56] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:32, 03:56](1967 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:05] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:33, 03:14](1991 MB) + +PASS -- COMPILE 's2s_intel' [08:11, 06:59] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:23, 04:11](2874 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:23, 01:16](2871 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:23, 00:45](2294 MB) + +PASS -- COMPILE 's2swa_faster_intel' [10:11, 09:00] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:43, 05:15](2057 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:18] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:39, 17:20](1936 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:31, 05:22](1114 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:31, 12:09](1916 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:02] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:35, 24:22](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:46] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:20, 02:33](535 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:28, 01:47](1427 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:32, 01:46](1435 MB) +PASS -- TEST 'control_latlon_intel' [03:26, 01:38](1430 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:31, 01:42](1436 MB) +PASS -- TEST 'control_c48_intel' [06:26, 04:37](1571 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:23, 04:15](693 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:28, 04:40](1573 MB) +PASS -- TEST 'control_c192_intel' [06:32, 04:46](1696 MB) +PASS -- TEST 'control_c384_intel' [11:42, 09:42](1964 MB) +PASS -- TEST 'control_c384gdas_intel' [12:05, 09:56](1179 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:12](490 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:15, 00:44](290 MB) +PASS -- TEST 'control_lndp_intel' [02:19, 01:08](490 MB) +PASS -- TEST 'control_iovr4_intel' [03:20, 01:43](485 MB) +PASS -- TEST 'control_iovr5_intel' [03:20, 01:44](488 MB) +PASS -- TEST 'control_p8_intel' [03:34, 01:54](1728 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:40, 02:08](1723 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:27, 01:54](1720 MB) +PASS -- TEST 'control_restart_p8_intel' [02:22, 01:06](874 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:26, 01:53](1719 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:23, 01:05](886 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:21, 01:55](1717 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:20, 02:10](1795 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:22, 03:16](1725 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:26, 02:36](1778 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:27, 02:02](1727 MB) +PASS -- TEST 'merra2_thompson_intel' [04:25, 02:14](1726 MB) +PASS -- TEST 'regional_control_intel' [05:20, 03:17](877 MB) +PASS -- TEST 'regional_restart_intel' [03:20, 01:51](862 MB) +PASS -- TEST 'regional_decomp_intel' [05:19, 03:33](880 MB) +PASS -- TEST 'regional_2threads_intel' [04:20, 02:38](1017 MB) +PASS -- TEST 'regional_noquilt_intel' [05:23, 03:15](1210 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:25, 03:21](883 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:19, 03:21](877 MB) +PASS -- TEST 'regional_wofs_intel' [06:20, 04:24](1574 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 06:09] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [06:23, 04:51](866 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:33, 02:50](1161 MB) +PASS -- TEST 'rap_decomp_intel' [06:20, 05:01](864 MB) +PASS -- TEST 'rap_2threads_intel' [07:19, 05:47](940 MB) +PASS -- TEST 'rap_restart_intel' [10:31, 02:31](741 MB) PASS -- TEST 'rap_sfcdiff_intel' [06:23, 04:47](867 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:23, 04:58](870 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:21, 04:19](742 MB) -PASS -- TEST 'hrrr_control_intel' [18:24, 16:32](860 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [13:22, 12:03](861 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [14:24, 12:22](937 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:17, 03:36](693 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:23, 04:41](866 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:19, 06:09](1818 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:19, 05:57](1814 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 05:42] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [17:20, 15:49](820 MB) -PASS -- TEST 'control_ras_intel' [04:15, 02:12](521 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 05:44] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:22, 12:07](1508 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:59] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:23, 02:14](1723 MB) -PASS -- TEST 'regional_control_faster_intel' [05:20, 03:10](878 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 05:48] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:20, 17:35](1456 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:23, 01:34](1462 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:14, 02:05](660 MB) -PASS -- TEST 'control_lndp_debug_intel' [11:15, 10:00](660 MB) -PASS -- TEST 'control_csawmg_debug_intel' [13:19, 11:50](963 MB) -PASS -- TEST 'control_ras_debug_intel' [16:17, 14:29](667 MB) -PASS -- TEST 'control_diag_debug_intel' [09:21, 07:46](1523 MB) -PASS -- TEST 'control_debug_p8_intel' [19:21, 17:47](1761 MB) -PASS -- TEST 'regional_debug_intel' [13:20, 11:14](889 MB) -PASS -- TEST 'rap_control_debug_intel' [10:16, 08:14](1042 MB) -PASS -- TEST 'hrrr_control_debug_intel' [12:16, 10:46](1038 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [12:16, 10:43](1040 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [12:16, 10:44](1038 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [12:16, 10:26](1044 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:17, 03:32](1126 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:23](1044 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:15, 06:30](1038 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:16, 05:32](1043 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:16, 10:35](1040 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:20](1038 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:15, 07:00](1040 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:15, 08:52](1037 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:18](1033 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [15:16, 13:37](1041 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:16, 08:30](1044 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:20, 08:40](1044 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 03:09] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:21, 08:54](1546 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [51:14, 49:25] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:33, 03:28](1040 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:19, 04:04](748 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:20, 03:17](746 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:19, 05:49](792 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:19, 02:35](791 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:19, 03:20](743 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:19, 03:01](651 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:16, 01:13](627 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:52] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:24, 01:22](952 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:18, 05:03](1082 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:18, 00:52](828 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:51] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:20, 07:34](774 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:07] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:15, 04:52](913 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:15, 07:09](921 MB) -PASS -- TEST 'conus13km_debug_intel' [12:23, 10:22](1005 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:22, 15:14](672 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:24, 07:58](1135 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:22, 11:25](1070 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:01] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:16, 05:56](948 MB) - -PASS -- COMPILE 'hafsw_intel' [09:12, 07:43] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:41, 03:43](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:17, 02:58](1072 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:46, 04:45](789 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [09:43, 07:52](814 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [13:48, 11:32](835 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:30, 05:50](480 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:45, 04:21](486 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:24, 01:44](399 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:56, 07:18](457 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:27, 03:14](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:26, 02:22](504 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:29, 03:15](592 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:19, 03:51](428 MB) -PASS -- TEST 'gnv1_nested_intel' [04:42, 02:56](1706 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:21] ( 1470 warnings 1424 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:29, 08:11](604 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:10] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:32, 05:00](639 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:33, 05:17](799 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:41] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:36, 03:54](796 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:16, 13:39] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:44, 04:21](770 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:45, 04:20](752 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:38, 10:56](890 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:11, 05:06] ( 5 warnings 2 remarks ) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:19, 05:01](872 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:23, 08:53](742 MB) +PASS -- TEST 'hrrr_control_intel' [04:25, 02:33](862 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:23, 02:38](861 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:20, 02:57](938 MB) +PASS -- TEST 'hrrr_control_restart_intel' [10:37, 01:24](693 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:24, 04:41](860 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:12, 06:13](1822 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:49, 06:00](1814 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 05:51] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [13:45, 04:12](825 MB) +PASS -- TEST 'control_ras_intel' [04:16, 02:11](523 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 06:07] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:24, 11:00](1520 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:11, 06:09] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:26, 01:54](1720 MB) +PASS -- TEST 'regional_control_faster_intel' [12:39, 03:10](876 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:45] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:21, 01:35](1455 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:24, 01:34](1459 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:15, 02:03](660 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:55](663 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:51, 02:51](964 MB) +PASS -- TEST 'control_ras_debug_intel' [03:15, 01:53](670 MB) +PASS -- TEST 'control_diag_debug_intel' [10:41, 01:50](1514 MB) +PASS -- TEST 'control_debug_p8_intel' [10:36, 01:50](1750 MB) +PASS -- TEST 'regional_debug_intel' [13:19, 11:19](892 MB) +PASS -- TEST 'rap_control_debug_intel' [11:16, 07:10](1042 MB) +PASS -- TEST 'hrrr_control_debug_intel' [11:16, 09:21](1040 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:17, 07:02](1037 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [11:17, 09:11](1037 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:16, 06:59](1043 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:19, 09:03](1123 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:16, 06:46](1039 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:16, 08:39](1042 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:17, 08:35](1040 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:16, 08:34](1043 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:16, 08:33](1036 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:16, 08:19](1040 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:16, 10:27](1037 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [12:16, 10:25](1037 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 03:21](1041 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:16, 03:19](1040 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:24, 05:42](1044 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:06] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:24, 08:34](1542 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:01] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:34, 02:42](1035 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:23, 04:03](741 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:24, 02:13](743 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:19, 04:56](793 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:20, 02:35](793 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:20, 02:19](746 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:20, 03:02](650 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:17, 01:14](629 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:55] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:28, 01:22](952 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:21, 00:44](1085 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:19, 00:52](824 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:46] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:23, 02:47](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:04] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:14](921 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:16, 03:10](918 MB) +PASS -- TEST 'conus13km_debug_intel' [10:28, 08:56](1004 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [10:28, 08:59](677 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:24, 07:59](1136 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:24, 09:02](1069 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:59] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:16, 03:15](942 MB) + +PASS -- COMPILE 'hafsw_intel' [16:13, 07:39] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:45, 03:33](713 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:17, 02:54](1065 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:49, 04:45](790 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [09:44, 08:05](811 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:51, 08:35](837 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:36, 03:32](467 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:50, 04:24](485 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:29, 01:48](398 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:12, 04:42](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:32, 02:33](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:36, 02:22](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:33, 02:59](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:20, 01:01](429 MB) +PASS -- TEST 'gnv1_nested_intel' [04:53, 02:59](1705 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:30] ( 1470 warnings 1424 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:31, 08:22](602 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:27] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:35, 05:05](639 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:36, 05:06](797 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 15:04] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:56, 03:49](794 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:11, 14:10] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:44, 04:21](769 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:45, 04:21](752 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:35, 10:53](890 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:13, 04:50] ( 5 warnings 2 remarks ) PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 01:44](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:02](751 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:37](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:14, 01:39](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 01:39](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:12](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 01:42](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:36](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:28, 04:05](707 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:25, 05:48](688 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:43](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:16, 02:44](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:17, 02:45](1969 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:27] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 03:45](734 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:52] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:14, 01:03](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:37](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 01:38](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 01:38](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 01:44](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 01:37](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:30, 04:17](704 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:27, 04:09](703 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:44](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 02:45](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:15, 02:46](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [20:11, 18:57] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 03:45](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 10:15] ( 5 warnings 2 remarks ) PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 01:42](752 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:40] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:59](319 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:49](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:41](460 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [09:23, 00:41] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:59](319 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:49](462 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:34](461 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:12, 06:35] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:24, 03:34](1790 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 14:05] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:33, 02:25](1793 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 06:13] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:23, 04:17](1784 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 06:02] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:33, 03:12](1777 MB) -PASS -- COMPILE 'atml_intel' [58:14, 56:09] ( 14 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [06:24, 05:07](1889 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:18, 03:25](1029 MB) +PASS -- COMPILE 'atml_intel' [08:10, 06:42] ( 14 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:35, 03:39](1888 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:18, 01:54](1043 MB) -PASS -- COMPILE 'atml_debug_intel' [05:10, 03:52] ( 892 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:25, 03:40](1925 MB) +PASS -- COMPILE 'atml_debug_intel' [36:11, 35:06] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:27, 03:39](1920 MB) -PASS -- COMPILE 'atmw_intel' [08:11, 07:05] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 02:02](1756 MB) +PASS -- COMPILE 'atmw_intel' [09:11, 07:15] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 01:17](1764 MB) -PASS -- COMPILE 'atmaero_intel' [03:15, 01:36] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [21:27, 07:48](1943 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [14:26, 03:15](1597 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [21:23, 09:43](1614 MB) +PASS -- COMPILE 'atmaero_intel' [07:10, 05:57] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:28, 02:45](1947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:27, 03:14](1599 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:23, 03:18](1610 MB) -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:06] ( 887 warnings 6 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_atmaq_debug_intel' [, ]( MB) +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:01] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:37, 13:24](4457 MB) -PASS -- COMPILE 'atm_fbh_intel' [07:12, 05:32] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:19, 06:01](827 MB) +PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:31] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:19, 06:02](825 MB) SYNOPSIS: -Starting Date/Time: 20250130 01:33:01 -Ending Date/Time: 20250130 04:06:04 -Total Time: 02h:33m:24s +Starting Date/Time: 20250204 11:40:10 +Ending Date/Time: 20250204 13:15:42 +Total Time: 01h:35m:56s Compiles Completed: 43/43 -Tests Completed: 184/188 -Failed Tests: -* TEST cpld_control_sfs_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f6/bil-fire8/scratch/Fernando.Andrade-maldonado/regression-testing/wm/2548/ufs-weather-model/tests/logs/log_gaeac6/run_cpld_control_sfs_intel.log -* TEST cpld_control_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f6/bil-fire8/scratch/Fernando.Andrade-maldonado/regression-testing/wm/2548/ufs-weather-model/tests/logs/log_gaeac6/run_cpld_control_p8_lnd_intel.log -* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST regional_atmaq_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f6/bil-fire8/scratch/Fernando.Andrade-maldonado/regression-testing/wm/2548/ufs-weather-model/tests/logs/log_gaeac6/run_regional_atmaq_debug_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF GAEAC6 REGRESSION TESTING LOG==== -====START OF GAEAC6 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -1fba02b041f68c7d7a241f206c1d3816768bbde0 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd --529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20250129 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2663694 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: bil-fire8 -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:11, 11:43] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [12:21, 10:16](1918 MB) - -PASS -- COMPILE 's2swal_intel' [24:16, 22:58] ( 6 warnings 12 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [07:25, 05:37](2069 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:27, 03:02](1624 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:08] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [16:37, 13:41](4445 MB) - -SYNOPSIS: -Starting Date/Time: 20250130 14:39:59 -Ending Date/Time: 20250130 16:18:35 -Total Time: 01h:38m:47s -Compiles Completed: 3/3 -Tests Completed: 4/4 +Tests Completed: 188/188 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index e33863e260..d77eb4ff21 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -692fa94443d70a890d1771aba742f93963fdecbb +3849e7a4037f57e1e17e7a6326e255cb2aeec17d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,13 +9,13 @@ Submodule hashes used in testing: ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) + 2c902a670e89416ef49254c827e8ba45a68ce596 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) + 5e7dcf04d4180241df1cb2626ca08b1c81db6c51 WW3 (remotes/origin/devufs/addbinaryrestartinit) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -27,453 +27,392 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250129 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2067262 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_361243 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:11, 13:28] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:21, 07:36](3319 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:55] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:13, 19:54](1978 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:22, 21:10](2162 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:15, 08:22](1256 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:05, 23:39](1874 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:34] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:48, 19:46](1933 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 06:11] ( 1523 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:05, 25:18](1910 MB) - -PASS -- COMPILE 's2swa_intel' [15:11, 13:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:34, 09:37](3356 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:33, 09:03](3348 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:40, 04:53](3250 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:18, 09:00](3372 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:31, 04:52](3271 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:20, 09:10](3553 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:18, 09:02](3341 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:19, 07:29](3226 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:29, 08:58](3361 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:26, 10:44](3518 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:14, 07:02](3567 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:07, 11:01](4320 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:39, 06:47](4369 MB) - -PASS -- COMPILE 's2swal_intel' [15:11, 13:34] ( 1 warnings 10 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_lnd_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:16, 07:43](3339 MB) - -PASS -- COMPILE 's2sw_intel' [14:11, 12:40] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:01, 06:20](1977 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:03, 06:30](2053 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:10, 06:12] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:08, 13:42](3411 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:50] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:12, 07:01](1989 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:44] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 04:29](2023 MB) - -PASS -- COMPILE 's2s_intel' [14:12, 12:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:50, 07:58](3033 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:49, 02:30](3034 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:58, 01:29](2479 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:11, 18:22] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:24, 08:26](3344 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 16:23] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:10, 17:47](2019 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:22, 08:25](1275 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:08, 20:36](1922 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 06:09] ( 1523 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:10, 26:28](1975 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:34, 03:34](706 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:56, 02:44](1584 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:02, 02:56](1591 MB) -PASS -- TEST 'control_latlon_intel' [06:54, 02:40](1598 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:01, 02:45](1600 MB) -PASS -- TEST 'control_c48_intel' [09:54, 07:13](1727 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:31, 06:39](847 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:53, 07:13](1727 MB) -PASS -- TEST 'control_c192_intel' [10:15, 07:45](1748 MB) -PASS -- TEST 'control_c384_intel' [13:18, 08:40](1987 MB) -PASS -- TEST 'control_c384gdas_intel' [14:17, 08:24](1370 MB) -PASS -- TEST 'control_stochy_intel' [03:29, 01:43](655 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:39, 01:05](509 MB) -PASS -- TEST 'control_lndp_intel' [03:30, 01:39](658 MB) -PASS -- TEST 'control_iovr4_intel' [04:34, 02:37](643 MB) -PASS -- TEST 'control_iovr5_intel' [04:33, 02:38](648 MB) -PASS -- TEST 'control_p8_intel' [04:59, 03:03](1881 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:01, 03:16](1890 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:59, 02:58](1884 MB) -PASS -- TEST 'control_restart_p8_intel' [03:52, 01:43](1125 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:54, 02:58](1873 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:00, 01:43](1168 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:53, 03:05](1868 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:49, 03:20](1949 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:43, 05:20](1875 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:00, 04:19](1944 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:00, 03:10](1884 MB) -PASS -- TEST 'merra2_thompson_intel' [05:58, 03:31](1893 MB) -PASS -- TEST 'regional_control_intel' [07:41, 05:38](1085 MB) -PASS -- TEST 'regional_restart_intel' [05:36, 03:17](1085 MB) -PASS -- TEST 'regional_decomp_intel' [07:40, 05:48](1099 MB) -PASS -- TEST 'regional_2threads_intel' [05:40, 04:04](1063 MB) -PASS -- TEST 'regional_noquilt_intel' [07:45, 05:26](1423 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:26](1116 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 05:40](1111 MB) -PASS -- TEST 'regional_wofs_intel' [08:37, 07:06](1904 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:20] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:46, 07:55](1109 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:07, 04:19](1264 MB) -PASS -- TEST 'rap_decomp_intel' [10:41, 08:20](1033 MB) -PASS -- TEST 'rap_2threads_intel' [10:40, 08:52](1100 MB) -PASS -- TEST 'rap_restart_intel' [06:49, 04:14](1092 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:43, 07:54](1106 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:43, 08:19](1027 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:53, 06:05](1128 MB) -PASS -- TEST 'hrrr_control_intel' [05:42, 04:04](1040 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:37, 04:12](1023 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:34, 04:24](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:13](995 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:49, 08:02](1069 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:37](1980 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 09:30](2055 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:02] -PASS -- TEST 'control_csawmg_intel' [08:43, 06:27](1021 MB) -PASS -- TEST 'control_ras_intel' [05:27, 03:25](735 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 10:08] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:55, 11:32](1652 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:32] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:55, 02:51](1879 MB) -PASS -- TEST 'regional_control_faster_intel' [06:39, 04:55](1118 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 08:13] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 02:29](1618 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:46, 02:24](1626 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:12](827 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:55](827 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:30](1136 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:57](835 MB) -PASS -- TEST 'control_diag_debug_intel' [04:48, 02:51](1688 MB) -PASS -- TEST 'control_debug_p8_intel' [04:40, 02:51](1911 MB) -PASS -- TEST 'regional_debug_intel' [20:37, 18:11](1105 MB) -PASS -- TEST 'rap_control_debug_intel' [07:25, 05:19](1204 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:00](1207 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 05:21](1205 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 05:04](1209 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 05:21](1198 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:25](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:18](1206 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:25, 05:27](1213 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:27, 05:11](1205 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 05:22](1209 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:22, 05:08](1187 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 05:16](1217 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:29, 08:46](1214 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 05:21](1176 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:32, 05:14](1212 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:26, 05:19](1189 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:51](1215 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:33] -PASS -- TEST 'control_csawmg_debug_gnu' [04:39, 02:23](721 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:41] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:47, 13:36](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:00, 04:07](1135 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:44](1052 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 03:31](988 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:38, 07:33](1015 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:34, 03:53](973 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:41](936 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:40, 05:11](1020 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:53](925 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:58, 02:08](1188 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:03](1166 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:14](1091 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:18](980 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:51] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 05:02](1089 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 05:06](1054 MB) -PASS -- TEST 'conus13km_debug_intel' [16:54, 14:13](1238 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 14:15](931 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:49, 12:45](1212 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:49, 14:23](1341 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:54] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 05:11](1131 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 11:50] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:19, 05:13](724 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:33, 06:09](1111 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:11](805 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:20, 14:58](839 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:27, 18:55](872 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:57, 05:45](489 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:23, 07:03](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:53](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:05, 07:31](481 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:53](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 03:53](517 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:17](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:13](398 MB) -PASS -- TEST 'gnv1_nested_intel' [07:29, 04:08](1728 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:17] ( 1465 warnings 1444 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 13:24](580 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:48] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:57, 10:18](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:03, 10:28](691 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 11:55] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:26, 08:14](685 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:11, 11:11] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:20, 06:43](814 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:48](795 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:38](1214 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:36] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:55](1154 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:44](1117 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:50](1030 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:45](1030 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:48](1029 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:50](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:49](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:41](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:14, 06:19](1073 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:11, 06:32](1050 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:52](1172 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:10](2525 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:04](2463 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:36] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:24](1070 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:25] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:49](1161 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:15] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:46](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 00:48](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:33](325 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:25] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:36](569 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:20](459 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:06] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:05, 03:42](1939 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:55, 04:49](1981 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 11:14] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [05:59, 03:56](1858 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:08](1091 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 05:47] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:57, 05:07](1881 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 11:05] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:49, 02:00](1918 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 10:40] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:55, 04:19](3179 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:54, 05:23](3057 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 05:08](3101 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:32] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:10, 09:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:27, 11:38](1112 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:54] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:37, 08:29](1052 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [09:11, 07:07] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:38, 05:01](978 MB) - -PASS -- COMPILE 'atm_gnu' [06:10, 05:00] -PASS -- TEST 'control_c48_gnu' [11:41, 09:41](1508 MB) -PASS -- TEST 'control_stochy_gnu' [05:22, 03:32](493 MB) -PASS -- TEST 'control_ras_gnu' [07:21, 04:57](499 MB) -PASS -- TEST 'control_p8_gnu' [06:54, 04:30](1458 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:48, 04:36](1444 MB) -PASS -- TEST 'control_flake_gnu' [12:24, 10:27](540 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:20] -PASS -- TEST 'rap_control_gnu' [13:38, 11:34](804 MB) -PASS -- TEST 'rap_decomp_gnu' [13:31, 11:46](808 MB) -PASS -- TEST 'rap_2threads_gnu' [19:37, 17:27](907 MB) -PASS -- TEST 'rap_restart_gnu' [07:39, 05:55](569 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:36, 11:24](807 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:34, 11:42](811 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:54, 08:46](573 MB) -PASS -- TEST 'hrrr_control_gnu' [07:36, 05:59](809 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:31, 05:55](788 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [10:34, 08:40](897 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:57](801 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:26, 03:04](558 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 03:04](647 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:43, 11:16](800 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:57] -PASS -- TEST 'control_csawmg_gnu' [10:35, 08:36](734 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:54] -PASS -- TEST 'control_diag_debug_gnu' [03:44, 01:37](1270 MB) -PASS -- TEST 'regional_debug_gnu' [13:36, 12:01](745 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:38](811 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:40](814 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:21, 02:42](821 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:21, 02:38](822 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:35, 02:54](901 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:23, 04:08](821 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:39](817 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:42](813 MB) -PASS -- TEST 'control_ras_debug_gnu' [18:23, 16:04](451 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:47](446 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:41](1444 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:40](821 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:23, 02:43](823 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:28](832 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:28] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:10] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:38, 09:44](696 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:37, 05:09](696 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:33, 15:29](734 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:29, 08:01](732 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:29, 05:18](687 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:42, 07:18](549 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:31, 02:44](530 MB) -PASS -- TEST 'conus13km_control_gnu' [05:55, 03:10](865 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:51, 01:35](870 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:49, 01:49](539 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:58] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:38, 06:03](723 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:46] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:23, 02:35](701 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:24, 02:33](700 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:47, 06:48](880 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:42, 06:54](569 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [07:40, 05:54](891 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:51](949 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:49] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:37](728 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:30] - -PASS -- COMPILE 's2s_gnu' [18:11, 16:14] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:07, 11:43](1495 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:09] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 16:02] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:11, 22:08](1451 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 03:02] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:44] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:05](697 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:11, 13:10] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:17, 07:38](3301 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:12] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:16, 19:53](1985 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:28, 21:13](2159 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:25, 08:16](1280 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:10, 23:55](1847 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:16] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:49, 19:36](1974 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:57] ( 1523 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:09, 25:02](1927 MB) + +PASS -- COMPILE 's2swa_intel' [15:11, 13:15] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:31, 09:32](3361 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:31, 08:47](3353 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:18, 04:44](3263 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:20, 08:52](3350 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:38, 04:56](3269 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:14, 09:02](3552 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:14, 08:55](3328 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:17, 07:38](3182 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:37, 08:55](3337 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:29, 10:25](3535 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:35, 06:46](3593 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:18, 10:52](4336 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:53, 06:47](4371 MB) + +PASS -- COMPILE 's2swal_intel' [15:11, 13:25] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [12:28, 09:46](3286 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [07:27, 04:58](3181 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:15, 07:52](3329 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 12:30] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:56, 06:17](1977 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:00, 06:40](2063 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:01] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:09, 13:57](3397 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:47] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:04, 06:46](2005 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:40] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:05, 04:40](2028 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 12:06] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:55, 07:55](3030 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:43, 02:27](3031 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:50, 01:27](2476 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:04] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:14, 08:39](3348 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 15:36] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:10, 17:41](2019 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:27, 08:25](1260 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:10, 20:37](1923 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 05:53] ( 1523 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:18, 26:47](1988 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:10, 10:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:30, 03:27](696 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:59, 02:37](1592 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:05, 02:39](1606 MB) +PASS -- TEST 'control_latlon_intel' [04:56, 02:41](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:02, 02:38](1599 MB) +PASS -- TEST 'control_c48_intel' [09:54, 07:10](1721 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:33](841 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:54, 07:12](1719 MB) +PASS -- TEST 'control_c192_intel' [10:10, 07:32](1755 MB) +PASS -- TEST 'control_c384_intel' [12:28, 08:21](1981 MB) +PASS -- TEST 'control_c384gdas_intel' [13:26, 08:22](1382 MB) +PASS -- TEST 'control_stochy_intel' [03:27, 01:41](654 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:35, 01:00](497 MB) +PASS -- TEST 'control_lndp_intel' [03:27, 01:35](658 MB) +PASS -- TEST 'control_iovr4_intel' [04:36, 02:33](655 MB) +PASS -- TEST 'control_iovr5_intel' [04:34, 02:31](653 MB) +PASS -- TEST 'control_p8_intel' [05:02, 03:01](1884 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:01, 03:09](1886 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:55, 02:56](1877 MB) +PASS -- TEST 'control_restart_p8_intel' [03:53, 01:43](1130 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:59, 02:56](1879 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:58, 01:47](1160 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:56, 03:02](1877 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:00, 03:15](1950 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:53, 05:08](1895 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:25, 04:12](1950 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:05, 03:08](1892 MB) +PASS -- TEST 'merra2_thompson_intel' [06:02, 03:28](1891 MB) +PASS -- TEST 'regional_control_intel' [07:43, 05:31](1091 MB) +PASS -- TEST 'regional_restart_intel' [04:41, 02:59](1091 MB) +PASS -- TEST 'regional_decomp_intel' [07:38, 05:46](1120 MB) +PASS -- TEST 'regional_2threads_intel' [05:35, 04:01](1063 MB) +PASS -- TEST 'regional_noquilt_intel' [07:36, 05:23](1424 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:41, 05:22](1110 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:27](1116 MB) +PASS -- TEST 'regional_wofs_intel' [08:37, 07:05](1901 MB) + +PASS -- COMPILE 'rrfs_intel' [12:10, 10:21] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:46, 07:55](1110 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:18, 04:19](1269 MB) +PASS -- TEST 'rap_decomp_intel' [10:43, 08:17](1033 MB) +PASS -- TEST 'rap_2threads_intel' [10:41, 08:49](1095 MB) +PASS -- TEST 'rap_restart_intel' [06:56, 04:08](1096 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:43, 07:48](1111 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:40, 08:15](1042 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:51, 05:55](1125 MB) +PASS -- TEST 'hrrr_control_intel' [05:46, 04:03](1033 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:42, 04:17](1022 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 04:22](1090 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:16](968 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:49, 07:47](1099 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:32, 09:38](1974 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 09:24](2052 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:59] +PASS -- TEST 'control_csawmg_intel' [08:39, 06:13](1016 MB) +PASS -- TEST 'control_ras_intel' [05:23, 03:21](740 MB) + +PASS -- COMPILE 'wam_intel' [11:10, 10:01] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:58, 11:24](1656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:22] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:58, 02:50](1889 MB) +PASS -- TEST 'regional_control_faster_intel' [06:44, 04:56](1121 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:10, 07:42] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:46, 02:27](1621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:46, 02:26](1620 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:18](830 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:49](828 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:01, 04:22](1135 MB) +PASS -- TEST 'control_ras_debug_intel' [04:28, 02:51](832 MB) +PASS -- TEST 'control_diag_debug_intel' [04:53, 02:47](1679 MB) +PASS -- TEST 'control_debug_p8_intel' [04:46, 02:53](1917 MB) +PASS -- TEST 'regional_debug_intel' [19:46, 17:58](1109 MB) +PASS -- TEST 'rap_control_debug_intel' [07:28, 05:11](1214 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:31, 05:08](1203 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 05:01](1214 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:04](1211 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:27, 05:08](1205 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:53, 05:21](1295 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:29, 05:10](1190 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:28, 05:22](1211 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:30, 05:06](1212 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 05:17](1207 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:25, 05:07](1216 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:32, 05:11](1216 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 08:13](1217 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 05:02](1205 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:28, 05:06](1213 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:28, 05:08](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:50, 08:48](1214 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:04] +PASS -- TEST 'control_csawmg_debug_gnu' [04:35, 02:22](712 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:37] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:13, 13:58](1689 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:24, 03:58](1129 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:48, 06:32](1045 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:26](976 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:41, 07:31](1000 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:43, 03:50](966 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:41, 03:38](927 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:46, 04:58](1047 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 01:53](939 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:01] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:17, 02:02](1181 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:53, 01:00](1158 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:53, 01:16](1088 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 04:19](989 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:32] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:28, 05:03](1089 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:54](1084 MB) +PASS -- TEST 'conus13km_debug_intel' [17:12, 14:15](1220 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:05, 14:17](916 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:06, 12:36](1213 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:04, 14:05](1300 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:29] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:32, 05:09](1102 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 11:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:40, 05:12](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:48, 06:26](1111 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:56, 07:08](804 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:47, 14:50](848 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:51, 18:37](863 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:13, 05:46](496 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:44, 06:54](506 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:55, 02:44](370 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 07:27](479 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:56, 03:49](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:03, 03:43](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 04:13](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:30, 01:12](394 MB) +PASS -- TEST 'gnv1_nested_intel' [07:44, 04:07](1742 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:12] ( 1465 warnings 1444 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:04, 13:00](594 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:30] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:11, 10:13](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:21, 10:19](679 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:48] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:05, 08:14](681 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 11:03] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:34, 06:37](811 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:41, 06:48](795 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:02, 15:57](1214 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:48] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 03:08](1161 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:41](1098 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:46](1032 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:45](1029 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:46](1027 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:50](1157 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:51](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:44](1032 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:43, 06:20](1072 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:33, 06:20](1064 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:53](1145 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:28](2382 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:23, 04:03](2465 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:22] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:21](1072 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 06:41] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:51](1154 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:08] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:34, 00:46](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:27, 00:48](332 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:32](324 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:27] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:37, 00:34](567 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:37, 00:19](460 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:45] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:20, 03:46](1983 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:07, 04:47](1984 MB) + +PASS -- COMPILE 'atml_intel' [13:12, 11:14] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [06:14, 03:56](1845 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:46, 02:10](1080 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:46] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:09, 05:09](1883 MB) + +PASS -- COMPILE 'atmw_intel' [12:12, 10:57] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:01, 02:26](1902 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:27] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:10, 04:33](3194 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:06, 04:58](3091 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:54, 05:18](3112 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:35] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [21:37, 19:58](1103 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:44] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:43, 08:28](1049 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:40] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:45, 05:01](984 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:39] +PASS -- TEST 'control_c48_gnu' [11:51, 09:34](1509 MB) +PASS -- TEST 'control_stochy_gnu' [05:23, 03:30](491 MB) +PASS -- TEST 'control_ras_gnu' [06:28, 05:02](499 MB) +PASS -- TEST 'control_p8_gnu' [07:13, 04:35](1446 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:13, 04:24](1444 MB) +PASS -- TEST 'control_flake_gnu' [12:25, 10:40](532 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:26] +PASS -- TEST 'rap_control_gnu' [13:48, 11:33](803 MB) +PASS -- TEST 'rap_decomp_gnu' [13:44, 11:45](835 MB) +PASS -- TEST 'rap_2threads_gnu' [19:45, 17:18](909 MB) +PASS -- TEST 'rap_restart_gnu' [07:49, 05:54](576 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:31](836 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:35, 11:45](836 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:46, 08:34](579 MB) +PASS -- TEST 'hrrr_control_gnu' [07:40, 05:55](807 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:37, 05:55](785 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:40, 08:44](897 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:42, 05:58](801 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 03:04](556 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:30, 03:02](651 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:53, 11:21](803 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:04] +PASS -- TEST 'control_csawmg_gnu' [10:40, 08:34](734 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:43] +PASS -- TEST 'control_diag_debug_gnu' [03:51, 01:41](1261 MB) +PASS -- TEST 'regional_debug_gnu' [11:41, 09:59](729 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:40](819 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:34](814 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:38](821 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:44](820 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:35, 02:59](903 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:24, 04:12](808 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:26, 02:46](813 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:25, 02:39](815 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:39](452 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:25, 01:47](448 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:46, 01:41](1440 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:25, 02:41](821 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:24, 02:41](823 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:44, 04:25](822 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:31] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:12] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:46, 09:48](694 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:39, 05:13](695 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:45, 15:39](735 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:39, 07:55](731 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:36, 05:24](687 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [10:02, 07:24](547 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:30, 02:41](528 MB) +PASS -- TEST 'conus13km_control_gnu' [05:53, 03:11](861 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:49, 01:37](871 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:49, 01:52](556 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:59] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:44, 05:57](719 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:53] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:25, 02:37](703 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:24, 02:35](702 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:52, 06:54](882 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:48, 07:06](570 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [07:45, 05:49](889 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:45, 06:54](951 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:48] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:25, 02:39](727 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 17:05] + +PASS -- COMPILE 's2s_gnu' [18:13, 16:13] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:14, 11:18](1505 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:16] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 16:17] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:19, 21:58](1456 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:04] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:30] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:20, 03:09](688 MB) SYNOPSIS: -Starting Date/Time: 20250130 04:32:42 -Ending Date/Time: 20250130 06:24:07 -Total Time: 01h:51m:48s +Starting Date/Time: 20250204 16:17:44 +Ending Date/Time: 20250204 18:58:18 +Total Time: 02h:40m:53s Compiles Completed: 62/62 -Tests Completed: 248/250 -Failed Tests: -* TEST cpld_control_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2548/ufs-weather-model/tests/logs/log_hera/run_cpld_control_p8_lnd_intel.log -* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO START TEST --- LOG: N/A - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -9405db9e8a2159a1e5bd80da2936acddfd5cb7a7 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) - 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250129 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_4107113 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swal_intel' [15:11, 13:54] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [15:24, 09:37](3267 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [11:25, 04:47](3156 MB) - -SYNOPSIS: -Starting Date/Time: 20250130 17:58:47 -Ending Date/Time: 20250130 18:42:03 -Total Time: 00h:43m:31s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Tests Completed: 250/250 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 80b3b5416c..ee41418900 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF hercules REGRESSION TESTING LOG==== UFSWM hash used in testing: -692fa94443d70a890d1771aba742f93963fdecbb +c553242dcb9e80cf0668d6fa0b4a8732e68fcd5f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) + 2c902a670e89416ef49254c827e8ba45a68ce596 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) + db19a6d1d7fa7ed56f62318501c4abb5fb8b1138 FV3/ccpp/physics (EP4-1119-gdb19a6d1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) + 5e7dcf04d4180241df1cb2626ca08b1c81db6c51 WW3 (remotes/origin/devufs/addbinaryrestartinit) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,386 +38,389 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250129 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_833487 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_865701 UFS_TEST.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE s2swa_32bit_intel [12:42, 12:42](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [09:00, 08:12] (2140280 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [17:10, 17:10](1 warnings,11 remarks) -PASS -- TEST cpld_control_gfsv17_intel [18:50, 18:00] (2004408 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [19:58, 19:07] (2328648 MB) -PASS -- TEST cpld_restart_gfsv17_intel [07:46, 06:54] (1351332 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [19:18, 18:30] (1923740 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [17:36, 17:36](1 warnings,11 remarks) -PASS -- TEST cpld_control_sfs_intel [17:10, 16:49] (1981460 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [07:09, 07:09](1523 warnings,1943 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [24:45, 23:49] (1982176 MB) - -PASS -- COMPILE s2swa_intel [12:45, 12:45](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_intel [10:40, 09:45] (2216340 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [10:18, 09:30] (2205396 MB) -PASS -- TEST cpld_restart_p8_intel [05:57, 04:57] (1957968 MB) -PASS -- TEST cpld_control_qr_p8_intel [10:20, 09:34] (2226596 MB) -PASS -- TEST cpld_restart_qr_p8_intel [05:46, 05:09] (1735276 MB) -PASS -- TEST cpld_2threads_p8_intel [12:11, 11:23] (2439620 MB) -PASS -- TEST cpld_decomp_p8_intel [10:33, 09:55] (2186048 MB) -PASS -- TEST cpld_mpi_p8_intel [09:51, 09:01] (2106308 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [09:46, 09:10] (2202700 MB) -PASS -- TEST cpld_control_c192_p8_intel [17:41, 16:15] (2984844 MB) -PASS -- TEST cpld_restart_c192_p8_intel [08:51, 07:02] (2912620 MB) -PASS -- TEST cpld_bmark_p8_intel [17:27, 12:33] (3873404 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [14:35, 08:10] (3679088 MB) - -PASS -- COMPILE s2swal_intel [12:43, 12:43](1 warnings,12 remarks) -PASS -- TEST cpld_control_p8_lnd_intel [10:14, 09:17] (2173552 MB) -PASS -- TEST cpld_restart_p8_lnd_intel [05:59, 05:00] (1950796 MB) -PASS -- TEST cpld_s2sa_p8_intel [08:53, 08:13] (2171660 MB) - -PASS -- COMPILE s2sw_intel [12:11, 12:11](1 warnings,11 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [08:26, 07:46] (2020828 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [06:48, 06:04] (2110704 MB) - -PASS -- COMPILE s2swa_debug_intel [04:58, 04:58](1413 warnings,1173 remarks) -PASS -- TEST cpld_debug_p8_intel [15:03, 14:15] (2234064 MB) - -PASS -- COMPILE s2sw_debug_intel [04:44, 04:44](1413 warnings,1173 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [06:36, 05:55] (2040872 MB) - -PASS -- COMPILE s2s_aoflux_intel [10:26, 10:26],3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [04:52, 04:13] (2067740 MB) - -PASS -- COMPILE s2s_intel [10:19, 10:19](1 warnings,3 remarks) -PASS -- TEST cpld_control_c48_intel [08:16, 07:47] (3037832 MB) -PASS -- TEST cpld_warmstart_c48_intel [02:13, 01:46] (3024796 MB) -PASS -- TEST cpld_restart_c48_intel [01:30, 01:03] (2482864 MB) - -PASS -- COMPILE s2swa_faster_intel [12:18, 12:18](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_faster_intel [08:52, 08:12] (2207952 MB) - -PASS -- COMPILE s2sw_pdlib_intel [16:47, 16:46](1 warnings,11 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [16:12, 15:28] (2075356 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [07:54, 07:03] (1397320 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [16:24, 15:50] (2001060 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [04:33, 04:33](1523 warnings,1943 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [26:03, 25:19] (2043728 MB) - -PASS -- COMPILE atm_dyn32_intel [09:10, 09:10](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:07, 02:56] (716152 MB) -PASS -- TEST control_CubedSphereGrid_intel [02:37, 02:15] (1619480 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [02:40, 02:15] (1608416 MB) -PASS -- TEST control_latlon_intel [02:27, 02:08] (1609688 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [02:39, 02:18] (1606164 MB) -PASS -- TEST control_c48_intel [06:45, 06:24] (1696416 MB) -PASS -- TEST control_c48.v2.sfc_intel [08:28, 08:14] (835104 MB) -PASS -- TEST control_c48_lnd_iau_intel [06:47, 06:26] (1702560 MB) -PASS -- TEST control_c192_intel [07:10, 06:43] (1755952 MB) -PASS -- TEST control_c384_intel [08:34, 07:29] (2021212 MB) -PASS -- TEST control_c384gdas_intel [09:01, 07:34] (1511348 MB) -PASS -- TEST control_stochy_intel [01:39, 01:31] (669872 MB) -PASS -- TEST control_stochy_restart_intel [01:18, 01:05] (527392 MB) -PASS -- TEST control_lndp_intel [01:35, 01:25] (667472 MB) -PASS -- TEST control_iovr4_intel [02:20, 02:10] (660784 MB) -PASS -- TEST control_iovr5_intel [02:17, 02:09] (664264 MB) -PASS -- TEST control_p8_intel [03:39, 03:00] (1903904 MB) -PASS -- TEST control_p8.v2.sfc_intel [03:44, 03:05] (1891704 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:35, 02:59] (1893148 MB) -PASS -- TEST control_restart_p8_intel [02:06, 01:34] (1150512 MB) -PASS -- TEST control_noqr_p8_intel [03:43, 03:08] (1890764 MB) -PASS -- TEST control_restart_noqr_p8_intel [01:59, 01:35] (1212040 MB) -PASS -- TEST control_decomp_p8_intel [03:19, 02:42] (1871268 MB) -PASS -- TEST control_2threads_p8_intel [04:16, 03:37] (1950484 MB) -PASS -- TEST control_p8_lndp_intel [04:51, 04:26] (1896040 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:24, 03:46] (1966416 MB) -PASS -- TEST control_p8_mynn_intel [03:28, 02:49] (1908180 MB) -PASS -- TEST merra2_thompson_intel [03:48, 03:02] (1899472 MB) -PASS -- TEST regional_control_intel [05:04, 04:50] (1229940 MB) -PASS -- TEST regional_restart_intel [02:57, 02:40] (1179460 MB) -PASS -- TEST regional_decomp_intel [05:12, 04:54] (1208796 MB) -PASS -- TEST regional_2threads_intel [04:56, 04:31] (1111664 MB) -PASS -- TEST regional_noquilt_intel [04:51, 04:35] (1547660 MB) -PASS -- TEST regional_netcdf_parallel_intel [04:58, 04:40] (1216508 MB) -PASS -- TEST regional_2dwrtdecomp_intel [04:52, 04:38] (1226824 MB) -PASS -- TEST regional_wofs_intel [06:31, 06:16] (2072776 MB) - -PASS -- COMPILE rrfs_intel [08:32, 08:31](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [07:25, 06:49] (1209828 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:05, 03:29] (1375104 MB) -PASS -- TEST rap_decomp_intel [07:42, 07:08] (1124904 MB) -PASS -- TEST rap_2threads_intel [09:02, 08:21] (1214012 MB) -PASS -- TEST rap_restart_intel [04:25, 03:40] (1144188 MB) -PASS -- TEST rap_sfcdiff_intel [07:29, 06:51] (1203344 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [07:42, 07:06] (1143484 MB) -PASS -- TEST rap_sfcdiff_restart_intel [05:53, 05:06] (1221852 MB) -PASS -- TEST hrrr_control_intel [04:10, 03:32] (1081180 MB) -PASS -- TEST hrrr_control_decomp_intel [04:18, 03:40] (1038000 MB) -PASS -- TEST hrrr_control_2threads_intel [05:17, 04:39] (1156440 MB) -PASS -- TEST hrrr_control_restart_intel [02:10, 01:55] (1020372 MB) -PASS -- TEST rrfs_v1beta_intel [07:49, 07:01] (1204032 MB) -PASS -- TEST rrfs_v1nssl_intel [09:13, 08:58] (2002856 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:41, 08:32] (2187248 MB) - -PASS -- COMPILE csawmg_intel [08:07, 08:07] -PASS -- TEST control_csawmg_intel [05:59, 05:43] (1056612 MB) -PASS -- TEST control_ras_intel [03:19, 03:03] (835032 MB) - -PASS -- COMPILE wam_intel [08:44, 08:44],1 remarks) -PASS -- TEST control_wam_intel [10:30, 10:10] (1661492 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [08:46, 08:46],1 remarks) -PASS -- TEST control_p8_faster_intel [03:06, 02:30] (1897408 MB) -PASS -- TEST regional_control_faster_intel [04:38, 04:18] (1221208 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [06:29, 06:29](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:26, 02:01] (1645792 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:23, 01:56] (1632420 MB) -PASS -- TEST control_stochy_debug_intel [02:46, 02:37] (834056 MB) -PASS -- TEST control_lndp_debug_intel [02:27, 02:21] (839216 MB) -PASS -- TEST control_csawmg_debug_intel [04:53, 04:34] (1156820 MB) -PASS -- TEST control_ras_debug_intel [02:32, 02:22] (847532 MB) -PASS -- TEST control_diag_debug_intel [02:43, 02:21] (1695868 MB) -PASS -- TEST control_debug_p8_intel [02:48, 02:26] (1922956 MB) -PASS -- TEST regional_debug_intel [14:47, 14:29] (1150520 MB) -PASS -- TEST rap_control_debug_intel [04:16, 04:08] (1220340 MB) -PASS -- TEST hrrr_control_debug_intel [04:12, 04:02] (1215956 MB) -PASS -- TEST hrrr_gf_debug_intel [04:12, 04:04] (1232432 MB) -PASS -- TEST hrrr_c3_debug_intel [04:22, 04:06] (1216788 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [04:16, 04:10] (1226628 MB) -PASS -- TEST rap_diag_debug_intel [04:34, 04:20] (1312628 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [04:27, 04:19] (1231316 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [04:23, 04:16] (1223548 MB) -PASS -- TEST rap_lndp_debug_intel [04:23, 04:15] (1222212 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [04:17, 04:11] (1233112 MB) -PASS -- TEST rap_noah_debug_intel [04:12, 04:07] (1231012 MB) -PASS -- TEST rap_sfcdiff_debug_intel [04:16, 04:07] (1223016 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [06:45, 06:33] (1235660 MB) -PASS -- TEST rrfs_v1beta_debug_intel [04:11, 04:05] (1216124 MB) -PASS -- TEST rap_clm_lake_debug_intel [04:37, 04:26] (1224160 MB) -PASS -- TEST rap_flake_debug_intel [04:16, 04:05] (1219736 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [07:57, 07:17] (1236484 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [04:17, 04:16] -PASS -- TEST control_csawmg_debug_gnu [02:17, 01:57] (1041900 MB) - -PASS -- COMPILE wam_debug_intel [04:31, 04:31](837 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [09:26, 09:26](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:00, 03:23] (1260792 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [06:05, 05:29] (1136644 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [04:49, 04:02] (1014612 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [08:35, 08:01] (1132168 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:53, 04:08] (1025388 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:00, 03:13] (985276 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [04:59, 04:18] (1099420 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:04, 01:40] (946164 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [09:26, 09:26](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:13, 01:46] (1279908 MB) -PASS -- TEST conus13km_2threads_intel [01:17, 00:57] (1187012 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:26, 01:06] (1142988 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [09:26, 09:26](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:08, 03:50] (1078852 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:55, 03:55](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:27, 05:17] (1100048 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:13, 04:04] (1096708 MB) -PASS -- TEST conus13km_debug_intel [11:45, 11:28] (1350168 MB) -PASS -- TEST conus13km_debug_qr_intel [12:21, 11:58] (992840 MB) -PASS -- TEST conus13km_debug_2threads_intel [13:18, 13:02] (1233128 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [12:01, 11:41] (1405592 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:36, 03:35](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:32, 04:22] (1166660 MB) - -PASS -- COMPILE hafsw_intel [10:09, 10:09](1 warnings,10 remarks) -PASS -- TEST hafs_regional_atm_intel [07:05, 06:12] (834080 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:06, 05:53] (1260616 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [08:32, 07:33] (917068 MB) -PASS -- TEST hafs_regional_atm_wav_intel [15:32, 14:40] (957048 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [18:14, 17:07] (975388 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [07:54, 07:18] (597540 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [10:28, 09:22] (606852 MB) -PASS -- TEST hafs_global_1nest_atm_intel [04:03, 03:36] (443144 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:55, 10:12] (557532 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:23, 04:56] (599712 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:13, 04:41] (605984 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:44, 05:05] (662316 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [02:05, 01:47] (459220 MB) - -PASS -- COMPILE hafsw_debug_intel [04:01, 04:01](1465 warnings,1445 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [13:19, 12:31] (636800 MB) - -PASS -- COMPILE hafsw_faster_intel [11:05, 11:05],9 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [19:38, 18:48] (753544 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [19:08, 18:16] (840704 MB) - -PASS -- COMPILE hafs_mom6w_intel [11:08, 11:08],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:11, 12:04] (818144 MB) - -PASS -- COMPILE hafs_all_intel [11:25, 11:24],9 remarks) -PASS -- TEST hafs_regional_docn_intel [07:11, 06:17] (926376 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [07:11, 06:17] (888868 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [17:09, 16:35] (1340796 MB) - -PASS -- COMPILE datm_cdeps_intel [07:25, 07:25],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [02:55, 02:50] (1161316 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:52, 01:45] (1102760 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [03:07, 03:02] (1028424 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [02:16, 02:10] (1025552 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:15, 02:10] (1032448 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:17, 03:13] (1145532 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:31, 02:25] (1134276 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:24, 02:17] (1027388 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:28, 04:55] (1169396 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [05:30, 04:57] (1163940 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:06, 03:03] (1144396 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:25, 04:20] (2435620 MB) -PASS -- TEST datm_cdeps_gfs_intel [03:10, 03:05] (2393392 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [04:24, 04:24](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [09:22, 09:17] (1078988 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [05:32, 05:31],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:17, 02:12] (1164328 MB) - -PASS -- COMPILE datm_cdeps_land_intel [00:48, 00:47],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:09, 00:53] (341600 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [00:59, 00:47] (563368 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:50, 00:35] (566528 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [09:55, 09:55],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [04:34, 04:02] (2023144 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [09:13, 09:13](1 warnings,1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [04:50, 04:19] (2039024 MB) - -PASS -- COMPILE atml_intel [09:18, 09:17](9 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_intel [05:44, 05:13] (1887604 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:06, 02:39] (1141600 MB) - -PASS -- COMPILE atml_debug_intel [05:04, 05:04](887 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [05:07, 04:32] (1906496 MB) - -PASS -- COMPILE atmw_intel [09:54, 09:54],9 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:19, 01:43] (1926196 MB) - -PASS -- COMPILE atmaero_intel [08:54, 08:54],1 remarks) -PASS -- TEST atmaero_control_p8_intel [04:26, 03:51] (2001832 MB) -PASS -- TEST atmaero_control_p8_rad_intel [05:10, 04:32] (1804228 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [04:59, 04:30] (1787884 MB) - -PASS -- COMPILE atmaq_debug_intel [03:39, 03:39](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [19:04, 17:55] (4537784 MB) - -PASS -- COMPILE atm_fbh_intel [07:47, 07:47](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [10:13, 10:03] (1114136 MB) - -PASS -- COMPILE datm_cdeps_intelllvm [12:27, 12:27] -PASS -- TEST datm_cdeps_control_cfsr_intelllvm [03:07, 03:03] (1118880 MB) - -PASS -- COMPILE datm_cdeps_debug_intelllvm [01:41, 01:41](2 warnings -PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [06:12, 06:06] (1080392 MB) - -PASS -- COMPILE atm_gnu [04:51, 04:51] -PASS -- TEST control_c48_gnu [12:07, 11:45] (1526212 MB) -PASS -- TEST control_stochy_gnu [02:37, 02:26] (719464 MB) -PASS -- TEST control_ras_gnu [04:08, 04:00] (720180 MB) -PASS -- TEST control_p8_gnu [04:07, 03:32] (1697232 MB) -PASS -- TEST control_p8_ugwpv1_gnu [04:00, 03:32] (1720672 MB) -PASS -- TEST control_flake_gnu [04:51, 04:43] (802856 MB) - -PASS -- COMPILE rrfs_gnu [04:37, 04:37] -PASS -- TEST rap_control_gnu [08:57, 08:24] (1071424 MB) -PASS -- TEST rap_decomp_gnu [08:52, 08:16] (1074432 MB) -PASS -- TEST rap_restart_gnu [05:10, 04:24] (877896 MB) -PASS -- TEST rap_sfcdiff_gnu [08:44, 08:09] (1072828 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [08:57, 08:22] (1071116 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [07:02, 06:18] (877208 MB) -PASS -- TEST hrrr_control_gnu [04:45, 04:09] (1059648 MB) -PASS -- TEST hrrr_control_noqr_gnu [04:43, 04:15] (1128340 MB) -PASS -- TEST hrrr_control_2threads_gnu [04:46, 03:58] (1037264 MB) -PASS -- TEST hrrr_control_decomp_gnu [04:38, 04:03] (1062104 MB) -PASS -- TEST hrrr_control_restart_gnu [02:25, 02:18] (879396 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [02:20, 02:13] (927800 MB) -PASS -- TEST rrfs_v1beta_gnu [08:39, 08:00] (1069656 MB) - -PASS -- COMPILE csawmg_gnu [04:27, 04:27] -PASS -- TEST control_csawmg_gnu [07:25, 07:12] (1056232 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [06:13, 06:13] -PASS -- TEST control_diag_debug_gnu [01:31, 01:15] (1616456 MB) -PASS -- TEST regional_debug_gnu [07:27, 07:06] (1130100 MB) -PASS -- TEST rap_control_debug_gnu [02:08, 02:03] (1089936 MB) -PASS -- TEST hrrr_control_debug_gnu [02:08, 01:59] (1084692 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:09, 02:03] (1086072 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:29, 02:11] (1084724 MB) -PASS -- TEST rap_diag_debug_gnu [02:23, 02:07] (1261120 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:33, 03:22] (1085140 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:06, 02:01] (1091476 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [02:16, 02:10] (1080948 MB) -PASS -- TEST control_ras_debug_gnu [01:24, 01:19] (718348 MB) -PASS -- TEST control_stochy_debug_gnu [01:31, 01:23] (714892 MB) -PASS -- TEST control_debug_p8_gnu [01:50, 01:23] (1715700 MB) -PASS -- TEST rap_flake_debug_gnu [02:07, 01:58] (1087568 MB) -PASS -- TEST rap_clm_lake_debug_gnu [02:08, 02:01] (1094800 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:28, 03:51] (1093564 MB) - -PASS -- COMPILE wam_debug_gnu [02:51, 02:51] -PASS -- TEST control_wam_debug_gnu [06:05, 05:44] (1554172 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:28, 04:28] -PASS -- TEST rap_control_dyn32_phy32_gnu [08:22, 07:50] (955056 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:52, 03:58] (942896 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:45, 04:01] (941024 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [06:35, 05:54] (856856 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:25, 02:07] (854724 MB) -PASS -- TEST conus13km_control_gnu [02:53, 02:30] (1257776 MB) -PASS -- TEST conus13km_2threads_gnu [07:38, 07:13] (1108476 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [01:54, 01:29] (922888 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [08:42, 08:41] -PASS -- TEST rap_control_dyn64_phy32_gnu [05:01, 04:42] (983728 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:20, 06:20] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:22, 02:13] (970220 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:14, 02:01] (960416 MB) -PASS -- TEST conus13km_debug_gnu [05:51, 05:24] (1275168 MB) -PASS -- TEST conus13km_debug_qr_gnu [05:55, 05:32] (947748 MB) -PASS -- TEST conus13km_debug_2threads_gnu [13:21, 12:59] (1124376 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [05:42, 05:22] (1342712 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [06:07, 06:07] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:13, 02:04] (997256 MB) - -PASS -- COMPILE s2swa_gnu [16:22, 16:22] -PASS -- COMPILE s2s_gnu [15:06, 15:06] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [09:53, 09:12] (3049308 MB) - -PASS -- COMPILE s2swa_debug_gnu [04:08, 04:08] -PASS -- COMPILE s2sw_pdlib_gnu [14:44, 14:43] -PASS -- TEST cpld_control_pdlib_p8_gnu [26:43, 25:59] (3086144 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [03:13, 03:13] -PASS -- TEST cpld_debug_pdlib_p8_gnu [13:49, 13:10] (2894844 MB) - -PASS -- COMPILE datm_cdeps_gnu [14:17, 14:17] -PASS -- TEST datm_cdeps_control_cfsr_gnu [02:32, 02:25] (772400 MB) +FAIL -- COMPILE s2swa_32bit_intel +PASS -- TEST cpld_control_p8_mixedmode_intel [09:12, 08:27] (2128964 MB) + +FAIL -- COMPILE s2swa_32bit_pdlib_intel +PASS -- TEST cpld_control_gfsv17_intel [18:36, 17:47] (2022608 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [19:52, 19:02] (2315692 MB) +PASS -- TEST cpld_restart_gfsv17_intel [08:04, 07:02] (1319724 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [19:34, 18:43] (1916680 MB) + +FAIL -- COMPILE s2swa_32bit_pdlib_sfs_intel +PASS -- TEST cpld_control_sfs_intel [17:11, 16:47] (1980624 MB) + +FAIL -- COMPILE s2swa_32bit_pdlib_debug_intel +PASS -- TEST cpld_debug_gfsv17_intel [23:51, 22:57] (1983912 MB) + +FAIL -- COMPILE s2swa_intel +PASS -- TEST cpld_control_p8_intel [10:00, 09:10] (2203836 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [09:33, 08:52] (2199428 MB) +PASS -- TEST cpld_restart_p8_intel [05:48, 04:58] (1971820 MB) +PASS -- TEST cpld_control_qr_p8_intel [09:46, 09:02] (2220388 MB) +PASS -- TEST cpld_restart_qr_p8_intel [05:39, 04:48] (1734540 MB) +PASS -- TEST cpld_2threads_p8_intel [12:06, 11:26] (2431068 MB) +PASS -- TEST cpld_decomp_p8_intel [09:10, 08:32] (2178420 MB) +PASS -- TEST cpld_mpi_p8_intel [07:51, 07:18] (2096296 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [09:41, 08:53] (2202088 MB) +PASS -- TEST cpld_control_c192_p8_intel [17:05, 15:49] (2985648 MB) +PASS -- TEST cpld_restart_c192_p8_intel [08:11, 06:30] (2909076 MB) +PASS -- TEST cpld_bmark_p8_intel [16:14, 11:38] (3869292 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [11:40, 06:32] (3679784 MB) + +FAIL -- COMPILE s2swal_intel +PASS -- TEST cpld_control_p8_lnd_intel [09:25, 08:44] (2166092 MB) +PASS -- TEST cpld_restart_p8_lnd_intel [05:03, 04:30] (1933824 MB) +PASS -- TEST cpld_s2sa_p8_intel [07:53, 07:22] (2177020 MB) + +FAIL -- COMPILE s2sw_intel +PASS -- TEST cpld_control_noaero_p8_intel [08:31, 07:57] (2038204 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [06:47, 06:08] (2109616 MB) + +FAIL -- COMPILE s2swa_debug_intel +PASS -- TEST cpld_debug_p8_intel [12:32, 11:50] (2230160 MB) + +FAIL -- COMPILE s2sw_debug_intel +PASS -- TEST cpld_debug_noaero_p8_intel [05:46, 05:13] (2041072 MB) + +FAIL -- COMPILE s2s_aoflux_intel +PASS -- TEST cpld_control_noaero_p8_agrid_intel [04:45, 04:04] (2066608 MB) + +PASS -- COMPILE s2s_intel [10:09, 10:09](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [06:27, 06:00] (3029052 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:36, 02:14] (3019132 MB) +PASS -- TEST cpld_restart_c48_intel [01:32, 01:16] (2475892 MB) + +PASS -- COMPILE s2swa_faster_intel [12:04, 12:04](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_faster_intel [09:01, 08:16] (2202040 MB) + +PASS -- COMPILE s2sw_pdlib_intel [15:15, 15:15](1 warnings,11 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [15:49, 15:08] (2073864 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [07:51, 07:17] (1412172 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [16:36, 16:00] (1987512 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [05:23, 05:23](1523 warnings,1943 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [25:04, 24:21] (2037264 MB) + +PASS -- COMPILE atm_dyn32_intel [09:33, 09:33](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [03:08, 02:56] (710408 MB) +PASS -- TEST control_CubedSphereGrid_intel [02:32, 02:12] (1609340 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [02:35, 02:12] (1616620 MB) +PASS -- TEST control_latlon_intel [02:26, 02:08] (1601624 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [02:36, 02:11] (1593028 MB) +PASS -- TEST control_c48_intel [06:49, 06:26] (1706204 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:09, 05:56] (833316 MB) +PASS -- TEST control_c48_lnd_iau_intel [06:41, 06:24] (1706000 MB) +PASS -- TEST control_c192_intel [06:53, 06:23] (1767940 MB) +PASS -- TEST control_c384_intel [11:15, 10:12] (2024100 MB) +PASS -- TEST control_c384gdas_intel [08:48, 07:25] (1509720 MB) +PASS -- TEST control_stochy_intel [01:38, 01:29] (667016 MB) +PASS -- TEST control_stochy_restart_intel [01:16, 00:58] (534268 MB) +PASS -- TEST control_lndp_intel [01:34, 01:25] (663468 MB) +PASS -- TEST control_iovr4_intel [02:18, 02:11] (653728 MB) +PASS -- TEST control_iovr5_intel [02:15, 02:06] (667716 MB) +PASS -- TEST control_p8_intel [03:11, 02:31] (1888380 MB) +PASS -- TEST control_p8.v2.sfc_intel [03:23, 02:44] (1889536 MB) +PASS -- TEST control_p8_ugwpv1_intel [03:10, 02:29] (1896376 MB) +PASS -- TEST control_restart_p8_intel [02:00, 01:28] (1155104 MB) +PASS -- TEST control_noqr_p8_intel [03:05, 02:31] (1889540 MB) +PASS -- TEST control_restart_noqr_p8_intel [02:08, 01:33] (1208208 MB) +PASS -- TEST control_decomp_p8_intel [03:15, 02:38] (1871664 MB) +PASS -- TEST control_2threads_p8_intel [04:10, 03:33] (1959176 MB) +PASS -- TEST control_p8_lndp_intel [04:41, 04:18] (1892848 MB) +PASS -- TEST control_p8_rrtmgp_intel [04:21, 03:40] (1959596 MB) +PASS -- TEST control_p8_mynn_intel [03:24, 02:45] (1918052 MB) +PASS -- TEST merra2_thompson_intel [03:39, 02:54] (1904148 MB) +PASS -- TEST regional_control_intel [06:38, 06:19] (1212100 MB) +PASS -- TEST regional_restart_intel [02:52, 02:34] (1179208 MB) +PASS -- TEST regional_decomp_intel [05:19, 04:59] (1210816 MB) +PASS -- TEST regional_2threads_intel [04:45, 04:26] (1111268 MB) +PASS -- TEST regional_noquilt_intel [04:43, 04:29] (1551088 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:01, 04:40] (1223392 MB) +PASS -- TEST regional_2dwrtdecomp_intel [05:05, 04:48] (1205784 MB) +PASS -- TEST regional_wofs_intel [08:12, 07:58] (2071564 MB) + +PASS -- COMPILE rrfs_intel [08:01, 08:01](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:17, 06:44] (1192676 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:03, 03:29] (1373904 MB) +PASS -- TEST rap_decomp_intel [07:47, 07:09] (1155716 MB) +PASS -- TEST rap_2threads_intel [10:02, 09:28] (1214236 MB) +PASS -- TEST rap_restart_intel [04:12, 03:34] (1131868 MB) +PASS -- TEST rap_sfcdiff_intel [07:25, 06:47] (1205728 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [07:36, 07:02] (1134624 MB) +PASS -- TEST rap_sfcdiff_restart_intel [05:47, 05:04] (1188544 MB) +PASS -- TEST hrrr_control_intel [04:57, 04:19] (1065908 MB) +PASS -- TEST hrrr_control_decomp_intel [04:09, 03:32] (1044696 MB) +PASS -- TEST hrrr_control_2threads_intel [05:13, 04:38] (1136932 MB) +PASS -- TEST hrrr_control_restart_intel [02:15, 01:58] (1024332 MB) +PASS -- TEST rrfs_v1beta_intel [07:45, 07:01] (1219492 MB) +PASS -- TEST rrfs_v1nssl_intel [09:01, 08:49] (1999032 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:37, 08:27] (2168136 MB) + +PASS -- COMPILE csawmg_intel [08:10, 08:10] +PASS -- TEST control_csawmg_intel [05:49, 05:33] (1054800 MB) +PASS -- TEST control_ras_intel [03:09, 03:01] (834228 MB) + +PASS -- COMPILE wam_intel [08:56, 08:56],1 remarks) +PASS -- TEST control_wam_intel [10:25, 10:05] (1661644 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [09:04, 09:04],1 remarks) +PASS -- TEST control_p8_faster_intel [02:58, 02:23] (1907564 MB) +PASS -- TEST regional_control_faster_intel [04:42, 04:22] (1223720 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [06:34, 06:34](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:22, 02:01] (1632448 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:20, 01:56] (1628840 MB) +PASS -- TEST control_stochy_debug_intel [02:41, 02:34] (844700 MB) +PASS -- TEST control_lndp_debug_intel [02:34, 02:22] (847000 MB) +PASS -- TEST control_csawmg_debug_intel [04:29, 04:16] (1146176 MB) +PASS -- TEST control_ras_debug_intel [02:28, 02:21] (844836 MB) +PASS -- TEST control_diag_debug_intel [02:38, 02:20] (1707576 MB) +PASS -- TEST control_debug_p8_intel [03:36, 03:16] (1920480 MB) +PASS -- TEST regional_debug_intel [15:38, 15:23] (1154512 MB) +PASS -- TEST rap_control_debug_intel [04:22, 04:11] (1225592 MB) +PASS -- TEST hrrr_control_debug_intel [04:23, 04:09] (1218756 MB) +PASS -- TEST hrrr_gf_debug_intel [04:19, 04:10] (1226804 MB) +PASS -- TEST hrrr_c3_debug_intel [04:17, 04:06] (1230180 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:12, 04:06] (1231192 MB) +PASS -- TEST rap_diag_debug_intel [04:37, 04:19] (1313200 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [04:29, 04:18] (1220576 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [04:20, 04:13] (1219168 MB) +PASS -- TEST rap_lndp_debug_intel [04:21, 04:10] (1230968 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:18, 04:10] (1233004 MB) +PASS -- TEST rap_noah_debug_intel [04:12, 04:04] (1225592 MB) +PASS -- TEST rap_sfcdiff_debug_intel [04:13, 04:03] (1226784 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [06:49, 06:41] (1232656 MB) +PASS -- TEST rrfs_v1beta_debug_intel [04:11, 04:03] (1219104 MB) +PASS -- TEST rap_clm_lake_debug_intel [04:26, 04:16] (1229180 MB) +PASS -- TEST rap_flake_debug_intel [04:20, 04:12] (1215100 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [07:59, 07:19] (1227612 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:01, 04:00] +PASS -- TEST control_csawmg_debug_gnu [03:00, 02:43] (1044396 MB) + +PASS -- COMPILE wam_debug_intel [04:04, 04:03](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [08:02, 08:02](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [03:50, 03:16] (1250828 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [06:08, 05:34] (1156456 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [03:43, 02:59] (1027920 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:32, 07:58] (1134320 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:49, 04:07] (1061580 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:51, 03:09] (975568 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [04:53, 04:18] (1096512 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [01:46, 01:39] (960128 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [08:23, 08:23](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:05, 01:41] (1297388 MB) +PASS -- TEST conus13km_2threads_intel [01:20, 00:59] (1180688 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:23, 01:04] (1142224 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [08:17, 08:16](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:07, 03:49] (1089468 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:27, 03:27](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:12, 04:06] (1096220 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:07, 04:01] (1096272 MB) +PASS -- TEST conus13km_debug_intel [12:02, 11:41] (1359508 MB) +PASS -- TEST conus13km_debug_qr_intel [12:08, 11:43] (995628 MB) +PASS -- TEST conus13km_debug_2threads_intel [13:19, 13:04] (1229236 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [11:57, 11:39] (1423816 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:39, 03:39](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:29, 04:19] (1165492 MB) + +PASS -- COMPILE hafsw_intel [14:54, 14:54](1 warnings,10 remarks) +PASS -- TEST hafs_regional_atm_intel [06:15, 05:26] (857516 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:14, 05:00] (1266424 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [09:19, 08:16] (909428 MB) +PASS -- TEST hafs_regional_atm_wav_intel [15:58, 15:07] (979216 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [18:47, 17:41] (970344 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [06:06, 05:31] (604844 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [08:04, 07:06] (610732 MB) +PASS -- TEST hafs_global_1nest_atm_intel [03:02, 02:36] (431136 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [09:06, 07:30] (511720 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:21, 03:54] (605392 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:02, 03:38] (607488 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:43, 05:04] (663660 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:26, 01:14] (448488 MB) + +PASS -- COMPILE hafsw_debug_intel [09:26, 09:26](1465 warnings,1445 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:13, 11:35] (627468 MB) + +PASS -- COMPILE hafsw_faster_intel [09:43, 09:43],9 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [19:29, 18:40] (731160 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [19:25, 18:36] (833868 MB) + +PASS -- COMPILE hafs_mom6w_intel [10:29, 10:29],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:23, 12:11] (793524 MB) + +PASS -- COMPILE hafs_all_intel [10:27, 10:27],9 remarks) +PASS -- TEST hafs_regional_docn_intel [06:21, 05:33] (919332 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [06:31, 05:39] (917688 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:00, 16:28] (1345728 MB) + +PASS -- COMPILE datm_cdeps_intel [05:42, 05:42],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [02:17, 02:12] (1163504 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:23, 01:18] (1115552 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [02:13, 02:08] (1022216 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [02:15, 02:10] (1015188 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:45, 02:39] (1022776 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:21, 02:17] (1144988 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:19, 02:15] (1135548 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:13, 02:08] (1021932 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:26, 04:54] (1147908 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [05:24, 04:53] (1151520 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:14, 02:12] (1166760 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:09, 03:05] (2414860 MB) +PASS -- TEST datm_cdeps_gfs_intel [03:11, 03:06] (2455900 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [05:54, 05:54](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [08:39, 08:34] (1068640 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [05:56, 05:56],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:16, 02:12] (1157692 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:00, 01:00],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:11, 00:54] (333540 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:07, 00:53] (560652 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:45, 00:32] (577000 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [08:55, 08:55],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [04:02, 03:24] (2022244 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [09:29, 09:29](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [04:50, 04:19] (2029540 MB) + +PASS -- COMPILE atml_intel [09:43, 09:43](9 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_intel [05:18, 04:44] (1885972 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:05, 02:40] (1135892 MB) + +PASS -- COMPILE atml_debug_intel [09:31, 09:31](887 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [04:57, 04:25] (1909972 MB) + +PASS -- COMPILE atmw_intel [13:20, 13:20],9 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:25, 01:48] (1938996 MB) + +PASS -- COMPILE atmaero_intel [08:41, 08:41],1 remarks) +PASS -- TEST atmaero_control_p8_intel [04:28, 03:51] (1999456 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:06, 04:30] (1780752 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [04:57, 04:28] (1800464 MB) + +PASS -- COMPILE atmaq_debug_intel [03:36, 03:36](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [17:52, 16:49] (4532216 MB) + +PASS -- COMPILE atm_fbh_intel [07:50, 07:50](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [10:18, 10:07] (1114336 MB) + +PASS -- COMPILE datm_cdeps_intelllvm [10:43, 10:43] +PASS -- TEST datm_cdeps_control_cfsr_intelllvm [02:20, 02:16] (1164060 MB) + +PASS -- COMPILE datm_cdeps_debug_intelllvm [01:46, 01:46](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [06:25, 06:21] (1072072 MB) + +PASS -- COMPILE atm_gnu [04:13, 04:13] +PASS -- TEST control_c48_gnu [08:09, 07:46] (1522556 MB) +PASS -- TEST control_stochy_gnu [02:27, 02:20] (717120 MB) +PASS -- TEST control_ras_gnu [04:03, 03:56] (731964 MB) +PASS -- TEST control_p8_gnu [04:06, 03:32] (1702220 MB) +PASS -- TEST control_p8_ugwpv1_gnu [03:54, 03:28] (1721300 MB) +PASS -- TEST control_flake_gnu [04:54, 04:46] (807684 MB) + +PASS -- COMPILE rrfs_gnu [04:12, 04:12] +PASS -- TEST rap_control_gnu [08:44, 08:10] (1071348 MB) +PASS -- TEST rap_decomp_gnu [08:38, 08:04] (1072840 MB) +PASS -- TEST rap_2threads_gnu [11:47, 11:05] (973616 MB) +PASS -- TEST rap_restart_gnu [04:57, 04:14] (895496 MB) +PASS -- TEST rap_sfcdiff_gnu [09:09, 08:29] (1073304 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [08:48, 08:11] (1077548 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [06:46, 06:01] (877924 MB) +PASS -- TEST hrrr_control_gnu [04:58, 04:17] (1059440 MB) +PASS -- TEST hrrr_control_noqr_gnu [04:51, 04:17] (1127584 MB) +PASS -- TEST hrrr_control_2threads_gnu [07:22, 06:48] (1036072 MB) +PASS -- TEST hrrr_control_decomp_gnu [04:45, 04:10] (1060376 MB) +PASS -- TEST hrrr_control_restart_gnu [02:29, 02:12] (885168 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [02:34, 02:14] (924896 MB) +PASS -- TEST rrfs_v1beta_gnu [09:07, 08:24] (1070156 MB) + +PASS -- COMPILE csawmg_gnu [13:44, 13:44] +PASS -- TEST control_csawmg_gnu [07:37, 07:21] (1052284 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [20:28, 20:28] +PASS -- TEST control_diag_debug_gnu [01:43, 01:18] (1618632 MB) +PASS -- TEST regional_debug_gnu [07:31, 07:11] (1122132 MB) +PASS -- TEST rap_control_debug_gnu [02:10, 02:03] (1092196 MB) +PASS -- TEST hrrr_control_debug_gnu [02:08, 01:59] (1081752 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:06, 02:00] (1088016 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:13, 02:03] (1087720 MB) +PASS -- TEST rap_diag_debug_gnu [02:29, 02:14] (1263144 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:22, 03:16] (1088824 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:31, 02:21] (1093076 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:13, 02:05] (1085644 MB) +PASS -- TEST control_ras_debug_gnu [01:23, 01:14] (728512 MB) +PASS -- TEST control_stochy_debug_gnu [01:32, 01:23] (718864 MB) +PASS -- TEST control_debug_p8_gnu [01:48, 01:22] (1701216 MB) +PASS -- TEST rap_flake_debug_gnu [02:19, 02:09] (1091708 MB) +PASS -- TEST rap_clm_lake_debug_gnu [02:19, 02:11] (1090856 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:07, 03:30] (1094680 MB) + +PASS -- COMPILE wam_debug_gnu [03:07, 03:07] +PASS -- TEST control_wam_debug_gnu [06:15, 05:52] (1560096 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:32, 04:32] +PASS -- TEST rap_control_dyn32_phy32_gnu [08:03, 07:30] (953344 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:45, 04:03] (944600 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [04:22, 03:35] (875700 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:39, 03:53] (942624 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [06:29, 05:45] (853736 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:29, 02:10] (854672 MB) +PASS -- TEST conus13km_control_gnu [02:54, 02:32] (1256072 MB) +PASS -- TEST conus13km_2threads_gnu [07:38, 07:18] (1108868 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [01:47, 01:28] (926700 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [09:18, 09:18] +PASS -- TEST rap_control_dyn64_phy32_gnu [04:56, 04:38] (980316 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:35, 06:35] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:05, 01:58] (968020 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:07, 02:01] (957396 MB) +PASS -- TEST conus13km_debug_gnu [05:42, 05:18] (1272260 MB) +PASS -- TEST conus13km_debug_qr_gnu [05:55, 05:33] (943032 MB) +PASS -- TEST conus13km_debug_2threads_gnu [15:05, 14:45] (1120044 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [05:35, 05:20] (1338520 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [06:18, 06:17] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:11, 02:01] (991984 MB) + +PASS -- COMPILE s2swa_gnu [16:55, 16:55] +PASS -- COMPILE s2s_gnu [26:50, 26:50] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [09:22, 08:42] (2706508 MB) + +PASS -- COMPILE s2swa_debug_gnu [04:29, 04:28] +PASS -- COMPILE s2sw_pdlib_gnu [15:44, 15:44] +PASS -- TEST cpld_control_pdlib_p8_gnu [26:35, 25:56] (3039696 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [04:22, 04:22] +PASS -- TEST cpld_debug_pdlib_p8_gnu [13:45, 13:04] (2896320 MB) + +PASS -- COMPILE datm_cdeps_gnu [15:37, 15:37] +PASS -- TEST datm_cdeps_control_cfsr_gnu [03:30, 03:22] (771768 MB) SYNOPSIS: -Starting Date/Time: 2025-01-30 08:28:22 -Ending Date/Time: 2025-01-30 14:26:49 -Total Time: 05h:58m:27s -Compiles Completed: 61/61 -Tests Completed: 246/249 +Starting Date/Time: 2025-02-03 20:41:14 +Ending Date/Time: 2025-02-04 08:21:40 +Total Time: 11h:40m:26s +Compiles Completed: 51/61 +Tests Completed: 248/249 +./logs/log_hercules/rt_rap_2threads_dyn32_phy32_gnu.log: does not exist NOTES: A file test_changes.list was generated but is empty. @@ -429,7 +432,7 @@ Result: FAILED ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -692fa94443d70a890d1771aba742f93963fdecbb +c553242dcb9e80cf0668d6fa0b4a8732e68fcd5f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -439,10 +442,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) + 2c902a670e89416ef49254c827e8ba45a68ce596 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) + db19a6d1d7fa7ed56f62318501c4abb5fb8b1138 FV3/ccpp/physics (EP4-1119-gdb19a6d1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -455,7 +458,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) + 5e7dcf04d4180241df1cb2626ca08b1c81db6c51 WW3 (remotes/origin/devufs/addbinaryrestartinit) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -467,28 +470,22 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250129 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_848241 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_876823 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE 'rrfs_gnu' [04:51, 04:51] -PASS -- TEST 'rap_control_gnu' [08:46, 08:10](1072 MB) -PASS -- TEST 'rap_2threads_gnu' [08:08, 07:30](976 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:44, 04:43] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:14, 07:40](952 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:49, 04:01](947 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:11, 09:26](887 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:21, 03:33](893 MB) +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:02, 04:02] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:03, 07:28](953 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:26, 06:51](913 MB) SYNOPSIS: -Starting Date/Time: 20250130 15:53:51 -Ending Date/Time: 20250130 17:50:08 -Total Time: 01h:56m:41s -Compiles Completed: 2/2 -Tests Completed: 6/6 +Starting Date/Time: 20250204 08:27:19 +Ending Date/Time: 20250204 08:39:49 +Total Time: 00h:12m:32s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index d5a258b247..bbb912eb9f 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -1fba02b041f68c7d7a241f206c1d3816768bbde0 +cf8d8f0ae16e210c8f2deeee26cc24b1ddab6688 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) + 2c902a670e89416ef49254c827e8ba45a68ce596 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) + db19a6d1d7fa7ed56f62318501c4abb5fb8b1138 FV3/ccpp/physics (EP4-1119-gdb19a6d1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) + 5e7dcf04d4180241df1cb2626ca08b1c81db6c51 WW3 (remotes/origin/devufs/addbinaryrestartinit) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,260 +39,259 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20250129 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2580254 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2489623 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf +* (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [44:14, 42:42] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:28, 08:23](2028 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:15, 47:27] ( 1 warnings 1446 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:10, 24:45](1876 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [31:27, 26:33](2019 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:19, 09:52](1131 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:03, 26:13](1863 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:15, 49:09] ( 1 warnings 1443 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:48, 24:20](1885 MB) - -PASS -- COMPILE 's2swa_intel' [46:15, 44:40] ( 1 warnings 1418 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:12, 10:41](2051 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:21, 10:25](2066 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:17, 05:35](1712 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:07, 10:33](2082 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:23, 05:42](1734 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:04, 09:56](2245 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:00, 10:43](2044 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:13, 08:37](2003 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:13, 10:15](2064 MB) - -PASS -- COMPILE 's2swal_intel' [45:15, 43:43] ( 1 warnings 1486 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [13:18, 10:37](2069 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:22, 06:27](1710 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:07, 09:31](2002 MB) - -PASS -- COMPILE 's2sw_intel' [43:14, 41:34] ( 1 warnings 1303 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:03, 06:22](1906 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:13, 08:02](1975 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:02] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [19:16, 16:33](2091 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:07] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:00, 07:38](1929 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [39:14, 37:15] ( 1019 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:16, 05:38](1964 MB) - -PASS -- COMPILE 's2s_intel' [40:14, 38:20] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:51, 10:20](3004 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:52, 03:04](3009 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:47, 02:01](2454 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:18, 32:31] ( 1 warnings 1635 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [20:45, 10:15](2068 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:14, 46:27] ( 1 warnings 1363 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:13, 20:28](1931 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:23, 09:39](1124 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:18, 23:32](1897 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:03] ( 1523 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:08, 35:01](1962 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [40:14, 38:13] ( 1 warnings 1125 remarks ) -PASS -- TEST 'control_flake_intel' [14:29, 04:21](646 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [15:05, 03:19](1553 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:06, 03:26](1554 MB) -PASS -- TEST 'control_latlon_intel' [17:01, 03:15](1544 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:09, 03:35](1546 MB) -PASS -- TEST 'control_c48_intel' [14:05, 11:10](1693 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:33, 10:13](834 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [14:06, 11:11](1698 MB) -PASS -- TEST 'control_c192_intel' [30:19, 09:51](1686 MB) -PASS -- TEST 'control_c384_intel' [38:26, 13:48](1811 MB) -PASS -- TEST 'control_c384gdas_intel' [37:13, 13:12](1008 MB) -PASS -- TEST 'control_stochy_intel' [10:27, 02:28](607 MB) -PASS -- TEST 'control_stochy_restart_intel' [13:27, 01:12](432 MB) -PASS -- TEST 'control_lndp_intel' [11:27, 02:00](604 MB) -PASS -- TEST 'control_iovr4_intel' [11:30, 03:14](604 MB) -PASS -- TEST 'control_iovr5_intel' [12:30, 03:13](603 MB) -PASS -- TEST 'control_p8_intel' [16:22, 03:43](1832 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [21:27, 03:55](1835 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [21:15, 03:39](1842 MB) -PASS -- TEST 'control_restart_p8_intel' [11:54, 02:05](1040 MB) -PASS -- TEST 'control_noqr_p8_intel' [14:23, 03:42](1825 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [13:55, 02:05](1084 MB) -PASS -- TEST 'control_decomp_p8_intel' [17:17, 03:45](1830 MB) -PASS -- TEST 'control_2threads_p8_intel' [22:20, 03:24](1908 MB) -PASS -- TEST 'control_p8_lndp_intel' [24:07, 06:33](1840 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [23:18, 05:09](1901 MB) -PASS -- TEST 'control_p8_mynn_intel' [19:20, 03:56](1845 MB) -PASS -- TEST 'merra2_thompson_intel' [18:16, 04:18](1841 MB) -PASS -- TEST 'regional_control_intel' [09:58, 07:08](1041 MB) -PASS -- TEST 'regional_restart_intel' [16:38, 03:49](1019 MB) -PASS -- TEST 'regional_decomp_intel' [09:58, 07:28](1041 MB) -PASS -- TEST 'regional_2threads_intel' [06:38, 04:15](1001 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [12:44, 07:06](1035 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [18:36, 07:05](1038 MB) - -PASS -- COMPILE 'rrfs_intel' [39:14, 35:19] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [41:50, 29:44](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [18:07, 05:34](1182 MB) -PASS -- TEST 'rap_decomp_intel' [22:44, 10:38](976 MB) -PASS -- TEST 'rap_2threads_intel' [21:43, 10:26](1065 MB) -PASS -- TEST 'rap_restart_intel' [09:48, 05:12](986 MB) -PASS -- TEST 'rap_sfcdiff_intel' [21:44, 10:03](985 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:40, 10:38](976 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:49, 07:31](997 MB) -PASS -- TEST 'hrrr_control_intel' [15:46, 05:04](980 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [15:41, 05:16](972 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [21:43, 11:08](1051 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:27, 02:49](916 MB) -PASS -- TEST 'rrfs_v1beta_intel' [19:51, 09:56](976 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [23:45, 13:25](1926 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [22:30, 12:50](1928 MB) - -PASS -- COMPILE 'csawmg_intel' [36:14, 35:00] ( 1099 remarks ) -PASS -- TEST 'control_csawmg_intel' [17:37, 08:01](965 MB) -PASS -- TEST 'control_ras_intel' [13:24, 04:16](671 MB) - -PASS -- COMPILE 'wam_intel' [37:14, 35:17] ( 1003 remarks ) -PASS -- TEST 'control_wam_intel' [23:52, 14:12](1616 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:14, 37:33] ( 1304 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:02, 03:44](1837 MB) -PASS -- TEST 'regional_control_faster_intel' [09:45, 06:49](1039 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [19:12, 08:30] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:43, 02:52](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:44, 02:49](1576 MB) -PASS -- TEST 'control_stochy_debug_intel' [12:24, 03:44](773 MB) -PASS -- TEST 'control_lndp_debug_intel' [12:24, 03:22](776 MB) -PASS -- TEST 'control_csawmg_debug_intel' [13:36, 05:27](1088 MB) -PASS -- TEST 'control_ras_debug_intel' [10:22, 03:25](779 MB) -PASS -- TEST 'control_diag_debug_intel' [10:45, 03:22](1646 MB) -PASS -- TEST 'control_debug_p8_intel' [08:47, 03:25](1864 MB) -PASS -- TEST 'regional_debug_intel' [31:41, 27:57](1024 MB) -PASS -- TEST 'rap_control_debug_intel' [09:27, 06:08](1163 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:25, 06:00](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:24, 06:08](1164 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:25, 06:19](1164 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:25, 06:08](1165 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:36, 07:27](1243 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 06:14](1171 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:11](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:25, 06:17](1164 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 06:10](1169 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:07](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:24, 06:11](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:08](1163 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:25, 06:10](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 06:12](1162 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:24, 06:09](1162 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:59, 10:42](1166 MB) - -PASS -- COMPILE 'wam_debug_intel' [15:12, 05:19] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:45, 16:46](1647 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [38:15, 30:57] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:07, 05:13](1064 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [31:50, 29:22](902 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:43, 04:17](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [16:02, 07:45](905 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:41, 03:59](903 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [22:45, 19:22](856 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:46, 06:48](905 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:19](851 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [39:13, 32:00] ( 3 warnings 1207 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:54, 02:38](1100 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:11](1021 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:44, 01:46](1011 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [38:13, 31:23] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:04, 05:24](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 05:11] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 06:25](1037 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:24, 06:08](1040 MB) -PASS -- TEST 'conus13km_debug_intel' [22:04, 17:39](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:48, 17:33](864 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:43, 10:16](1081 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:44, 17:51](1203 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:12, 05:04] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:28, 08:28](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [42:14, 40:37] ( 1 warnings 1437 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:19, 06:55](692 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:32, 06:08](1075 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:32, 09:07](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [20:27, 16:21](784 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:40, 19:11](801 MB) -PASS -- TEST 'gnv1_nested_intel' [11:40, 06:41](1666 MB) - -PASS -- COMPILE 'hafs_all_intel' [33:13, 30:22] ( 1283 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:25, 08:33](751 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:27, 08:35](741 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:26] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:43](1075 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:43, 02:14](1047 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:28, 03:32](934 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:35](936 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:27, 03:36](936 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:27, 03:20](1076 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:38](1058 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:26, 03:32](934 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:13, 07:50](897 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:31, 07:34](859 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:36](1095 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:08](2436 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 05:07](2302 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:33] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:20, 08:07](1030 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:08] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:36](1076 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:48] ( 69 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:34, 01:15](237 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:25, 01:20](262 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:36](261 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [39:13, 37:17] ( 1024 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:57, 04:45](1886 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:13, 36:33] ( 1 warnings 1029 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:05, 06:13](1908 MB) - -PASS -- COMPILE 'atml_intel' [40:13, 38:29] ( 9 warnings 1193 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [14:06, 10:17](1856 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [13:44, 04:30](1070 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:33] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:55, 06:28](1874 MB) - -PASS -- COMPILE 'atmw_intel' [39:13, 37:17] ( 1279 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:50, 07:48](1849 MB) - -PASS -- COMPILE 'atmaero_intel' [38:13, 36:00] ( 1107 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:01, 05:21](1931 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [15:05, 06:11](1708 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:52, 06:23](1722 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:23] ( 3 warnings 1003 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:34, 15:26](1058 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:16, 44:22] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:13, 08:24](2022 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:16, 48:41] ( 1 warnings 1446 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [33:10, 23:17](1902 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:23, 24:01](2029 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:11, 09:36](1144 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:04, 25:59](1862 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:17, 50:25] ( 1 warnings 1443 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [30:48, 22:24](1878 MB) + +PASS -- COMPILE 's2swa_intel' [09:16, 43:17] ( 1 warnings 1418 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:37, 10:34](2054 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:38, 10:10](2064 MB) +PASS -- TEST 'cpld_restart_p8_intel' [14:22, 05:30](1710 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:24, 10:09](2079 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:30, 05:40](1730 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:17, 09:28](2252 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:20, 10:17](2019 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:28, 08:24](2006 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:39, 10:10](2058 MB) + +PASS -- COMPILE 's2swal_intel' [15:16, 45:57] ( 1 warnings 1486 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [23:21, 10:47](2026 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:32, 05:53](1712 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [20:11, 09:32](2040 MB) + +PASS -- COMPILE 's2sw_intel' [47:14, 41:14] ( 1 warnings 1303 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:01, 06:23](1911 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:17, 08:06](1980 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 06:25] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [22:14, 16:35](2079 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:11, 06:03] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:02, 07:45](1928 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [41:13, 37:12] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:15, 05:33](1964 MB) + +PASS -- COMPILE 's2s_intel' [46:13, 38:28] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:48, 10:20](3001 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:48, 03:05](3016 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:46, 01:47](2461 MB) + +PASS -- COMPILE 's2swa_faster_intel' [36:17, 32:33] ( 1 warnings 1635 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [33:34, 10:01](2066 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [50:14, 48:42] ( 1 warnings 1363 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:20, 20:30](1922 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [25:20, 09:32](1133 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:06, 23:34](1902 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:07] ( 1523 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:10, 34:40](1943 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [40:13, 38:29] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [06:29, 04:22](648 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [15:09, 03:14](1541 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:06, 03:44](1557 MB) +PASS -- TEST 'control_latlon_intel' [12:04, 03:15](1546 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:12, 03:22](1542 MB) +PASS -- TEST 'control_c48_intel' [25:11, 11:11](1701 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:33, 10:18](831 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [23:11, 11:11](1707 MB) +PASS -- TEST 'control_c192_intel' [18:18, 09:51](1683 MB) +PASS -- TEST 'control_c384_intel' [21:13, 13:45](1818 MB) +PASS -- TEST 'control_c384gdas_intel' [22:08, 13:33](1005 MB) +PASS -- TEST 'control_stochy_intel' [04:28, 02:11](601 MB) +PASS -- TEST 'control_stochy_restart_intel' [13:27, 01:14](439 MB) +PASS -- TEST 'control_lndp_intel' [03:30, 02:03](607 MB) +PASS -- TEST 'control_iovr4_intel' [05:33, 03:17](598 MB) +PASS -- TEST 'control_iovr5_intel' [05:33, 03:21](605 MB) +PASS -- TEST 'control_p8_intel' [06:24, 03:52](1830 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [16:31, 03:58](1837 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [13:19, 03:39](1833 MB) +PASS -- TEST 'control_restart_p8_intel' [26:54, 02:07](1055 MB) +PASS -- TEST 'control_noqr_p8_intel' [12:20, 03:42](1833 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [27:01, 02:02](1074 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:18, 03:59](1826 MB) +PASS -- TEST 'control_2threads_p8_intel' [16:21, 03:24](1915 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:09, 06:40](1837 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [17:20, 05:06](1891 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:19, 04:03](1845 MB) +PASS -- TEST 'merra2_thompson_intel' [07:18, 04:25](1842 MB) +PASS -- TEST 'regional_control_intel' [17:03, 07:10](1043 MB) +PASS -- TEST 'regional_restart_intel' [07:41, 03:47](1019 MB) +PASS -- TEST 'regional_decomp_intel' [10:02, 07:27](1036 MB) +PASS -- TEST 'regional_2threads_intel' [08:02, 04:12](1012 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [20:40, 07:04](1038 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [21:48, 07:04](1038 MB) + +PASS -- COMPILE 'rrfs_intel' [37:13, 35:12] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [23:05, 10:07](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [18:07, 05:33](1193 MB) +PASS -- TEST 'rap_decomp_intel' [24:41, 10:37](987 MB) +PASS -- TEST 'rap_2threads_intel' [34:50, 09:31](1065 MB) +PASS -- TEST 'rap_restart_intel' [21:05, 05:25](992 MB) +PASS -- TEST 'rap_sfcdiff_intel' [31:53, 10:03](989 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [34:49, 10:47](982 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [15:55, 07:33](995 MB) +PASS -- TEST 'hrrr_control_intel' [28:57, 05:08](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [28:45, 05:20](978 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [26:57, 04:44](1046 MB) +PASS -- TEST 'hrrr_control_restart_intel' [10:28, 02:46](913 MB) +PASS -- TEST 'rrfs_v1beta_intel' [30:03, 09:58](977 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [34:30, 13:15](1939 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [37:30, 12:52](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [36:13, 34:55] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [31:40, 08:03](967 MB) +PASS -- TEST 'control_ras_intel' [28:28, 04:28](669 MB) + +PASS -- COMPILE 'wam_intel' [37:13, 35:24] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [36:53, 14:34](1614 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:37] ( 1304 remarks ) +PASS -- TEST 'control_p8_faster_intel' [13:56, 03:35](1836 MB) +PASS -- TEST 'regional_control_faster_intel' [10:40, 06:34](1038 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [23:12, 08:21] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [21:48, 03:04](1561 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:52, 03:04](1574 MB) +PASS -- TEST 'control_stochy_debug_intel' [22:27, 03:47](776 MB) +PASS -- TEST 'control_lndp_debug_intel' [19:27, 03:30](781 MB) +PASS -- TEST 'control_csawmg_debug_intel' [24:45, 05:33](1088 MB) +PASS -- TEST 'control_ras_debug_intel' [22:27, 03:31](778 MB) +PASS -- TEST 'control_diag_debug_intel' [22:54, 03:33](1624 MB) +PASS -- TEST 'control_debug_p8_intel' [22:47, 03:37](1868 MB) +PASS -- TEST 'regional_debug_intel' [40:47, 22:05](1046 MB) +PASS -- TEST 'rap_control_debug_intel' [23:25, 06:20](1162 MB) +PASS -- TEST 'hrrr_control_debug_intel' [22:32, 06:11](1160 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [19:26, 06:04](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [19:26, 06:09](1164 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:27, 06:06](1162 MB) +PASS -- TEST 'rap_diag_debug_intel' [14:35, 06:25](1250 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:26, 06:18](1167 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:25, 06:18](1169 MB) +PASS -- TEST 'rap_lndp_debug_intel' [15:27, 06:11](1171 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:25, 06:08](1168 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:25, 05:59](1161 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [14:27, 06:07](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:25, 10:04](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [13:32, 06:02](1159 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [13:33, 06:08](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [15:27, 06:15](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [19:49, 10:44](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [19:11, 05:06] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [34:47, 16:41](1635 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [34:13, 30:53] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [19:20, 05:28](1061 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:43, 08:12](910 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:43, 04:14](879 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:38, 07:51](922 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [16:36, 04:00](902 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:38, 04:30](853 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:22](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:33, 02:19](838 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:13, 32:11] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [13:51, 02:41](1102 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:48, 01:09](1031 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:45, 01:29](1010 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [41:14, 31:33] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:51, 05:26](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 05:12] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [14:26, 06:04](1050 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:24, 05:57](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [27:56, 17:33](1153 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [27:44, 17:49](858 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [24:40, 10:16](1091 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [30:51, 17:43](1225 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:12, 05:05] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [18:26, 06:05](1080 MB) + +PASS -- COMPILE 'hafsw_intel' [48:14, 41:25] ( 1 warnings 1437 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [11:23, 06:40](691 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [18:41, 06:06](1074 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [51:44, 09:03](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [51:38, 15:39](770 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [52:58, 19:12](803 MB) +PASS -- TEST 'gnv1_nested_intel' [12:48, 06:29](1658 MB) + +PASS -- COMPILE 'hafs_all_intel' [45:14, 36:25] ( 1283 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [54:22, 08:34](756 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:24, 08:31](734 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:12, 08:12] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:23, 03:33](1075 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 02:09](1044 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 03:32](938 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [09:23, 03:31](938 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:36](938 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:39](1079 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:23, 03:42](1060 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:31](935 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:42, 07:47](902 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:42, 07:44](853 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:37](1069 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:04](2372 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 05:01](2392 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [13:12, 03:28] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [12:22, 07:20](1020 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:11] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:33](1075 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:13, 01:46] ( 69 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:33, 01:16](243 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:07](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:42](263 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [42:14, 37:12] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [16:09, 04:58](1902 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [40:14, 36:10] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:59, 06:33](1905 MB) + +PASS -- COMPILE 'atml_intel' [40:13, 38:25] ( 9 warnings 1193 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [31:10, 05:10](1856 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:43, 02:56](1067 MB) + +PASS -- COMPILE 'atml_debug_intel' [19:12, 07:00] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [39:16, 06:30](1882 MB) + +PASS -- COMPILE 'atmw_intel' [44:14, 38:08] ( 1279 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:03, 02:28](1848 MB) + +PASS -- COMPILE 'atmaero_intel' [50:14, 36:15] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:01, 05:16](1909 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:01, 06:16](1701 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:47, 06:26](1713 MB) + +PASS -- COMPILE 'atm_fbh_intel' [43:14, 31:34] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:37, 15:19](1055 MB) SYNOPSIS: -Starting Date/Time: 20250130 19:34:09 -Ending Date/Time: 20250131 00:15:32 -Total Time: 04h:41m:55s +Starting Date/Time: 20250204 02:58:05 +Ending Date/Time: 20250204 08:28:59 +Total Time: 05h:31m:43s Compiles Completed: 38/38 Tests Completed: 167/167 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 05fcbb8aa7..c1b588d9fb 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -692fa94443d70a890d1771aba742f93963fdecbb +c553242dcb9e80cf0668d6fa0b4a8732e68fcd5f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) + 2c902a670e89416ef49254c827e8ba45a68ce596 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) + db19a6d1d7fa7ed56f62318501c4abb5fb8b1138 FV3/ccpp/physics (EP4-1119-gdb19a6d1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) + 5e7dcf04d4180241df1cb2626ca08b1c81db6c51 WW3 (remotes/origin/devufs/addbinaryrestartinit) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,300 +39,300 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250129 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3094730 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2845270 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:11, 17:43] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:46, 16:39](2077 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 20:36] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:49, 21:55](1951 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:31, 23:01](2136 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:23, 08:46](1216 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:48, 25:50](1885 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:09] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:47, 21:27](1939 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:26] ( 1523 warnings 1943 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:53, 28:23](1942 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 17:53] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:53, 16:50](2148 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:45, 16:09](2135 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:55, 08:22](1802 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:39, 15:49](2165 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:48, 08:31](1696 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:35, 12:23](2334 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:39, 16:04](2124 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:32, 13:43](2035 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:45, 16:00](2141 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:44, 15:58](2719 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:10, 08:51](2716 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:00, 12:45](3704 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:28, 08:01](3546 MB) - -PASS -- COMPILE 's2swal_intel' [19:11, 17:27] ( 1 warnings 12 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [19:48, 17:09](2111 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:01, 08:29](1776 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:28, 08:04](2126 MB) - -PASS -- COMPILE 's2sw_intel' [17:11, 16:07] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [18:06, 15:17](1981 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:19, 06:53](2056 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:25] ( 1413 warnings 1173 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:25, 13:45](2161 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:09] ( 1413 warnings 1173 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:07, 07:04](2008 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:19] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:20, 04:45](2024 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 14:51] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:58, 08:44](3031 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:57, 03:11](3021 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:10, 02:02](2485 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 18:03] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:34, 16:17](2143 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:03] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:13, 18:36](2008 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:25, 08:55](1249 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:15, 21:19](1927 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:31] ( 1523 warnings 1943 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:12, 31:11](1983 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:10, 13:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:24, 03:44](689 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:45, 02:46](1583 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 02:50](1586 MB) -PASS -- TEST 'control_latlon_intel' [04:41, 02:45](1579 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:51, 02:49](1579 MB) -PASS -- TEST 'control_c48_intel' [10:52, 09:00](1706 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 08:11](835 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:51, 08:59](1709 MB) -PASS -- TEST 'control_c192_intel' [11:06, 08:10](1731 MB) -PASS -- TEST 'control_c384_intel' [13:21, 09:48](1977 MB) -PASS -- TEST 'control_c384gdas_intel' [13:59, 09:52](1323 MB) -PASS -- TEST 'control_stochy_intel' [03:26, 01:48](643 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:45, 01:07](461 MB) -PASS -- TEST 'control_lndp_intel' [03:25, 01:42](641 MB) -PASS -- TEST 'control_iovr4_intel' [04:28, 02:44](642 MB) -PASS -- TEST 'control_iovr5_intel' [04:25, 02:43](636 MB) -PASS -- TEST 'control_p8_intel' [06:12, 03:23](1877 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:12, 03:31](1875 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 03:14](1879 MB) -PASS -- TEST 'control_restart_p8_intel' [04:19, 01:55](1091 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:19, 03:13](1870 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:31, 01:54](1125 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:15, 03:19](1854 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:09, 03:57](1944 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:43, 05:39](1873 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:34, 05:00](1936 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:30](1883 MB) -PASS -- TEST 'merra2_thompson_intel' [06:50, 03:52](1878 MB) -PASS -- TEST 'regional_control_intel' [08:37, 06:33](1106 MB) -PASS -- TEST 'regional_restart_intel' [05:37, 03:33](1088 MB) -PASS -- TEST 'regional_decomp_intel' [08:37, 06:48](1109 MB) -PASS -- TEST 'regional_2threads_intel' [06:32, 04:38](1053 MB) -PASS -- TEST 'regional_noquilt_intel' [08:44, 06:31](1410 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:52, 06:31](1108 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:45, 06:30](1116 MB) -PASS -- TEST 'regional_wofs_intel' [09:40, 07:58](1892 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 12:57] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:24, 08:36](1065 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:00, 05:18](1266 MB) -PASS -- TEST 'rap_decomp_intel' [10:57, 08:46](1014 MB) -PASS -- TEST 'rap_2threads_intel' [12:21, 10:08](1083 MB) -PASS -- TEST 'rap_restart_intel' [07:41, 04:25](1036 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:18, 08:23](1052 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:07, 08:40](1018 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:35, 06:17](1070 MB) -PASS -- TEST 'hrrr_control_intel' [07:13, 04:20](1018 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:04, 04:26](1011 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:24, 05:00](1077 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:49, 02:22](943 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:20, 08:20](1043 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:51](1976 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:25, 09:31](2020 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:23] -PASS -- TEST 'control_csawmg_intel' [08:39, 06:40](1016 MB) -PASS -- TEST 'control_ras_intel' [05:21, 03:28](715 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:48] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:44, 12:47](1647 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 13:12] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:28, 03:15](1871 MB) -PASS -- TEST 'regional_control_faster_intel' [08:39, 06:16](1111 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:36] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:43, 02:30](1612 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:21](1612 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:24, 03:03](817 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:45](818 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:36](1125 MB) -PASS -- TEST 'control_ras_debug_intel' [04:22, 02:52](825 MB) -PASS -- TEST 'control_diag_debug_intel' [04:41, 02:49](1666 MB) -PASS -- TEST 'control_debug_p8_intel' [04:43, 02:49](1906 MB) -PASS -- TEST 'regional_debug_intel' [18:40, 17:05](1090 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 04:52](1207 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:42](1197 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:51](1205 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:52](1196 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:58](1197 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:36, 05:09](1286 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 05:07](1203 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:27, 05:05](1205 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:27, 04:54](1203 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 05:04](1197 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 05:01](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 05:39](1209 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:27, 08:02](1203 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:52](1202 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 04:49](1208 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:02](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:24, 08:26](1209 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:10, 06:08] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:44, 13:26](1672 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:41] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:53, 04:58](1142 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:15, 07:12](1005 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:39, 03:47](925 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:18, 08:38](988 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:36, 04:25](955 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:27, 03:55](888 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:29, 05:25](972 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:59, 02:04](873 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:27] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:59, 02:32](1162 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:54, 01:10](1112 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:47, 01:30](1071 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 12:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:33](964 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:55] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:57](1076 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:45](1076 MB) -PASS -- TEST 'conus13km_debug_intel' [17:50, 15:56](1227 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:40](962 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:38, 13:29](1169 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 13:34](1293 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 06:34] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:05](1136 MB) - -PASS -- COMPILE 'hafsw_intel' [17:11, 15:44] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:21, 05:52](740 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:22](1126 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:29](837 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [31:18, 28:34](842 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:21, 34:17](873 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:01, 07:08](497 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:25, 08:30](510 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:55, 03:30](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:33, 09:38](509 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:57, 04:41](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:01, 04:26](521 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:51, 05:40](569 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:34](404 MB) -PASS -- TEST 'gnv1_nested_intel' [08:09, 04:18](1715 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:10, 07:08] ( 1465 warnings 1445 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:01, 13:13](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:51] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:11, 15:14](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:13, 15:28](722 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 15:02] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:42, 11:12](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:11, 14:19] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:18, 07:29](807 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:15, 07:28](799 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:02, 16:23](1220 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:05] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 03:02](1154 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:55](1102 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:53](1024 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:56](1013 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:57](1011 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:59](1138 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:00](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:55](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:12, 06:34](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:03, 06:27](997 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:59](1153 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:17, 04:22](2455 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:17, 04:24](2442 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:41] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:25](1077 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 07:51] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 03:01](1141 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:20] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 01:01](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:53](328 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:36](322 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:47] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:37](560 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:21](445 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 13:50] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:08, 04:08](1969 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:22] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:02, 05:14](1971 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 14:44] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [07:04, 04:23](1861 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:49, 02:28](1068 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:10, 07:56] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:02, 05:15](1885 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 13:38] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:24, 02:19](1896 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 13:06] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:17, 04:43](1978 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:24](1747 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:01, 05:26](1765 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:31] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:08, 20:34](4494 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:54, 12:48] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:31, 13:47](1102 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [09:10, 07:52] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:07, 07:52](578 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [06:10, 04:54] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [22:03, 19:39](622 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:10, 17:17] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:42, 15:56](2086 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:10, 21:14] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:48, 21:54](1955 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:14, 23:03](2132 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:02, 08:48](1214 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:52, 25:55](1878 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:10, 21:14] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:48, 21:32](1940 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:34] ( 1523 warnings 1943 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:45, 28:27](1947 MB) + +PASS -- COMPILE 's2swa_intel' [19:10, 17:46] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:52, 17:02](2145 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:40, 16:00](2141 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:27, 08:31](1799 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:34, 16:09](2154 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:54, 08:40](1699 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:33, 12:24](2351 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:34, 15:55](2124 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:22, 13:46](2047 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:39, 15:56](2138 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:41, 15:47](2717 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:20, 08:41](2715 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:41, 12:49](3711 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:58, 07:19](3539 MB) + +PASS -- COMPILE 's2swal_intel' [19:10, 17:31] ( 1 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [19:47, 16:57](2102 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [11:52, 08:26](1768 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:23, 08:03](2112 MB) + +PASS -- COMPILE 's2sw_intel' [18:10, 16:29] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:09, 15:23](1978 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:14, 06:55](2050 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:10, 08:29] ( 1413 warnings 1173 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:23, 13:37](2176 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:10, 08:12] ( 1413 warnings 1173 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:10, 07:10](1992 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:57] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:13, 04:51](2029 MB) + +PASS -- COMPILE 's2s_intel' [16:10, 14:36] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:58, 08:40](3037 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:56, 03:01](3021 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:56, 01:58](2477 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:10, 17:28] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:21, 16:26](2141 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:10, 18:18] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:08, 18:55](1993 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:28, 08:55](1224 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:17, 21:21](1924 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:10, 08:20] ( 1523 warnings 1943 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:08, 31:18](1969 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:10, 13:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:45](689 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:46, 02:54](1584 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:51, 02:57](1584 MB) +PASS -- TEST 'control_latlon_intel' [04:42, 02:53](1580 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:52, 02:56](1585 MB) +PASS -- TEST 'control_c48_intel' [10:50, 09:02](1722 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 08:12](835 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:50, 09:04](1706 MB) +PASS -- TEST 'control_c192_intel' [09:57, 08:04](1734 MB) +PASS -- TEST 'control_c384_intel' [12:50, 09:49](1988 MB) +PASS -- TEST 'control_c384gdas_intel' [16:38, 12:11](1334 MB) +PASS -- TEST 'control_stochy_intel' [03:23, 01:52](642 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:55, 01:04](480 MB) +PASS -- TEST 'control_lndp_intel' [03:27, 01:45](643 MB) +PASS -- TEST 'control_iovr4_intel' [04:30, 02:42](635 MB) +PASS -- TEST 'control_iovr5_intel' [04:27, 02:43](639 MB) +PASS -- TEST 'control_p8_intel' [06:11, 03:21](1879 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:13, 03:32](1873 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:24, 03:13](1872 MB) +PASS -- TEST 'control_restart_p8_intel' [04:15, 01:57](1085 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:20, 03:13](1869 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:22, 01:53](1122 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:12, 03:20](1856 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:06, 03:55](1935 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:46, 05:36](1870 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:25, 04:52](1940 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:20, 03:32](1888 MB) +PASS -- TEST 'merra2_thompson_intel' [06:35, 03:52](1868 MB) +PASS -- TEST 'regional_control_intel' [08:37, 06:32](1102 MB) +PASS -- TEST 'regional_restart_intel' [05:41, 03:33](1084 MB) +PASS -- TEST 'regional_decomp_intel' [08:34, 06:52](1101 MB) +PASS -- TEST 'regional_2threads_intel' [06:36, 04:41](1052 MB) +PASS -- TEST 'regional_noquilt_intel' [08:39, 06:34](1404 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:40, 06:32](1101 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:36, 06:38](1111 MB) +PASS -- TEST 'regional_wofs_intel' [09:37, 07:59](1889 MB) + +PASS -- COMPILE 'rrfs_intel' [15:10, 13:19] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:07, 08:28](1057 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:59, 05:14](1264 MB) +PASS -- TEST 'rap_decomp_intel' [10:58, 08:44](1017 MB) +PASS -- TEST 'rap_2threads_intel' [12:15, 10:08](1085 MB) +PASS -- TEST 'rap_restart_intel' [07:25, 04:23](1037 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:02, 08:22](1051 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:55, 08:42](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:27, 06:16](1064 MB) +PASS -- TEST 'hrrr_control_intel' [07:23, 04:24](1021 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:13, 04:25](1009 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:21, 05:00](1079 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:30, 02:20](939 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:15, 08:20](1043 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:55](1976 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 09:33](2011 MB) + +PASS -- COMPILE 'csawmg_intel' [14:10, 13:07] +PASS -- TEST 'control_csawmg_intel' [08:33, 06:37](1016 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:31](715 MB) + +PASS -- COMPILE 'wam_intel' [14:10, 12:50] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:50, 12:46](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:46] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:27, 03:17](1880 MB) +PASS -- TEST 'regional_control_faster_intel' [08:44, 06:14](1106 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:29] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:43, 02:29](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:45, 02:27](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:22, 03:01](812 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:49](815 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:48, 04:18](1132 MB) +PASS -- TEST 'control_ras_debug_intel' [04:26, 02:57](823 MB) +PASS -- TEST 'control_diag_debug_intel' [04:45, 02:51](1671 MB) +PASS -- TEST 'control_debug_p8_intel' [04:37, 02:51](1907 MB) +PASS -- TEST 'regional_debug_intel' [18:39, 16:42](1106 MB) +PASS -- TEST 'rap_control_debug_intel' [06:22, 04:55](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:55](1199 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:52](1206 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:55](1204 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:59](1204 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:30, 05:02](1284 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:07](1203 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:04](1205 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:20, 05:01](1199 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:55](1193 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:52](1202 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:49](1202 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 07:59](1198 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:20, 04:51](1196 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 05:05](1204 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:20, 05:00](1196 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:20, 09:16](1210 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:11, 06:57] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:42, 13:18](1675 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:56, 05:01](1143 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:17, 07:11](995 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:41, 03:47](910 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:11, 08:38](996 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:02, 04:26](956 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:04, 03:56](888 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 05:25](976 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:43, 02:03](865 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 12:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:48, 02:34](1164 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:10](1115 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:28](1063 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 13:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:38, 04:37](973 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:10, 06:30] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:48](1081 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:50](1079 MB) +PASS -- TEST 'conus13km_debug_intel' [15:52, 13:58](1236 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 14:07](931 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:41, 13:29](1167 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 13:42](1296 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:08] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:57](1137 MB) + +PASS -- COMPILE 'hafsw_intel' [17:10, 15:14] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:19, 05:55](740 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:26](1126 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:26, 07:31](812 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:20, 29:25](842 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:23, 34:19](869 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 07:07](496 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:27, 08:27](504 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:53, 03:29](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:30, 09:35](441 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:53, 04:42](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:52, 04:29](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:55, 05:41](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:30, 01:33](400 MB) +PASS -- TEST 'gnv1_nested_intel' [08:08, 04:20](1712 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:15] ( 1465 warnings 1445 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:56, 13:03](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 15:23] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:15, 15:10](634 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:00, 15:13](720 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:12, 15:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:19, 11:06](708 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:10, 14:08] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:14, 07:32](806 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 07:33](790 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:19](1194 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:11, 09:10] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 03:01](1152 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:57](1100 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:52](1023 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 03:00](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:58](1016 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 03:01](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:01](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:54](1009 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:12, 06:33](1026 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:11, 06:31](1009 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 03:02](1158 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:23](2397 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:23](2386 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 05:05] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:32](1081 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:08] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 03:01](1158 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:24] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 01:05](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:56](320 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:39](327 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:45] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:38](560 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:23](447 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 14:07] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:07, 04:10](1970 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:10, 13:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:59, 05:11](1970 MB) + +PASS -- COMPILE 'atml_intel' [15:10, 14:05] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [07:04, 04:29](1854 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:33](1067 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:11, 07:58] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:05, 05:17](1882 MB) + +PASS -- COMPILE 'atmw_intel' [16:11, 14:13] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:23, 02:23](1904 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 13:41] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:17, 04:39](1972 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:15, 05:26](1746 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:00, 05:26](1758 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:10, 06:06] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:04, 20:47](4486 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:11, 12:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:28, 13:48](1108 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [10:10, 08:42] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:12, 07:58](569 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [06:10, 04:32] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [22:10, 19:19](562 MB) SYNOPSIS: -Starting Date/Time: 20250129 20:37:04 -Ending Date/Time: 20250129 22:21:50 -Total Time: 01h:45m:24s +Starting Date/Time: 20250203 18:07:47 +Ending Date/Time: 20250203 19:52:24 +Total Time: 01h:45m:15s Compiles Completed: 46/46 Tests Completed: 192/192 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 01c7d44858..ac3bbbf327 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -a12ae93f30f3ada40a228fa002c6b5b142bdd025 +cf8d8f0ae16e210c8f2deeee26cc24b1ddab6688 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 125a3857b31abdf83a24b1b2a4876a9e3a39f49c FV3 (remotes/origin/hr5) + 2c902a670e89416ef49254c827e8ba45a68ce596 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 14d5e9c93c7c454fd02c240f750e25d9d82fa0ff FV3/ccpp/physics (remotes/origin/hr5) + db19a6d1d7fa7ed56f62318501c4abb5fb8b1138 FV3/ccpp/physics (EP4-1119-gdb19a6d1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -27,7 +27,7 @@ Submodule hashes used in testing: 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - af14207b0b2395a2b4e1e01cdbce51973026228f WW3 (6.07.1-352-gaf14207b) + 5e7dcf04d4180241df1cb2626ca08b1c81db6c51 WW3 (remotes/origin/devufs/addbinaryrestartinit) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -39,241 +39,241 @@ 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-20250129 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_25833 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3114174 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:29, 11:30] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:39, 07:01](3192 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:29, 11:58] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:05, 16:20](1905 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:28, 17:07](1945 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:06, 08:00](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:07, 18:39](1879 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:29, 11:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:22, 15:47](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:21, 05:27] ( 1502 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:10, 26:02](1943 MB) - -PASS -- COMPILE 's2swa_intel' [15:30, 11:52] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:16, 08:46](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:54, 08:47](3221 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:42, 05:10](3155 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:23, 08:49](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:27, 05:27](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [21:56, 17:12](3450 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:23, 08:53](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:36, 07:36](3169 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:55, 08:50](3224 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [38:25, 13:50](4238 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [03:00, 10:05](4373 MB) - -PASS -- COMPILE 's2swal_intel' [14:30, 11:44] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:16, 08:53](3205 MB) - -PASS -- COMPILE 's2sw_intel' [14:29, 10:58] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:54, 05:28](1917 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:18, 07:36](1980 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:27, 10:21] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:21, 05:35](1979 MB) - -PASS -- COMPILE 's2s_intel' [13:28, 10:26] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:50, 06:23](2879 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 02:32](2889 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:55, 01:54](2305 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:35, 16:08] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:44, 09:05](3223 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:45] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:17, 16:06](1922 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:32, 08:13](1105 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:24, 18:51](1891 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:21] ( 1502 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:36, 27:08](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:35] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:47, 04:03](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:19, 02:45](1558 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:24, 02:45](1569 MB) -PASS -- TEST 'control_latlon_intel' [08:12, 02:50](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:25, 02:39](1565 MB) -PASS -- TEST 'control_c48_intel' [11:43, 06:31](1588 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:13, 06:00](710 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:43, 06:34](1585 MB) -PASS -- TEST 'control_c192_intel' [13:37, 07:21](1685 MB) -PASS -- TEST 'control_c384_intel' [19:30, 09:11](1969 MB) -PASS -- TEST 'control_c384gdas_intel' [19:26, 09:35](1168 MB) -PASS -- TEST 'control_stochy_intel' [06:47, 01:54](619 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:43, 01:19](425 MB) -PASS -- TEST 'control_lndp_intel' [06:46, 01:52](617 MB) -PASS -- TEST 'control_iovr4_intel' [06:42, 02:45](619 MB) -PASS -- TEST 'control_iovr5_intel' [06:40, 02:39](619 MB) -PASS -- TEST 'control_p8_intel' [08:40, 03:32](1853 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:44, 03:32](1859 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:39, 03:30](1853 MB) -PASS -- TEST 'control_restart_p8_intel' [08:38, 02:14](1014 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:34, 03:18](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [09:05, 02:10](1020 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:29, 03:19](1858 MB) -PASS -- TEST 'control_2threads_p8_intel' [13:38, 06:46](1937 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:11, 05:27](1855 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:15, 04:37](1911 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:11, 03:43](1859 MB) -PASS -- TEST 'merra2_thompson_intel' [10:17, 03:55](1858 MB) -PASS -- TEST 'regional_control_intel' [10:05, 06:09](897 MB) -PASS -- TEST 'regional_restart_intel' [09:11, 03:41](875 MB) -PASS -- TEST 'regional_decomp_intel' [09:57, 06:23](889 MB) -PASS -- TEST 'regional_2threads_intel' [13:09, 08:16](1015 MB) -PASS -- TEST 'regional_noquilt_intel' [09:13, 06:00](1220 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:07, 06:16](889 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:58, 05:49](881 MB) -PASS -- TEST 'regional_wofs_intel' [10:58, 07:14](1584 MB) - -PASS -- COMPILE 'rrfs_intel' [11:25, 08:52] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [13:31, 07:27](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:42, 04:56](1159 MB) -PASS -- TEST 'rap_decomp_intel' [13:09, 07:41](1000 MB) -PASS -- TEST 'rap_2threads_intel' [22:04, 16:06](1077 MB) -PASS -- TEST 'rap_restart_intel' [12:23, 03:56](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:38, 07:32](1002 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:27, 07:38](993 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [13:57, 05:36](884 MB) -PASS -- TEST 'hrrr_control_intel' [10:11, 04:05](993 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:29, 04:02](992 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [14:52, 08:22](1070 MB) -PASS -- TEST 'hrrr_control_restart_intel' [09:53, 02:21](828 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:57, 07:21](990 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:50, 09:39](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:49, 09:29](1946 MB) - -PASS -- COMPILE 'csawmg_intel' [10:26, 08:10] -PASS -- TEST 'control_csawmg_intel' [13:23, 07:35](956 MB) -PASS -- TEST 'control_ras_intel' [09:40, 03:29](654 MB) - -PASS -- COMPILE 'wam_intel' [10:25, 08:23] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [18:28, 12:05](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:32] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [11:51, 03:24](1857 MB) -PASS -- TEST 'regional_control_faster_intel' [14:10, 05:32](889 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:25, 07:46] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:18, 03:03](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:25, 02:46](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [11:43, 03:40](807 MB) -PASS -- TEST 'control_lndp_debug_intel' [11:55, 03:22](802 MB) -PASS -- TEST 'control_csawmg_debug_intel' [13:20, 05:23](1106 MB) -PASS -- TEST 'control_ras_debug_intel' [10:50, 03:27](811 MB) -PASS -- TEST 'control_diag_debug_intel' [11:28, 03:26](1659 MB) -PASS -- TEST 'control_debug_p8_intel' [11:08, 03:32](1889 MB) -PASS -- TEST 'regional_debug_intel' [26:28, 19:03](940 MB) -PASS -- TEST 'rap_control_debug_intel' [12:54, 05:51](1184 MB) -PASS -- TEST 'hrrr_control_debug_intel' [11:49, 05:34](1185 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [12:49, 05:46](1183 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [11:41, 05:43](1183 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [12:41, 05:46](1187 MB) -PASS -- TEST 'rap_diag_debug_intel' [15:08, 06:03](1275 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:52, 06:02](1188 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:51, 05:48](1187 MB) -PASS -- TEST 'rap_lndp_debug_intel' [13:43, 05:48](1188 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:45, 05:43](1187 MB) -PASS -- TEST 'rap_noah_debug_intel' [13:44, 05:39](1188 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:47, 05:39](1186 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:50, 09:02](1187 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [13:45, 05:45](1180 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [13:49, 05:51](1185 MB) -PASS -- TEST 'rap_flake_debug_intel' [13:48, 05:48](1183 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:11, 09:45](1190 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:34] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:23, 14:31](1683 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:27, 08:12] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:32, 04:25](1035 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:40, 06:07](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:38, 03:38](878 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:01, 14:05](926 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [19:42, 07:12](921 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [15:29, 03:42](873 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:47, 04:56](791 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [13:49, 02:13](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:27, 08:17] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [13:33, 02:27](1079 MB) -PASS -- TEST 'conus13km_2threads_intel' [14:25, 02:20](1061 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [16:12, 01:34](957 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:26, 08:17] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:16, 04:17](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:24, 04:38] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:51, 05:27](1062 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:54, 05:32](1066 MB) -PASS -- TEST 'conus13km_debug_intel' [25:34, 15:09](1151 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [25:44, 15:22](824 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [33:48, 23:21](1145 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:31, 15:01](1219 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:24, 04:26] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:52, 05:31](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [13:41, 09:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [18:11, 07:23](691 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [21:04, 08:06](1052 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [22:27, 08:38](771 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:06, 14:09](772 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:41, 15:13](789 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [18:35, 06:29](468 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [22:29, 08:17](481 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [17:46, 04:16](380 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [32:36, 09:34](435 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [16:23, 05:11](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:32, 04:47](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [21:01, 05:44](564 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:55, 02:30](406 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:24, 04:52] ( 1446 warnings 1444 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [31:00, 15:25](610 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:40, 09:42] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:48, 08:48](608 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:53, 08:42](784 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:39, 09:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [22:08, 07:10](778 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:39, 09:05] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [23:18, 08:14](724 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [23:15, 08:17](707 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:22, 16:15](893 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:28, 10:09] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [17:39, 04:31](1915 MB) - -PASS -- COMPILE 'atml_intel' [12:37, 09:56] ( 9 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [08:27, 05:50] ( 872 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [12:32, 08:39] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [17:50, 04:47](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [17:27, 05:11](2996 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [17:15, 05:31](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:26, 04:27] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [35:30, 23:27](4475 MB) +PASS -- COMPILE 's2swa_32bit_intel' [28:47, 27:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:28, 06:59](3193 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [29:49, 28:11] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:28, 15:56](1905 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:48, 16:45](1954 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:37, 08:00](1066 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:37, 18:26](1879 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:44, 23:32] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:20, 15:33](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:23, 05:22] ( 1502 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:38, 25:51](1944 MB) + +PASS -- COMPILE 's2swa_intel' [13:30, 11:30] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:53, 08:27](3223 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:18, 08:25](3220 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:18, 04:56](3154 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:46, 08:31](3242 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:26, 05:03](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:20, 16:59](3447 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:38, 08:21](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:08, 06:57](3169 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:16, 08:34](3222 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:30, 13:28](4237 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:13, 09:33](4374 MB) + +PASS -- COMPILE 's2swal_intel' [13:28, 11:41] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:04, 08:33](3203 MB) + +PASS -- COMPILE 's2sw_intel' [13:27, 11:22] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 04:59](1918 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:11, 07:21](1980 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [24:43, 22:28] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:08, 05:12](1979 MB) + +PASS -- COMPILE 's2s_intel' [17:35, 15:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:38, 06:05](2881 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:36, 02:15](2888 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:35, 01:40](2293 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:34, 15:21] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:21, 08:28](3221 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:34, 15:26] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:08, 15:40](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:16, 07:49](1084 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:08, 18:13](1891 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:31, 15:27] ( 1502 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:09, 26:53](1973 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [23:38, 21:41] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:46, 04:07](665 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:03, 02:41](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:08, 02:53](1567 MB) +PASS -- TEST 'control_latlon_intel' [04:58, 02:48](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:12, 02:48](1564 MB) +PASS -- TEST 'control_c48_intel' [09:27, 06:33](1586 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:08, 05:55](710 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:27, 06:31](1589 MB) +PASS -- TEST 'control_c192_intel' [10:19, 07:16](1685 MB) +PASS -- TEST 'control_c384_intel' [13:49, 09:01](1974 MB) +PASS -- TEST 'control_c384gdas_intel' [15:02, 09:17](1169 MB) +PASS -- TEST 'control_stochy_intel' [04:36, 01:58](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:38, 01:19](424 MB) +PASS -- TEST 'control_lndp_intel' [04:36, 01:59](618 MB) +PASS -- TEST 'control_iovr4_intel' [04:39, 02:50](613 MB) +PASS -- TEST 'control_iovr5_intel' [04:39, 02:44](613 MB) +PASS -- TEST 'control_p8_intel' [07:02, 03:09](1865 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:36, 03:19](1851 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:36, 03:07](1853 MB) +PASS -- TEST 'control_restart_p8_intel' [05:42, 02:03](1008 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:02, 03:19](1846 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:42, 02:01](1021 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:02, 03:16](1858 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:17, 06:16](1932 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:02, 05:09](1863 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:41, 04:28](1904 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:24, 03:39](1860 MB) +PASS -- TEST 'merra2_thompson_intel' [08:31, 03:59](1856 MB) +PASS -- TEST 'regional_control_intel' [07:59, 05:36](889 MB) +PASS -- TEST 'regional_restart_intel' [06:06, 03:18](877 MB) +PASS -- TEST 'regional_decomp_intel' [09:00, 06:00](888 MB) +PASS -- TEST 'regional_2threads_intel' [11:02, 07:58](1018 MB) +PASS -- TEST 'regional_noquilt_intel' [07:58, 05:32](1225 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:04, 05:28](889 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:51, 05:34](890 MB) +PASS -- TEST 'regional_wofs_intel' [09:58, 07:11](1585 MB) + +PASS -- COMPILE 'rrfs_intel' [27:45, 25:49] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [11:33, 07:26](1001 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:29, 04:43](1158 MB) +PASS -- TEST 'rap_decomp_intel' [10:55, 07:42](999 MB) +PASS -- TEST 'rap_2threads_intel' [20:43, 16:04](1081 MB) +PASS -- TEST 'rap_restart_intel' [07:34, 03:57](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:34, 07:29](998 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:51, 07:40](998 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:40, 05:34](884 MB) +PASS -- TEST 'hrrr_control_intel' [08:32, 04:01](994 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:32, 04:05](994 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:42, 08:07](1067 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:46, 02:12](828 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:28, 07:25](990 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:41, 09:44](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:44, 09:28](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [14:28, 13:09] +PASS -- TEST 'control_csawmg_intel' [10:06, 07:01](955 MB) +PASS -- TEST 'control_ras_intel' [05:37, 03:40](653 MB) + +PASS -- COMPILE 'wam_intel' [22:39, 20:52] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:25, 12:04](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:29, 11:21] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:43, 03:21](1857 MB) +PASS -- TEST 'regional_control_faster_intel' [08:00, 05:10](877 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [18:33, 16:38] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:03, 03:01](1598 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:14, 02:47](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:38, 03:42](804 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:38, 03:20](806 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:14, 04:54](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [05:42, 03:17](810 MB) +PASS -- TEST 'control_diag_debug_intel' [06:14, 03:14](1661 MB) +PASS -- TEST 'control_debug_p8_intel' [05:57, 03:14](1890 MB) +PASS -- TEST 'regional_debug_intel' [21:12, 18:46](926 MB) +PASS -- TEST 'rap_control_debug_intel' [07:42, 05:49](1183 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:39, 05:37](1180 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:37, 05:50](1182 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:39, 05:53](1185 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:35, 05:43](1183 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:48, 05:53](1271 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 05:51](1188 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:34, 05:47](1187 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:45, 05:49](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:36, 05:40](1184 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:34, 05:36](1185 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 05:50](1184 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:41, 08:55](1184 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:34, 05:41](1179 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:38, 05:47](1186 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:36, 05:44](1184 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 09:29](1186 MB) + +PASS -- COMPILE 'wam_debug_intel' [16:32, 14:28] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:19, 14:18](1682 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:34, 17:10] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:30, 04:27](1033 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:25, 06:14](879 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:24, 03:31](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:28, 13:54](931 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:23, 07:17](924 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:58, 03:38](872 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:46, 04:32](792 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:36, 02:04](761 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:33, 17:15] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:18, 02:16](1079 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:05, 02:08](1055 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:00, 01:27](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:25, 09:33] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:58, 04:27](899 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:25, 09:35] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:34, 05:44](1065 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:35, 05:26](1066 MB) +PASS -- TEST 'conus13km_debug_intel' [18:23, 15:04](1151 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:18, 15:09](825 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:20, 23:20](1129 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:13, 15:12](1218 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:29, 13:00] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 05:27](1089 MB) + +PASS -- COMPILE 'hafsw_intel' [14:30, 12:07] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:53, 06:24](688 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:47, 08:08](1048 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:13, 07:58](730 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:52, 13:11](768 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:07, 14:29](789 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:21, 06:11](469 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:49, 07:35](482 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:22, 03:20](379 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:57, 09:02](438 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:11, 04:22](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:08, 04:04](495 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:25, 05:14](561 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:43, 02:07](410 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:32, 11:28] ( 1446 warnings 1444 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:21, 14:40](607 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:39, 18:41] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:23, 08:28](605 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:35, 08:30](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:39, 19:33] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:46, 06:56](781 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:44, 15:42] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:47, 07:26](721 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:42, 07:25](707 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:38, 16:08](894 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:30, 14:13] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:45, 04:04](1916 MB) + +PASS -- COMPILE 'atml_intel' [14:34, 12:45] ( 9 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [11:29, 09:45] ( 872 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [18:35, 16:49] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:11, 04:39](3117 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:04, 05:20](2995 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:49, 05:12](3006 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:25, 09:56] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:03, 22:43](4491 MB) SYNOPSIS: -Starting Date/Time: 20250131 17:48:22 -Ending Date/Time: 20250131 19:55:51 -Total Time: 02h:08m:30s +Starting Date/Time: 20250204 20:02:02 +Ending Date/Time: 20250204 21:45:56 +Total Time: 01h:44m:41s Compiles Completed: 34/34 Tests Completed: 157/157 diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index b3ae2bde9e..832ab92a77 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -263,6 +263,19 @@ iau_filter_increments = @[IAU_FILTER_INCREMENTS] / +&land_iau_nml + do_land_iau = @[DO_LAND_IAU] + land_iau_fhrs = @[LAND_IAU_FHRS] + land_iau_delthrs = @[LAND_IAU_DELHRS] + land_iau_inc_files = @[LAND_IAU_INC_FILES] + lsoil_incr = @[LSOIL_INCR] + land_iau_filter_increments = @[LAND_IAU_FILTER_INC] + land_iau_upd_stc = @[LAND_IAU_UPD_STC] + land_iau_upd_slc = @[LAND_IAU_UPD_SLC] + land_iau_do_stcsmc_adjustment = @[LAND_IAU_DP_STCSMC_ADJ] + land_iau_min_T_increment = @[LAND_IAU_MIN_T_INC] +/ + &cires_ugwp_nml knob_ugwp_solver = @[KNOB_UGWP_SOLVER] knob_ugwp_source = @[KNOB_UGWP_SOURCE] diff --git a/tests/parm/global_control_lnd_iau.nml.IN b/tests/parm/global_control_lnd_iau.nml.IN deleted file mode 100644 index c781e0d6b3..0000000000 --- a/tests/parm/global_control_lnd_iau.nml.IN +++ /dev/null @@ -1,412 +0,0 @@ -&atmos_model_nml - blocksize = @[BLOCKSIZE] - chksum_debug = @[CHKSUM_DEBUG] - dycore_only = @[DYCORE_ONLY] - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. - max_output_fields = @[MAX_OUTPUT_FIELDS] -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = @[DOMAINS_STACK_SIZE] - print_memory_usage = .false. -/ - -&fms2_io_nml - netcdf_default_format = 'netcdf4' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = @[IO_LAYOUT] - npx = @[NPX] - npy = @[NPY] - ntiles = @[NTILES] - npz = @[NPZ] - dz_min = @[DZ_MIN] - psm_bc = @[PSM_BC] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .true. - reset_eta = .false. - n_sponge = @[N_SPONGE] - nudge_qv = @[NUDGE_QV] - nudge_dz = @[NUDGE_DZ] - tau = @[TAU] - fast_tau_w_sec = @[FAST_TAU_W_SEC] - rf_cutoff = @[RF_CUTOFF] - d2_bg_k1 = @[D2_BG_K1] - d2_bg_k2 = @[D2_BG_K2] - kord_tm = @[KORD_TM] - kord_mt = @[KORD_MT] - kord_wz = @[KORD_WZ] - kord_tr = @[KORD_TR] - hydrostatic = @[HYDROSTATIC] - phys_hydrostatic = @[PHYS_HYDROSTATIC] - use_hydro_pressure = @[USE_HYDRO_PRESSURE] - pass_full_omega_to_physics_in_non_hydrostatic_mode = @[UPDATE_FULL_OMEGA] - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = @[K_SPLIT] - n_split = @[N_SPLIT] - nwat = @[NWAT] - na_init = @[NA_INIT] - d_ext = 0. - dnats = @[DNATS] - fv_sg_adj = @[FV_SG_ADJ] - d2_bg = 0. - nord = @[NORD] - dddmp = @[DDDMP] - d4_bg = @[D4_BG] - vtdm4 = @[VTDM4] - delt_max = @[DELT_MAX] - ke_bg = 0. - do_vort_damp = @[DO_VORT_DAMP] - external_ic = @[EXTERNAL_IC] - external_eta = @[EXTERNAL_ETA] - gfs_phil = @[GFS_PHIL] - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = @[NCEP_IC] - d_con = @[D_CON] - hord_mt = @[HORD_MT] - hord_vt = @[HORD_VT] - hord_tm = @[HORD_TM] - hord_dp = @[HORD_DP] - hord_tr = @[HORD_TR] - adjust_dry_mass = @[ADJUST_DRY_MASS] - dry_mass = @[DRY_MASS] - consv_te = @[CONSV_TE] - do_sat_adj = @[DO_SAT_ADJ] - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = @[PRINT_FREQ] - warm_start = @[WARM_START] - no_dycore = @[NO_DYCORE] - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = @[RES_LATLON_DYNAMICS] - increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] -/ - -&external_ic_nml - filtered_terrain = @[FILTERED_TERRAIN] - levp = @[NPZP] - gfs_dwinds = @[GFS_DWINDS] - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = @[FHZERO] - h2o_phys = .true. - ldiag3d = @[LDIAG3D] - qdiag3d = @[QDIAG3D] - print_diff_pgr = @[PRINT_DIFF_PGR] - fhcyc = @[FHCYC] - use_ufo = @[USE_UFO] - pre_rad = @[PRE_RAD] - imp_physics = @[IMP_PHYSICS] - iovr = @[IOVR] - ltaerosol = @[LTAEROSOL] - lradar = @[LRADAR] - ttendlim = @[TTENDLIM] - dt_inner = @[DT_INNER] - sedi_semi = @[SEDI_SEMI] - decfl = @[DECFL] - oz_phys = @[OZ_PHYS_NEW] - oz_phys_2015 = @[OZ_PHYS_OLD] - lsoil_lsm = @[LSOIL_LSM] - do_mynnedmf = @[DO_MYNNEDMF] - do_mynnsfclay = @[DO_MYNNSFCLAY] - icloud_bl = @[ICLOUD_BL] - bl_mynn_edmf = @[BL_MYNN_EDMF] - bl_mynn_tkeadvect = @[BL_MYNN_TKEADVECT] - bl_mynn_edmf_mom = @[BL_MYNN_EDMF_MOM] - do_ugwp = @[DO_UGWP] - do_tofd = @[DO_TOFD] - gwd_opt = @[GWD_OPT] - do_ugwp_v0 = @[DO_UGWP_V0] - do_ugwp_v1 = @[DO_UGWP_V1] - do_ugwp_v0_orog_only = @[DO_UGWP_V0_OROG_ONLY] - do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] - do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] - do_gsl_drag_ss = @[DO_GSL_DRAG_SS] - do_gwd_opt_psl = @[DO_GWD_OPT_PSL] - psl_gwd_dx_factor = @[PSL_GWD_DX_FACTOR] - do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] - do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] - min_lakeice = @[MIN_LAKEICE] - min_seaice = @[MIN_SEAICE] - use_cice_alb = @[USE_CICE_ALB] - pdfcld = @[PDFCLD] - fhswr = @[FHSWR] - fhlwr = @[FHLWR] - ialb = @[IALB] - iems = @[IEMS] - iaer = @[IAER] - icliq_sw = @[ICLIQ_SW] - ico2 = @[ICO2] - isubc_sw = @[ISUBC_SW] - isubc_lw = @[ISUBC_LW] - isol = @[ISOL] - lwhtr = @[LWHTR] - swhtr = @[SWHTR] - cnvgwd = @[CNVGWD] - shal_cnv = @[SHAL_CNV] - cal_pre = @[CAL_PRE] - redrag = @[REDRAG] - dspheat = @[DSPHEAT] - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - isatmedmf = @[ISATMEDMF] - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = @[RANDOM_CLDS] - trans_trac = @[TRANS_TRAC] - cnvcld = @[CNVCLD] - imfshalcnv = @[IMFSHALCNV] - imfdeepcnv = @[IMFDEEPCNV] - progsigma = @[PROGSIGMA] - betascu = @[BETASCU] - betamcu = @[BETAMCU] - betadcu = @[BETADCU] - ras = @[RAS] - cdmbgwd = @[CDMBWD] - prslrd0 = @[PRSLRD0] - ivegsrc = @[IVEGSRC] - isot = @[ISOT] - lsoil = @[LSOIL] - lsm = @[LSM] - iopt_dveg = @[IOPT_DVEG] - iopt_crs = @[IOPT_CRS] - iopt_btr = @[IOPT_BTR] - iopt_run = @[IOPT_RUN] - iopt_sfc = @[IOPT_SFC] - iopt_trs = @[IOPT_TRS] - iopt_diag = @[IOPT_DIAG] - iopt_frz = @[IOPT_FRZ] - iopt_inf = @[IOPT_INF] - iopt_rad = @[IOPT_RAD] - iopt_alb = @[IOPT_ALB] - iopt_snf = @[IOPT_SNF] - iopt_tbot = @[IOPT_TBOT] - iopt_stc = @[IOPT_STC] - debug = @[DEBUG] - nstf_name = @[NSTF_NAME] - nst_anl = @[NST_ANL] - psautco = @[PSAUTCO] - prautco = @[PRAUTCO] - lgfdlmprad = @[LGFDLMPRAD] - effr_in = @[EFFR_IN] - ldiag_ugwp = @[LDIAG_UGWP] - fscav_aero = @[FSCAV_AERO] - do_RRTMGP = @[DO_RRTMGP] - active_gases = @[ACTIVE_GASES] - ngases = @[NGASES] - lw_file_gas = @[LW_FILE_GAS] - lw_file_clouds = @[LW_FILE_CLOUDS] - sw_file_gas = @[SW_FILE_GAS] - sw_file_clouds = @[SW_FILE_CLOUDS] - rrtmgp_nGptsSW = @[RRTMGP_NGPTSSW] - rrtmgp_nGptsLW = @[RRTMGP_NGPTSLW] - rrtmgp_nBandsLW = @[RRTMGP_NBANDSLW] - rrtmgp_nBandsSW = @[RRTMGP_NBANDSSW] - doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] - doGP_lwscat = @[DOGP_LWSCAT] - doGP_sgs_cnv = @[DOGP_SGS_CNV] - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - iaufhrs = @[IAUFHRS] - iau_delthrs = @[IAU_DELTHRS] - iau_inc_files= @[IAU_INC_FILES] - iau_drymassfixer = .false. - use_med_flux = @[USE_MED_FLUX] - frac_grid = @[FRAC_GRID] - cplchm = @[CPLCHM] - cplflx = @[CPLFLX] - cplice = @[CPLICE] - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - cpllnd = @[CPLLND] - cpllnd2atm = @[CPLLND2ATM] - do_ca = @[DO_CA] - ca_global = @[CA_GLOBAL] - ca_sgs = @[CA_SGS] - nca = @[NCA] - ncells = @[NCELLS] - nlives = @[NLIVES] - nseed = @[NSEED] - nfracseed = @[NFRACSEED] - nthresh = @[NTHRESH] - ca_trigger = @[CA_TRIGGER] - nspinup = @[NSPINUP] - iseed_ca = @[ISEED_CA] -/ - -&land_iau_nml - do_land_iau=.true. - land_iau_fhrs=3,6,9 - land_iau_delthrs=6 - land_iau_inc_files='sfc_inc','' - lsoil_incr=3 - land_iau_filter_increments=.false. - land_iau_upd_stc=.true. - land_iau_upd_slc=.true. - land_iau_do_stcsmc_adjustment=.true. - land_iau_min_T_increment=0.0001 -/ - -&cires_ugwp_nml - knob_ugwp_solver = @[KNOB_UGWP_SOLVER] - knob_ugwp_source = @[KNOB_UGWP_SOURCE] - knob_ugwp_wvspec = @[KNOB_UGWP_WVSPEC] - knob_ugwp_azdir = @[KNOB_UGWP_AZDIR] - knob_ugwp_stoch = @[KNOB_UGWP_STOCH] - knob_ugwp_effac = @[KNOB_UGWP_EFFAC] - knob_ugwp_doaxyz = @[KNOB_UGWP_DOAXYZ] - knob_ugwp_doheat = @[KNOB_UGWP_DOHEAT] - knob_ugwp_dokdis = @[KNOB_UGWP_DOKDIS] - knob_ugwp_ndx4lh = @[KNOB_UGWP_NDX4LH] - knob_ugwp_version = @[KNOB_UGWP_VERSION] - ! This is only for UGWP v0 -@[HIDE_UGWPV0] launch_level = @[LAUNCH_LEVEL] - ! These are only for UGWP v1 -@[HIDE_UGWPV1] knob_ugwp_palaunch = @[KNOB_UGWP_PALAUNCH] -@[HIDE_UGWPV1] knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] -@[HIDE_UGWPV1] knob_ugwp_lzmax = @[KNOB_UGWP_LZMAX] -@[HIDE_UGWPV1] knob_ugwp_lzmin = @[KNOB_UGWP_LZMIN] -@[HIDE_UGWPV1] knob_ugwp_lzstar = @[KNOB_UGWP_LZSTAR] -@[HIDE_UGWPV1] knob_ugwp_taumin = @[KNOB_UGWP_TAUMIN] -@[HIDE_UGWPV1] knob_ugwp_tauamp = @[KNOB_UGWP_TAUAMP] -@[HIDE_UGWPV1] knob_ugwp_lhmet = @[KNOB_UGWP_LHMET] -@[HIDE_UGWPV1] knob_ugwp_orosolv = @[KNOB_UGWP_OROSOLV] -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0e-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = @[REIFLAG] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = @[FNGLAC] - FNMXIC = @[FNMXIC] - FNTSFC = @[FNTSFC] - FNSNOC = @[FNSNOC] - FNZORC = @[FNZORC] - FNALBC = @[FNALBC] - FNALBC2 = @[FNALBC2] - FNAISC = @[FNAISC] - FNTG3C = @[FNTG3C] - FNVEGC = @[FNVEGC] - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSOCC = @[FNSOCC] - FNSMCC = @[FNSMCC] - FNMSKH = @[FNMSKH] - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = @[FNVMNC] - FNVMXC = @[FNVMXC] - FNSLPC = @[FNSLPC] - FNABSC = @[FNABSC] - LDEBUG = @[LDEBUG] - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = @[LANDICE] - FTSFS = @[FTSFS] - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = @[FSICL] - FSICS = @[FSICS] - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - lndp_model_type = @[LNDP_MODEL_TYPE] - LNDP_TAU=@[LNDP_TAU] - LNDP_LSCALE=@[LNDP_LSCALE] - ISEED_LNDP=@[ISEED_LNDP] - lndp_var_list = @[LNDP_VAR_LIST] - lndp_prt_list = @[LNDP_PRT_LIST] -/ - -&MOM_input_nml - output_directory = '@[MOM6_OUTPUT_DIR]', - input_filename = '@[MOM6_RESTART_SETTING]' - restart_input_dir = 'INPUT/', - restart_output_dir = '@[MOM6_RESTART_DIR]' - parameter_filename = 'INPUT/MOM_input','INPUT/MOM_override'/ diff --git a/tests/test_changes.list b/tests/test_changes.list index daaa30f295..e69de29bb2 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,234 +0,0 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 intel -cpld_control_sfs intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_control_c192_p8 intel -cpld_restart_c192_p8 intel -cpld_bmark_p8 intel -cpld_restart_bmark_p8 intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_noaero_p8_agrid intel -cpld_control_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -control_flake intel -control_CubedSphereGrid intel -control_CubedSphereGrid_parallel intel -control_latlon intel -control_wrtGauss_netcdf_parallel intel -control_c48 intel -control_c48.v2.sfc intel -control_c48_lnd_iau intel -control_c192 intel -control_c384 intel -control_c384gdas intel -control_stochy intel -control_stochy_restart intel -control_lndp intel -control_iovr4 intel -control_iovr5 intel -control_p8 intel -control_p8.v2.sfc intel -control_p8_ugwpv1 intel -control_restart_p8 intel -control_noqr_p8 intel -control_restart_noqr_p8 intel -control_decomp_p8 intel -control_2threads_p8 intel -control_p8_lndp intel -control_p8_rrtmgp intel -control_p8_mynn intel -merra2_thompson intel -regional_control intel -regional_restart intel -regional_decomp intel -regional_2threads intel -regional_noquilt intel -regional_netcdf_parallel intel -regional_2dwrtdecomp intel -regional_wofs intel -rap_control intel -regional_spp_sppt_shum_skeb intel -rap_decomp intel -rap_2threads intel -rap_restart intel -rap_sfcdiff intel -rap_sfcdiff_decomp intel -rap_sfcdiff_restart intel -hrrr_control intel -hrrr_control_decomp intel -hrrr_control_2threads intel -hrrr_control_restart intel -rrfs_v1beta intel -rrfs_v1nssl intel -rrfs_v1nssl_nohailnoccn intel -control_csawmg intel -control_ras intel -control_wam intel -control_p8_faster intel -regional_control_faster intel -control_CubedSphereGrid_debug intel -control_wrtGauss_netcdf_parallel_debug intel -control_stochy_debug intel -control_lndp_debug intel -control_csawmg_debug intel -control_ras_debug intel -control_diag_debug intel -control_debug_p8 intel -regional_debug intel -rap_control_debug intel -hrrr_control_debug intel -hrrr_gf_debug intel -hrrr_c3_debug intel -rap_unified_drag_suite_debug intel -rap_diag_debug intel -rap_cires_ugwp_debug intel -rap_unified_ugwp_debug intel -rap_lndp_debug intel -rap_progcld_thompson_debug intel -rap_noah_debug intel -rap_sfcdiff_debug intel -rap_noah_sfcdiff_cires_ugwp_debug intel -rrfs_v1beta_debug intel -rap_clm_lake_debug intel -rap_flake_debug intel -gnv1_c96_no_nest_debug intel -control_csawmg_debug gnu -control_wam_debug intel -regional_spp_sppt_shum_skeb_dyn32_phy32 intel -rap_control_dyn32_phy32 intel -hrrr_control_dyn32_phy32 intel -rap_2threads_dyn32_phy32 intel -hrrr_control_2threads_dyn32_phy32 intel -hrrr_control_decomp_dyn32_phy32 intel -rap_restart_dyn32_phy32 intel -hrrr_control_restart_dyn32_phy32 intel -conus13km_control intel -conus13km_2threads intel -conus13km_restart_mismatch intel -rap_control_dyn64_phy32 intel -rap_control_debug_dyn32_phy32 intel -hrrr_control_debug_dyn32_phy32 intel -conus13km_debug intel -conus13km_debug_qr intel -conus13km_debug_2threads intel -conus13km_radar_tten_debug intel -rap_control_dyn64_phy32_debug intel -hafs_regional_atm intel -hafs_regional_atm_thompson_gfdlsf intel -hafs_regional_atm_ocn intel -hafs_regional_atm_wav intel -hafs_regional_atm_ocn_wav intel -hafs_regional_1nest_atm intel -hafs_regional_telescopic_2nests_atm intel -hafs_global_1nest_atm intel -hafs_global_multiple_4nests_atm intel -hafs_regional_specified_moving_1nest_atm intel -hafs_regional_storm_following_1nest_atm intel -hafs_regional_storm_following_1nest_atm_ocn intel -hafs_global_storm_following_1nest_atm intel -gnv1_nested intel -hafs_regional_storm_following_1nest_atm_ocn_debug intel -hafs_regional_storm_following_1nest_atm_ocn_wav intel -hafs_regional_storm_following_1nest_atm_ocn_wav_inline intel -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel -hafs_regional_docn intel -hafs_regional_docn_oisst intel -atm_ds2s_docn_pcice intel -atm_ds2s_docn_dice intel -control_p8_atmlnd_sbs intel -control_p8_atmlnd intel -control_restart_p8_atmlnd intel -control_p8_atmlnd_debug intel -atmwav_control_noaero_p8 intel -atmaero_control_p8 intel -atmaero_control_p8_rad intel -atmaero_control_p8_rad_micro intel -cpld_regional_atm_fbh intel -cpld_control_p8_lnd intel -cpld_restart_p8_lnd intel -regional_atmaq_debug intel -cpld_control_gfsv17 intelllvm -cpld_debug_gfsv17 intelllvm -cpld_control_sfs intelllvm -cpld_control_p8 intelllvm -rap_control_dyn32_phy32 intelllvm -rap_control_dyn64_phy32 intelllvm -control_c48 gnu -control_stochy gnu -control_ras gnu -control_p8 gnu -control_p8_ugwpv1 gnu -control_flake gnu -rap_control gnu -rap_decomp gnu -rap_2threads gnu -rap_restart gnu -rap_sfcdiff gnu -rap_sfcdiff_decomp gnu -rap_sfcdiff_restart gnu -hrrr_control gnu -hrrr_control_noqr gnu -hrrr_control_2threads gnu -hrrr_control_decomp gnu -hrrr_control_restart gnu -hrrr_control_restart_noqr gnu -rrfs_v1beta gnu -control_csawmg gnu -control_diag_debug gnu -regional_debug gnu -rap_control_debug gnu -hrrr_control_debug gnu -hrrr_gf_debug gnu -hrrr_c3_debug gnu -rap_diag_debug gnu -rap_noah_sfcdiff_cires_ugwp_debug gnu -rap_progcld_thompson_debug gnu -rrfs_v1beta_debug gnu -control_ras_debug gnu -control_stochy_debug gnu -control_debug_p8 gnu -rap_flake_debug gnu -rap_clm_lake_debug gnu -gnv1_c96_no_nest_debug gnu -rap_control_dyn32_phy32 gnu -hrrr_control_dyn32_phy32 gnu -rap_2threads_dyn32_phy32 gnu -hrrr_control_2threads_dyn32_phy32 gnu -hrrr_control_decomp_dyn32_phy32 gnu -rap_restart_dyn32_phy32 gnu -hrrr_control_restart_dyn32_phy32 gnu -conus13km_control gnu -conus13km_2threads gnu -conus13km_restart_mismatch gnu -rap_control_dyn64_phy32 gnu -rap_control_debug_dyn32_phy32 gnu -hrrr_control_debug_dyn32_phy32 gnu -conus13km_debug gnu -conus13km_debug_qr gnu -conus13km_debug_2threads gnu -conus13km_radar_tten_debug gnu -rap_control_dyn64_phy32_debug gnu -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu diff --git a/tests/tests/control_c48_lnd_iau b/tests/tests/control_c48_lnd_iau index 9852b68dbd..e96a0a1c2c 100644 --- a/tests/tests/control_c48_lnd_iau +++ b/tests/tests/control_c48_lnd_iau @@ -75,7 +75,8 @@ export IOVR=3 export IMO=192 export JMO=94 -export PERT_CLDS=.true. +export DO_LAND_IAU=.true. +export XR_CNVCLD=.true. export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" export FNMSKH_control="'global_slmask.t62.192.94.grb'" @@ -83,4 +84,4 @@ export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FV3_RUN=control_run.IN -export INPUT_NML=global_control_lnd_iau.nml.IN +export INPUT_NML=global_control.nml.IN