diff --git a/.gitmodules b/.gitmodules index 005c04c6f8..7090d46977 100644 --- a/.gitmodules +++ b/.gitmodules @@ -48,6 +48,10 @@ path = NOAHMP-interface/noahmp url = https://github.com/NOAA-EMC/noahmp branch = develop +[submodule "LM4-driver"] + path = LM4-driver + url = https://github.com/NOAA-GFDL/LM4-NUOPC-driver + branch = develop [submodule "fire_behavior"] path = fire_behavior url = https://github.com/NOAA-EMC/fire_behavior diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index dc977bcadd..24e9eed4ff 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a +Subproject commit 24e9eed4ffe8138bef635c8f916f91b142595675 diff --git a/CMakeLists.txt b/CMakeLists.txt index 042b9cf9ec..702cf6a459 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 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 S2SA S2SW S2SWA S2SWAL ATM_DS2S ATM_DS2S-PCICE HAFS HAFSW HAFS-MOM6 HAFS-MOM6W HAFS-ALL NG-GODAS) set(APP NONE CACHE BOOL "Application Name") if(NOT (APP IN_LIST VALID_APPS)) message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") @@ -29,6 +29,7 @@ set(UFS_GOCART OFF CACHE BOOL "Enable GOCART") set(MOM6 OFF CACHE BOOL "Enable MOM6") set(HYCOM OFF CACHE BOOL "Enable HYCOM") set(CICE6 OFF CACHE BOOL "Enable CICE6") +set(LM4 OFF CACHE BOOL "Enable LM4") set(WW3 OFF CACHE BOOL "Enable WW3") set(STOCH_PHYS OFF CACHE BOOL "Enable Stochastic Physics") set(CMEPS OFF CACHE BOOL "Enable CMEPS") @@ -48,6 +49,7 @@ message("GOCART ........... ${UFS_GOCART}") message("MOM6 ............. ${MOM6}") message("HYCOM ............ ${HYCOM}") message("CICE6 ............ ${CICE6}") +message("LM4 .............. ${LM4}") message("WW3 .............. ${WW3}") message("STOCH_PHYS ....... ${STOCH_PHYS}") message("CDEPS ............ ${CDEPS}") @@ -157,7 +159,7 @@ if(FMS) elseif (APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|ATM_DS2S|ATM_DS2S-PCICE|NG-GODAS|HAFS-MOM6|HAFS-MOM6W)$") add_library(fms ALIAS FMS::fms_r8) endif() - if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|ATMF|HAFS|HAFS-ALL)$") + if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|ATMF|ATML-LM4|LND-LM4|HAFS|HAFS-ALL)$") if(32BIT) add_library(fms ALIAS FMS::fms_r4) else() @@ -256,8 +258,13 @@ if(CDEPS) endif() ############################################################################### -### Land Components [NOAHMP] +### Land Components [NOAHMP and LM4] ############################################################################### + +if (LM4) + add_subdirectory(LM4-driver) +endif() + if(NOAHMP) add_subdirectory(NOAHMP-interface) endif() @@ -329,6 +336,12 @@ if(CICE6) list(APPEND _ufs_libs_public cice) endif() +if (LM4) + add_dependencies(ufs lm4) + list(APPEND _ufs_defs_private FRONT_LM4=lm4_cap_mod) + list(APPEND _ufs_libs_public lm4) +endif() + if(CMEPS) add_dependencies(ufs cmeps) list(APPEND _ufs_defs_private CMEPS FRONT_CMEPS=MED) diff --git a/LM4-driver b/LM4-driver new file mode 160000 index 0000000000..c4d2337d86 --- /dev/null +++ b/LM4-driver @@ -0,0 +1 @@ +Subproject commit c4d2337d8607ec994b3cd61179eb974e0a237841 diff --git a/README.md b/README.md index cd17b6afc2..45b6f6e2c1 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ The top level directory structure groups source code and input files as follow: | ```FV3/``` | Contains FV3 atmosphere model component including FV3 dynamical core, dynamics to physics driver, physics and IO. | | ```GOCART/``` | Contains GOCART aerosol model component | | ```HYCOM-interface/``` | Contains HYCOM ocean model component | +| ```LM4-driver/``` | Contains LM4 land component | | ```MOM6-interface/``` | Contains MOM6 ocean model component | | ```NOAHMP-interface/``` | Contains Noah-MP land model component | | ```WW3/``` | Contains community wave modeling framework WW3 | diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index a63601f62f..d3ab16b673 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -13,7 +13,7 @@ ############################################################################### ### Configure Application Components ############################################################################### -if(APP MATCHES "^(ATM|ATMW|ATMWM|ATMAQ|ATML|ATMF)$") +if(APP MATCHES "^(ATM|ATMW|ATMWM|ATMAQ|ATML|ATMF|ATML-LM4)$") set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) @@ -31,6 +31,10 @@ if(APP MATCHES "^(ATM|ATMW|ATMWM|ATMAQ|ATML|ATMF)$") set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) message("Configuring UFS app in Atmosphere with Air Quality mode") + elseif(APP MATCHES "ATML-LM4") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(LM4 ON CACHE BOOL "Enable LM4" FORCE) + message("Configuring UFS app in Atmosphere with Air Quality mode") elseif(APP MATCHES "ATMF") set(FIRE_BEHAVIOR ON CACHE BOOL "Enable Fire Behavior" FORCE) else() @@ -116,3 +120,10 @@ if(APP MATCHES "^(LND)$") set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) endif() + +if(APP MATCHES "^(LND-LM4)$") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) + set(LM4 ON CACHE BOOL "Enable LM4" FORCE) + set(FMS ON CACHE BOOL "Enable FMS" FORCE) +endif() diff --git a/doc/UsersGuide/source/CodeOverview.rst b/doc/UsersGuide/source/CodeOverview.rst index 72297ea4d7..852186292a 100644 --- a/doc/UsersGuide/source/CodeOverview.rst +++ b/doc/UsersGuide/source/CodeOverview.rst @@ -86,6 +86,8 @@ The UFS :term:`WM` repository supports the :term:`UFS` short- and medium-range w - https://github.com/NOAA-EMC/AQM * - Noah-MP Land Surface Model (Noah-MP) - https://github.com/NOAA-EMC/noahmp + * - NOAA-GFDL Land Model (:term:`LM4`) + - In the table, the left-hand column contains a description of each repository, and the right-hand column shows the GitHub location of the authoritative component repositories. @@ -143,6 +145,9 @@ The umbrella repository for the UFS WM is named ``ufs-weather-model``. Under thi │ └── HYCOM -------- HYCOM ocean model │ └── (NUOPC) -------- NUOPC HYCOM cap ├── LICENSE.md + ├── LM4-driver + │ ├── (LM4) -------- NUOPC NOAA-GFDL Land Model version 4 + │ └── (nuopc_cap) -------- NUOPC LM4 cap ├── modulefiles -------- system module files for supported HPC systems ├── MOM6-interface │ └── MOM6 diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst index d43ca7943a..0d528a8d34 100644 --- a/doc/UsersGuide/source/Glossary.rst +++ b/doc/UsersGuide/source/Glossary.rst @@ -97,6 +97,9 @@ Glossary HYCOM The HYbrid Coordinate Ocean Model (`HYCOM `__) was developed to address known shortcomings in the vertical coordinate scheme of the Miami Isopycnic-Coordinate Ocean Model (MICOM). HYCOM is a primitive equation, general circulation model with vertical coordinates that remain isopycnic in the open, stratified ocean. However, the isopycnal vertical coordinates smoothly transition to z-coordinates in the weakly stratified upper-ocean mixed layer, to terrain-following sigma coordinates in shallow water regions, and back to z-level coordinates in very shallow water. The latter transition prevents layers from becoming too thin where the water is very shallow. See the `HYCOM User's Guide `__ for more information on using the model. The `HYCOM model code `__ is publicly available on GitHub. + LM4 + NUOPC NOAA-GFDL Land Model version 4 + LND land component The Noah Multi-Physics (Noah-MP) land surface model (LSM) is an open-source, community-developed LSM that has been incorporated into the UFS Weather Model (WM). It is the UFS WM's land component. diff --git a/driver/UFSDriver.F90 b/driver/UFSDriver.F90 index 2b07308aa1..4cc52bfa03 100644 --- a/driver/UFSDriver.F90 +++ b/driver/UFSDriver.F90 @@ -79,6 +79,9 @@ MODULE UFSDriver #ifdef FRONT_NOAH use FRONT_NOAH, only: NOAH_SS => SetServices #endif +#ifdef FRONT_LM4 + use FRONT_LM4, only: LM4_SS => SetServices +#endif #ifdef FRONT_NOAHMP use FRONT_NOAHMP, only: NOAHMP_SS => SetServices #endif @@ -467,6 +470,14 @@ subroutine SetModelServices(driver, rc) found_comp = .true. end if #endif +#ifdef FRONT_LM4 + if (trim(model) == "lm4") then + call NUOPC_DriverAddComp(driver, trim(prefix), LM4_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif #ifdef FRONT_NOAHMP if (trim(model) == "noahmp") then call NUOPC_DriverAddComp(driver, trim(prefix), NOAHMP_SS, & diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index 592eb7461d..8e8525c21e 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -7,10 +7,10 @@ whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]= prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") -stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" load(pathJoin("stack-intel", stack_intel_ver)) -stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.28" load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index e549ec4144..d6e25efad5 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -15,6 +15,9 @@ load(pathJoin("cmake", cmake_ver)) load("ufs_common") +-- HDF5 needed for LM4 +hdf5_ver=os.getenv("hdf5_ver") or "1.14.0" +load(pathJoin("hdf5", hdf5_ver)) nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" load(pathJoin("nccmp", nccmp_ver)) diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 9985917741..c938d3783e 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241001 +export BL_DATE=20241011 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 5b8b2ef8d5..2aefd87186 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -1295,6 +1295,7 @@ export INPUT_NML=global_control.nml.IN export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export DIAG_TABLE=diag_table_cpld.IN export DIAG_TABLE_ADDITIONAL='' +export FIELD_TABLE_ADDITIONAL='' export FV3_RUN=cpld_control_run.IN export TILEDFIX=.false. diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index ad2459efba..b306f1a1c5 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -28,6 +28,7 @@ export OMP_STACKSIZE=1024M export NC_BLKSZ=1M export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +export FI_VERBS_PREFER_XRC=0 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 diff --git a/tests/fv3_conf/lm4_run.IN b/tests/fv3_conf/lm4_run.IN new file mode 100644 index 0000000000..0e6af37a21 --- /dev/null +++ b/tests/fv3_conf/lm4_run.IN @@ -0,0 +1,97 @@ +mkdir -p INPUT RESTART + + +if [[ $atm_model == 'datm' ]]; then +# need to make some adjustments for LM4's grid file requirements +# assume LNDRES is defined + + if [[ $LNDRES == 'C96' ]]; then + FV3_DIR=FV3_input_data + else + FV3_DIR=FV3_input_data${LNDRES#C} + fi + + ## get these if don't already have: + rsync -arv @[INPUTDATA_ROOT]/CPL_FIX/a@[LNDRES]o@[OCNRES]/grid_spec.nc ./INPUT + rsync -arv @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/@[LNDRES]_grid*.nc ./INPUT + rsync -arv @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[LNDRES]_mosaic.nc + rsync -arv @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT + +elif [[ $atm_model == 'fv3' ]]; then + # assume ATMRES is defined + if [[ $ATMRES == 'C96' ]]; then + FV3_DIR=FV3_input_data + else + FV3_DIR=FV3_input_data${ATMRES#C} + fi + +fi + + + +## LM4 + +# out of the box, LM4 expects aXl referenced in grid_spec.nc for grid land area. Include them for now. + +# check if ATMRES or LNDRES is equal to C96: +if [[ $ATMRES == 'C96' || $LNDRES == 'C96' ]]; then + tar -xf @[INPUTDATA_LM4]/c96_grid/c96_OM4_025_grid_No_mg_drag_v20160808.tar -C ./INPUT/ \ + --wildcards "C96_mosaic_tile?XC96_mosaic_tile?.nc" + + tar -xvf @[INPUTDATA_LM4]/c96_LM4/c96_topo_rough_land.nc.tar -C ./INPUT/ +else + echo 'Only setup for C96 is supported' +fi + +ln -s @[INPUTDATA_LM4]/common_LM4/biodata.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/cover_type.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/geohydrology.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/geohydrology_table_2a2n.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/ground_type.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/landuse.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/soil_brdf.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/soil_type_hwsd_5minute.nc ./INPUT/soil_type.nc + + +cd INPUT +rsync -arv @[INPUTDATA_ROOT]/DATM_GSWP3_input_data/. . +cd - + +SUFFIX=${RT_SUFFIX} +# restart +if [ $WARM_START = .true. ]; then + # # NoahMP restart files + # cp ../${DEP_RUN}${SUFFIX}/ufs.cpld.lnd.out.${RESTART_FILE_SUFFIX_SECS}.tile*.nc RESTART/. + + # LM4 restart files + # expected checkpoint restarts are named like: YYYYMMDD.HHMMSS.*.res.tile?.nc + + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.landuse.res ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.cana.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.glac.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.lake.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.land.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.snow.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.soil.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.vegn1.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.vegn2.res.tile*.nc ./INPUT/ + + # remove datestamp + rename ${LM4_RESTART_PREFIX}. "" INPUT/${LM4_RESTART_PREFIX}.*.res* + + # CMEPS restart and pointer files + RFILE1=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE1} RESTART/. + ls -1 "RESTART/${RFILE1}">rpointer.cpl + + # CDEPS restart and pointer files + RFILE2=ufs.cpld.datm.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/${RFILE2} RESTART/. + ls -1 "RESTART/${RFILE2}">rpointer.atm +fi + + + + + + diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 8157a7fbe4..a5ac539a95 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Oct 2 22:41:48 UTC 2024 +Tue Oct 8 22:47:32 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2964678/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/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 = 299.526615 - 0: The maximum resident set size (KB) = 1441552 + 0: The total amount of wall time = 311.645970 + 0: The maximum resident set size (KB) = 1440152 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_2964678/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/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 = 913.091192 - 0: The maximum resident set size (KB) = 1434836 + 0: The total amount of wall time = 940.211866 + 0: The maximum resident set size (KB) = 1423792 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_2964678/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/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 = 271.228237 - 0: The maximum resident set size (KB) = 1420208 + 0: The total amount of wall time = 274.188787 + 0: The maximum resident set size (KB) = 1418424 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_2964678/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/mpi_mpi Checking test mpi results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -214,14 +214,14 @@ Checking test mpi results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 270.711616 - 0: The maximum resident set size (KB) = 1432888 + 0: The total amount of wall time = 301.161679 + 0: The maximum resident set size (KB) = 1416756 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_2964678/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/rst_rst Checking test rst results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -268,14 +268,14 @@ Checking test rst results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 271.801810 - 0: The maximum resident set size (KB) = 1408036 + 0: The total amount of wall time = 276.271987 + 0: The maximum resident set size (KB) = 1431172 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_2964678/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/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 = 278.448169 - 0: The maximum resident set size (KB) = 1417104 + 0: The total amount of wall time = 276.492714 + 0: The maximum resident set size (KB) = 1430992 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_2964678/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/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 = 274.922346 - 0: The maximum resident set size (KB) = 1427988 + 0: The total amount of wall time = 275.115479 + 0: The maximum resident set size (KB) = 1421612 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Oct 2 23:56:16 UTC 2024 -Elapsed time: 01h:14m:28s. Have a nice day! +Wed Oct 9 00:04:19 UTC 2024 +Elapsed time: 01h:16m:47s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index bbc2c6f136..6bfe7ee77f 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Wed Oct 2 21:11:44 UTC 2024 +Wed Oct 9 14:47:17 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1326267/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3476944/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 = 2302.748756 - 0: The maximum resident set size (KB) = 1502800 + 0: The total amount of wall time = 2410.412873 + 0: The maximum resident set size (KB) = 1500288 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_1326267/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3476944/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +135,14 @@ Checking test rst results .... Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK - 0: The total amount of wall time = 715.673783 - 0: The maximum resident set size (KB) = 1506992 + 0: The total amount of wall time = 899.090979 + 0: The maximum resident set size (KB) = 1504600 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_1326267/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3476944/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 = 750.553345 - 0: The maximum resident set size (KB) = 1504388 + 0: The total amount of wall time = 721.439080 + 0: The maximum resident set size (KB) = 1504092 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Oct 2 22:41:48 UTC 2024 -Elapsed time: 01h:30m:06s. Have a nice day! +Wed Oct 9 16:24:56 UTC 2024 +Elapsed time: 01h:37m:39s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 2f0bb6fb97..1c8759ae87 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Oct 2 18:39:04 UTC 2024 +Wed Oct 9 12:02:03 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_4004824/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2513112/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving dynf000.nc .........OK @@ -15,14 +15,14 @@ Moving baseline bit_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 1391.385220 - 0: The maximum resident set size (KB) = 770368 + 0: The total amount of wall time = 1488.179880 + 0: The maximum resident set size (KB) = 746240 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_4004824/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2513112/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 = 2197.813777 - 0: The maximum resident set size (KB) = 714084 + 0: The total amount of wall time = 2215.405761 + 0: The maximum resident set size (KB) = 739208 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_4004824/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2513112/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 = 2180.905806 - 0: The maximum resident set size (KB) = 747696 + 0: The total amount of wall time = 2326.131971 + 0: The maximum resident set size (KB) = 730172 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_4004824/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2513112/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 = 2272.924862 - 0: The maximum resident set size (KB) = 711932 + 0: The total amount of wall time = 2180.030448 + 0: The maximum resident set size (KB) = 722712 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Oct 2 21:11:42 UTC 2024 -Elapsed time: 02h:32m:39s. Have a nice day! +Wed Oct 9 14:37:25 UTC 2024 +Elapsed time: 02h:35m:23s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 4490cb6414..5f4e122a1f 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: -12373b99074bcffc16efda0d1491bdc6a10e9914 +f814ef71e560a00a30454e00ef05ccf4d20f45b3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,18 +9,20 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) + d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) @@ -36,267 +38,267 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241001 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2089821 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241011 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3720938 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:02] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:38, 02:39](3190 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:25, 11:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:36, 03:38](1903 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [02:20, 03:08](1953 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [00:20, 03:34](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:37, 03:26](1885 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:37, 22:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [10:24, 02:00](1905 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:29, 14:44] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [18:33, 04:00](1948 MB) - -PASS -- COMPILE 's2swa_intel' [24:38, 22:45] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:23, 02:51](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:23, 03:07](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [58:20, 02:55](3154 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:23, 02:46](3243 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [51:55, 03:02](3170 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:23, 03:31](3459 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:23, 02:52](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:24, 03:06](3167 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:23, 02:48](3227 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:23, 03:03](3203 MB) - -PASS -- COMPILE 's2sw_intel' [19:33, 18:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:28, 02:56](1917 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:28, 03:07](1979 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:32, 15:41] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [17:29, 03:17](1979 MB) - -PASS -- COMPILE 's2s_intel' [14:29, 12:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [20:31, 01:56](2880 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [20:31, 02:37](2889 MB) -PASS -- TEST 'cpld_restart_c48_intel' [15:05, 02:06](2298 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:29, 03:04](3225 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [27:42, 25:37] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [07:19, 02:38](1923 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:32, 02:35](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:27, 02:37](1906 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:26, 11:58] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [10:11, 02:15](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [19:34, 18:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [00:05, 01:37](662 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [58:20, 01:47](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:20, 02:14](1563 MB) -PASS -- TEST 'control_latlon_intel' [56:24, 02:14](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [56:24, 01:52](1565 MB) -PASS -- TEST 'control_c48_intel' [55:22, 02:18](1580 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [54:54, 01:54](702 MB) -PASS -- TEST 'control_c192_intel' [54:01, 01:57](1688 MB) -PASS -- TEST 'control_c384_intel' [53:23, 03:06](1970 MB) -PASS -- TEST 'control_c384gdas_intel' [53:23, 03:55](1175 MB) -PASS -- TEST 'control_stochy_intel' [52:52, 02:01](616 MB) -PASS -- TEST 'control_stochy_restart_intel' [44:15, 02:04](422 MB) -PASS -- TEST 'control_lndp_intel' [52:45, 01:55](615 MB) -PASS -- TEST 'control_iovr4_intel' [52:03, 01:40](610 MB) -PASS -- TEST 'control_iovr5_intel' [51:40, 01:52](610 MB) -PASS -- TEST 'control_p8_intel' [50:52, 02:53](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [50:14, 02:46](1848 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [50:13, 03:50](1851 MB) -PASS -- TEST 'control_restart_p8_intel' [39:31, 03:05](1004 MB) -PASS -- TEST 'control_noqr_p8_intel' [50:12, 02:47](1847 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [37:20, 02:50](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [49:51, 03:04](1844 MB) -PASS -- TEST 'control_2threads_p8_intel' [49:43, 03:18](1930 MB) -PASS -- TEST 'control_p8_lndp_intel' [48:53, 02:05](1850 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [48:26, 02:43](1903 MB) -PASS -- TEST 'control_p8_mynn_intel' [48:19, 02:59](1866 MB) -PASS -- TEST 'merra2_thompson_intel' [48:14, 03:27](1860 MB) -PASS -- TEST 'regional_control_intel' [47:13, 01:33](864 MB) -PASS -- TEST 'regional_restart_intel' [30:09, 01:41](856 MB) -PASS -- TEST 'regional_decomp_intel' [46:20, 02:04](863 MB) -PASS -- TEST 'regional_2threads_intel' [46:13, 01:37](982 MB) -PASS -- TEST 'regional_noquilt_intel' [44:09, 01:34](1183 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [43:50, 01:55](851 MB) -PASS -- TEST 'regional_wofs_intel' [42:24, 01:15](1583 MB) - -PASS -- COMPILE 'rrfs_intel' [19:33, 17:27] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [42:02, 03:45](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [41:56, 01:53](1136 MB) -PASS -- TEST 'rap_decomp_intel' [39:48, 03:19](998 MB) -PASS -- TEST 'rap_2threads_intel' [38:59, 03:13](1083 MB) -PASS -- TEST 'rap_restart_intel' [27:25, 03:48](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [38:20, 03:28](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [37:43, 03:17](998 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [26:26, 03:55](885 MB) -PASS -- TEST 'hrrr_control_intel' [36:52, 03:48](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [36:38, 02:53](995 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [35:39, 04:05](1068 MB) -PASS -- TEST 'hrrr_control_restart_intel' [28:26, 01:48](829 MB) -PASS -- TEST 'rrfs_v1beta_intel' [35:26, 03:03](996 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [35:26, 01:21](1955 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [35:22, 02:11](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [23:37, 21:47] -PASS -- TEST 'control_csawmg_intel' [34:36, 02:06](951 MB) -PASS -- TEST 'control_ras_intel' [34:34, 01:37](653 MB) - -PASS -- COMPILE 'wam_intel' [10:24, 08:49] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [07:05, 02:10](1644 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:28, 13:02] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [34:10, 02:54](1855 MB) -PASS -- TEST 'regional_control_faster_intel' [34:07, 01:32](854 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:26, 09:37] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:02, 01:24](1597 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:02, 02:06](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:02, 01:56](804 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:02, 01:27](805 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:02, 02:16](1110 MB) -PASS -- TEST 'control_ras_debug_intel' [04:02, 01:16](812 MB) -PASS -- TEST 'control_diag_debug_intel' [04:02, 02:03](1664 MB) -PASS -- TEST 'control_debug_p8_intel' [04:02, 02:12](1904 MB) -PASS -- TEST 'regional_debug_intel' [04:01, 02:10](911 MB) -PASS -- TEST 'rap_control_debug_intel' [04:02, 01:20](1194 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:02, 01:40](1181 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:02, 01:48](1188 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:02, 01:31](1188 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:02, 01:53](1186 MB) -PASS -- TEST 'rap_diag_debug_intel' [03:19, 02:01](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [34:03, 01:52](1187 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [33:26, 01:53](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [32:50, 01:39](1186 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [32:08, 02:06](1186 MB) -PASS -- TEST 'rap_noah_debug_intel' [31:42, 02:02](1183 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [30:10, 01:21](1189 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [29:51, 02:08](1186 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [29:21, 01:59](1178 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [28:31, 01:59](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [28:07, 01:50](1187 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:36, 03:19](1192 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:23, 08:57] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [27:25, 02:02](1691 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 09:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:26, 01:38](1010 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:58, 03:05](873 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:26, 04:52](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:50, 03:22](939 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [24:03, 03:42](923 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [23:46, 03:25](869 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:20, 02:25](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [16:07, 02:09](759 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:27, 11:17] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [23:27, 02:07](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [16:13, 01:19](1059 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [16:12, 01:14](954 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [39:55, 07:54] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [23:14, 01:57](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [36:54, 04:23] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:12, 01:33](1063 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [22:52, 01:53](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [22:51, 01:52](1153 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [22:35, 01:38](854 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [22:35, 02:03](1144 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:32, 01:52](1240 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:07, 04:19] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:55, 01:51](1088 MB) - -PASS -- COMPILE 'hafsw_intel' [55:15, 08:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:49, 02:56](688 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:49, 01:45](1034 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:47, 02:41](736 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [07:47, 02:26](766 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [07:48, 03:22](785 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:47, 02:03](461 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:48, 02:42](482 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:48, 02:50](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:51, 04:01](470 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:47, 02:05](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:47, 01:56](494 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:49, 01:41](558 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:48, 01:23](405 MB) -PASS -- TEST 'gnv1_nested_intel' [07:46, 04:34](1704 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [58:18, 12:18] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:45, 01:41](673 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [54:14, 10:18] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:46, 02:02](601 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:46, 01:47](780 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [54:10, 10:38] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:52, 02:50](785 MB) - -PASS -- COMPILE 'hafs_all_intel' [50:07, 08:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:52, 03:10](732 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:52, 03:04](707 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [08:50, 01:27](907 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [57:12, 17:27] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [59:30, 01:51](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [52:00, 01:49](754 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [59:30, 01:37](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [59:30, 01:40](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [59:30, 01:39](652 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [59:30, 01:52](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [59:30, 02:07](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [59:30, 01:50](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [58:10, 02:19](687 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [58:06, 01:55](668 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [57:17, 01:26](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [55:55, 01:35](1971 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [54:52, 02:11](2032 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [51:08, 12:45] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:44, 01:23](753 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [22:36, 09:17] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:34, 01:14](312 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:34, 01:40](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [45:40, 01:57](448 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [28:42, 18:05] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [54:16, 02:18](1917 MB) - -PASS -- COMPILE 'atml_intel' [14:28, 12:26] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [54:07, 03:15](1885 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [52:48, 03:00](1883 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [38:18, 02:12](1031 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:21, 07:06] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [00:30, 03:36](1929 MB) - -PASS -- COMPILE 'atmw_intel' [16:29, 14:28] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [51:01, 03:01](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [12:25, 10:39] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [52:01, 03:21](3114 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [50:15, 03:02](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:29, 03:08](3006 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:24, 09:52] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [49:19, 02:12](4477 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:23, 10:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [45:59, 02:46](3193 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [32:45, 31:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:26, 04:08](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [54:59, 03:48](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [54:07, 03:56](1075 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:18, 03:38](1885 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:31, 16:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [39:52, 01:59](1899 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:12] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [50:03, 03:41](1941 MB) + +PASS -- COMPILE 's2swa_intel' [40:55, 39:06] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:23, 02:20](3229 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:23, 03:08](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [59:13, 02:51](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:15, 02:20](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [59:13, 01:59](3170 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:33, 02:29](3460 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:31, 02:18](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:59, 02:53](3167 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:25, 03:17](3227 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:51, 02:34](3204 MB) + +PASS -- COMPILE 's2sw_intel' [10:23, 09:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [46:59, 01:56](1918 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [46:59, 03:14](1966 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [25:38, 24:03] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [30:55, 03:07](1966 MB) + +PASS -- COMPILE 's2s_intel' [10:23, 08:58] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [46:58, 01:52](2881 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [46:58, 02:34](2889 MB) +PASS -- TEST 'cpld_restart_c48_intel' [41:28, 02:00](2304 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:30, 14:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [40:53, 02:58](3226 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:36, 19:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:43, 02:03](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [01:37, 02:27](1102 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [01:32, 02:51](1890 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:21, 07:00] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:41, 02:16](1963 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [36:35, 01:18](660 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [36:35, 01:42](1562 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [36:35, 01:26](1568 MB) +PASS -- TEST 'control_latlon_intel' [36:35, 01:22](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [36:35, 01:57](1565 MB) +PASS -- TEST 'control_c48_intel' [36:34, 02:11](1581 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [36:34, 01:49](706 MB) +PASS -- TEST 'control_c192_intel' [36:35, 02:22](1683 MB) +PASS -- TEST 'control_c384_intel' [36:39, 02:59](1971 MB) +PASS -- TEST 'control_c384gdas_intel' [36:39, 04:03](1162 MB) +PASS -- TEST 'control_stochy_intel' [36:35, 01:24](617 MB) +PASS -- TEST 'control_stochy_restart_intel' [33:01, 02:02](424 MB) +PASS -- TEST 'control_lndp_intel' [36:35, 01:35](615 MB) +PASS -- TEST 'control_iovr4_intel' [36:35, 01:37](612 MB) +PASS -- TEST 'control_iovr5_intel' [36:35, 01:42](611 MB) +PASS -- TEST 'control_p8_intel' [36:35, 02:50](1851 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [36:35, 03:40](1848 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [36:35, 03:35](1850 MB) +PASS -- TEST 'control_restart_p8_intel' [26:48, 03:05](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [36:35, 02:37](1852 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [23:11, 02:36](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [36:35, 03:06](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [36:35, 03:19](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [36:35, 01:50](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [36:35, 03:07](1904 MB) +PASS -- TEST 'control_p8_mynn_intel' [36:35, 03:11](1864 MB) +PASS -- TEST 'merra2_thompson_intel' [36:35, 04:10](1860 MB) +PASS -- TEST 'regional_control_intel' [34:50, 02:06](859 MB) +PASS -- TEST 'regional_restart_intel' [25:57, 01:43](858 MB) +PASS -- TEST 'regional_decomp_intel' [32:59, 01:39](863 MB) +PASS -- TEST 'regional_2threads_intel' [31:57, 01:50](984 MB) +PASS -- TEST 'regional_noquilt_intel' [31:55, 01:45](1184 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [29:14, 01:41](861 MB) +PASS -- TEST 'regional_wofs_intel' [28:51, 01:57](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [25:40, 23:42] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [20:08, 03:45](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [19:43, 02:00](1137 MB) +PASS -- TEST 'rap_decomp_intel' [19:01, 02:38](1003 MB) +PASS -- TEST 'rap_2threads_intel' [19:01, 03:46](1082 MB) +PASS -- TEST 'rap_restart_intel' [01:31, 03:14](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:43, 04:01](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:30, 03:28](999 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [00:16, 03:41](883 MB) +PASS -- TEST 'hrrr_control_intel' [11:24, 03:10](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:23, 02:31](992 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:24, 03:41](1069 MB) +PASS -- TEST 'hrrr_control_restart_intel' [57:53, 01:49](829 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:08, 03:26](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:47, 01:31](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 01:53](1946 MB) + +PASS -- COMPILE 'csawmg_intel' [12:25, 10:47] +PASS -- TEST 'control_csawmg_intel' [28:38, 01:57](951 MB) +PASS -- TEST 'control_ras_intel' [25:08, 02:17](655 MB) + +PASS -- COMPILE 'wam_intel' [13:27, 11:23] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [24:44, 01:42](1645 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:03] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [22:56, 03:24](1854 MB) +PASS -- TEST 'regional_control_faster_intel' [22:46, 01:23](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:26, 11:19] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:08, 02:15](1599 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:01, 02:12](1609 MB) +PASS -- TEST 'control_stochy_debug_intel' [21:43, 01:20](803 MB) +PASS -- TEST 'control_lndp_debug_intel' [21:26, 01:37](804 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:04, 01:48](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [08:51, 01:55](811 MB) +PASS -- TEST 'control_diag_debug_intel' [08:32, 02:13](1664 MB) +PASS -- TEST 'control_debug_p8_intel' [08:29, 01:45](1896 MB) +PASS -- TEST 'regional_debug_intel' [07:46, 01:58](915 MB) +PASS -- TEST 'rap_control_debug_intel' [06:48, 01:29](1186 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:31, 01:40](1181 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [03:03, 01:50](1194 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [01:25, 01:29](1188 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [01:23, 01:38](1187 MB) +PASS -- TEST 'rap_diag_debug_intel' [01:04, 01:33](1280 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [59:06, 01:18](1188 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:56, 01:59](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [58:15, 01:57](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [57:56, 02:04](1186 MB) +PASS -- TEST 'rap_noah_debug_intel' [57:49, 01:41](1184 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [56:50, 02:00](1183 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [56:31, 02:08](1188 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [56:26, 01:38](1182 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [56:08, 01:53](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [56:02, 01:24](1188 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [53:56, 04:07](1187 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:22, 07:56] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [53:48, 01:55](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:28, 13:46] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [53:42, 02:34](1013 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [53:02, 03:48](875 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [52:48, 04:18](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [52:43, 03:28](932 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [52:25, 02:51](924 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [51:59, 03:17](871 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [39:36, 02:13](780 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:27, 02:13](759 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:26, 10:46] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [51:46, 01:46](1077 MB) +PASS -- TEST 'conus13km_2threads_intel' [41:31, 01:31](1061 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [41:30, 01:54](955 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:31, 07:55] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [51:17, 02:31](897 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [24:40, 04:30] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [50:29, 01:22](1065 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [50:14, 02:09](1065 MB) +PASS -- TEST 'conus13km_debug_intel' [49:21, 01:48](1173 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [48:51, 01:27](821 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [48:46, 01:17](1132 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [48:18, 02:15](1240 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [41:57, 04:40] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [46:15, 01:55](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [57:14, 10:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [30:02, 02:20](686 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [30:02, 02:05](1039 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [30:00, 02:38](737 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:00, 02:22](763 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:01, 03:03](787 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [30:00, 02:36](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [30:01, 03:08](476 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [30:01, 02:52](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [30:04, 04:15](445 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [30:00, 01:58](495 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [30:00, 02:21](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:02, 01:47](562 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [30:01, 01:26](406 MB) +PASS -- TEST 'gnv1_nested_intel' [29:59, 04:38](1703 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [51:08, 04:42] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [35:19, 02:18](667 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [53:09, 08:36] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [31:31, 02:25](604 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [31:31, 02:08](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [50:05, 08:40] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [31:17, 02:13](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [49:08, 08:29] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [31:10, 02:33](768 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [31:10, 02:30](707 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [31:08, 01:14](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [58:14, 15:38] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [21:50, 01:22](752 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [14:23, 01:42](755 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [21:50, 01:18](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [21:50, 01:25](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [20:06, 01:12](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [20:01, 01:22](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [17:48, 02:11](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [15:48, 02:07](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:24, 01:49](689 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:07, 02:37](670 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [14:15, 01:52](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [13:26, 01:35](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [13:21, 01:20](2034 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [54:11, 15:28] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [22:14, 01:49](766 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [43:57, 07:17] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [30:15, 01:17](301 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [30:15, 01:51](449 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [11:25, 02:04](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [44:00, 14:23] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:49, 02:46](1914 MB) + +PASS -- COMPILE 'atml_intel' [27:43, 18:28] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:08, 03:28](1886 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:42, 02:56](1885 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [00:13, 02:07](1032 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:23, 09:03] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [24:53, 03:22](1929 MB) + +PASS -- COMPILE 'atmw_intel' [15:29, 13:57] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [12:32, 03:24](1879 MB) + +PASS -- COMPILE 'atmaero_intel' [13:27, 11:46] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:28, 03:22](3115 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:25, 02:46](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:18, 03:00](3008 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:21, 06:55] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:48, 02:12](4467 MB) SYNOPSIS: -Starting Date/Time: 20241004 12:24:39 -Ending Date/Time: 20241004 14:39:40 -Total Time: 02h:15m:27s +Starting Date/Time: 20241015 18:02:17 +Ending Date/Time: 20241015 20:16:20 +Total Time: 02h:14m:33s Compiles Completed: 37/37 Tests Completed: 176/176 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 5e5b1dabfa..6f89c5a1e4 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -27fcef4059964b9e0da304984293d4bea802d1df +ff8bef7b1f5ab5484a5001d4b16a237e8baa7b81 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,18 +9,20 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) + d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) @@ -36,290 +38,293 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_224093 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241011 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3630269 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [28:12, 27:05] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:01, 08:42](3188 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 24:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:47, 14:21](1908 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:48, 14:25](1936 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:27, 06:48](1063 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:47, 15:02](1879 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:12, 24:24] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:03, 14:06](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:13, 15:08] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [45:05, 26:15](1934 MB) - -PASS -- COMPILE 's2swa_intel' [22:14, 20:15] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [23:21, 10:05](3212 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [25:39, 10:18](3211 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:45, 06:03](3137 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [24:29, 10:34](3235 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:55, 06:22](3160 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [22:27, 08:25](3454 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [22:27, 09:50](3209 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [22:27, 08:39](3152 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:29, 10:08](3211 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [27:09, 10:35](3440 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:23, 07:30](3593 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:46, 09:43](4189 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:04, 05:57](4348 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [21:53, 07:50](3193 MB) - -PASS -- COMPILE 's2sw_intel' [21:11, 20:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [22:14, 06:17](1920 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [23:30, 08:47](1976 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:14, 13:48] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [33:07, 14:11](3273 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:13, 14:17] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [28:12, 09:07](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:14, 17:43] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [23:32, 05:30](1985 MB) - -PASS -- COMPILE 's2s_intel' [20:11, 18:22] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [20:56, 05:35](2865 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [15:08, 02:04](2875 MB) -PASS -- TEST 'cpld_restart_c48_intel' [08:27, 01:13](2287 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:15, 19:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:17, 09:54](3211 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:16, 22:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:08, 15:35](1928 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:30, 07:21](1086 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:38, 17:02](1907 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:12, 11:49] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:26, 27:44](1952 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:13, 14:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:42, 03:50](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:37, 04:07](1565 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:37, 03:52](1564 MB) -PASS -- TEST 'control_latlon_intel' [07:01, 03:19](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:24, 03:28](1567 MB) -PASS -- TEST 'control_c48_intel' [12:52, 10:00](1576 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:40, 05:50](695 MB) -PASS -- TEST 'control_c192_intel' [14:37, 11:10](1690 MB) -PASS -- TEST 'control_c384_intel' [28:35, 23:23](1957 MB) -PASS -- TEST 'control_c384gdas_intel' [20:43, 14:45](1152 MB) -PASS -- TEST 'control_stochy_intel' [04:52, 02:11](619 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:34, 01:14](425 MB) -PASS -- TEST 'control_lndp_intel' [04:33, 01:57](617 MB) -PASS -- TEST 'control_iovr4_intel' [05:35, 02:44](616 MB) -PASS -- TEST 'control_iovr5_intel' [07:41, 02:45](616 MB) -PASS -- TEST 'control_p8_intel' [08:18, 04:09](1858 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:09, 03:24](1856 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:01, 03:45](1858 MB) -PASS -- TEST 'control_restart_p8_intel' [05:13, 02:29](1005 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:46, 03:48](1857 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:13, 02:28](1017 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:46, 04:03](1847 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:18, 03:23](1930 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:32, 06:16](1859 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:03, 04:10](1907 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:13, 03:41](1865 MB) -PASS -- TEST 'merra2_thompson_intel' [08:07, 04:11](1857 MB) -PASS -- TEST 'regional_control_intel' [07:42, 04:56](849 MB) -PASS -- TEST 'regional_restart_intel' [05:09, 02:37](848 MB) -PASS -- TEST 'regional_decomp_intel' [07:35, 05:10](848 MB) -PASS -- TEST 'regional_2threads_intel' [04:49, 03:04](989 MB) -PASS -- TEST 'regional_noquilt_intel' [06:53, 04:42](1171 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:51, 04:37](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:44, 04:40](856 MB) -PASS -- TEST 'regional_wofs_intel' [09:35, 06:31](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [15:15, 13:13] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:12, 06:51](998 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:37, 03:45](1129 MB) -PASS -- TEST 'rap_decomp_intel' [10:12, 07:11](1004 MB) -PASS -- TEST 'rap_2threads_intel' [09:02, 06:18](1079 MB) -PASS -- TEST 'rap_restart_intel' [05:58, 03:32](866 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:03, 07:13](998 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:54, 07:17](993 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:01, 05:11](865 MB) -PASS -- TEST 'hrrr_control_intel' [07:38, 03:49](995 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:23, 04:06](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:34, 03:09](1071 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:33, 01:55](822 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:58, 06:45](991 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 08:55](1947 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 08:22](1943 MB) - -PASS -- COMPILE 'csawmg_intel' [13:14, 11:56] -PASS -- TEST 'control_csawmg_intel' [11:04, 06:56](954 MB) -PASS -- TEST 'control_ras_intel' [07:54, 03:37](650 MB) - -PASS -- COMPILE 'wam_intel' [14:15, 13:02] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:08, 12:06](1651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:15, 13:07] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:07, 04:24](1850 MB) -PASS -- TEST 'regional_control_faster_intel' [06:35, 04:27](852 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:16, 14:23] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:48, 03:56](1585 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:11, 03:59](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:38, 03:55](793 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:29, 03:15](793 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:01, 04:16](1093 MB) -PASS -- TEST 'control_ras_debug_intel' [05:04, 02:57](802 MB) -PASS -- TEST 'control_diag_debug_intel' [06:15, 02:58](1652 MB) -PASS -- TEST 'control_debug_p8_intel' [05:42, 03:04](1878 MB) -PASS -- TEST 'regional_debug_intel' [18:45, 16:24](887 MB) -PASS -- TEST 'rap_control_debug_intel' [07:34, 05:08](1173 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:33, 04:57](1168 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 05:05](1170 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:08, 05:22](1169 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:01, 05:04](1172 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:44, 05:50](1262 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:42, 05:09](1171 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:36, 05:14](1173 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:28, 05:11](1174 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 05:03](1173 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 05:04](1169 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 05:06](1173 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:30, 07:56](1171 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 04:54](1167 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 05:44](1172 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:25, 05:29](1172 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:58, 08:28](1178 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:12, 09:07] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:03, 13:35](1679 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:15, 12:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:05, 03:42](999 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:53, 05:48](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:43](874 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:51, 05:19](927 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:56, 02:40](918 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:48, 03:52](872 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:57, 04:10](773 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:32, 01:44](754 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:14, 13:32] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:50, 02:40](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [18:56, 00:55](1052 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [18:52, 01:24](953 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:15, 13:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:24, 04:24](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 10:48] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 05:08](1049 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:12](1045 MB) -PASS -- TEST 'conus13km_debug_intel' [17:15, 14:27](1130 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [25:22, 14:56](803 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:12, 08:15](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:12, 14:54](1199 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:13, 19:25] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 05:00](1069 MB) - -PASS -- COMPILE 'hafsw_intel' [20:11, 18:57] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:18, 04:41](682 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:31, 04:02](1029 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:32, 07:25](729 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:12, 11:32](759 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:40, 12:38](773 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:14, 05:02](464 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:35, 06:17](476 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [19:13, 02:35](367 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [25:42, 06:51](425 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:49, 03:29](495 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [19:06, 03:19](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:09, 04:05](556 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:37, 01:16](395 MB) -PASS -- TEST 'gnv1_nested_intel' [22:51, 05:09](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [15:23, 13:55] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:00, 12:26](575 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:22, 18:00] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:36, 07:13](595 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:18, 07:20](776 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:22, 19:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [24:00, 05:24](777 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:15, 15:44] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [23:16, 06:05](718 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [23:16, 06:02](702 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [36:22, 19:59](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:18, 12:45] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [17:29, 02:38](752 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:23, 02:08](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [16:28, 02:30](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [15:28, 02:32](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [15:26, 02:32](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [15:28, 02:34](766 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [12:22, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [11:20, 02:25](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:03, 06:08](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:01, 05:53](678 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:25, 02:36](766 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 04:41](2029 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:23, 04:43](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 08:44] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:26, 05:34](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [16:11, 15:00] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:23, 02:36](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:16, 03:53] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:53, 01:59](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 01:10](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:46, 02:03](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:16, 16:55] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:55, 04:10](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [18:12, 17:06] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:11, 04:13](1895 MB) - -PASS -- COMPILE 'atml_intel' [18:13, 16:49] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:30, 08:05](1890 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:30, 08:11](1888 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:35, 03:33](1028 MB) - -PASS -- COMPILE 'atml_debug_intel' [16:11, 14:48] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:21, 06:56](1917 MB) - -PASS -- COMPILE 'atmw_intel' [19:12, 18:00] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:58, 02:55](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [17:11, 15:29] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:09, 06:38](3106 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:11, 07:08](2993 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:04, 07:17](3007 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [14:17, 12:57] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:22, 18:38](4413 MB) - -PASS -- COMPILE 'atm_fbh_intel' [17:17, 15:11] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:25, 08:57](796 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:20, 13:41] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:35, 08:57](3185 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:22, 24:15] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:23, 14:14](1901 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 14:20](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:27, 07:13](1060 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:25, 15:36](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:21, 22:17] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:51, 13:31](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:24, 12:14] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:41, 25:24](1934 MB) + +PASS -- COMPILE 's2swa_intel' [13:20, 11:18] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:06, 10:27](3214 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:15, 10:43](3214 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:46, 06:38](3136 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:06, 10:16](3232 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:46, 06:50](3159 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:52, 09:00](3462 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:01, 10:29](3205 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:01, 09:23](3158 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:15, 10:36](3214 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:31, 10:37](3491 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:21, 07:08](3601 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:13, 12:00](4260 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:51, 08:28](4345 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:52, 08:22](3190 MB) + +PASS -- COMPILE 's2sw_intel' [14:24, 12:59] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:34, 06:35](1907 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:56, 08:50](1975 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:24, 14:14] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:21, 15:04](3269 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:24, 12:31] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:30, 09:18](1948 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:20, 16:02] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:26, 05:41](1972 MB) + +PASS -- COMPILE 's2s_intel' [09:20, 08:05] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:17, 05:40](2865 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:28, 02:48](2873 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:56, 01:06](2284 MB) + +PASS -- COMPILE 's2swa_faster_intel' [46:19, 44:23] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:37, 10:21](3216 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:02] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:23, 16:02](1913 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 07:30](1096 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:13, 17:37](1889 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:11, 11:43] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:01, 26:59](1952 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:15, 12:59] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:41, 03:50](655 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:15, 03:30](1549 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:18, 03:36](1557 MB) +PASS -- TEST 'control_latlon_intel' [06:08, 03:21](1556 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:19, 03:31](1563 MB) +PASS -- TEST 'control_c48_intel' [13:19, 09:58](1578 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:10, 05:41](698 MB) +PASS -- TEST 'control_c192_intel' [14:16, 11:16](1680 MB) +PASS -- TEST 'control_c384_intel' [26:17, 23:53](1969 MB) +PASS -- TEST 'control_c384gdas_intel' [18:21, 14:53](1171 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:55](612 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:09, 01:37](418 MB) +PASS -- TEST 'control_lndp_intel' [03:30, 01:51](609 MB) +PASS -- TEST 'control_iovr4_intel' [04:27, 02:41](611 MB) +PASS -- TEST 'control_iovr5_intel' [04:25, 02:40](608 MB) +PASS -- TEST 'control_p8_intel' [07:11, 04:36](1841 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:03, 03:41](1844 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:04, 04:29](1847 MB) +PASS -- TEST 'control_restart_p8_intel' [05:01, 02:28](997 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:11, 04:30](1837 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:09, 02:17](1007 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:03, 04:05](1834 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:03, 03:26](1927 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:00, 06:39](1852 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:25, 04:23](1899 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:10, 03:56](1851 MB) +PASS -- TEST 'merra2_thompson_intel' [07:06, 04:11](1850 MB) +PASS -- TEST 'regional_control_intel' [06:41, 05:04](845 MB) +PASS -- TEST 'regional_restart_intel' [04:37, 02:36](848 MB) +PASS -- TEST 'regional_decomp_intel' [06:43, 04:56](846 MB) +PASS -- TEST 'regional_2threads_intel' [04:44, 03:04](983 MB) +PASS -- TEST 'regional_noquilt_intel' [06:46, 04:41](1172 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:45, 04:45](843 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:07](844 MB) +PASS -- TEST 'regional_wofs_intel' [08:41, 06:32](1570 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 11:56] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:26, 07:04](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:31, 04:18](1148 MB) +PASS -- TEST 'rap_decomp_intel' [10:30, 07:14](988 MB) +PASS -- TEST 'rap_2threads_intel' [09:26, 06:22](1073 MB) +PASS -- TEST 'rap_restart_intel' [06:46, 04:13](869 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:25, 06:59](988 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:30, 07:30](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:52, 05:12](869 MB) +PASS -- TEST 'hrrr_control_intel' [06:28, 03:51](982 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:23, 04:13](987 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:28, 03:10](1065 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:06](815 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:25, 06:51](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:02, 08:56](1942 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:02, 08:43](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [14:16, 12:39] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:25, 07:02](950 MB) +PASS -- TEST 'control_ras_intel' [05:27, 03:38](644 MB) + +PASS -- COMPILE 'wam_intel' [15:11, 13:14] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:13, 12:01](1637 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:48] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:05, 03:14](1845 MB) +PASS -- TEST 'regional_control_faster_intel' [06:48, 04:26](843 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 10:51] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 02:49](1581 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:56, 02:49](1580 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:09](783 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:53](783 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:22](1083 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:51](788 MB) +PASS -- TEST 'control_diag_debug_intel' [04:39, 03:04](1641 MB) +PASS -- TEST 'control_debug_p8_intel' [04:37, 03:04](1867 MB) +PASS -- TEST 'regional_debug_intel' [18:32, 16:12](884 MB) +PASS -- TEST 'rap_control_debug_intel' [06:29, 05:04](1164 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:57](1160 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 05:18](1163 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:29, 05:17](1161 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 05:09](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:15](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:13](1163 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 05:15](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:26, 05:08](1164 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 05:01](1165 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 05:07](1157 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 05:13](1163 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 07:58](1163 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 05:06](1157 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 06:37](1164 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:27, 05:15](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:57, 08:55](1167 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:15, 08:29] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:05, 13:46](1671 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:15, 11:10] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:01, 04:02](1023 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:42, 06:11](866 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:49, 03:32](863 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:42, 05:26](922 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:55, 02:55](912 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:39, 03:45](868 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:56, 04:15](773 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:04, 01:40](751 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:14, 12:42] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:18, 02:09](1072 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:24, 01:10](1063 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:18, 01:15](948 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 11:10] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:30, 04:17](894 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:52] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:00, 04:54](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:59, 05:07](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [16:17, 13:25](1123 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:08, 13:46](796 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:04, 07:54](1114 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:59, 13:40](1193 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:15, 08:11] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:54, 05:02](1062 MB) + +PASS -- COMPILE 'hafsw_intel' [15:11, 14:07] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:25, 05:01](712 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:43, 04:21](1065 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:31, 07:49](744 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:20, 11:45](771 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:39, 12:55](796 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:21, 05:24](475 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:33, 06:35](495 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:12, 03:21](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:37, 07:32](483 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:10, 04:00](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:16, 04:17](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:19, 04:42](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:18, 01:42](424 MB) +PASS -- TEST 'gnv1_nested_intel' [09:49, 05:48](1696 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:11, 10:06] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:47, 12:51](612 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:13, 15:05] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:22, 07:50](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:45, 08:09](810 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:24] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:13, 06:07](809 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:12, 14:19] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:44, 06:34](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:27, 06:36](720 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:37, 20:02](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:00, 11:29] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:30, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:36](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:26, 02:33](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:31, 02:46](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 02:34](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:29, 02:28](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:04, 06:27](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 06:22](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 02:44](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:26, 04:42](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:44](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:15, 07:47] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:28, 05:30](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:13, 11:29] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 02:40](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:15] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:46, 02:12](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:45, 01:39](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:41, 01:06](460 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:11, 02:34] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:47, 01:08](449 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:52, 00:15](255 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:14, 13:05] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:14, 04:43](1912 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:14, 11:44] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:10, 04:19](1905 MB) + +PASS -- COMPILE 'atml_intel' [22:11, 21:04] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:15, 07:36](1876 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:15, 07:38](1882 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:41, 04:37](1027 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:20, 08:47] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:17, 06:32](1911 MB) + +PASS -- COMPILE 'atmw_intel' [15:10, 13:24] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:58, 02:26](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [14:10, 12:40] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:16, 06:52](3100 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:04, 07:22](2988 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:38, 07:13](2996 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:11, 09:35] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:45, 18:12](4422 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:14, 11:54] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:43, 09:27](798 MB) SYNOPSIS: -Starting Date/Time: 20241003 10:58:55 -Ending Date/Time: 20241003 13:03:17 -Total Time: 02h:05m:18s -Compiles Completed: 42/42 -Tests Completed: 186/186 +Starting Date/Time: 20241017 20:04:15 +Ending Date/Time: 20241017 22:44:00 +Total Time: 02h:41m:22s +Compiles Completed: 43/43 +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 41eb20e38e..ff6bb65f57 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,17 +1,18 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -27fcef4059964b9e0da304984293d4bea802d1df +61e2d26b6b6977a6b2486ccc3f639470e651c095 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) 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) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) @@ -25,380 +26,383 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1043523 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241011 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3220251 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:14, 11:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:15, 06:12](3294 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:14, 15:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:06, 16:37](1977 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:21, 17:25](2171 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 07:58](1269 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 18:32](1859 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:14, 16:08] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:49, 16:13](1959 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:13, 06:02] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:10, 23:31](1881 MB) - -PASS -- COMPILE 's2swa_intel' [13:14, 11:51] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:13, 07:28](3353 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:27, 07:25](3315 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:48, 04:15](3251 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:13, 07:30](3345 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:48, 04:15](3274 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:05, 07:09](3641 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:09, 07:32](3317 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:10, 06:05](3219 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:23, 07:30](3350 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:22, 09:45](3517 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:52, 06:11](3617 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:55, 08:39](4295 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:07, 05:39](4386 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:10, 05:29](3298 MB) - -PASS -- COMPILE 's2sw_intel' [14:14, 11:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:15, 05:38](1947 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:22, 07:20](2046 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:13, 06:00] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:08, 12:50](3401 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:13, 05:26] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:08, 08:52](2013 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:13, 10:35] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:01, 04:19](2046 MB) - -PASS -- COMPILE 's2s_intel' [12:13, 10:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:39](3031 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:43, 02:38](3024 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:39, 01:32](2482 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:16, 16:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:16, 07:36](3349 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:16, 15:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:12, 17:18](2030 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:33, 08:00](1269 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:14, 19:05](1934 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:14, 05:40] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:59, 26:10](1944 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:13, 10:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:28, 03:19](702 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:49, 03:17](1579 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:54, 03:21](1594 MB) -PASS -- TEST 'control_latlon_intel' [05:45, 03:22](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:49, 03:17](1591 MB) -PASS -- TEST 'control_c48_intel' [13:43, 11:20](1717 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:30, 06:24](853 MB) -PASS -- TEST 'control_c192_intel' [15:03, 12:12](1752 MB) -PASS -- TEST 'control_c384_intel' [17:04, 13:53](1978 MB) -PASS -- TEST 'control_c384gdas_intel' [13:02, 08:11](1378 MB) -PASS -- TEST 'control_stochy_intel' [04:30, 02:20](654 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:30, 00:58](510 MB) -PASS -- TEST 'control_lndp_intel' [04:27, 02:03](661 MB) -PASS -- TEST 'control_iovr4_intel' [05:32, 02:39](645 MB) -PASS -- TEST 'control_iovr5_intel' [04:52, 02:40](650 MB) -PASS -- TEST 'control_p8_intel' [06:17, 03:46](1886 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:00, 03:02](1889 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 03:34](1877 MB) -PASS -- TEST 'control_restart_p8_intel' [04:49, 01:59](1129 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:49, 03:34](1834 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:53, 02:00](1160 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:51, 03:45](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:51, 03:33](1962 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:50, 06:34](1878 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:57, 03:59](1947 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:58, 03:08](1884 MB) -PASS -- TEST 'merra2_thompson_intel' [06:54, 03:18](1898 MB) -PASS -- TEST 'regional_control_intel' [07:39, 05:12](1095 MB) -PASS -- TEST 'regional_restart_intel' [05:40, 02:57](1085 MB) -PASS -- TEST 'regional_decomp_intel' [08:36, 05:33](1078 MB) -PASS -- TEST 'regional_2threads_intel' [05:35, 03:23](1077 MB) -PASS -- TEST 'regional_noquilt_intel' [07:40, 05:12](1390 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:41, 05:12](1083 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:17](1087 MB) -PASS -- TEST 'regional_wofs_intel' [08:37, 06:48](1889 MB) - -PASS -- COMPILE 'rrfs_intel' [11:13, 09:33] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:50, 07:45](1102 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 04:03](1248 MB) -PASS -- TEST 'rap_decomp_intel' [09:50, 08:07](1031 MB) -PASS -- TEST 'rap_2threads_intel' [09:51, 07:19](1166 MB) -PASS -- TEST 'rap_restart_intel' [06:51, 04:03](1098 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:52, 07:43](1106 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:52, 08:11](1028 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:49, 05:48](1121 MB) -PASS -- TEST 'hrrr_control_intel' [05:47, 04:03](1038 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:47, 04:03](1023 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:47, 03:42](1102 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:10](993 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:55, 07:39](1088 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:36, 09:36](1977 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:35, 08:59](2061 MB) - -PASS -- COMPILE 'csawmg_intel' [10:14, 09:07] -PASS -- TEST 'control_csawmg_intel' [08:46, 06:14](1014 MB) -PASS -- TEST 'control_ras_intel' [05:28, 03:17](750 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:13, 04:09] -PASS -- TEST 'control_csawmg_gnu' [10:42, 08:20](738 MB) - -PASS -- COMPILE 'wam_intel' [11:13, 09:29] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:45, 11:03](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:13, 09:33] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:56, 02:44](1892 MB) -PASS -- TEST 'regional_control_faster_intel' [06:37, 04:46](1082 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:13, 07:23] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:43, 02:12](1617 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:08](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:25, 02:59](827 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:43](831 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:11](1132 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:45](843 MB) -PASS -- TEST 'control_diag_debug_intel' [04:48, 02:44](1685 MB) -PASS -- TEST 'control_debug_p8_intel' [04:44, 02:30](1891 MB) -PASS -- TEST 'regional_debug_intel' [18:39, 16:38](1086 MB) -PASS -- TEST 'rap_control_debug_intel' [06:25, 04:47](1173 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:45](1211 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:48](1215 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 04:51](1206 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:47](1211 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:45, 04:58](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 04:56](1214 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:54](1215 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 04:49](1220 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 04:51](1212 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:44](1212 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:44](1214 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 07:56](1214 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 04:49](1211 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 06:01](1213 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:59](1207 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:31](1222 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 04:10] -PASS -- TEST 'control_csawmg_debug_gnu' [04:39, 02:12](717 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:14, 04:27] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:54, 12:49](1684 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:15, 10:37] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 03:50](1124 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:39, 06:22](1048 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:36, 03:28](977 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:39, 06:04](1081 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:10](955 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 03:34](930 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:42, 04:48](1024 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:53](921 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:15, 09:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:07, 02:03](1188 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:50, 00:51](1100 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:12](1100 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 09:29] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:41, 04:13](977 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:43] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:41](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:34](1089 MB) -PASS -- TEST 'conus13km_debug_intel' [16:52, 14:19](1239 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 14:35](976 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:03](1154 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:52, 14:19](1306 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 04:30] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:31, 04:48](1137 MB) - -PASS -- COMPILE 'hafsw_intel' [12:14, 11:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:22, 04:56](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:36, 06:29](1094 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:30, 06:54](817 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:25, 13:05](848 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:34, 14:48](864 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:55, 05:29](487 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 06:40](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:38](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:38, 07:20](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 03:38](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:34](522 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:55, 04:13](578 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:29, 01:08](402 MB) -PASS -- TEST 'gnv1_nested_intel' [06:39, 03:58](1741 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:13, 05:29] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:55, 12:30](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:16, 10:41] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:06, 08:37](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 08:46](737 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:14, 10:54] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:34, 06:27](703 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:15, 10:34] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:25, 06:22](813 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:33, 06:24](797 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:59, 16:15](1215 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:15, 07:16] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:46](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:45](1108 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:42](1025 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:44](1025 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:40](1025 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:44](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:45](1158 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:38](1031 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:27, 06:18](1071 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:22, 06:31](1044 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:46](1156 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:47](2519 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:54](2512 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:15] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:22, 06:10](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:14, 06:21] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:31, 02:48](1168 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:12] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:44](265 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:52](329 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:29](321 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:16, 10:03] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:08, 03:39](1949 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:15, 09:38] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:02, 03:32](1967 MB) - -PASS -- COMPILE 'atml_intel' [12:12, 10:01] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:01, 04:11](1834 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 04:10](1863 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:21](1087 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:44] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:55, 05:28](1898 MB) - -PASS -- COMPILE 'atmw_intel' [12:12, 10:09] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:52](1914 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 09:43] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:54, 03:59](3186 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:56, 04:44](3090 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:49](3114 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:41] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:30] -PASS -- TEST 'control_c48_gnu' [11:47, 09:19](1508 MB) -PASS -- TEST 'control_stochy_gnu' [05:21, 03:22](495 MB) -PASS -- TEST 'control_ras_gnu' [06:19, 04:51](504 MB) -PASS -- TEST 'control_p8_gnu' [08:01, 05:10](1443 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:08, 05:01](1455 MB) -PASS -- TEST 'control_flake_gnu' [12:25, 10:27](505 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:25] -PASS -- TEST 'rap_control_gnu' [13:38, 11:14](809 MB) -PASS -- TEST 'rap_decomp_gnu' [13:37, 11:19](805 MB) -PASS -- TEST 'rap_2threads_gnu' [12:41, 10:10](914 MB) -PASS -- TEST 'rap_restart_gnu' [07:50, 05:44](573 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:09](804 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 11:24](835 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:51, 08:22](574 MB) -PASS -- TEST 'hrrr_control_gnu' [07:39, 05:47](836 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:36, 05:44](786 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:34, 05:14](902 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:41, 05:52](802 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:32, 03:01](560 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:31, 02:57](646 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:47, 11:03](803 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:21] -PASS -- TEST 'control_diag_debug_gnu' [03:45, 01:30](1266 MB) -PASS -- TEST 'regional_debug_gnu' [13:39, 11:13](742 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:35](817 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:22, 02:23](814 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:25](821 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:28](813 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:42, 02:39](899 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:22, 03:47](816 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:28](818 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:23](810 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:28](456 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:37](448 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:34](1425 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:24, 02:27](820 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:24, 02:40](825 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:39, 03:58](828 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:39] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:01] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:33, 09:33](696 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:35, 05:02](693 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:39, 08:53](743 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:36, 04:39](738 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:37, 05:13](692 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:41, 07:08](547 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:32, 02:38](528 MB) -PASS -- TEST 'conus13km_control_gnu' [06:05, 03:21](863 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:50, 06:01](889 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:47, 01:55](549 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:22] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:50, 05:47](721 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:24] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:25, 02:26](703 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:24, 02:23](704 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:58, 06:35](877 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:51, 06:32](569 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:45, 07:36](882 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:46, 06:24](946 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:21] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:30, 02:34](733 MB) - -PASS -- COMPILE 's2swa_gnu' [17:11, 15:33] - -PASS -- COMPILE 's2s_gnu' [16:13, 15:07] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [15:20, 12:16](1505 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:54] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 15:14] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:10, 21:19](1441 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:51] - -PASS -- COMPILE 'datm_cdeps_gnu' [16:15, 14:32] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:22, 03:01](689 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:37](1081 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:16] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:17, 06:10](3290 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 15:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:00, 16:52](1947 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:14, 17:23](2139 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:06, 07:57](1246 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:56, 18:41](1840 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 15:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:44, 16:19](1947 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:57] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:13, 23:29](1886 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 12:23] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:21, 07:59](3325 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:34, 07:45](3308 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:27, 04:13](3224 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:21, 07:39](3332 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 04:15](3242 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:21, 07:22](3595 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:19, 07:32](3308 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:15, 06:08](3190 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:30, 07:31](3312 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:12, 09:53](3490 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:32, 06:01](3589 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:37, 08:46](4262 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:17, 05:33](4351 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:13, 05:27](3283 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 11:32] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:55, 05:52](1962 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:59, 07:29](1994 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:54] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:14, 13:06](3323 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:37] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:04, 08:54](1959 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 10:50] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:57, 04:20](2015 MB) + +PASS -- COMPILE 's2s_intel' [12:11, 10:53] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:39, 07:40](3004 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:40, 02:42](3019 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:39, 01:32](2466 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:14, 07:09](3327 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 16:52](2001 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 08:06](1257 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:04, 19:15](1904 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:17] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:12, 26:04](1933 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:20](689 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 03:15](1566 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:50, 03:19](1570 MB) +PASS -- TEST 'control_latlon_intel' [05:41, 03:09](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:55, 03:11](1564 MB) +PASS -- TEST 'control_c48_intel' [13:48, 11:19](1704 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:37, 06:22](826 MB) +PASS -- TEST 'control_c192_intel' [14:04, 11:49](1734 MB) +PASS -- TEST 'control_c384_intel' [17:03, 13:19](1955 MB) +PASS -- TEST 'control_c384gdas_intel' [11:25, 08:02](1346 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:36](639 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:28, 01:00](470 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:32](636 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:26](629 MB) +PASS -- TEST 'control_iovr5_intel' [04:24, 02:27](631 MB) +PASS -- TEST 'control_p8_intel' [05:52, 03:40](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:53, 03:04](1876 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:48, 03:33](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [03:43, 02:00](1108 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:47, 03:34](1836 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:53, 01:59](1133 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:47, 03:39](1839 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:47, 03:26](1931 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:43, 06:27](1847 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:55, 03:54](1937 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:52, 03:02](1877 MB) +PASS -- TEST 'merra2_thompson_intel' [05:50, 03:18](1865 MB) +PASS -- TEST 'regional_control_intel' [07:35, 05:12](1071 MB) +PASS -- TEST 'regional_restart_intel' [04:35, 02:54](1062 MB) +PASS -- TEST 'regional_decomp_intel' [07:34, 05:32](1062 MB) +PASS -- TEST 'regional_2threads_intel' [05:36, 03:19](1071 MB) +PASS -- TEST 'regional_noquilt_intel' [07:38, 05:11](1366 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:11](1073 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:14](1067 MB) +PASS -- TEST 'regional_wofs_intel' [08:36, 06:53](1877 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 09:48] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:47, 07:47](1076 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:03, 04:08](1227 MB) +PASS -- TEST 'rap_decomp_intel' [10:39, 08:10](1004 MB) +PASS -- TEST 'rap_2threads_intel' [09:47, 07:20](1160 MB) +PASS -- TEST 'rap_restart_intel' [05:45, 04:01](1078 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:48, 07:43](1081 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:40, 08:07](1014 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:47](1100 MB) +PASS -- TEST 'hrrr_control_intel' [05:40, 04:00](1013 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:40, 04:06](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:40, 03:41](1083 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:30, 02:11](966 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:50, 07:40](1069 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 09:26](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:03](2036 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:27] +PASS -- TEST 'control_csawmg_intel' [08:36, 06:12](1004 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:14](730 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:14] +PASS -- TEST 'control_csawmg_gnu' [10:35, 08:31](722 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 09:27] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:46, 11:04](1634 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 09:46] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:46, 02:42](1869 MB) +PASS -- TEST 'regional_control_faster_intel' [06:38, 04:45](1067 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:22] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:40, 02:09](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:44, 02:07](1576 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:21, 02:58](781 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:41](795 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:15](1094 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:42](797 MB) +PASS -- TEST 'control_diag_debug_intel' [04:42, 02:44](1645 MB) +PASS -- TEST 'control_debug_p8_intel' [04:42, 02:32](1866 MB) +PASS -- TEST 'regional_debug_intel' [18:40, 16:54](1057 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 04:48](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:52](1165 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:53](1169 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:52](1170 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:47](1170 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:02](1260 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 04:52](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:50](1171 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:50](1170 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:55](1175 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:48](1173 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:56](1185 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:27, 07:52](1181 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:56](1172 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:48](1169 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:25, 04:49](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 08:22](1175 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:59] +PASS -- TEST 'control_csawmg_debug_gnu' [04:36, 02:10](696 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:41] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:58, 12:44](1647 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 03:49](1104 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:35, 06:24](1016 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 03:28](960 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 06:05](1055 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:07](930 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:34](918 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:46, 04:51](1003 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:52](901 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:54, 02:05](1165 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:40, 00:50](1089 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:11](1077 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:35] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:12](959 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:36] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:42](1047 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:39](1045 MB) +PASS -- TEST 'conus13km_debug_intel' [15:53, 13:19](1160 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 13:35](883 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:44, 07:32](1100 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 13:32](1233 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:36] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:46](1099 MB) + +PASS -- COMPILE 'hafsw_intel' [12:11, 10:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:18, 04:45](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:29, 05:47](1081 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:21, 06:51](796 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:18, 12:59](951 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:23, 14:44](850 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:02, 05:16](473 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:46, 06:22](482 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:42, 02:36](354 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:36, 07:24](434 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:43, 03:36](494 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 03:22](490 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:06](547 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:09](381 MB) +PASS -- TEST 'gnv1_nested_intel' [07:00, 03:59](1708 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:00] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 12:31](541 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:12, 10:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:02, 08:25](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:16, 08:42](682 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:10, 10:59] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:40, 06:24](685 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:27] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:24, 06:16](786 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:20](764 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 15:48](1205 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 06:19] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:34, 02:42](1153 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:40](1094 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:26, 02:33](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:37](1019 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:43](1016 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:44](1141 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:59](1129 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:41](1016 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:24, 06:28](1062 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:19, 06:26](1037 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:48](1125 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:21, 03:55](2506 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:39](2443 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:23] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:05](1069 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:20] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:42](1160 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:07] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:46](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:51](314 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:36](314 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:16] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:31](564 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:17](447 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:52] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:05, 03:53](1947 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:49] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:51, 03:32](1935 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 10:17] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:59, 04:14](1842 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:53, 04:15](1828 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:43, 02:21](1060 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:31] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:50, 05:34](1843 MB) + +PASS -- COMPILE 'atmw_intel' [11:11, 10:00] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:48](1895 MB) + +PASS -- COMPILE 'atmaero_intel' [11:11, 09:48] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:55, 04:02](3165 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:56, 04:46](3060 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 04:48](3087 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:35] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:12, 04:22] +PASS -- TEST 'control_c48_gnu' [11:40, 09:24](1494 MB) +PASS -- TEST 'control_stochy_gnu' [05:24, 03:25](481 MB) +PASS -- TEST 'control_ras_gnu' [06:25, 04:51](494 MB) +PASS -- TEST 'control_p8_gnu' [07:51, 05:12](1437 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:53, 05:04](1433 MB) +PASS -- TEST 'control_flake_gnu' [12:25, 10:24](524 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:08] +PASS -- TEST 'rap_control_gnu' [13:36, 11:12](801 MB) +PASS -- TEST 'rap_decomp_gnu' [13:31, 11:24](806 MB) +PASS -- TEST 'rap_2threads_gnu' [12:34, 10:11](907 MB) +PASS -- TEST 'rap_restart_gnu' [07:41, 05:44](556 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:38, 11:16](827 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:34, 11:24](799 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:46, 08:23](561 MB) +PASS -- TEST 'hrrr_control_gnu' [07:35, 05:48](794 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:31, 05:45](778 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:30, 05:13](892 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:46](829 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:26, 02:58](544 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 02:54](632 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:44, 10:55](792 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:28] +PASS -- TEST 'control_diag_debug_gnu' [03:43, 01:33](1247 MB) +PASS -- TEST 'regional_debug_gnu' [12:35, 10:34](702 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:21, 02:26](805 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:21](793 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:21, 02:21](798 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:25](802 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:31, 02:39](883 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:22, 03:45](797 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:21, 02:30](797 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:26](796 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:27](433 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:35](428 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:28](1409 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:25](799 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:35](802 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:33, 03:57](804 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:31] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:08] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:29, 09:33](683 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:35, 05:00](684 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:32, 08:49](728 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:28, 04:39](727 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:31, 05:09](681 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:37, 07:10](533 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:26, 02:39](518 MB) +PASS -- TEST 'conus13km_control_gnu' [04:49, 03:06](847 MB) +PASS -- TEST 'conus13km_2threads_gnu' [08:41, 06:21](854 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:41, 01:47](537 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:21] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:41, 05:49](705 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:20] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 02:17](687 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:22, 02:15](688 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:47, 06:07](850 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:43, 06:20](550 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:41, 07:30](854 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:40, 06:17](913 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:25] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:23](708 MB) + +PASS -- COMPILE 's2swa_gnu' [17:11, 15:34] + +PASS -- COMPILE 's2s_gnu' [17:11, 15:25] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [15:10, 12:13](1490 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:10] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:48] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:58, 21:37](1452 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:01] + +PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 14:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 03:00](688 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:28, 11:58](1066 MB) SYNOPSIS: -Starting Date/Time: 20241002 18:34:02 -Ending Date/Time: 20241002 20:39:20 -Total Time: 02h:06m:49s -Compiles Completed: 58/58 -Tests Completed: 244/244 +Starting Date/Time: 20241014 00:56:56 +Ending Date/Time: 20241014 02:37:16 +Total Time: 01h:40m:35s +Compiles Completed: 59/59 +Tests Completed: 246/246 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 ada6d70f6d..4a43f5e864 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: -72afacdfb7986f4a761f188cdf6eb4c740c51224 +61e2d26b6b6977a6b2486ccc3f639470e651c095 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,18 +9,20 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) + d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) @@ -36,379 +38,378 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241001 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1451143 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241011 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1248227 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:53] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:32, 08:45](2126 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 17:15] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:29, 13:26](1992 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:45, 15:18](2281 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [21:48, 07:57](1352 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:10, 15:18](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 17:59] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:49, 13:17](1988 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 05:32] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:31, 23:06](1968 MB) - -PASS -- COMPILE 's2swa_intel' [12:11, 11:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:16, 08:10](2193 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:30, 08:55](2199 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:41, 05:23](1954 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:14, 08:11](2214 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:43, 05:35](1726 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:11, 09:47](2544 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:13, 08:12](2189 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:12, 06:51](2105 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:27, 08:04](2199 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:26, 16:20](2974 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [20:55, 06:52](2907 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:25, 10:43](3820 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:30, 07:07](3634 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:17, 05:11](2134 MB) - -PASS -- COMPILE 's2sw_intel' [11:11, 10:07] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:08, 07:23](2004 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:17, 07:05](2072 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:31] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:26, 12:23](2241 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:01] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:19, 08:40](2044 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:11, 09:56] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:22, 04:11](2072 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 11:26] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:53, 06:01](3022 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 02:12](3032 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:04, 01:15](2471 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:11, 11:43] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:26, 10:23](2216 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:50] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:09, 14:44](2065 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:25, 07:38](1387 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:25, 16:20](1998 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:46] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:06, 23:52](2005 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:11, 08:41] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:27, 03:23](714 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:46, 02:51](1596 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:51, 02:56](1601 MB) -PASS -- TEST 'control_latlon_intel' [08:49, 02:50](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:50, 02:56](1589 MB) -PASS -- TEST 'control_c48_intel' [16:50, 10:20](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:31, 05:54](836 MB) -PASS -- TEST 'control_c192_intel' [17:04, 10:32](1781 MB) -PASS -- TEST 'control_c384_intel' [16:57, 12:26](2040 MB) -PASS -- TEST 'control_c384gdas_intel' [17:36, 10:46](1505 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:49](669 MB) -PASS -- TEST 'control_stochy_restart_intel' [08:29, 01:18](531 MB) -PASS -- TEST 'control_lndp_intel' [07:27, 01:46](664 MB) -PASS -- TEST 'control_iovr4_intel' [08:26, 02:50](669 MB) -PASS -- TEST 'control_iovr5_intel' [07:27, 02:53](667 MB) -PASS -- TEST 'control_p8_intel' [09:07, 03:57](1880 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:13, 04:38](1900 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:13, 04:14](1879 MB) -PASS -- TEST 'control_restart_p8_intel' [13:02, 02:18](1161 MB) -PASS -- TEST 'control_noqr_p8_intel' [14:10, 04:36](1882 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [15:06, 02:47](1211 MB) -PASS -- TEST 'control_decomp_p8_intel' [16:51, 03:58](1885 MB) -PASS -- TEST 'control_2threads_p8_intel' [14:59, 03:58](1961 MB) -PASS -- TEST 'control_p8_lndp_intel' [17:41, 06:45](1870 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [18:08, 05:07](1975 MB) -PASS -- TEST 'control_p8_mynn_intel' [17:00, 03:23](1906 MB) -PASS -- TEST 'merra2_thompson_intel' [18:20, 04:29](1896 MB) -PASS -- TEST 'regional_control_intel' [17:44, 05:38](1190 MB) -PASS -- TEST 'regional_restart_intel' [10:39, 03:14](1163 MB) -PASS -- TEST 'regional_decomp_intel' [17:38, 05:45](1180 MB) -PASS -- TEST 'regional_2threads_intel' [15:35, 03:58](1156 MB) -PASS -- TEST 'regional_noquilt_intel' [17:36, 05:35](1521 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [19:46, 05:53](1187 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [18:33, 05:49](1201 MB) -PASS -- TEST 'regional_wofs_intel' [21:35, 07:49](2071 MB) - -PASS -- COMPILE 'rrfs_intel' [10:11, 08:26] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [21:02, 07:08](1220 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:07, 04:02](1357 MB) -PASS -- TEST 'rap_decomp_intel' [19:42, 07:38](1146 MB) -PASS -- TEST 'rap_2threads_intel' [19:39, 07:14](1361 MB) -PASS -- TEST 'rap_restart_intel' [07:02, 03:53](1135 MB) -PASS -- TEST 'rap_sfcdiff_intel' [19:55, 07:08](1194 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [19:42, 07:33](1155 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:56, 05:26](1213 MB) -PASS -- TEST 'hrrr_control_intel' [16:50, 03:33](1063 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [16:42, 03:36](1034 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [16:45, 03:18](1127 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:35, 01:57](1012 MB) -PASS -- TEST 'rrfs_v1beta_intel' [20:07, 06:49](1219 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [19:25, 10:19](2004 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:23, 10:19](2191 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:04] -PASS -- TEST 'control_csawmg_intel' [15:33, 07:25](1038 MB) -PASS -- TEST 'control_ras_intel' [11:20, 03:27](845 MB) - -PASS -- COMPILE 'csawmg_gnu' [07:11, 04:50] -PASS -- TEST 'control_csawmg_gnu' [09:53, 07:10](1068 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 09:07] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [17:46, 09:47](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:04] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [11:14, 03:21](1903 MB) -PASS -- TEST 'regional_control_faster_intel' [12:36, 05:42](1191 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:10, 07:31] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:40, 02:02](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:42, 02:00](1622 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:24, 02:32](841 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:24, 02:23](847 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:39, 04:40](1144 MB) -PASS -- TEST 'control_ras_debug_intel' [05:26, 02:25](851 MB) -PASS -- TEST 'control_diag_debug_intel' [05:42, 02:31](1691 MB) -PASS -- TEST 'control_debug_p8_intel' [05:41, 02:42](1921 MB) -PASS -- TEST 'regional_debug_intel' [18:40, 15:40](1141 MB) -PASS -- TEST 'rap_control_debug_intel' [06:21, 04:14](1228 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:25, 04:04](1220 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 04:20](1217 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:20](1226 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:16](1229 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:29, 04:42](1312 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 04:19](1224 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 04:17](1218 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:07](1228 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:09](1226 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:09](1220 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:08](1232 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 06:39](1215 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:11](1222 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 04:55](1226 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:13](1218 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 07:11](1232 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:06] -PASS -- TEST 'control_csawmg_debug_gnu' [05:45, 03:06](1038 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 03:45] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:16] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:01, 03:36](1232 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:52, 05:26](1145 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:51, 03:01](1039 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:46, 05:25](1260 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 02:46](1023 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:42, 03:10](998 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:00, 04:03](1097 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:35, 01:39](950 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:50, 02:32](1288 MB) -PASS -- TEST 'conus13km_2threads_intel' [15:51, 01:05](1189 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [15:41, 01:27](1131 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:37, 03:51](1076 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:10, 03:44] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [12:22, 04:50](1103 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:22, 04:44](1096 MB) -PASS -- TEST 'conus13km_debug_intel' [22:53, 14:05](1341 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [22:51, 14:01](1000 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [18:49, 11:01](1237 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:48, 14:06](1427 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 04:44] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:29, 04:26](1166 MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 11:21] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:15, 05:49](844 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 05:36](1246 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:26, 06:56](918 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [23:18, 14:55](946 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 15:39](967 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:02, 05:33](595 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:23, 07:44](605 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [12:51, 03:01](439 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:15, 08:22](546 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:50, 04:08](600 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:52, 03:45](599 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:01, 04:59](664 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:29, 01:18](457 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 04:58] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:49, 12:04](631 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:11, 10:19] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:59, 15:57](735 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [29:06, 15:44](833 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 11:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [25:53, 11:00](807 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 09:46] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [25:15, 07:32](912 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [24:11, 07:19](905 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [30:03, 16:31](1341 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:10, 06:20] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [15:21, 02:14](1130 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:21, 01:26](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [15:18, 02:08](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [14:18, 02:15](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [14:18, 02:11](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [13:18, 02:14](1163 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [14:18, 02:19](1142 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [13:19, 02:12](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [15:16, 05:24](1171 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:10, 05:19](1152 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [11:15, 02:17](1144 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [12:17, 03:09](2400 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [11:17, 03:13](2396 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:58] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [12:18, 05:13](1075 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 05:19] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:17, 02:16](1148 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:48] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:31, 01:00](339 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:22, 01:00](572 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:26, 00:39](573 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 09:19] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:09, 03:24](2019 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 08:34] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:01, 03:20](1987 MB) - -PASS -- COMPILE 'atml_intel' [13:10, 09:17] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:18, 05:55](1892 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:14, 05:56](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 03:18](1140 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 04:48] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:08, 06:39](1928 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 10:09] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:08, 02:47](1942 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 09:34] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:07, 05:42](1999 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:20, 05:27](1791 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:59, 05:31](1793 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:11, 04:11] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:09, 17:32](4521 MB) - -PASS -- COMPILE 'atm_gnu' [09:11, 05:10] -PASS -- TEST 'control_c48_gnu' [13:53, 07:59](1525 MB) -PASS -- TEST 'control_stochy_gnu' [06:24, 02:41](722 MB) -PASS -- TEST 'control_ras_gnu' [08:21, 04:13](725 MB) -PASS -- TEST 'control_p8_gnu' [09:16, 05:16](1702 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [08:55, 05:16](1718 MB) -PASS -- TEST 'control_flake_gnu' [07:25, 04:52](800 MB) - -PASS -- COMPILE 'rrfs_gnu' [08:10, 05:18] -PASS -- TEST 'rap_control_gnu' [11:52, 08:33](1070 MB) -PASS -- TEST 'rap_decomp_gnu' [11:55, 08:30](1072 MB) -PASS -- TEST 'rap_2threads_gnu' [11:06, 07:35](1132 MB) -PASS -- TEST 'rap_restart_gnu' [06:59, 04:12](880 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:00, 08:18](1090 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:00, 08:25](1074 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:16, 06:19](877 MB) -PASS -- TEST 'hrrr_control_gnu' [07:46, 04:37](1062 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:48, 04:30](1127 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:01, 03:57](1021 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:53, 04:44](1060 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:30, 02:18](876 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:34, 02:13](924 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:11, 08:13](1067 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:11, 06:03] -PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:33](1618 MB) -PASS -- TEST 'regional_debug_gnu' [09:41, 07:45](1127 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:11](1090 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 02:01](1080 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:19](1085 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:07](1087 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:35, 02:29](1263 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:23, 03:20](1090 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:24](1091 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:26, 02:18](1082 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:21, 01:26](719 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:30](721 MB) -PASS -- TEST 'control_debug_p8_gnu' [04:46, 02:25](1698 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:26, 02:12](1090 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:23, 02:19](1091 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:03, 03:48](1091 MB) - -PASS -- COMPILE 'wam_debug_gnu' [08:11, 02:50] -PASS -- TEST 'control_wam_debug_gnu' [07:54, 05:14](1557 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [11:11, 04:32] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:59, 07:54](953 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:10, 04:32](941 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:42, 07:01](966 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:53, 03:43](880 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:54, 04:04](941 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:54, 05:47](854 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:28, 02:15](864 MB) -PASS -- TEST 'conus13km_control_gnu' [05:01, 02:41](1254 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:51, 01:06](1167 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 01:30](936 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [17:11, 10:57] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:42, 04:38](985 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [15:11, 09:09] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:26, 02:05](968 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:27, 02:08](964 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:01, 06:19](1276 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:55, 06:11](967 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:52, 03:47](1187 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:54, 06:04](1343 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:11, 09:13] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:28, 02:23](996 MB) - -PASS -- COMPILE 's2swa_gnu' [22:11, 17:14] - -PASS -- COMPILE 's2s_gnu' [21:11, 16:27] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:27, 09:42](2721 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [06:10, 03:45] - -PASS -- COMPILE 's2sw_pdlib_gnu' [23:12, 18:24] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [29:29, 26:52](3026 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [11:11, 06:19] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:20, 12:57](2896 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [20:11, 15:59] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 02:20](770 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:11, 09:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:37, 09:58](1079 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [11:55, 11:55] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:27, 07:44](2129 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:49, 17:49] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:02, 13:24](1993 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:52, 14:05](2292 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:37, 06:33](1326 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:53, 15:04](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:30, 17:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:33, 13:04](1989 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:34, 07:34] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:48, 21:57](1969 MB) + +PASS -- COMPILE 's2swa_intel' [12:39, 12:39] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:52, 08:01](2197 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 08:10](2202 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:04, 04:32](1973 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:58, 08:09](2221 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:29, 04:31](1742 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:50, 09:06](2545 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:33, 07:49](2194 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:30, 06:45](2103 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:49, 08:13](2199 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:19, 14:59](2969 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:05, 05:53](2909 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [13:09, 08:47](3819 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:50, 06:24](3630 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:44, 05:07](2140 MB) + +PASS -- COMPILE 's2sw_intel' [12:03, 12:03] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:55, 07:16](2006 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:24, 06:50](2071 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:24, 07:24] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:26, 12:43](2243 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:51, 06:50] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:28, 07:52](2035 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:53, 10:53] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:48, 04:03](2060 MB) + +PASS -- COMPILE 's2s_intel' [11:03, 11:03] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:43, 06:12](3032 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:05, 02:35](3023 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:48, 01:31](2484 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:17, 12:17] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:48, 08:02](2211 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:29, 20:29] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:27, 13:52](2074 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:45, 07:01](1378 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:54, 15:22](1990 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:32, 04:32] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:42, 23:00](2017 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:54, 08:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:25, 03:12](709 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:15, 02:51](1593 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:24, 02:58](1594 MB) +PASS -- TEST 'control_latlon_intel' [03:10, 02:50](1584 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:21, 02:50](1581 MB) +PASS -- TEST 'control_c48_intel' [10:43, 10:26](1713 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:12, 06:00](830 MB) +PASS -- TEST 'control_c192_intel' [10:45, 10:13](1775 MB) +PASS -- TEST 'control_c384_intel' [13:06, 12:04](2015 MB) +PASS -- TEST 'control_c384gdas_intel' [11:46, 10:20](1516 MB) +PASS -- TEST 'control_stochy_intel' [01:59, 01:48](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:23, 01:11](545 MB) +PASS -- TEST 'control_lndp_intel' [01:45, 01:36](667 MB) +PASS -- TEST 'control_iovr4_intel' [02:53, 02:42](665 MB) +PASS -- TEST 'control_iovr5_intel' [03:02, 02:50](658 MB) +PASS -- TEST 'control_p8_intel' [03:53, 03:15](1880 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:04, 03:26](1908 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:50, 03:13](1880 MB) +PASS -- TEST 'control_restart_p8_intel' [02:19, 01:53](1155 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:44, 03:13](1875 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:21, 01:51](1193 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:55, 03:17](1872 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:34, 02:59](1973 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:58, 05:38](1882 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:17, 03:37](1966 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:27, 02:46](1909 MB) +PASS -- TEST 'merra2_thompson_intel' [04:49, 04:01](1902 MB) +PASS -- TEST 'regional_control_intel' [04:58, 04:44](1199 MB) +PASS -- TEST 'regional_restart_intel' [03:03, 02:45](1170 MB) +PASS -- TEST 'regional_decomp_intel' [05:03, 04:49](1181 MB) +PASS -- TEST 'regional_2threads_intel' [03:12, 02:58](1153 MB) +PASS -- TEST 'regional_noquilt_intel' [04:55, 04:33](1520 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:01, 04:40](1195 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [04:53, 04:39](1204 MB) +PASS -- TEST 'regional_wofs_intel' [07:33, 07:18](2079 MB) + +PASS -- COMPILE 'rrfs_intel' [08:28, 08:28] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:17, 06:44](1198 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:01, 03:28](1355 MB) +PASS -- TEST 'rap_decomp_intel' [07:32, 06:59](1142 MB) +PASS -- TEST 'rap_2threads_intel' [07:10, 06:35](1369 MB) +PASS -- TEST 'rap_restart_intel' [04:17, 03:37](1159 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:35, 06:56](1207 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:53, 07:15](1156 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:57, 05:11](1190 MB) +PASS -- TEST 'hrrr_control_intel' [04:08, 03:29](1069 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:13, 03:32](1040 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:50, 03:11](1114 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:08, 01:52](1029 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:13, 06:32](1217 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:34, 08:24](1998 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:15, 08:04](2167 MB) + +PASS -- COMPILE 'csawmg_intel' [08:17, 08:16] +PASS -- TEST 'control_csawmg_intel' [06:38, 06:20](1051 MB) +PASS -- TEST 'control_ras_intel' [03:44, 03:31](848 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:08, 04:08] +PASS -- TEST 'control_csawmg_gnu' [07:19, 07:03](1071 MB) + +PASS -- COMPILE 'wam_intel' [09:13, 09:13] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:25, 10:06](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:01, 09:01] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [02:59, 02:25](1898 MB) +PASS -- TEST 'regional_control_faster_intel' [05:19, 05:06](1189 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:16, 06:16] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:09, 01:53](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:11, 01:52](1627 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:37, 02:31](837 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:20, 02:15](836 MB) +PASS -- TEST 'control_csawmg_debug_intel' [03:44, 03:32](1156 MB) +PASS -- TEST 'control_ras_debug_intel' [02:26, 02:19](852 MB) +PASS -- TEST 'control_diag_debug_intel' [02:40, 02:19](1696 MB) +PASS -- TEST 'control_debug_p8_intel' [02:38, 02:16](1918 MB) +PASS -- TEST 'regional_debug_intel' [15:09, 14:51](1140 MB) +PASS -- TEST 'rap_control_debug_intel' [04:15, 04:08](1226 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:09, 04:01](1213 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:26, 04:18](1226 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:14, 04:06](1215 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:14, 04:07](1227 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:26, 04:12](1310 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:19, 04:12](1224 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:21, 04:14](1230 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:12](1225 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:21, 04:09](1219 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:17, 04:09](1228 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:14, 04:06](1225 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:14, 07:06](1225 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 04:13](1224 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:08, 05:00](1223 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:16, 04:03](1220 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:47, 07:06](1215 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 04:10] +PASS -- TEST 'control_csawmg_debug_gnu' [02:28, 02:08](1037 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:08, 04:08] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:00, 08:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:51, 03:18](1237 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:12, 06:35](1166 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:50, 03:01](1026 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:04, 06:32](1281 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:57, 08:04](1023 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:46, 03:05](971 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:47, 05:05](1114 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:46, 01:39](943 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:34, 08:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:38, 02:15](1274 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:13, 00:52](1186 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:38, 01:20](1122 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:35, 08:35] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:07, 03:43](1077 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:56, 03:55] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:31, 04:19](1105 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:44, 04:37](1095 MB) +PASS -- TEST 'conus13km_debug_intel' [12:50, 12:24](1346 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:11, 13:42](998 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:14, 09:48](1248 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:47, 12:21](1414 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:32, 03:31] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:15, 04:04](1154 MB) + +PASS -- COMPILE 'hafsw_intel' [09:36, 09:36] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:13, 05:18](858 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:15, 04:57](1247 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:40, 06:29](922 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 14:05](948 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:19, 16:09](987 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:24, 05:35](595 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:56, 07:41](603 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:23, 02:43](427 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:04, 08:37](548 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:01, 04:18](600 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:55, 04:07](597 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:06, 05:13](665 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:54, 01:26](444 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:00, 05:00] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:57, 12:07](638 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:24, 10:24] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:45, 16:58](734 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:01, 16:12](833 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:34, 10:33] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:37, 10:22](813 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:04, 10:04] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:07, 07:20](915 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:22, 07:31](899 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:08, 16:33](1348 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:06, 06:06] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 03:10](1152 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:51, 01:45](1081 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:01, 02:55](1010 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:48, 02:41](1016 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:50, 02:45](1026 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:26, 02:19](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:04, 03:00](1143 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:51, 02:47](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:34, 04:58](1161 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:28, 04:54](1150 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:14, 02:11](1162 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:12, 03:07](2399 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:06, 03:01](2391 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:04, 04:04] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:32, 09:26](1074 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:29, 05:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:02, 02:58](1137 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:15, 01:15] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:06, 01:41](330 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 01:04](569 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:45, 00:31](572 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:39, 09:39] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [03:57, 03:21](2029 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:54, 08:54] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:50, 03:10](1978 MB) + +PASS -- COMPILE 'atml_intel' [09:05, 09:04] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:15, 05:29](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:09, 05:23](1887 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:19, 02:55](1135 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:50, 04:50] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:30, 05:40](1931 MB) + +PASS -- COMPILE 'atmw_intel' [09:18, 09:18] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:31, 01:49](1939 MB) + +PASS -- COMPILE 'atmaero_intel' [08:33, 08:33] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:14, 04:40](2008 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:52, 05:19](1786 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:09, 05:41](1793 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:15, 04:15] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [17:43, 16:28](4546 MB) + +PASS -- COMPILE 'atm_gnu' [04:17, 04:16] +PASS -- TEST 'control_c48_gnu' [11:38, 11:11](1522 MB) +PASS -- TEST 'control_stochy_gnu' [02:39, 02:30](735 MB) +PASS -- TEST 'control_ras_gnu' [04:16, 04:09](723 MB) +PASS -- TEST 'control_p8_gnu' [05:05, 04:27](1744 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:58, 04:30](1700 MB) +PASS -- TEST 'control_flake_gnu' [04:50, 04:40](801 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:18, 04:18] +PASS -- TEST 'rap_control_gnu' [10:11, 09:34](1075 MB) +PASS -- TEST 'rap_decomp_gnu' [10:13, 09:42](1069 MB) +PASS -- TEST 'rap_2threads_gnu' [09:50, 09:19](1126 MB) +PASS -- TEST 'rap_restart_gnu' [05:48, 05:14](878 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:48, 10:57](1071 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:06, 09:31](1071 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 07:42](877 MB) +PASS -- TEST 'hrrr_control_gnu' [05:36, 04:57](1062 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:54, 05:23](1124 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:11, 04:33](1033 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:07, 05:16](1064 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:04, 02:48](876 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:37, 02:23](923 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:18, 10:23](1067 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:56, 05:56] +PASS -- TEST 'control_diag_debug_gnu' [01:38, 01:13](1617 MB) +PASS -- TEST 'regional_debug_gnu' [07:11, 06:55](1100 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:26, 02:14](1091 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:30, 02:18](1081 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:24, 02:11](1086 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:27, 02:14](1088 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:05, 02:48](1263 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:48, 03:28](1086 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:26, 02:16](1090 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:24, 02:09](1084 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:29, 01:22](716 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:40, 01:32](716 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:51, 01:29](1699 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:31, 02:11](1093 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:42, 02:29](1093 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:55, 04:10](1096 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:42, 02:41] +PASS -- TEST 'control_wam_debug_gnu' [05:48, 05:24](1549 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:36, 04:36] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 07:52](958 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:49, 04:02](944 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:42, 07:10](982 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:27, 03:43](869 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:53, 04:05](940 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:18, 05:48](855 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:10, 02:01](853 MB) +PASS -- TEST 'conus13km_control_gnu' [03:11, 02:42](1256 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:31, 01:08](1163 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:54, 01:31](921 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:44, 08:44] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:52, 04:35](983 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:54, 06:54] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:24, 02:12](967 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:07, 01:59](963 MB) +PASS -- TEST 'conus13km_debug_gnu' [05:54, 05:27](1276 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:29, 06:02](948 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [03:43, 03:26](1183 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:07, 05:52](1344 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:52, 06:52] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 02:05](995 MB) + +PASS -- COMPILE 's2swa_gnu' [17:00, 16:59] + +PASS -- COMPILE 's2s_gnu' [15:30, 15:30] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:42, 09:03](3066 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:05, 04:04] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:25, 16:25] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:24, 26:45](3040 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:17, 03:17] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:08, 12:27](3072 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:14, 15:14] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [06:20, 06:13](758 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:02, 08:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:32, 16:17](1067 MB) SYNOPSIS: -Starting Date/Time: 20241004 08:01:09 -Ending Date/Time: 20241004 10:15:55 -Total Time: 02h:15m:53s +Starting Date/Time: 20241013 19:55:47 +Ending Date/Time: 20241014 00:21:41 +Total Time: 04h:26m:24s Compiles Completed: 58/58 Tests Completed: 245/245 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 9040279613..d4e14d11fd 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: -12373b99074bcffc16efda0d1491bdc6a10e9914 +a548dfb95738d53c36144e4a347eff7c9a786284 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 0609c42d5345afdf69c41d476e86a35f41050764 CMEPS-interface/CMEPS (cmeps_v0.4.1-2348-g0609c42) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) @@ -21,6 +21,8 @@ Submodule hashes used in testing: -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) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) @@ -37,256 +39,256 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241001 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2224851 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_16794 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:24, 42:18] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [25:29, 08:22](2025 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:22, 48:38] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [31:11, 20:59](1895 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [53:25, 21:47](2017 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [41:19, 10:04](1128 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:07, 24:11](1846 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:24, 50:47] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [27:57, 20:37](1877 MB) - -PASS -- COMPILE 's2swa_intel' [21:24, 43:25] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [26:14, 09:56](2058 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:35, 10:04](2072 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:19, 05:32](1718 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [26:15, 10:04](2082 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:18, 05:39](1715 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [25:10, 09:26](2315 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [26:09, 10:00](2060 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [24:27, 08:25](2014 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [26:30, 09:55](2065 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [23:24, 07:08](2031 MB) - -PASS -- COMPILE 's2sw_intel' [19:22, 40:38] ( 1 warnings 1284 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [25:28, 07:34](1905 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [27:44, 09:45](1951 MB) - -PASS -- COMPILE 's2swa_debug_intel' [23:14, 06:26] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:28, 16:27](2089 MB) - -PASS -- COMPILE 's2sw_debug_intel' [22:13, 06:20] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [20:14, 11:24](1926 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [52:18, 36:55] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:32, 05:32](1974 MB) - -PASS -- COMPILE 's2s_intel' [46:15, 37:24] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [26:57, 10:23](3021 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [19:58, 03:30](3019 MB) -PASS -- TEST 'cpld_restart_c48_intel' [09:01, 01:58](2454 MB) - -PASS -- COMPILE 's2swa_faster_intel' [40:24, 32:33] ( 1 warnings 1615 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [42:57, 09:22](2068 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [54:20, 46:22] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:16, 20:55](1915 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [57:50, 10:13](1127 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [11:36, 24:11](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:12, 06:04] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [06:23, 33:19](1932 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:20, 36:48] ( 1 warnings 1116 remarks ) -PASS -- TEST 'control_flake_intel' [20:03, 04:19](648 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [20:24, 04:19](1544 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [23:30, 04:23](1542 MB) -PASS -- TEST 'control_latlon_intel' [20:20, 04:12](1541 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:29, 04:20](1534 MB) -PASS -- TEST 'control_c48_intel' [37:35, 18:09](1698 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [30:15, 10:15](829 MB) -PASS -- TEST 'control_c192_intel' [18:36, 15:51](1690 MB) -PASS -- TEST 'control_c384_intel' [26:33, 23:13](1813 MB) -PASS -- TEST 'control_c384gdas_intel' [17:23, 13:22](1001 MB) -PASS -- TEST 'control_stochy_intel' [04:58, 02:10](611 MB) -PASS -- TEST 'control_stochy_restart_intel' [18:29, 01:13](432 MB) -PASS -- TEST 'control_lndp_intel' [18:03, 02:00](600 MB) -PASS -- TEST 'control_iovr4_intel' [19:06, 03:11](599 MB) -PASS -- TEST 'control_iovr5_intel' [19:06, 03:19](597 MB) -PASS -- TEST 'control_p8_intel' [37:18, 04:48](1818 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [36:14, 04:02](1837 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [36:01, 04:42](1816 MB) -PASS -- TEST 'control_restart_p8_intel' [14:52, 02:54](1060 MB) -PASS -- TEST 'control_noqr_p8_intel' [32:54, 04:40](1817 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [14:03, 02:54](1072 MB) -PASS -- TEST 'control_decomp_p8_intel' [32:53, 04:45](1824 MB) -PASS -- TEST 'control_2threads_p8_intel' [32:50, 04:30](1914 MB) -PASS -- TEST 'control_p8_lndp_intel' [36:50, 08:38](1828 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [33:04, 05:10](1903 MB) -PASS -- TEST 'control_p8_mynn_intel' [32:00, 04:00](1852 MB) -PASS -- TEST 'merra2_thompson_intel' [31:56, 04:18](1837 MB) -PASS -- TEST 'regional_control_intel' [37:45, 07:12](1013 MB) -PASS -- TEST 'regional_restart_intel' [14:46, 04:03](1002 MB) -PASS -- TEST 'regional_decomp_intel' [35:45, 07:31](1003 MB) -PASS -- TEST 'regional_2threads_intel' [28:42, 04:21](991 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [24:50, 07:14](1003 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [20:40, 07:09](1013 MB) - -PASS -- COMPILE 'rrfs_intel' [50:17, 34:18] ( 3 warnings 1092 remarks ) -PASS -- TEST 'rap_control_intel' [54:21, 10:12](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:40, 05:41](1167 MB) -PASS -- TEST 'rap_decomp_intel' [55:12, 10:49](982 MB) -PASS -- TEST 'rap_2threads_intel' [54:21, 09:48](1067 MB) -PASS -- TEST 'rap_restart_intel' [11:54, 05:08](979 MB) -PASS -- TEST 'rap_sfcdiff_intel' [54:21, 10:12](979 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [55:12, 10:49](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [25:55, 07:47](996 MB) -PASS -- TEST 'hrrr_control_intel' [50:19, 05:11](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [50:19, 05:13](968 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [55:11, 04:40](1051 MB) -PASS -- TEST 'hrrr_control_restart_intel' [20:38, 03:03](909 MB) -PASS -- TEST 'rrfs_v1beta_intel' [54:30, 10:13](985 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [58:00, 13:37](1919 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [57:00, 13:04](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [50:17, 34:22] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [13:11, 08:06](969 MB) -PASS -- TEST 'control_ras_intel' [48:53, 04:23](667 MB) - -PASS -- COMPILE 'wam_intel' [37:16, 34:50] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [32:03, 14:44](1604 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [41:32, 36:49] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [31:01, 03:54](1834 MB) -PASS -- TEST 'regional_control_faster_intel' [33:41, 06:51](997 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:30, 08:12] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:48, 03:02](1562 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [19:50, 03:01](1570 MB) -PASS -- TEST 'control_stochy_debug_intel' [19:29, 04:02](779 MB) -PASS -- TEST 'control_lndp_debug_intel' [19:27, 03:42](780 MB) -PASS -- TEST 'control_csawmg_debug_intel' [21:44, 05:46](1087 MB) -PASS -- TEST 'control_ras_debug_intel' [16:24, 03:48](784 MB) -PASS -- TEST 'control_diag_debug_intel' [16:47, 03:40](1639 MB) -PASS -- TEST 'control_debug_p8_intel' [15:46, 03:37](1852 MB) -PASS -- TEST 'regional_debug_intel' [33:44, 22:21](1033 MB) -PASS -- TEST 'rap_control_debug_intel' [18:26, 06:24](1161 MB) -PASS -- TEST 'hrrr_control_debug_intel' [11:34, 06:05](1165 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [17:27, 06:20](1165 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [17:28, 06:27](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [17:31, 06:24](1160 MB) -PASS -- TEST 'rap_diag_debug_intel' [16:39, 06:43](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:30, 06:32](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:25, 06:21](1178 MB) -PASS -- TEST 'rap_lndp_debug_intel' [13:29, 06:04](1169 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:29, 06:11](1163 MB) -PASS -- TEST 'rap_noah_debug_intel' [17:28, 06:08](1165 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [16:27, 06:12](1165 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [19:28, 10:06](1167 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [15:30, 06:10](1160 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:28, 07:26](1170 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:25, 06:15](1168 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:53, 10:44](1164 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:30, 05:17] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [44:02, 16:48](1644 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [46:38, 30:35] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [22:17, 05:30](1041 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:51, 08:29](899 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [20:52, 04:20](868 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:51, 08:07](938 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:41, 03:59](907 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [21:45, 04:37](860 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:50, 06:20](891 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:30, 02:26](839 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:33, 31:57] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [21:54, 02:46](1098 MB) -PASS -- TEST 'conus13km_2threads_intel' [11:54, 01:19](1036 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [11:52, 01:38](1017 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [00:18, 31:33] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:52, 05:26](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [30:14, 05:33] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [31:28, 06:17](1036 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [30:27, 06:07](1053 MB) -PASS -- TEST 'conus13km_debug_intel' [44:03, 19:01](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [44:03, 19:09](889 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [35:53, 11:10](1091 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [42:50, 19:08](1208 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:16] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [26:28, 06:25](1087 MB) - -PASS -- COMPILE 'hafsw_intel' [04:20, 39:39] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:46](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 06:06](1070 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [45:15, 09:15](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:22, 16:05](776 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [59:25, 17:50](797 MB) -PASS -- TEST 'gnv1_nested_intel' [43:39, 06:40](1669 MB) - -PASS -- COMPILE 'hafs_all_intel' [55:16, 35:44] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:29, 08:25](752 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:34, 08:24](738 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [28:14, 08:11] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:24, 03:44](1075 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [07:25, 02:10](1049 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:24, 03:37](937 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [09:24, 03:40](934 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:24, 03:42](932 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:24, 03:44](1078 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:24, 03:45](1067 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:23, 03:13](938 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:16, 07:41](897 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:18, 07:36](851 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:21, 03:43](1077 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:24, 05:10](2373 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [10:24, 05:13](2432 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [22:13, 03:20] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [18:27, 08:17](1007 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:12, 08:10] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:19, 03:44](1073 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [12:14, 01:55] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [08:36, 01:05](240 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [08:31, 00:57](267 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [11:27, 00:41](260 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [41:20, 36:07] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [26:43, 05:01](1902 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [40:16, 35:18] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [27:59, 04:53](1889 MB) - -PASS -- COMPILE 'atml_intel' [38:14, 36:43] ( 8 warnings 1157 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [23:52, 05:51](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [23:52, 05:47](1859 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [15:48, 03:17](1066 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:11, 06:19] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [36:55, 07:26](1906 MB) - -PASS -- COMPILE 'atmw_intel' [39:18, 37:21] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [58:43, 02:34](1864 MB) - -PASS -- COMPILE 'atmaero_intel' [05:19, 35:37] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:16, 05:19](1943 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [12:16, 06:24](1714 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:59, 06:29](1721 MB) - -PASS -- COMPILE 'atm_fbh_intel' [53:17, 31:35] ( 3 warnings 996 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [25:42, 15:19](1022 MB) +PASS -- COMPILE 's2swa_32bit_intel' [59:16, 42:26] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [51:30, 08:09](2022 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [04:12, 47:56] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:33, 20:43](1888 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [07:39, 21:54](2012 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [55:31, 10:18](1140 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:21, 23:45](1854 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [05:17, 48:26] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:12, 20:21](1888 MB) + +PASS -- COMPILE 's2swa_intel' [59:11, 42:31] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [52:23, 09:44](2067 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [52:41, 09:52](2069 MB) +PASS -- TEST 'cpld_restart_p8_intel' [25:29, 05:26](1720 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [52:25, 09:50](2083 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [25:29, 05:30](1732 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [45:13, 09:17](2313 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [53:15, 09:57](2062 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [44:33, 08:11](2013 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [45:38, 09:46](2063 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [50:31, 07:00](2027 MB) + +PASS -- COMPILE 's2sw_intel' [57:10, 40:58] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [45:41, 07:25](1904 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [47:49, 09:29](1968 MB) + +PASS -- COMPILE 's2swa_debug_intel' [43:58, 06:20] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [40:53, 16:27](2079 MB) + +PASS -- COMPILE 's2sw_debug_intel' [48:57, 05:48] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [35:16, 11:22](1922 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:01, 36:12] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [58:32, 05:36](1960 MB) + +PASS -- COMPILE 's2s_intel' [38:07, 37:17] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [39:10, 10:23](3008 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [32:07, 03:30](3018 MB) +PASS -- TEST 'cpld_restart_c48_intel' [10:51, 01:59](2463 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:08, 11:34] ( 1 warnings 1615 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:29, 09:17](2066 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [10:21, 46:21] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [40:31, 20:55](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:28, 10:00](1120 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:23, 22:24](1893 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [29:15, 06:02] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:38, 33:34](1941 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [29:23, 36:23] ( 1 warnings 1116 remarks ) +PASS -- TEST 'control_flake_intel' [14:25, 04:17](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [16:44, 04:09](1540 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [16:49, 04:20](1542 MB) +PASS -- TEST 'control_latlon_intel' [17:44, 04:10](1556 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:52, 04:25](1532 MB) +PASS -- TEST 'control_c48_intel' [31:56, 18:06](1699 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [23:38, 10:11](829 MB) +PASS -- TEST 'control_c192_intel' [28:03, 15:45](1694 MB) +PASS -- TEST 'control_c384_intel' [32:03, 23:00](1816 MB) +PASS -- TEST 'control_c384gdas_intel' [24:49, 13:14](1026 MB) +PASS -- TEST 'control_stochy_intel' [12:25, 02:04](601 MB) +PASS -- TEST 'control_stochy_restart_intel' [11:26, 01:17](441 MB) +PASS -- TEST 'control_lndp_intel' [12:26, 01:59](601 MB) +PASS -- TEST 'control_iovr4_intel' [13:28, 03:10](603 MB) +PASS -- TEST 'control_iovr5_intel' [12:30, 03:15](606 MB) +PASS -- TEST 'control_p8_intel' [13:58, 04:44](1836 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:15, 03:57](1830 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:53, 04:39](1835 MB) +PASS -- TEST 'control_restart_p8_intel' [09:47, 02:42](1054 MB) +PASS -- TEST 'control_noqr_p8_intel' [12:05, 04:37](1819 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [09:51, 02:39](1072 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:55, 04:46](1816 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:54, 04:28](1913 MB) +PASS -- TEST 'control_p8_lndp_intel' [12:47, 08:33](1832 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:52, 05:08](1893 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:59, 03:56](1846 MB) +PASS -- TEST 'merra2_thompson_intel' [17:00, 04:19](1841 MB) +PASS -- TEST 'regional_control_intel' [17:43, 07:08](1005 MB) +PASS -- TEST 'regional_restart_intel' [09:38, 03:50](1009 MB) +PASS -- TEST 'regional_decomp_intel' [17:40, 07:33](996 MB) +PASS -- TEST 'regional_2threads_intel' [06:37, 04:16](995 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [16:49, 07:12](1000 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [16:40, 07:08](1009 MB) + +PASS -- COMPILE 'rrfs_intel' [26:26, 34:20] ( 3 warnings 1092 remarks ) +PASS -- TEST 'rap_control_intel' [11:54, 10:10](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [15:10, 05:25](1177 MB) +PASS -- TEST 'rap_decomp_intel' [12:46, 10:38](979 MB) +PASS -- TEST 'rap_2threads_intel' [11:54, 09:41](1074 MB) +PASS -- TEST 'rap_restart_intel' [13:55, 05:14](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:54, 10:05](983 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:42, 10:40](986 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [14:51, 07:28](991 MB) +PASS -- TEST 'hrrr_control_intel' [07:43, 05:09](989 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:43, 05:17](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:52, 04:47](1047 MB) +PASS -- TEST 'hrrr_control_restart_intel' [09:32, 02:43](908 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:08, 10:06](982 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:32, 13:27](1929 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:31, 12:59](1931 MB) + +PASS -- COMPILE 'csawmg_intel' [02:20, 34:17] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [17:49, 08:02](960 MB) +PASS -- TEST 'control_ras_intel' [06:31, 04:16](673 MB) + +PASS -- COMPILE 'wam_intel' [53:17, 34:42] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [23:55, 14:12](1616 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [43:18, 36:21] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [12:57, 03:42](1838 MB) +PASS -- TEST 'regional_control_faster_intel' [15:37, 06:42](998 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 08:30] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:43, 02:50](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:48, 02:48](1567 MB) +PASS -- TEST 'control_stochy_debug_intel' [11:24, 03:49](775 MB) +PASS -- TEST 'control_lndp_debug_intel' [10:27, 03:28](778 MB) +PASS -- TEST 'control_csawmg_debug_intel' [12:41, 05:32](1088 MB) +PASS -- TEST 'control_ras_debug_intel' [09:26, 03:31](785 MB) +PASS -- TEST 'control_diag_debug_intel' [09:41, 03:26](1636 MB) +PASS -- TEST 'control_debug_p8_intel' [09:44, 03:11](1857 MB) +PASS -- TEST 'regional_debug_intel' [27:47, 22:02](1034 MB) +PASS -- TEST 'rap_control_debug_intel' [10:29, 06:08](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:32, 06:00](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:24, 06:03](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:26, 06:06](1166 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:23, 06:08](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:36, 06:23](1247 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:12](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:12](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:25, 06:08](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:03](1170 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:57](1157 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 06:04](1172 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:01](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 05:59](1166 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [14:27, 07:24](1164 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:26, 06:16](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [17:50, 10:33](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:19] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [22:56, 16:41](1636 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:14, 30:41] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:05, 05:17](1039 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:38, 08:24](903 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:40, 04:26](866 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:53, 07:58](937 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:46, 03:58](904 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:36, 04:45](852 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:40, 06:08](891 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:29, 02:18](845 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:16, 31:54] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:03, 02:45](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:39, 01:15](1038 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:40, 01:32](1008 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [39:13, 31:08] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:54, 05:24](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 05:11] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [12:25, 06:13](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:26, 06:00](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [24:58, 19:05](1134 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:58, 19:02](864 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:43, 10:58](1095 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:41, 18:53](1216 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [15:13, 04:59] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:14](1081 MB) + +PASS -- COMPILE 'hafsw_intel' [46:17, 39:27] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:22, 06:42](695 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 06:08](1069 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:30, 08:59](751 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:25, 15:54](783 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:38, 17:42](803 MB) +PASS -- TEST 'gnv1_nested_intel' [08:53, 05:53](1671 MB) + +PASS -- COMPILE 'hafs_all_intel' [37:16, 35:26] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:26, 08:36](750 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:32, 08:37](743 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:13, 08:11] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:25, 03:37](1074 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:10](1046 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:31](948 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:25, 03:35](932 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 03:35](935 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:25, 03:38](1072 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:25, 03:39](1079 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:25, 03:31](930 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:37](897 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:36](850 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:36](1057 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:02](2376 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:24, 05:05](2431 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:30] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 08:06](1041 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:22] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:22, 03:34](1063 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:13, 01:47] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:07](237 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 00:57](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:29, 00:40](263 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:16, 35:55] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [12:14, 04:49](1905 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [36:18, 35:08] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:20, 04:34](1895 MB) + +PASS -- COMPILE 'atml_intel' [39:17, 36:51] ( 8 warnings 1157 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [31:26, 05:32](1852 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [31:25, 05:27](1861 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:45, 03:03](1066 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:14] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [28:13, 07:12](1881 MB) + +PASS -- COMPILE 'atmw_intel' [04:18, 36:17] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [24:56, 02:20](1853 MB) + +PASS -- COMPILE 'atmaero_intel' [55:18, 35:23] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [22:11, 05:14](1941 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [28:12, 06:12](1704 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [26:02, 06:20](1713 MB) + +PASS -- COMPILE 'atm_fbh_intel' [39:16, 31:15] ( 3 warnings 996 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:38, 15:10](1013 MB) SYNOPSIS: -Starting Date/Time: 20241003 21:13:31 -Ending Date/Time: 20241004 10:39:52 -Total Time: 13h:27m:08s +Starting Date/Time: 20241008 20:28:25 +Ending Date/Time: 20241009 11:54:15 +Total Time: 15h:26m:25s Compiles Completed: 37/37 Tests Completed: 165/165 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 03864bbf5c..9a7e5e28a7 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: -72afacdfb7986f4a761f188cdf6eb4c740c51224 +61e2d26b6b6977a6b2486ccc3f639470e651c095 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,18 +9,20 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) + d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) @@ -36,290 +38,293 @@ 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-20241001 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_334122 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241011 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2284266 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:37] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:47, 14:25](2081 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:35] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:36, 18:08](1944 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:23, 19:03](2116 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:17, 09:02](1228 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:43, 20:25](1875 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 23:07] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:42, 17:48](1938 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:23] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:44, 28:16](1934 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 17:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:34, 14:34](2135 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:46, 14:11](2133 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:56, 07:56](1792 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:34, 14:21](2169 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:56, 08:04](1700 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:30, 13:28](2415 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:34, 14:27](2121 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:34, 12:16](2040 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:45, 14:27](2137 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:45, 16:29](2707 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:09, 08:58](2702 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:29, 11:00](3676 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:08, 06:55](3497 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:27, 06:04](2087 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 16:52] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:19, 13:42](1966 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:28, 08:02](2025 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:35] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:23, 13:27](2164 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:18] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:05, 09:16](1995 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:24] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:52](2030 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 14:47] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:54, 08:43](3023 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:54, 03:32](3026 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:51, 02:18](2482 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:12, 17:51] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:33, 15:01](2136 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:11, 23:02] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:14, 18:20](2009 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:28, 09:00](1242 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:10, 20:29](1926 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:31] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:11, 29:48](1969 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:10, 13:50] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:25, 03:43](684 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 03:32](1569 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:52, 03:36](1580 MB) -PASS -- TEST 'control_latlon_intel' [05:43, 03:31](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:35](1568 MB) -PASS -- TEST 'control_c48_intel' [16:54, 14:45](1711 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:34, 08:13](840 MB) -PASS -- TEST 'control_c192_intel' [16:04, 13:11](1746 MB) -PASS -- TEST 'control_c384_intel' [19:59, 16:42](1991 MB) -PASS -- TEST 'control_c384gdas_intel' [13:47, 09:59](1332 MB) -PASS -- TEST 'control_stochy_intel' [03:23, 01:52](642 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:39, 01:09](474 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:45](642 MB) -PASS -- TEST 'control_iovr4_intel' [04:27, 02:43](642 MB) -PASS -- TEST 'control_iovr5_intel' [04:26, 02:42](632 MB) -PASS -- TEST 'control_p8_intel' [07:04, 04:16](1867 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:18, 03:35](1879 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:25, 04:07](1861 MB) -PASS -- TEST 'control_restart_p8_intel' [05:16, 02:24](1094 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:03, 04:09](1850 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:35, 02:20](1131 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:19, 04:16](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:08, 04:29](1945 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:46, 07:12](1863 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:28, 04:50](1944 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:28, 03:31](1877 MB) -PASS -- TEST 'merra2_thompson_intel' [06:42, 03:53](1882 MB) -PASS -- TEST 'regional_control_intel' [08:37, 06:43](1073 MB) -PASS -- TEST 'regional_restart_intel' [05:39, 03:37](1077 MB) -PASS -- TEST 'regional_decomp_intel' [08:30, 07:06](1066 MB) -PASS -- TEST 'regional_2threads_intel' [06:36, 04:44](1072 MB) -PASS -- TEST 'regional_noquilt_intel' [08:43, 06:32](1377 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:43, 06:37](1074 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:39, 06:33](1062 MB) -PASS -- TEST 'regional_wofs_intel' [09:36, 07:59](1900 MB) - -PASS -- COMPILE 'rrfs_intel' [14:10, 12:50] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:07, 08:28](1053 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:01, 05:15](1244 MB) -PASS -- TEST 'rap_decomp_intel' [10:54, 08:45](1016 MB) -PASS -- TEST 'rap_2threads_intel' [10:53, 08:37](1153 MB) -PASS -- TEST 'rap_restart_intel' [07:33, 04:23](1027 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:12, 08:25](1049 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:56, 08:42](1019 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:31, 06:18](1062 MB) -PASS -- TEST 'hrrr_control_intel' [07:08, 04:22](1017 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:07, 04:26](1020 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:23, 04:15](1082 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:21](944 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:17, 08:22](1037 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:52](1977 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 09:36](2018 MB) - -PASS -- COMPILE 'csawmg_intel' [14:10, 12:53] -PASS -- TEST 'control_csawmg_intel' [08:35, 06:40](1014 MB) -PASS -- TEST 'control_ras_intel' [05:21, 03:31](711 MB) - -PASS -- COMPILE 'wam_intel' [14:10, 12:22] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:47, 12:51](1651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:10, 13:08] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:21, 03:20](1872 MB) -PASS -- TEST 'regional_control_faster_intel' [08:39, 06:18](1074 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 10:06] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:42, 02:21](1595 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:14](1600 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:04](812 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:51](815 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:31](1128 MB) -PASS -- TEST 'control_ras_debug_intel' [04:27, 02:47](824 MB) -PASS -- TEST 'control_diag_debug_intel' [04:47, 02:51](1673 MB) -PASS -- TEST 'control_debug_p8_intel' [04:41, 02:54](1899 MB) -PASS -- TEST 'regional_debug_intel' [19:45, 17:28](1073 MB) -PASS -- TEST 'rap_control_debug_intel' [06:28, 04:58](1200 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:55](1196 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 04:59](1203 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 05:02](1204 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:31, 05:01](1205 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:17](1289 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 05:02](1195 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 05:05](1196 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:04](1202 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:58](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:50](1192 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 05:05](1204 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:03](1198 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:50](1198 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:55](1204 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:25, 05:03](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:37](1206 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 06:19] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:44, 13:13](1673 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:38] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:52, 04:58](1128 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:15, 07:13](993 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:12, 03:49](918 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:03, 07:26](1071 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:05, 03:44](937 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:02, 03:58](889 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:24, 05:25](965 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:43, 02:03](871 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:00, 02:45](1161 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:46, 01:14](1101 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:33](1064 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 13:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:41](968 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:21] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:49](1080 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:53](1082 MB) -PASS -- TEST 'conus13km_debug_intel' [16:47, 14:48](1258 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:46, 15:10](932 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 08:41](1168 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:44](1299 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:36] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 05:01](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [16:11, 15:07] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:14, 05:57](737 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:24, 06:35](1110 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:34](811 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [27:12, 24:32](845 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:21, 28:44](866 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:03, 07:21](513 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:30, 08:33](501 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:56, 03:29](370 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:23, 09:44](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:56, 04:46](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:00, 04:30](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:50, 05:40](569 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:33](400 MB) -PASS -- TEST 'gnv1_nested_intel' [08:09, 04:18](1723 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:11, 06:10] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:55, 13:14](581 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:27] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:04, 13:08](633 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:22, 12:56](716 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:09] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:19, 08:40](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:11, 14:16] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:18, 07:34](808 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 07:35](790 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:22](1208 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:10, 09:32] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 03:01](1159 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:55](1103 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:53](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:55](1011 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:55](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:02](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:18, 04:36](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:50](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:13, 06:31](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 06:26](1000 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:57](1154 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:17, 04:21](2390 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:17, 04:23](2393 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:33] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:28](1070 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:17] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 03:01](1164 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:17] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 01:01](249 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:56](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:36](321 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:46] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:06, 04:12](1963 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:10, 13:44] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:56, 03:58](1948 MB) - -PASS -- COMPILE 'atml_intel' [15:10, 13:48] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:28, 04:55](1856 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:19, 04:55](1865 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:52, 02:48](1051 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:10, 10:35] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:21, 06:02](1892 MB) - -PASS -- COMPILE 'atmw_intel' [12:10, 10:49] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:15, 02:12](1897 MB) - -PASS -- COMPILE 'atmaero_intel' [17:10, 15:15] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:09, 04:37](1973 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:14, 05:22](1750 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:58, 05:28](1771 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:10, 07:32] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:53, 20:55](4485 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:11, 12:34] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:27, 14:03](1078 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:10, 16:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:25, 14:25](2083 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:10, 22:06] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:34, 18:11](1948 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:08, 19:01](2130 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:55](1222 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:37, 20:24](1879 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:11, 23:41] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:38, 17:44](1944 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:10] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:33, 28:34](1935 MB) + +PASS -- COMPILE 's2swa_intel' [19:10, 17:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:34, 14:40](2132 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:44, 14:33](2132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:43, 08:02](1797 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:34, 14:32](2164 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:43, 08:05](1694 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:33, 13:16](2419 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:34, 14:19](2132 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:27, 12:19](2043 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:42, 14:38](2139 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:26, 16:12](2705 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:52, 08:43](2701 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:18, 10:58](3683 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:55, 06:49](3503 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:23, 05:59](2090 MB) + +PASS -- COMPILE 's2sw_intel' [17:10, 15:45] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:06, 13:48](1974 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:15, 08:04](2034 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:10, 09:29] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:18, 13:34](2169 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:58] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:08, 09:25](1993 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:46] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:16, 04:52](2037 MB) + +PASS -- COMPILE 's2s_intel' [16:10, 14:17] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:56, 08:39](3026 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:55, 03:28](3023 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:53, 02:12](2490 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:36] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:17, 15:02](2143 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:00] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:17, 18:14](2008 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:27, 08:57](1256 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:05, 20:31](1930 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:27] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:09, 29:50](1967 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:10, 13:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:27, 03:44](685 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 03:32](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:55, 03:37](1572 MB) +PASS -- TEST 'control_latlon_intel' [05:47, 03:32](1579 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:56, 03:34](1567 MB) +PASS -- TEST 'control_c48_intel' [16:56, 14:42](1701 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:34, 08:13](838 MB) +PASS -- TEST 'control_c192_intel' [15:00, 13:09](1742 MB) +PASS -- TEST 'control_c384_intel' [19:55, 16:39](1981 MB) +PASS -- TEST 'control_c384gdas_intel' [13:38, 10:00](1331 MB) +PASS -- TEST 'control_stochy_intel' [03:25, 01:50](644 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:43, 01:06](473 MB) +PASS -- TEST 'control_lndp_intel' [03:25, 01:45](641 MB) +PASS -- TEST 'control_iovr4_intel' [04:26, 02:45](636 MB) +PASS -- TEST 'control_iovr5_intel' [04:26, 02:45](642 MB) +PASS -- TEST 'control_p8_intel' [07:09, 04:26](1865 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:07, 03:41](1877 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 04:04](1868 MB) +PASS -- TEST 'control_restart_p8_intel' [05:09, 02:24](1083 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:11, 04:01](1849 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:14, 02:17](1133 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:15, 04:11](1844 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:21, 04:20](1946 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:50, 07:15](1864 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:27, 04:56](1932 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:23, 03:33](1885 MB) +PASS -- TEST 'merra2_thompson_intel' [06:44, 03:50](1878 MB) +PASS -- TEST 'regional_control_intel' [08:43, 06:31](1077 MB) +PASS -- TEST 'regional_restart_intel' [05:36, 03:37](1070 MB) +PASS -- TEST 'regional_decomp_intel' [08:36, 06:56](1075 MB) +PASS -- TEST 'regional_2threads_intel' [06:35, 04:48](1065 MB) +PASS -- TEST 'regional_noquilt_intel' [08:41, 06:28](1377 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:41, 06:33](1076 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:33, 06:35](1076 MB) +PASS -- TEST 'regional_wofs_intel' [09:32, 08:00](1895 MB) + +PASS -- COMPILE 'rrfs_intel' [14:10, 12:38] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:23, 08:30](1056 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:57, 05:14](1244 MB) +PASS -- TEST 'rap_decomp_intel' [11:04, 08:45](1013 MB) +PASS -- TEST 'rap_2threads_intel' [11:01, 08:39](1152 MB) +PASS -- TEST 'rap_restart_intel' [07:31, 04:23](1029 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:56, 08:24](1046 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:55, 08:42](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:35, 06:18](1067 MB) +PASS -- TEST 'hrrr_control_intel' [07:08, 04:22](1022 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:25](1015 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:18, 04:13](1083 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:46, 02:21](945 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:21, 08:21](1036 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 09:51](1977 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 09:32](2012 MB) + +PASS -- COMPILE 'csawmg_intel' [14:10, 12:14] +PASS -- TEST 'control_csawmg_intel' [08:31, 06:39](1013 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:26](721 MB) + +PASS -- COMPILE 'wam_intel' [15:10, 13:24] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:42, 12:46](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:10, 12:47] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:22, 03:15](1881 MB) +PASS -- TEST 'regional_control_faster_intel' [08:36, 06:18](1081 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:55] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:24](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:16](1597 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:02](813 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:48](817 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:37, 04:31](1125 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:59](825 MB) +PASS -- TEST 'control_diag_debug_intel' [04:41, 02:49](1672 MB) +PASS -- TEST 'control_debug_p8_intel' [04:42, 02:48](1893 MB) +PASS -- TEST 'regional_debug_intel' [19:38, 17:18](1091 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 05:00](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:52](1192 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:55](1205 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:59](1204 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:57](1201 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:14](1283 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 05:14](1202 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 05:05](1198 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:06](1204 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:59](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:52](1201 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:59](1199 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:57](1200 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 05:00](1196 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 05:58](1204 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:20, 05:06](1202 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:23, 08:25](1203 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:10, 06:21] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:40, 13:12](1676 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 11:59] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:56, 04:57](1126 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:54, 07:12](996 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:35, 03:48](923 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:51, 07:26](1068 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:00, 03:43](934 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 03:57](891 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:29, 05:24](972 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:05](871 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 13:17] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:53, 02:37](1163 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:50, 01:12](1109 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:31](1061 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:20] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:34](967 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 06:03] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:46](1081 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:52](1071 MB) +PASS -- TEST 'conus13km_debug_intel' [15:45, 13:50](1227 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:55](926 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:09](1167 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:04](1290 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 06:39] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 05:06](1133 MB) + +PASS -- COMPILE 'hafsw_intel' [16:10, 14:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:14, 05:57](739 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:27, 06:27](1112 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:30](814 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [27:11, 24:45](854 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:16, 28:28](866 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:00, 07:08](488 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:28, 08:41](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:55, 03:33](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:28, 09:37](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:56, 04:43](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:47, 04:29](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:49, 05:39](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:34](396 MB) +PASS -- TEST 'gnv1_nested_intel' [08:12, 04:19](1724 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:10, 06:38] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:06, 13:21](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:25] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:13, 12:40](659 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:11, 13:09](681 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:25, 08:43](701 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:10, 13:45] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:19, 07:35](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:15, 07:36](793 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:56, 16:21](1204 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:12] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:58](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:35](1110 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:51](1015 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:56](1013 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:54](1023 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:00](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 03:00](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:50](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:27](1012 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 06:20](1005 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:58](1142 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:18](2459 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:21](2398 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 04:40] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:29](1079 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:36] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:56](1157 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:19] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 01:01](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:56](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](324 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:39] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:28](565 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:35, 00:22](444 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:45] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:05, 04:14](1965 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:10, 12:47] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:02, 04:10](1938 MB) + +PASS -- COMPILE 'atml_intel' [14:10, 12:57] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:29, 05:00](1861 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:24, 04:57](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 02:55](1054 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:10, 07:11] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:21, 05:56](1898 MB) + +PASS -- COMPILE 'atmw_intel' [15:10, 13:49] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:16, 02:12](1897 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 12:52] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:12, 04:36](1974 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:13, 05:22](1750 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:02, 05:28](1759 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:34] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:56, 20:51](4492 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:10, 11:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:29, 14:04](1080 MB) SYNOPSIS: -Starting Date/Time: 20241004 07:58:40 -Ending Date/Time: 20241004 09:40:37 -Total Time: 01h:42m:35s -Compiles Completed: 42/42 -Tests Completed: 186/186 +Starting Date/Time: 20241013 19:56:25 +Ending Date/Time: 20241013 21:37:56 +Total Time: 01h:42m:06s +Compiles Completed: 43/43 +Tests Completed: 188/188 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 310edabefe..aa48425d25 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: -12373b99074bcffc16efda0d1491bdc6a10e9914 +f814ef71e560a00a30454e00ef05ccf4d20f45b3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,18 +9,20 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + b71196b0faf74f0fe59558796285424c915b6eaa FV3 (remotes/origin/rrfsv1-to-ufs/dev1) 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) + d5842b617d0bdddd00fd8d45cf1cbf3c9c141258 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5334-gd5842b61) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) @@ -36,239 +38,239 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241001 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_73695 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241011 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_125035 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:17] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:45, 02:30](3088 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:29, 11:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:45, 02:36](1809 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [02:37, 03:25](1838 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [02:27, 02:53](960 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:45, 03:45](1787 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:45, 01:59](1805 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:25] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:53, 03:03](1837 MB) - -PASS -- COMPILE 's2swa_intel' [13:28, 11:14] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [21:45, 02:34](3116 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:45, 02:53](3116 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:23, 02:05](3046 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [21:44, 02:31](3135 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:22, 02:02](3065 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [21:44, 02:03](3355 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [21:44, 02:35](3110 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [21:45, 02:07](3056 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:44, 02:50](3115 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:53, 06:27](4107 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [01:59, 07:35](4252 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [21:45, 02:49](3095 MB) - -PASS -- COMPILE 's2sw_intel' [12:28, 11:04] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [22:46, 02:44](1827 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [22:46, 02:41](1882 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:21] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:47, 03:02](1889 MB) - -PASS -- COMPILE 's2s_intel' [11:25, 10:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [23:47, 01:42](2859 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [23:47, 02:21](2866 MB) -PASS -- TEST 'cpld_restart_c48_intel' [18:43, 02:16](2282 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:31, 16:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:42, 02:54](3125 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:27, 11:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:46, 01:58](1834 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:08, 02:18](989 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [02:44, 02:47](1795 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:23, 05:08] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:29, 02:06](1851 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:25, 09:05] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [13:22, 01:26](568 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [13:22, 02:11](1461 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:22, 02:05](1469 MB) -PASS -- TEST 'control_latlon_intel' [13:22, 02:06](1465 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:22, 02:14](1469 MB) -PASS -- TEST 'control_c48_intel' [13:21, 02:33](1563 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:21, 01:54](688 MB) -PASS -- TEST 'control_c192_intel' [13:22, 02:32](1587 MB) -PASS -- TEST 'control_c384_intel' [13:26, 02:18](1895 MB) -PASS -- TEST 'control_c384gdas_intel' [13:26, 05:46](1063 MB) -PASS -- TEST 'control_stochy_intel' [13:22, 01:29](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [09:50, 02:03](328 MB) -PASS -- TEST 'control_lndp_intel' [12:16, 01:31](524 MB) -PASS -- TEST 'control_iovr4_intel' [12:12, 01:41](517 MB) -PASS -- TEST 'control_iovr5_intel' [12:06, 01:43](517 MB) -PASS -- TEST 'control_p8_intel' [11:29, 02:27](1759 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:23, 02:57](1752 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:26, 02:34](1758 MB) -PASS -- TEST 'control_restart_p8_intel' [05:00, 03:09](906 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:03, 02:26](1754 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 02:52](918 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:03, 02:24](1750 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:46, 02:31](1841 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:46, 02:32](1758 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:42, 03:21](1809 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:38, 03:00](1773 MB) -PASS -- TEST 'merra2_thompson_intel' [07:37, 02:52](1760 MB) -PASS -- TEST 'regional_control_intel' [07:31, 02:09](837 MB) -PASS -- TEST 'regional_restart_intel' [59:40, 01:19](842 MB) -PASS -- TEST 'regional_decomp_intel' [07:30, 01:52](838 MB) -PASS -- TEST 'regional_2threads_intel' [07:26, 01:48](891 MB) -PASS -- TEST 'regional_noquilt_intel' [06:21, 01:16](1165 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:12, 02:23](841 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:25, 01:35](834 MB) -PASS -- TEST 'regional_wofs_intel' [04:54, 01:26](1569 MB) - -PASS -- COMPILE 'rrfs_intel' [10:26, 08:11] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [03:50, 03:12](904 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [03:37, 02:07](1054 MB) -PASS -- TEST 'rap_decomp_intel' [03:20, 02:30](900 MB) -PASS -- TEST 'rap_2threads_intel' [02:43, 02:35](983 MB) -PASS -- TEST 'rap_restart_intel' [53:07, 03:17](773 MB) -PASS -- TEST 'rap_sfcdiff_intel' [01:41, 03:04](900 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [00:57, 02:33](904 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [50:56, 02:44](774 MB) -PASS -- TEST 'hrrr_control_intel' [00:49, 02:21](901 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [59:58, 02:46](900 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [59:49, 02:13](973 MB) -PASS -- TEST 'hrrr_control_restart_intel' [54:05, 02:01](732 MB) -PASS -- TEST 'rrfs_v1beta_intel' [59:41, 02:57](897 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [59:38, 01:46](1853 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [59:08, 02:11](1846 MB) - -PASS -- COMPILE 'csawmg_intel' [09:24, 07:54] -PASS -- TEST 'control_csawmg_intel' [59:00, 01:30](858 MB) -PASS -- TEST 'control_ras_intel' [58:57, 01:53](554 MB) - -PASS -- COMPILE 'wam_intel' [09:25, 07:56] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [58:46, 01:32](1553 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:11] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [58:27, 03:12](1759 MB) -PASS -- TEST 'regional_control_faster_intel' [58:26, 01:17](834 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:38] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [58:10, 01:47](1492 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [58:00, 01:47](1491 MB) -PASS -- TEST 'control_stochy_debug_intel' [57:46, 01:47](697 MB) -PASS -- TEST 'control_lndp_debug_intel' [57:46, 02:04](697 MB) -PASS -- TEST 'control_csawmg_debug_intel' [56:21, 01:30](999 MB) -PASS -- TEST 'control_ras_debug_intel' [56:20, 02:00](706 MB) -PASS -- TEST 'control_diag_debug_intel' [55:52, 02:10](1555 MB) -PASS -- TEST 'control_debug_p8_intel' [54:18, 02:21](1782 MB) -PASS -- TEST 'regional_debug_intel' [53:24, 01:14](888 MB) -PASS -- TEST 'rap_control_debug_intel' [53:11, 01:41](1078 MB) -PASS -- TEST 'hrrr_control_debug_intel' [53:06, 01:48](1071 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [53:05, 01:57](1074 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [53:02, 01:38](1072 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [52:56, 01:46](1076 MB) -PASS -- TEST 'rap_diag_debug_intel' [52:36, 02:09](1163 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [52:12, 01:38](1075 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [52:11, 01:40](1077 MB) -PASS -- TEST 'rap_lndp_debug_intel' [51:39, 01:52](1079 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:39, 01:51](1076 MB) -PASS -- TEST 'rap_noah_debug_intel' [51:19, 01:54](1074 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [51:11, 01:46](1074 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [50:48, 01:33](1073 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [50:15, 01:45](1067 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [50:09, 01:55](1075 MB) -PASS -- TEST 'rap_flake_debug_intel' [50:08, 01:45](1082 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [49:32, 02:39](1081 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:24] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:24, 01:25](1575 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:40, 11:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:34, 02:30](3089 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:40, 11:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [10:34, 02:44](1819 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [51:18, 03:20](1835 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [51:11, 02:53](972 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [10:35, 03:15](1790 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:40, 12:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [10:34, 02:02](1808 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:31, 05:15] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [16:43, 02:58](1832 MB) + +PASS -- COMPILE 's2swa_intel' [13:39, 11:23] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:35, 02:50](3117 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:35, 03:20](3114 MB) +PASS -- TEST 'cpld_restart_p8_intel' [58:53, 02:59](3048 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:35, 02:52](3135 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [58:53, 02:55](3061 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:35, 02:31](3355 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:35, 03:00](3114 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:36, 02:05](3059 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:35, 03:26](3120 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [10:44, 07:06](4109 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [49:35, 05:40](4256 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:35, 02:44](3093 MB) + +PASS -- COMPILE 's2sw_intel' [12:38, 10:59] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:36, 02:40](1821 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:36, 03:01](1879 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:38, 10:45] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:35, 03:01](1883 MB) + +PASS -- COMPILE 's2s_intel' [12:38, 10:22] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:34, 01:51](2863 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [11:34, 02:26](2865 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:32, 02:15](2280 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:45, 16:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [05:28, 03:32](3121 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:40, 11:19] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:34, 02:33](1825 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [51:24, 02:14](998 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [51:21, 02:25](1800 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:06] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [09:22, 02:43](1855 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:24, 08:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [01:11, 02:24](567 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [01:11, 02:18](1460 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [01:11, 02:11](1471 MB) +PASS -- TEST 'control_latlon_intel' [01:11, 02:10](1472 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:11, 02:14](1468 MB) +PASS -- TEST 'control_c48_intel' [01:10, 02:28](1567 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [01:10, 01:59](692 MB) +PASS -- TEST 'control_c192_intel' [01:11, 01:56](1590 MB) +PASS -- TEST 'control_c384_intel' [01:15, 02:55](1871 MB) +PASS -- TEST 'control_c384gdas_intel' [01:11, 03:31](1067 MB) +PASS -- TEST 'control_stochy_intel' [01:05, 01:33](526 MB) +PASS -- TEST 'control_stochy_restart_intel' [57:28, 02:06](331 MB) +PASS -- TEST 'control_lndp_intel' [00:54, 01:32](527 MB) +PASS -- TEST 'control_iovr4_intel' [59:52, 01:42](518 MB) +PASS -- TEST 'control_iovr5_intel' [59:52, 01:44](518 MB) +PASS -- TEST 'control_p8_intel' [58:54, 02:27](1759 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [58:21, 03:08](1759 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [58:19, 02:32](1760 MB) +PASS -- TEST 'control_restart_p8_intel' [51:31, 02:57](908 MB) +PASS -- TEST 'control_noqr_p8_intel' [57:08, 02:20](1754 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [50:30, 02:39](915 MB) +PASS -- TEST 'control_decomp_p8_intel' [56:35, 01:58](1751 MB) +PASS -- TEST 'control_2threads_p8_intel' [55:08, 02:29](1838 MB) +PASS -- TEST 'control_p8_lndp_intel' [55:06, 01:55](1756 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [55:05, 02:45](1807 MB) +PASS -- TEST 'control_p8_mynn_intel' [55:01, 02:40](1759 MB) +PASS -- TEST 'merra2_thompson_intel' [54:58, 02:28](1761 MB) +PASS -- TEST 'regional_control_intel' [54:54, 02:00](843 MB) +PASS -- TEST 'regional_restart_intel' [46:52, 01:22](843 MB) +PASS -- TEST 'regional_decomp_intel' [54:30, 01:45](837 MB) +PASS -- TEST 'regional_2threads_intel' [53:34, 01:44](895 MB) +PASS -- TEST 'regional_noquilt_intel' [53:19, 01:19](1166 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [53:17, 02:20](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [53:07, 02:11](841 MB) +PASS -- TEST 'regional_wofs_intel' [52:01, 02:06](1565 MB) + +PASS -- COMPILE 'rrfs_intel' [10:25, 08:15] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [50:25, 02:59](905 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:15, 02:03](1049 MB) +PASS -- TEST 'rap_decomp_intel' [49:14, 02:17](914 MB) +PASS -- TEST 'rap_2threads_intel' [48:31, 02:13](986 MB) +PASS -- TEST 'rap_restart_intel' [39:48, 02:08](774 MB) +PASS -- TEST 'rap_sfcdiff_intel' [48:26, 03:08](901 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [48:21, 02:47](897 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [37:53, 02:39](775 MB) +PASS -- TEST 'hrrr_control_intel' [48:20, 02:20](900 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [47:47, 02:11](901 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [47:28, 02:25](979 MB) +PASS -- TEST 'hrrr_control_restart_intel' [41:50, 02:01](727 MB) +PASS -- TEST 'rrfs_v1beta_intel' [47:19, 03:03](895 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [47:17, 01:56](1855 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [47:14, 02:16](1842 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 07:53] +PASS -- TEST 'control_csawmg_intel' [02:11, 01:30](857 MB) +PASS -- TEST 'control_ras_intel' [02:11, 01:58](555 MB) + +PASS -- COMPILE 'wam_intel' [09:24, 07:59] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [47:11, 01:24](1555 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:24, 08:08] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [46:45, 02:58](1754 MB) +PASS -- TEST 'regional_control_faster_intel' [46:28, 02:13](833 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:42] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [46:14, 01:42](1496 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [46:08, 01:48](1492 MB) +PASS -- TEST 'control_stochy_debug_intel' [45:51, 01:39](698 MB) +PASS -- TEST 'control_lndp_debug_intel' [45:13, 02:02](699 MB) +PASS -- TEST 'control_csawmg_debug_intel' [45:06, 01:23](1001 MB) +PASS -- TEST 'control_ras_debug_intel' [45:05, 02:01](707 MB) +PASS -- TEST 'control_diag_debug_intel' [42:55, 02:09](1549 MB) +PASS -- TEST 'control_debug_p8_intel' [42:06, 02:13](1790 MB) +PASS -- TEST 'regional_debug_intel' [42:01, 01:59](879 MB) +PASS -- TEST 'rap_control_debug_intel' [41:43, 01:42](1081 MB) +PASS -- TEST 'hrrr_control_debug_intel' [41:24, 01:44](1074 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [41:18, 01:38](1079 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [41:18, 01:41](1076 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [41:18, 01:35](1084 MB) +PASS -- TEST 'rap_diag_debug_intel' [40:24, 01:33](1161 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [40:05, 01:37](1082 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [39:45, 01:33](1082 MB) +PASS -- TEST 'rap_lndp_debug_intel' [39:38, 01:38](1083 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [39:36, 01:40](1080 MB) +PASS -- TEST 'rap_noah_debug_intel' [39:36, 01:44](1072 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [39:22, 01:38](1074 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [39:08, 01:24](1074 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [39:06, 01:43](1072 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [38:39, 01:52](1079 MB) +PASS -- TEST 'rap_flake_debug_intel' [38:25, 01:45](1079 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [37:53, 02:48](1085 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:20, 04:26] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [04:13, 02:06](1580 MB) PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 07:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [49:28, 02:47](910 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [49:26, 03:03](778 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [49:06, 03:32](784 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [48:20, 02:31](840 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [47:53, 03:56](826 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [47:02, 02:48](775 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [40:04, 02:39](675 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:59, 01:21](660 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [45:38, 01:55](986 MB) -PASS -- TEST 'conus13km_2threads_intel' [40:10, 01:57](991 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [40:04, 01:43](861 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:54] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [45:27, 02:20](808 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:30] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:27, 01:50](952 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [45:25, 01:59](950 MB) -PASS -- TEST 'conus13km_debug_intel' [45:13, 01:45](1040 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [45:12, 01:37](708 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [44:29, 02:10](1041 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:26, 01:44](1105 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:23] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:19, 01:42](980 MB) - -PASS -- COMPILE 'hafsw_intel' [11:31, 09:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [43:56, 02:58](600 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [43:46, 01:47](940 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:39, 02:38](647 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [43:33, 02:24](671 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:34, 03:16](691 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [42:36, 02:03](374 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [42:27, 03:09](388 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [42:25, 02:41](351 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [41:53, 03:05](366 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [41:22, 02:28](402 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [40:56, 01:46](402 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [40:55, 01:47](473 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [40:47, 01:26](464 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:20, 04:52] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [40:33, 02:18](499 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:28, 09:08] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [40:06, 01:56](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [39:55, 02:43](693 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:31, 09:21] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [38:29, 02:15](700 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:29, 08:47] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [38:22, 03:15](641 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:48, 03:04](616 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:45, 01:33](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:31, 09:52] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [37:13, 01:42](1814 MB) - -PASS -- COMPILE 'atml_intel' [10:27, 08:50] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:21, 05:23] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:35, 08:27] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [36:57, 02:23](3011 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [36:33, 02:51](2898 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:14, 02:47](2906 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:24, 04:26] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [36:15, 02:52](4374 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [37:21, 02:17](913 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [37:03, 02:22](777 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [36:43, 03:16](776 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [36:19, 02:40](834 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [35:39, 02:57](827 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [35:37, 02:28](776 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:23, 02:31](675 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:57, 02:18](659 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:27, 07:54] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [34:09, 02:14](989 MB) +PASS -- TEST 'conus13km_2threads_intel' [29:08, 01:57](992 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [28:34, 01:47](862 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:24, 08:01] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [33:48, 02:27](806 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:21, 04:31] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [33:48, 02:02](953 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [33:46, 02:04](948 MB) +PASS -- TEST 'conus13km_debug_intel' [33:45, 01:53](1039 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [33:28, 01:38](711 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [32:59, 01:46](1039 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [32:43, 01:50](1103 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:21, 04:25] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [32:24, 01:57](980 MB) + +PASS -- COMPILE 'hafsw_intel' [11:32, 09:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [32:18, 03:15](597 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [32:09, 01:49](946 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:06, 02:53](652 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:06, 02:25](675 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:55, 02:40](693 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:33, 02:02](375 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:04, 03:08](388 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [30:50, 02:38](279 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [30:14, 03:31](404 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [30:04, 02:36](433 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [29:51, 01:49](402 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [29:51, 01:52](477 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [29:32, 01:27](308 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:21, 04:58] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:33, 02:24](499 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:32, 09:19] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [29:31, 01:50](515 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:00, 02:46](699 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:31, 09:25] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:58, 02:14](704 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:30, 08:39] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [26:11, 03:11](639 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [26:10, 03:09](616 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:52, 01:36](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:32, 10:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [25:27, 01:49](1820 MB) + +PASS -- COMPILE 'atml_intel' [10:28, 08:55] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:24, 05:50] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:28, 08:20] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [25:18, 02:17](3006 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [25:13, 02:50](2894 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [24:44, 02:41](2905 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:22, 04:30] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:45, 02:39](4377 MB) SYNOPSIS: -Starting Date/Time: 20241004 12:24:28 -Ending Date/Time: 20241004 13:52:15 -Total Time: 01h:28m:29s +Starting Date/Time: 20241015 17:35:30 +Ending Date/Time: 20241015 19:03:50 +Total Time: 01h:28m:57s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/opnReqTest b/tests/opnReqTest index 3578f1a098..f23b85b31a 100755 --- a/tests/opnReqTest +++ b/tests/opnReqTest @@ -231,6 +231,7 @@ run_opnReqTests() { export INPUTDATA_ROOT=${INPUTDATA_ROOT} export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC} + export INPUTDATA_LM4=${INPUTDATA_LM4} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} @@ -635,6 +636,7 @@ RTPWD=${NEW_BASELINE} INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20240501} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214/ INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207} +INPUTDATA_LM4=${INPUTDATA_LM4:-${INPUTDATA_ROOT}/LM4_input_data} rm -rf $NEW_BASELINE mkdir -p $NEW_BASELINE diff --git a/tests/parm/diag_table/diag_table_datm_lm4 b/tests/parm/diag_table/diag_table_datm_lm4 new file mode 100644 index 0000000000..877c6dccae --- /dev/null +++ b/tests/parm/diag_table/diag_table_datm_lm4 @@ -0,0 +1,158 @@ +@[SYEAR]@[SMONTH]@[SDAY].@[SHOUR]Z.@[ATMRES].64bit.non-mono +@[SYEAR] @[SMONTH] @[SDAY] @[SHOUR] 0 0 + +#output files +"land_static", -1, "months", 1, "days", "time" +"land_static_sg", -1, "months", 1, "days", "time" +"land_hourly", 1, "hours", 1, "days", "time" +#"land_daily", 24, "hours", 1, "days", "time" +"land_month", 1, "months", 1, "days", "time" +# +#======================= +# LAND MODEL DIAGNOSTICS +#======================= +# +"land", "geolon_t", "geolon_t", "land_static", "all", .false., "none", 1 +"land", "geolat_t", "geolat_t", "land_static", "all", .false., "none", 1 +"land", "geolon_t", "geolon_t", "land_month", "all", .false., "none", 1 +"land", "geolat_t", "geolat_t", "land_month", "all", .false., "none", 1 +# "land", "geolon_t", "geolon_t", "land_daily", "all", .false., "none", 1 +# "land", "geolat_t", "geolat_t", "land_daily", "all", .false., "none", 1 +"land", "geolon_t", "geolon_t", "land_hourly", "all", .false., "none", 1 +"land", "geolat_t", "geolat_t", "land_hourly", "all", .false., "none", 1 + +# land static output +"lake", "lake_depth", "lake_depth", "land_static", "all", .false., "none", 2 +"lake", "lake_width", "lake_width", "land_static", "all", .false., "none", 2 +"land_sg", "cell_area", "cell_area", "land_static_sg", "all", .false., "none", 2 +"land", "area_land", "land_area", "land_static", "all", .false., "none", 2 +"land", "land_frac", "land_frac", "land_static", "all", .false., "none", 2 +#"land", "no_riv", "no_riv", "land_static", "all", .false., "none", 2 +# "river", "rv_basin", "rv_basin", "land_static", "all", .false., "none", 2 +# "river", "rv_dir", "rv_dir", "land_static", "all", .false., "none", 2 +# "river", "rv_length", "rv_length", "land_static", "all", .false., "none", 2 +# "river", "rv_trav", "rv_trav", "land_static", "all", .false., "none", 2 +"soil", "soil_Ksat", "soil_Ksat", "land_static", "all", .false., "none", 2 +"soil", "soil_rlief", "soil_rlief", "land_static", "all", .false., "none", 2 +"soil", "soil_sat", "soil_sat", "land_static", "all", .false., "none", 2 +"soil", "soil_type", "soil_type", "land_static", "all", .false., "none", 2 +"soil", "soil_wilt", "soil_wilt", "land_static", "all", .false., "none", 2 +# area fractions for different tile types +"land", "frac_glac", "frac_glac", "land_static", "all", .false., "none", 2 +"land", "frac_lake", "frac_lake", "land_static", "all", .false., "none", 2 + +# land multi-level month-average output + +## land 2-band variables + +# # land one-level month-average output +# #"flux", "t_ref_land", "t_ref", "land_month", "all", .true., "none", 2 +"land", "area_land", "land_area", "land_month", "all", .false., "none", 2 +# "land", "area_glac", "glac_area", "land_month", "all", .false., "none", 2 +"land", "area_lake", "lake_area", "land_month", "all", .false., "none", 2 +"land", "area_soil", "soil_area", "land_month", "all", .false., "none", 2 + +# # land daily output +# "land", "area_ntrl", "area_ntrl", "land_daily", "all", .true., "none", 2 + +# # "flux", "evap_land", "evap_land", "land_daily", "all", .true., "none", 2 +# # "flux", "t_ref_land", "t_ref_max", "land_daily", "all", max, "none", 2 +# # "flux", "t_ref_land", "t_ref_min", "land_daily", "all", min, "none", 2 +# "land", "FWSg_lake", "FWSg_lake", "land_daily", "all", .true., "none", 2 +# "land", "FWSg_soil", "FWSg_soil", "land_daily", "all", .true., "none", 2 +# "land", "LWSg_lake", "LWSg_lake", "land_daily", "all", .true., "none", 2 +# "land", "LWSg_soil", "LWSg_soil", "land_daily", "all", .true., "none", 2 +# "land", "precip", "precip", "land_daily", "all", .true., "none", 2 +# "land", "snow_lake", "snow_lake", "land_daily", "all", .true., "none", 2 +# "land", "snow_soil", "snow_soil", "land_daily", "all", .true., "none", 2 +# "land", "runf", "runf", "land_daily", "all", .true., "none", 2 +# # "river", "rv_o_h2o", "rv_o_h2o", "land_daily", "all", .true., "none", 2 +# # "river", "rv_T", "rv_T", "land_daily", "all", .true., "none", 2 +# "vegn", "temp", "vegn_T", "land_daily", "all", .true., "none", 2 +# "vegn", "temp", "vegn_T_max", "land_daily", "all", max, "none", 2 +# "vegn", "temp", "vegn_T_min", "land_daily", "all", min, "none", 2 +# "vegn", "npp", "npp", "land_daily", "all", .true., "none", 2 +# "vegn", "gpp", "gpp", "land_daily", "all", .true., "none", 2 +# "vegn", "an_cl", "an_cl", "land_daily", "all", .true., "none", 2 +# "vegn", "an_op", "an_op", "land_daily", "all", .true., "none", 2 +# "vegn", "LAI", "LAI", "land_daily", "all", .true., "none", 2 +# "vegn", "stomatal_cond_ntrl","gs_ntrl_max","land_daily","all", max, "none", 2 +# "vegn", "temp_ntrl", "vegn_temp_ntrl_max","land_daily","all", max, "none", 2 +# "vegn", "temp_ntrl", "vegn_temp_ntrl_min","land_daily","all", min, "none", 2 +# # land daily variables used in post-processing "refinement" +# "soil", "soil_liq", "soil_liq", "land_daily", "all", .true., "-1 -1 -1 -1 0 0.1", 2 +# "soil", "soil_ice", "soil_ice", "land_daily", "all", .true., "-1 -1 -1 -1 0 0.1", 2 +# "land", "runf_soil", "runf_soil", "land_daily", "all", .true., "none", 2 +# "land", "FWSs", "FWSs", "land_daily", "all", .true., "none", 2 +# "land", "soil_water_supply", "water_supply", "land_daily", "all", .true., "none", 2 +# "vegn", "evap_demand", "water_demand", "land_daily", "all", .true., "none", 2 + +# land hourly output +"land", "area_ntrl", "area_ntrl", "land_hourly", "all", .true., "none", 2 + +# "flux", "evap_land", "evap_land", "land_hourly", "all", .true., "none", 2 +# "flux", "t_ref_land", "t_ref_max", "land_hourly", "all", max, "none", 2 +# "flux", "t_ref_land", "t_ref_min", "land_hourly", "all", min, "none", 2 +"land", "FWSg_lake", "FWSg_lake", "land_hourly", "all", .true., "none", 2 +"land", "FWSg_soil", "FWSg_soil", "land_hourly", "all", .true., "none", 2 +"land", "LWSg_lake", "LWSg_lake", "land_hourly", "all", .true., "none", 2 +"land", "LWSg_soil", "LWSg_soil", "land_hourly", "all", .true., "none", 2 +"land", "precip", "precip", "land_hourly", "all", .true., "none", 2 +"land", "snow_lake", "snow_lake", "land_hourly", "all", .true., "none", 2 +"land", "snow_soil", "snow_soil", "land_hourly", "all", .true., "none", 2 +"land", "runf", "runf", "land_hourly", "all", .true., "none", 2 +# "river", "rv_o_h2o", "rv_o_h2o", "land_hourly", "all", .true., "none", 2 +# "river", "rv_T", "rv_T", "land_hourly", "all", .true., "none", 2 +"vegn", "temp", "vegn_T", "land_hourly", "all", .true., "none", 2 +"vegn", "temp", "vegn_T_max", "land_hourly", "all", max, "none", 2 +"vegn", "temp", "vegn_T_min", "land_hourly", "all", min, "none", 2 +"vegn", "npp", "npp", "land_hourly", "all", .true., "none", 2 +"vegn", "gpp", "gpp", "land_hourly", "all", .true., "none", 2 +"vegn", "an_cl", "an_cl", "land_hourly", "all", .true., "none", 2 +"vegn", "an_op", "an_op", "land_hourly", "all", .true., "none", 2 +"vegn", "LAI", "LAI", "land_hourly", "all", .true., "none", 2 +"vegn", "stomatal_cond_ntrl","gs_ntrl_max","land_hourly","all", max, "none", 2 +"vegn", "temp_ntrl", "vegn_temp_ntrl_max","land_hourly","all", max, "none", 2 +"vegn", "temp_ntrl", "vegn_temp_ntrl_min","land_hourly","all", min, "none", 2 +# land hourly variables used in post-processing "refinement" +"soil", "soil_liq", "soil_liq", "land_hourly", "all", .true., "-1 -1 -1 -1 0 0.1", 2 +"soil", "soil_ice", "soil_ice", "land_hourly", "all", .true., "-1 -1 -1 -1 0 0.1", 2 +"land", "runf_soil", "runf_soil", "land_hourly", "all", .true., "none", 2 +"land", "FWSs", "FWSs", "land_hourly", "all", .true., "none", 2 +"land", "soil_water_supply", "water_supply", "land_hourly", "all", .true., "none", 2 +"vegn", "evap_demand", "water_demand", "land_hourly", "all", .true., "none", 2 + + +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/field_table/field_table_lm4 b/tests/parm/field_table/field_table_lm4 new file mode 100644 index 0000000000..c20de33988 --- /dev/null +++ b/tests/parm/field_table/field_table_lm4 @@ -0,0 +1,9 @@ +## Needed for LM4 Component. Append to rest of field table + +## LM4 + "TRACER", "land_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" / + "TRACER", "land_mod", "co2" + "longname", "carbon dioxide" + "units", "kg/kg" / diff --git a/tests/parm/input_datm_lm4.nml.IN b/tests/parm/input_datm_lm4.nml.IN new file mode 100644 index 0000000000..60f0336995 --- /dev/null +++ b/tests/parm/input_datm_lm4.nml.IN @@ -0,0 +1,406 @@ +&atmos_model_nml + blocksize = 32 +/ + +&diag_manager_nml + prepend_date = .true. + max_output_fields = 450 + max_axes = 400, + max_files = 400, + max_num_axis_sets = 400, + max_input_fields = 2000 + max_output_fields = 5000 + max_field_attributes=4 + max_axis_attributes=6 +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + + + +&fms_nml + clock_grain='ROUTINE' + clock_flags='NONE' + domains_stack_size = 5000000 + stack_size =0 + print_memory_usage = .false. +/ +&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' / + + +&nam_stochy +new_lscale=.true., +OCNSPPT=@[OCN_SPPT], +OCNSPPT_LSCALE=500e3, +OCNSPPT_TAU=21600, +ISEED_OCNSPPT=201601010012, +EPBL=@[EPBL], +EPBL_LSCALE=500e3, +EPBL_TAU=21600, +ISEED_EPBL=201601010023, +/ +&nam_sfcperts +/ + +&lm4_nml + lm4_debug = 1 + grid = 'CS' + layout = @[INPES],@[JNPES] + npx = @[NPX] + npy = @[NPY] + ntiles = 6 + blocksize = -1 + dt_lnd_slow = 3600 + restart_interval = 0,0,0,6,0,0 +/ + + &cana_nml + turbulence_to_use = "lm3v" + init_co2 = 286.0e-6 + canopy_air_mass_for_tracers = 10.0 + allow_small_z0 = .true. + sai_turb = .true. +/ + +&glac_data_nml + input_cover_types = 99 + use_lm2_awc = .true., + rsa_exp_global = 10., + f_iso_cold = 0.92, 0.58 + f_vol_cold = 0.06, 0.08 + f_geo_cold = 0.00, 0.00 + f_iso_warm = 0.92, 0.58 + f_vol_warm = 0.06, 0.08 + f_geo_warm = 0.00, 0.00 + dat_emis_dry = 1., + dat_emis_sat = 1., + geothermal_heat_flux_constant = 0.065 +/ + +&glac_nml + conserve_glacier_mass = .true. + lm2 = .true. + albedo_to_use = 'brdf-params' +/ + +&harvesting_nml + do_harvesting =.true. + grazing_intensity = 18.25 ! roughly 5% of biomass per day + grazing_residue = 0.1 + grazing_frequency = 'daily' + min_lai_for_grazing = 1.0 + frac_wood_wasted_harv = 0.25 + frac_wood_wasted_clear = 0.25 + !frac_wood_fast = ONETHIRD + !frac_wood_med = ONETHIRD + !frac_wood_slow = ONETHIRD + crop_seed_density = 0.1 + waste_below_ground_wood = .TRUE. +/ + +&hlsp_nml + max_num_topo_hlsps = 1 + num_vertclusters = 10 + use_geohydrodata = .true. + strm_depth_penetration = 1.5 + use_hlsp_aspect_in_gwflow = .true. + diagnostics_by_cluster = .true. + init_wt_strmelev = .false. + dammed_strm_bc = .true. + limit_intertile_flow = .true. !.false. + flow_ratio_limit = 0.25 +/ + +&ice_albedo_nml + t_range = 10. +/ + +&ice_model_nml + interp_method = 'bilinear' +/ + +&lake_data_nml + lake_to_use = 'from-rivers' + lake_specific_width = .false. + large_lake_sill_width = 800. + num_l = 20, + dat_emis_dry = 1., + dat_emis_sat = 1., + dat_heat_capacity_ref = 0., + f_iso_liq = 0.025, 0.01 + f_iso_ice = 0.025, 0.01 + f_vol_liq = 0., 0. + f_vol_ice = 0., 0. + f_geo_liq = 0., 0. + f_geo_ice = 0., 0. + dry_lake_depth_frac = 0.5 + dat_z0_momentum(1) = 1.4e-4 + dat_z0_momentum_ice(1) = 1.4e-4 + k_over_B_ice = 0.25 + geothermal_heat_flux_constant = 0.065 +/ + +&lake_nml + albedo_to_use = 'brdf-params' + float_ice_to_top = .true. + lake_depth_max = 1.e10 + max_plain_slope = 16.e-5 + K_z_background = 15.e-5 +/ + + &land_conservation_nml + do_check_conservation=.true. + water_cons_tol = 1e-8 + carbon_cons_tol = 1e-6 +/ + +&land_debug_nml + watch_point = 0, 0, 0, 1 +/ + +&land_model_nml + ! layout = $lnd_layout + ! io_layout = $lnd_io_layout + tau_snow_T_adj = 604800. + prohibit_negative_canopy_water=.false. + min_frac = 1e-8 + npes_io_group = 18 +/ + +&landuse_nml + do_landuse_change = .false. + data_type = 'luh2' + input_file = '@[INPUTDATA_LM4]/forcings/landuse/LUH2/v2.0h/transitions.nc' + state_file = '@[INPUTDATA_LM4]/forcings/landuse/LUH2/v2.0h/states.nc' + static_file = '@[INPUTDATA_LM4]/forcings/landuse/LUH2/v2.0h/landfrac.nc' + distribute_transitions = 'min-n-tiles' +/ + +&monin_obukhov_nml + stable_option = 2, + rich_crit = 1.0, + zeta_trans = 0.5 +/ + +&photosynthesis_nml + photosynthesis_to_use = 'leuning' + co2_to_use_for_photosynthesis ='prescribed' ! slm/jgj 2016/12/16 ok to set to interactive + co2_for_photosynthesis = 284.262e-6 ! jgj to match CMIP6 Jan 1 1850 co2 value + respiration_to_use = 'LM3' + Kok_effect = .False. + lai_eps=1.e-5 +/ + +&river_nml + do_rivers = .FALSE. + dt_slow = 86400. + land_area_called_cellarea = .true. + all_big_outlet_ctn0 = .true. + ave_DHG_exp = 0.55, 0.45, 0.0 + ave_DHG_coef = 7.5, 0.3, 0.444444444 + ave_AAS_exp = 0.26, 0.40, 0.34 +/ + +&river_physics_nml + lake_sfc_w_min = 10. + prohibit_cold_ice_outflow = .FALSE. +/ + +&sat_vapor_pres_nml + construct_table_wrt_liq = .true. + construct_table_wrt_liq_and_ice = .true. + use_exact_qs = .true. +/ + +&snow_data_nml + emis_snow_max = 1. + emis_snow_min = 1. + z0_momentum = 0.01 + num_l = 5 + dz = 0.05, 0.2, 0.5, 0.2, 0.05, 0.0, 0.0, 0.0, 0.0, 0.0 + f_iso_cold = 0.92, 0.58 + f_vol_cold = 0.06, 0.08 + f_geo_cold = 0.00, 0.00 + f_iso_warm = 0.77, 0.43 + f_vol_warm = 0.06, 0.08 + f_geo_warm = 0.00, 0.00 + depth_crit = 0.0125 + thermal_cond_ref = 0.09 + + distinct_snow_on_glacier = .TRUE. + f_iso_cold_on_glacier = 0.92, 0.68 + f_vol_cold_on_glacier = 0.06, 0.08 + f_geo_cold_on_glacier = 0.00, 0.00 + f_iso_warm_on_glacier = 0.77, 0.43 + f_vol_warm_on_glacier = 0.06, 0.08 + f_geo_warm_on_glacier = 0.00, 0.00 +/ + +&snow_nml + min_snow_mass = 1.e-7 + albedo_to_use = 'brdf-params' + snow_density = 250. + prevent_tiny_snow = .true. +/ + +&soil_data_nml + geohydrology_to_use = 'hill' + use_comp_for_ic = .true. + use_comp_for_push = .true. + use_tau_fix = .false. + use_sat_fix = .true. + use_alt3_soil_hydraulics = .true. + gw_scale_soil_depth = 0.1666667 + gw_scale_perm = 1.0 + gw_scale_relief = 0.5 + aspect = 0.01 + k0_macro_z = 0.0 + k0_macro_x = 1.0 + freeze_factor = 1.5 + comp = 1e-4 + num_l = 20 + dz = 0.020, 0.040, 0.040, 0.050, 0.05, 0.100, 0.10, 0.200, 0.200, 0.2, + 0.40, 0.40, 0.40, 0.4, 0.4, 1.0, 1.0, 1.0, 1.5, 2.5 + soil_type_file = "INPUT/soil_type.nc" + input_cover_types = 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 + tile_names = 'hec', 'sic', 'lic', 'sicl', 'cl', 'si', 'sil', 'sac', 'l', 'sacl', 'sal', 'ls', 's', 'u' + dat_w_sat = 0.468, 0.468, 0.468, 0.464, 0.465, 0.476, 0.476, 0.406, 0.439, 0.404, 0.434, 0.421, 0.339, 0.439 + dat_k_sat_ref = 0.00097, 0.0013, 0.00097, 0.002, 0.0024, 0.0028, 0.0028, 0.0072, 0.0033, 0.0045, 0.0052, 0.014, 0.047, 0.0033 + dat_psi_sat_ref = -0.47, -0.32, -0.47, -0.62, -0.26, -0.76, -0.76, -0.098, -0.35, -0.13, -0.14, -0.036 -0.069, -0.35 + dat_chb = 12.0, 10.0, 12.0, 8.7, 8.2, 5.3, 5.3, 11.0, 5.2, 6.8, 4.7, 4.3, 2.8, 5.2 + dat_heat_capacity_dry = 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6 + dat_thermal_cond_dry = 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.14, 0.21 + dat_thermal_cond_sat = 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 2.3, 1.5 + dat_thermal_cond_exp = 6, 6, 6, 5, 5, 5, 5, 6, 5, 5, 5, 5, 3, 5 + dat_thermal_cond_scale = 10, 10, 10, 0.5, 0.5, 0.5, 0.5, 10, 0.5, 0.5, 0.5, 0.5, 15, 0.5 + dat_thermal_cond_weight = 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.2, 0.7 + dat_emis_dry = 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + dat_emis_sat = 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + dat_tf_depr = 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0 + dat_z0_momentum = 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01 + Dpsi_min_const = -1.e12 + K_min = 1.e-12 + geothermal_heat_flux_constant = 0.065 + retro_a0N1 = .true. +/ + +&soil_nml + init_wtdep = 10. + albedo_to_use = 'brdf-maps' + uptake_to_use = 'darcy2d-linearized' + uptake_oneway = .true. + active_layer_drainage_acceleration = 1. + gw_flux_max = 0.001 + lrunf_from_div = .false. + cold_infilt = .false. + use_depth_to_wt_4 = .true. + layer_for_gw_switch = 16 + bottom_up_cold_infilt = .true. + cold_depth = 3.0 + bwood_macinf = 1. + allow_neg_wl = .true. + prohibit_negative_water_div = .true. + fix_neg_subsurface_wl = .TRUE. +/ + +&static_veg_nml + use_static_veg = .FALSE. + timeline = 'loop' + start_loop = 1981, 1, 1, 0, 0, 0 + end_loop = 1982, 1, 1, 0, 0, 0 + fill_land_mask = .TRUE. + write_static_veg = .FALSE. + input_file = 'INPUT/19810101.static_veg_out.nc' +/ + +&topo_rough_nml + use_topo_rough = .true. + max_topo_rough = 100.0 + topo_rough_factor = 0.01 + topo_rough_source = 'input', + topo_rough_file = 'INPUT/topo_rough_land.nc', +/ + +&topography_nml + topog_file = 'INPUT/navy_topography.data.nc' +/ + +&vegn_data_nml + vegn_to_use = 'uniform' + K1=10, + K2=0.1, + fsc_liv=0.9, + fsc_wood=0.45, + c1(4) = 0.3 + c2(4) = 0.3 + Vmax = 2.0E-5, 2.0E-5, 2.0E-5, 2.0E-5, 1.50E-5, + m_cond = 4., 9., 9., 7., 7., + alpha_phot = 0.05, 0.06, 0.06, 0.06, 0.06, + gamma_resp = 0.03, 0.02, 0.02, 0.02, 0.02, + tc_crit(0:2) = 3*273.16 + fact_crit_phen(0:4) = 0., 0., 0., 0., 0. + fact_crit_fire(0:4) = 0., 0., 0., 0., 0. + cnst_crit_phen(0:4) = 0.30, 0.15, 0.15, 0.30, 0.30 + cnst_crit_fire(0:4) = 0.15, 0.40, 0.15, 0.15, 0.15 + wet_leaf_dreg(0:4) = .3, .3, .3, .3, .3 + ksi = 0, 0, 0, 0, 0, + leaf_refl(0:4,1) = 0.11, 0.11, 0.10, 0.10, 0.10 + leaf_refl(0:4,2) = 0.58, 0.58, 0.45, 0.45, 0.39, + dat_root_zeta(0:4) = 0.35212, 0.17039, 0.28909, 0.25813, 0.17039 + critical_root_density = 0.0, + tau_drip_s = 259200.0 + cmc_lai(0:4) = 0.02, 0.02, 0.02, 0.02, 0.02 + csc_lai(0:4) = 0.30, 0.30, 0.30, 0.30, 0.2 + dat_snow_crit = 2*1.e7, .1, 1.e7, .1 + t_transp_min = 268. + srl(0:1) = 112.0e3, 150.0e3 + root_perm = 14*5e-7 + alpha(1,3) = 4 + leaf_age_tau(2) = 150 + smoke_fraction = 0.9, 0.9, 0.6, 0.6, 0.6 + tg_c3_thresh = 1 + phen_ev1 = 0.2 + phen_ev2 = 0.7 + cmc_eps = 0.01 + alpha(0:4,6) = 0.0, 0.0, 0.012, 0.012, 0.012 + treefall_disturbance_rate = 0.175, 0.185, 0.025, 0.0275, 0.027 + use_light_saber = .true. + sai_cover = .true. + sai_rad = .true. + + min_lai = 1.e-5 ! h1g, prevent numerical instability, 2017-08-24 +/ + +&vegn_nml + init_Tv = 288.0 + rad_to_use = 'two-stream' + snow_rad_to_use = 'paint-leaves' + do_cohort_dynamics = .TRUE. + do_patch_disturbance = .TRUE. + do_phenology = .TRUE. + do_biogeography = .TRUE. + do_seed_transport = .TRUE. + tau_smooth_ncm = 22.0 + rav_lit_bwood = 300. +/ + +&surface_flux_nml + alt_gustiness = .TRUE. + gust_min = 0.0 ! m/s, min. gustiness used when alt_gustiness is .FALSE. +/ + +&atmos_prescr_nml + gust_to_use = 'prescribed' + !gustiness = 5.0 ! m/s, wind gustiness if gust_to_use = 'prescribed' + !gust_min = 0.01 ! m/s, min. gustiness when gust_to_use = 'computed' +/ \ No newline at end of file diff --git a/tests/parm/ufs.configure.atm_lm4.IN b/tests/parm/ufs.configure.atm_lm4.IN new file mode 100644 index 0000000000..16bc68285d --- /dev/null +++ b/tests/parm/ufs.configure.atm_lm4.IN @@ -0,0 +1,104 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM LND +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +MED_attributes:: + Verbosity = 1 + Diagnostic = 0 + ATM_model = @[atm_model] + LND_model = @[lnd_model] + MED_model = cmeps + history_n = 6 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + history_tile_lnd = 96 + history_n_lnd_inst = 6 + history_option_lnd_inst = nhours + pio_rearranger = @[pio_rearranger] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + Diagnostic = 0 +:: + +# LND # +LND_model: @[lnd_model] +LND_petlist_bounds: @[lnd_petlist_bounds] +LND_omp_num_threads: @[lnd_omp_num_threads] +LND_attributes:: + Verbosity = 1 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + input_dir = INPUT/ +:: + +# cold +runSeq:: +@@[coupling_interval_sec] + MED med_phases_prep_atm + MED -> ATM :remapMethod=redist + ATM + 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 + MED med_phases_history_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: + +ALLCOMP_attributes:: + ScalarFieldCount = 4 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 # required for data atmosphere configurations + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = 12 + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + read_restart = @[READRESTART] + mediator_present = true +:: diff --git a/tests/rt.conf b/tests/rt.conf index 407dcde958..347840ec31 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -291,6 +291,12 @@ RUN | datm_cdeps_lnd_gswp3 | - wcoss2 RUN | datm_cdeps_lnd_era5 | - wcoss2 | baseline | RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_era5 +### CDEPS Data Atmosphere tests with LM4 ### +COMPILE | datm_cdeps_lm4 | intel | -DAPP=LND-LM4 | + hera orion gaea | fv3 | +RUN | datm_cdeps_lm4_gswp3 | + hera orion gaea | baseline | +RUN | datm_cdeps_lm4_gswp3_rst | + hera orion gaea | | datm_cdeps_lm4_gswp3 + + ### AMIP+ tests ### COMPILE | atm_ds2s_docn_pcice | intel | -DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | RUN | atm_ds2s_docn_pcice | - noaacloud | baseline | diff --git a/tests/rt.sh b/tests/rt.sh index 1b3b9fa5b2..48a65436be 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -717,13 +717,12 @@ case ${MACHINE_ID} in ROCOTO_SCHEDULER="slurm" fi - export LD_PRELOAD=/opt/cray/pe/gcc/12.2.0/snos/lib64/libstdc++.so.6 - module load PrgEnv-intel/8.3.3 - module load intel-classic/2023.1.0 - module load cray-mpich/8.1.25 + export LD_PRELOAD=/usr/lib64/libstdc++.so.6 + module load PrgEnv-intel/8.5.0 + module load intel-classic/2023.2.0 + module load cray-mpich/8.1.28 module load python/3.9.12 module use /ncrc/proj/epic/spack-stack/modulefiles - module load gcc/12.2.0 if [[ "${ECFLOW:-false}" == true ]] ; then module load ecflow/5.8.4 ECF_HOST=$(hostname) @@ -737,7 +736,7 @@ case ${MACHINE_ID} in PARTITION=c5 dprefix=${dprefix:-/gpfs/f5/${ACCNR}/scratch/${USER}} STMP=${STMP:-${dprefix}/RT_BASELINE} - PTMP=${PTMP:-${dprefix}/RT_RUNDIRS} + PTMP=${PTMP:-${dprefix}/RT_RUNDIRS} SCHEDULER="slurm" ;; @@ -788,6 +787,7 @@ case ${MACHINE_ID} in PTMP="${dprefix}/stmp" SCHEDULER="slurm" + cp fv3_conf/fv3_slurm.IN_orion fv3_conf/fv3_slurm.IN cp fv3_conf/compile_slurm.IN_orion fv3_conf/compile_slurm.IN ;; @@ -1020,6 +1020,7 @@ fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-${DISKNM}/NEMSfv3gfs/input-data-20240501} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214 INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-${DISKNM}/NEMSfv3gfs/BM_IC-20220207} +INPUTDATA_LM4=${INPUTDATA_LM4:-${INPUTDATA_ROOT}/LM4_input_data} shift $((OPTIND-1)) if [[ $# -gt 1 ]]; then @@ -1286,6 +1287,7 @@ export RTPWD=${RTPWD} export INPUTDATA_ROOT=${INPUTDATA_ROOT} export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC} +export INPUTDATA_LM4=${INPUTDATA_LM4} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index e56321cb3d..ecf4259421 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -79,10 +79,13 @@ function compute_petbounds_and_tasks() { aqm_petlist_bounds="0 $((ATM_compute_tasks * atm_omp_num_threads - 1))" # LND - if [[ ${LND_tasks:-0} -gt 0 ]]; then - LND_tasks=$((LND_tasks * lnd_omp_num_threads)) - lnd_petlist_bounds="${n} $((n + LND_tasks - 1))" - n=$((n + LND_tasks)) + if [[ ${lnd_model:-} = "lm4" ]]; then + # set lnd_petlist_bounds to be same as ATM_compute_tasks + lnd_petlist_bounds="0 $((ATM_compute_tasks - 1))" + elif [[ ${LND_tasks:-0} -gt 0 ]]; then # noahmp component or other + LND_tasks=$((LND_tasks * lnd_omp_num_threads)) + lnd_petlist_bounds="${n} $((n + LND_tasks - 1))" + n=$((n + LND_tasks)) fi # FBH diff --git a/tests/run_test.sh b/tests/run_test.sh index 75808abad7..201ac000b3 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -118,7 +118,7 @@ case ${MACHINE_ID} in ;; gaea) module use /ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core - module load stack-intel/2023.1.0 stack-cray-mpich/8.1.25 + module load stack-intel/2023.2.0 stack-cray-mpich/8.1.28 module load nccmp/1.9.0.1 ;; derecho) @@ -240,7 +240,7 @@ fi if [[ "Q${FIELD_TABLE:-}" != Q ]]; then cp "${PATHRT}/parm/field_table/${FIELD_TABLE}" field_table fi - + # fix files if [[ ${FV3} == true ]]; then cp "${INPUTDATA_ROOT}"/FV3_fix/*.txt . @@ -302,6 +302,11 @@ if [[ "${DIAG_TABLE_ADDITIONAL:-}Q" != Q ]]; then atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE_ADDITIONAL:-}" >> diag_table fi +if [[ "${FIELD_TABLE_ADDITIONAL:-}Q" != Q ]] ; then + # Append field table + atparse < "${PATHRT}/parm/field_table/${FIELD_TABLE_ADDITIONAL:-}" >> field_table +fi + # ATMAERO if [[ ${CPLCHM} == .true. ]] && [[ ${S2S} = 'false' ]]; then atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template}" > diag_table diff --git a/tests/tests/datm_cdeps_lm4_gswp3 b/tests/tests/datm_cdeps_lm4_gswp3 new file mode 100644 index 0000000000..ea57b3b5c5 --- /dev/null +++ b/tests/tests/datm_cdeps_lm4_gswp3 @@ -0,0 +1,120 @@ +# +# DATM_CDEPS_LM4_GSWP test +# + +export TEST_DESCR="DATM_CDEPS_LM4_GSWP3 - control " + +export CNTL_DIR="datm_cdeps_lm4_gswp3" + +export LIST_FILES="\ + RESTART/cana.res.tile1.nc \ + RESTART/cana.res.tile2.nc \ + RESTART/cana.res.tile3.nc \ + RESTART/cana.res.tile4.nc \ + RESTART/cana.res.tile5.nc \ + RESTART/cana.res.tile6.nc \ + RESTART/glac.res.tile1.nc \ + RESTART/glac.res.tile2.nc \ + RESTART/glac.res.tile3.nc \ + RESTART/glac.res.tile4.nc \ + RESTART/glac.res.tile5.nc \ + RESTART/glac.res.tile6.nc \ + RESTART/lake.res.tile1.nc \ + RESTART/lake.res.tile2.nc \ + RESTART/lake.res.tile3.nc \ + RESTART/lake.res.tile4.nc \ + RESTART/lake.res.tile5.nc \ + RESTART/lake.res.tile6.nc \ + RESTART/land.res.tile1.nc \ + RESTART/land.res.tile2.nc \ + RESTART/land.res.tile3.nc \ + RESTART/land.res.tile4.nc \ + RESTART/land.res.tile5.nc \ + RESTART/land.res.tile6.nc \ + RESTART/landuse.res \ + RESTART/snow.res.tile1.nc \ + RESTART/snow.res.tile2.nc \ + RESTART/snow.res.tile3.nc \ + RESTART/snow.res.tile4.nc \ + RESTART/snow.res.tile5.nc \ + RESTART/snow.res.tile6.nc \ + RESTART/soil.res.tile1.nc \ + RESTART/soil.res.tile2.nc \ + RESTART/soil.res.tile3.nc \ + RESTART/soil.res.tile4.nc \ + RESTART/soil.res.tile5.nc \ + RESTART/soil.res.tile6.nc \ + RESTART/vegn1.res.tile1.nc\ + RESTART/vegn1.res.tile2.nc\ + RESTART/vegn1.res.tile3.nc\ + RESTART/vegn1.res.tile4.nc\ + RESTART/vegn1.res.tile5.nc\ + RESTART/vegn1.res.tile6.nc\ + RESTART/vegn2.res.tile1.nc\ + RESTART/vegn2.res.tile2.nc\ + RESTART/vegn2.res.tile3.nc\ + RESTART/vegn2.res.tile4.nc\ + RESTART/vegn2.res.tile5.nc\ + RESTART/vegn2.res.tile6.nc" + + +export_datm_cdeps + +# these are not in export_datm_cdeps, but needed with LM4 +export LNDRES=C96 +#export INPES=$INPES_cpl_dflt +#export JNPES=$JNPES_cpl_dflt +export INPES=2 +export JNPES=2 +export THRD=$THRD_cpl_dflt +export WRTTASK_PER_GROUP=$WPG_cpl_dflt +export NPX=97 +export NPY=97 + + +export SYEAR=2000 +export SMONTH=01 +export SDAY=01 +export SHOUR=00 +export FHMAX=48 + +export DATM_IN_CONFIGURE=datm_in.IN +export MESH_ATM=fv1.9x2.5_141008_ESMFmesh.nc +export atm_datamode=CLMNCEP +export ATM_NX_GLB=144 +export ATM_NY_GLB=96 +export EXPORT_ALL=.true. + +export DATM_STREAM_CONFIGURE=datm.streams.multi.IN +export MESH_ATM_DATA="INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.SCRIP.210520_ESMFmesh.nc" +export MESH_ATM_TOPO="INPUT/topodata_0.9x1.SCRIP.210520_ESMFmesh.nc" +export SDATE=1999 +export EDATE=2000 +export DATA_ATM01="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Solr.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Solr.2000-01.nc\"" +export DATA_ATM02="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Prec.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Prec.2000-01.nc\"" +export DATA_ATM03="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.2000-01.nc\"" +export DATA_ATM04="\"INPUT/topodata_0.9x1.25_USGS_070110_stream_c151201.nc\"" + +export UFS_CONFIGURE="ufs.configure.atm_lm4.IN" +export med_model="cmeps" +export atm_model="datm" +export lnd_model="lm4" +export CPLMODE=ufs.nfrac.aoflux +export RUNTYPE="startup" +export READRESTART=.false. +export ATM_compute_tasks=24 +export OCN_tasks=0 +export ICE_tasks=0 +export LND_tasks=24 +export lnd_ic_type='custom' +export CALC_SNET=.true. +export layout_x=2 +export layout_y=2 +export mosaic_file="INPUT/C96_mosaic.nc" +export coupling_interval_sec=3600 +export TOPOEDITS="" +#export FV3_RUN="lnd_datm_cdeps_gswp.IN lm4_run.IN" +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 diff --git a/tests/tests/datm_cdeps_lm4_gswp3_rst b/tests/tests/datm_cdeps_lm4_gswp3_rst new file mode 100644 index 0000000000..efa4e6fcf4 --- /dev/null +++ b/tests/tests/datm_cdeps_lm4_gswp3_rst @@ -0,0 +1,126 @@ +# +# DATM_CDEPS_LM4_GSWP test +# + +export TEST_DESCR="DATM_CDEPS_LM4_GSWP3_RST - control restart" + +export CNTL_DIR="datm_cdeps_lm4_gswp3" + +export LIST_FILES="\ + RESTART/cana.res.tile1.nc \ + RESTART/cana.res.tile2.nc \ + RESTART/cana.res.tile3.nc \ + RESTART/cana.res.tile4.nc \ + RESTART/cana.res.tile5.nc \ + RESTART/cana.res.tile6.nc \ + RESTART/glac.res.tile1.nc \ + RESTART/glac.res.tile2.nc \ + RESTART/glac.res.tile3.nc \ + RESTART/glac.res.tile4.nc \ + RESTART/glac.res.tile5.nc \ + RESTART/glac.res.tile6.nc \ + RESTART/lake.res.tile1.nc \ + RESTART/lake.res.tile2.nc \ + RESTART/lake.res.tile3.nc \ + RESTART/lake.res.tile4.nc \ + RESTART/lake.res.tile5.nc \ + RESTART/lake.res.tile6.nc \ + RESTART/land.res.tile1.nc \ + RESTART/land.res.tile2.nc \ + RESTART/land.res.tile3.nc \ + RESTART/land.res.tile4.nc \ + RESTART/land.res.tile5.nc \ + RESTART/land.res.tile6.nc \ + RESTART/landuse.res \ + RESTART/snow.res.tile1.nc \ + RESTART/snow.res.tile2.nc \ + RESTART/snow.res.tile3.nc \ + RESTART/snow.res.tile4.nc \ + RESTART/snow.res.tile5.nc \ + RESTART/snow.res.tile6.nc \ + RESTART/soil.res.tile1.nc \ + RESTART/soil.res.tile2.nc \ + RESTART/soil.res.tile3.nc \ + RESTART/soil.res.tile4.nc \ + RESTART/soil.res.tile5.nc \ + RESTART/soil.res.tile6.nc \ + RESTART/vegn1.res.tile1.nc\ + RESTART/vegn1.res.tile2.nc\ + RESTART/vegn1.res.tile3.nc\ + RESTART/vegn1.res.tile4.nc\ + RESTART/vegn1.res.tile5.nc\ + RESTART/vegn1.res.tile6.nc\ + RESTART/vegn2.res.tile1.nc\ + RESTART/vegn2.res.tile2.nc\ + RESTART/vegn2.res.tile3.nc\ + RESTART/vegn2.res.tile4.nc\ + RESTART/vegn2.res.tile5.nc\ + RESTART/vegn2.res.tile6.nc" + + +export_datm_cdeps + +# these are not in export_datm_cdeps, but needed with LM4 +export LNDRES=C96 +#export INPES=$INPES_cpl_dflt +#export JNPES=$JNPES_cpl_dflt +export INPES=2 +export JNPES=2 +export THRD=$THRD_cpl_dflt +export WRTTASK_PER_GROUP=$WPG_cpl_dflt +export NPX=97 +export NPY=97 + + +export SYEAR=2000 +export SMONTH=01 +export SDAY=02 +export SHOUR=00 +export FHMAX=24 +export FHROT=0 + +export DATM_IN_CONFIGURE=datm_in.IN +export MESH_ATM=fv1.9x2.5_141008_ESMFmesh.nc +export atm_datamode=CLMNCEP +export ATM_NX_GLB=144 +export ATM_NY_GLB=96 +export EXPORT_ALL=.true. + +export DATM_STREAM_CONFIGURE=datm.streams.multi.IN +export MESH_ATM_DATA="INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.SCRIP.210520_ESMFmesh.nc" +export MESH_ATM_TOPO="INPUT/topodata_0.9x1.SCRIP.210520_ESMFmesh.nc" +export SDATE=1999 +export EDATE=2000 +export DATA_ATM01="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Solr.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Solr.2000-01.nc\"" +export DATA_ATM02="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Prec.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Prec.2000-01.nc\"" +export DATA_ATM03="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.2000-01.nc\"" +export DATA_ATM04="\"INPUT/topodata_0.9x1.25_USGS_070110_stream_c151201.nc\"" + +export UFS_CONFIGURE="ufs.configure.atm_lm4.IN" +export med_model="cmeps" +export atm_model="datm" +export lnd_model="lm4" +export CPLMODE=ufs.nfrac.aoflux +export RUNTYPE="continue" +export READRESTART=.false. +export ATM_compute_tasks=24 +export OCN_tasks=0 +export ICE_tasks=0 +export LND_tasks=24 +export lnd_ic_type='custom' +export CALC_SNET=.true. +export layout_x=2 +export layout_y=2 +export mosaic_file="INPUT/C96_mosaic.nc" +export coupling_interval_sec=3600 +export TOPOEDITS="" +export WARM_START=.true. +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" +# expected checkpoint restarts are named like: YYYYMMDD.HHMMSS.*.res* +export LM4_RESTART_PREFIX=${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT}+ ${SHOUR} )))0000 + +#export FV3_RUN="lnd_datm_cdeps_gswp.IN lm4_run.IN" +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