From e784814dfce3fb01e82be6d3949f9811860041d7 Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Tue, 25 Jun 2024 17:08:45 -0400 Subject: [PATCH] Add CICE end of run restart file capability+Update submodule FV3/atmos_cubed_sphere to fix a typo when printing out the nest grid corner locations #2323+Bump urllib3 from 2.2.1 to 2.2.2 in /doc/UsersGuide #2329 + Orion changes for switch to new OS - Rocky-9 #2336 (#2324) * CICE - Adds restart write capability at the end of a run for CICE * FV3 - * atmos_cubed_sphere - Update submodule FV3/atmos_cubed_sphere to fix a typo when printing out the nest grid corner locations * doc/UsersGuide/requirements.txt: Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.2.1 to 2.2.2. * Orion Spack stack modulefile update: Rocky-9 * update detect_machine.sh: hercules --- CICE-interface/CICE | 2 +- FV3 | 2 +- doc/UsersGuide/requirements.txt | 4 +- modulefiles/ufs_orion.intel.lua | 6 +- tests/default_vars.sh | 5 +- tests/detect_machine.sh | 3 +- tests/logs/OpnReqTests_control_p8_hera.log | 61 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 30 +- .../OpnReqTests_regional_control_hera.log | 32 +- tests/logs/RegressionTests_acorn.log | 597 ++++++------- tests/logs/RegressionTests_derecho.log | 613 ++++++------- tests/logs/RegressionTests_gaea.log | 552 ++++++------ tests/logs/RegressionTests_hera.log | 728 ++++++++-------- tests/logs/RegressionTests_hercules.log | 808 ++++++++---------- tests/logs/RegressionTests_jet.log | 488 +++++------ tests/logs/RegressionTests_orion.log | 559 ++++++------ tests/logs/RegressionTests_wcoss2.log | 460 +++++----- tests/parm/ufs.configure.datm_cdeps.IN | 1 + tests/parm/ufs.configure.hafs_atm_docn.IN | 1 + tests/parm/ufs.configure.hafs_atm_ocn.IN | 1 + tests/parm/ufs.configure.hafs_atm_ocn_wav.IN | 1 + .../ufs.configure.hafs_atm_ocn_wav_inline.IN | 1 + .../ufs.configure.hafs_atm_ocn_wav_mom6.IN | 1 + tests/parm/ufs.configure.hafs_atm_wav.IN | 1 + tests/parm/ufs.configure.s2s.IN | 1 + tests/parm/ufs.configure.s2s_aoflux_esmf.IN | 1 + tests/parm/ufs.configure.s2s_esmf.IN | 1 + tests/parm/ufs.configure.s2sa.IN | 1 + tests/parm/ufs.configure.s2sa_esmf.IN | 1 + tests/parm/ufs.configure.s2sw.IN | 1 + tests/parm/ufs.configure.s2sw_esmf.IN | 1 + tests/parm/ufs.configure.s2sw_fast_esmf.IN | 1 + tests/parm/ufs.configure.s2swa.IN | 1 + tests/parm/ufs.configure.s2swa_esmf.IN | 1 + tests/parm/ufs.configure.s2swa_fast_esmf.IN | 1 + tests/rt.conf | 2 +- tests/rt.sh | 7 +- 37 files changed, 2398 insertions(+), 2579 deletions(-) diff --git a/CICE-interface/CICE b/CICE-interface/CICE index d406c7e205..9452de8c3c 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit d406c7e205bd62913eea0bc87bed1aeb63eb2f83 +Subproject commit 9452de8c3cb43fb2628f0722e6a51f79429d2160 diff --git a/FV3 b/FV3 index 07c26d1efa..10cd023128 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 07c26d1efae47445e4c36ff98942494788e7dc49 +Subproject commit 10cd0231282388da16d22a0aae22a1722b773720 diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt index 6ec1ab1a49..90efd3211e 100644 --- a/doc/UsersGuide/requirements.txt +++ b/doc/UsersGuide/requirements.txt @@ -12,8 +12,6 @@ certifi==2024.2.2 # via requests charset-normalizer==3.3.2 # via requests -colorama==0.4.6 - # via sphinx docutils==0.20.1 # via # pybtex-docutils @@ -74,5 +72,5 @@ sphinxcontrib-qthelp==1.0.7 # via sphinx sphinxcontrib-serializinghtml==1.1.10 # via sphinx -urllib3==2.2.1 +urllib3==2.2.2 # via requests diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index 104d08fd29..1d717663ae 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -2,12 +2,12 @@ help([[ loads UFS Model prerequisites for Orion/Intel ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/unified-env-rocky9/install/modulefiles/Core") -stack_intel_ver=os.getenv("stack_intel_ver") or "2022.0.2" +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" load(pathJoin("stack-intel", stack_intel_ver)) -stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.1" +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.9.0" load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) cmake_ver=os.getenv("cmake_ver") or "3.23.1" diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 0742cb3bd8..4c1c259488 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -1043,6 +1043,7 @@ export_cmeps() { export RESTART_N=${FHMAX} export CMEPS_RESTART_DIR=./RESTART/ export cap_dbug_flag=0 + export WRITE_ENDOFRUN_RESTART=.false. # MOM6 attributes export use_coldstart=false export use_mommesh=true @@ -1119,7 +1120,7 @@ export_mom6 # Set WW3 component defaults export_ww3 -# Set CMEPS component defauls +# Set CMEPS component defaults export_cmeps # FV3 defaults @@ -1300,7 +1301,7 @@ export_datm_cdeps () export MOM6_USE_WAVES=False export WW3_DOMAIN='' - # Set CMEPS component defauls + # Set CMEPS component defaults export_cmeps # default configure export UFS_CONFIGURE=ufs.configure.datm_cdeps.IN diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 98839e2c70..29f51285ca 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -84,7 +84,8 @@ elif [[ -d /scratch1 ]]; then MACHINE_ID=hera elif [[ -d /work ]]; then # We are on MSU Orion or Hercules - if [[ -d /apps/other ]]; then + mount=$(findmnt -n -o SOURCE /home) + if [[ ${mount} =~ "hercules" ]]; then # We are on Hercules MACHINE_ID=hercules else diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 8928c3cb87..e2e42d9f1b 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Jun 14 13:38:21 UTC 2024 +Sun Jun 23 20:52:48 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2452253/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250829/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -44,21 +44,21 @@ Moving baseline bit_base files .... Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK -Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.753384 - 0: The maximum resident set size (KB) = 1457740 + 0: The total amount of wall time = 283.919660 + 0: The maximum resident set size (KB) = 1457776 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2452253/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250829/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 990.855056 - 0: The maximum resident set size (KB) = 1433088 + 0: The total amount of wall time = 985.020250 + 0: The maximum resident set size (KB) = 1430608 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2452253/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250829/dcp_dcp Checking test dcp results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -135,7 +135,7 @@ Checking test dcp results .... Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK -Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK @@ -160,14 +160,14 @@ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP...... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 252.537582 - 0: The maximum resident set size (KB) = 1437288 + 0: The total amount of wall time = 250.531642 + 0: The maximum resident set size (KB) = 1436920 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2452253/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250829/mpi_mpi Checking test mpi results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -181,7 +181,7 @@ Checking test mpi results .... Comparing GFSPRS.GrbF00 .....USING CMP......OK Comparing GFSPRS.GrbF21 .....USING CMP......OK Comparing GFSPRS.GrbF24 .....USING CMP......OK -Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK @@ -214,20 +214,20 @@ Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 247.420758 - 0: The maximum resident set size (KB) = 1441056 + 0: The total amount of wall time = 252.707984 + 0: The maximum resident set size (KB) = 1432848 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2452253/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250829/rst_rst Checking test rst results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK Comparing sfcf024.nc .....USING NCCMP......OK Comparing atmf000.nc .....USING NCCMP......OK -Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK Comparing atmf024.nc .....USING NCCMP......OK Comparing GFSFLX.GrbF00 .....USING CMP......OK Comparing GFSFLX.GrbF21 .....USING CMP......OK @@ -268,13 +268,14 @@ Comparing atmf021.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 250.200015 - 0: The maximum resident set size (KB) = 1436400 + 0: The total amount of wall time = 248.087269 + 0: The maximum resident set size (KB) = 1448732 Test rst PASS + baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2452253/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250829/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf000.nc .........OK @@ -317,19 +318,19 @@ Moving baseline std_base files .... Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK -Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 254.595064 - 0: The maximum resident set size (KB) = 1435424 + 0: The total amount of wall time = 252.342367 + 0: The maximum resident set size (KB) = 1436924 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2452253/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250829/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -363,7 +364,7 @@ Checking test thr results .... Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK -Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK @@ -376,11 +377,11 @@ Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 248.069137 - 0: The maximum resident set size (KB) = 1411584 + 0: The total amount of wall time = 252.893297 + 0: The maximum resident set size (KB) = 1440100 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jun 14 14:45:43 UTC 2024 -Elapsed time: 01h:07m:23s. Have a nice day! +Sun Jun 23 21:58:39 UTC 2024 +Elapsed time: 01h:05m:51s. 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 aef8864e99..77b8c62f25 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Fri Jun 14 20:35:52 UTC 2024 +Tue Jun 25 13:58:12 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311238/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1960064/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -44,7 +44,7 @@ Moving baseline dbg_base files .... Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK -Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK @@ -66,14 +66,14 @@ Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1405.180294 - 0: The maximum resident set size (KB) = 1542308 + 0: The total amount of wall time = 1377.718835 + 0: The maximum resident set size (KB) = 1521812 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311238/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1960064/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -90,7 +90,7 @@ Checking test rst results .... Comparing sfcf024.tile1.nc .....USING NCCMP......OK Comparing sfcf024.tile2.nc .....USING NCCMP......OK Comparing sfcf024.tile3.nc .....USING NCCMP......OK -Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK Comparing sfcf024.tile5.nc .....USING NCCMP......OK Comparing sfcf024.tile6.nc .....USING NCCMP......OK Comparing atmf024.tile1.nc .....USING NCCMP......OK @@ -135,14 +135,14 @@ Comparing sfcf024.tile4.nc .....USING NCCMP......OK 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 = 436.275245 -0: The maximum resident set size (KB) = 1538012 + 0: The total amount of wall time = 679.251652 + 0: The maximum resident set size (KB) = 1474520 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311238/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1960064/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -182,7 +182,7 @@ Moving baseline std_base files .... Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK -Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK @@ -205,11 +205,11 @@ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 438.277374 - 0: The maximum resident set size (KB) = 1537680 + 0: The total amount of wall time = 526.655552 + 0: The maximum resident set size (KB) = 1520272 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jun 14 21:48:17 UTC 2024 -Elapsed time: 01h:12m:25s. Have a nice day! +Tue Jun 25 15:05:15 UTC 2024 +Elapsed time: 01h:07m:05s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index c0fd75c457..a4793559fe 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Jun 14 16:16:30 UTC 2024 +Mon Jun 24 14:34:56 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3354158/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2622326/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 = 1298.515455 - 0: The maximum resident set size (KB) = 765400 + 0: The total amount of wall time = 1322.701251 + 0: The maximum resident set size (KB) = 775988 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3354158/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2622326/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -33,18 +33,18 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2249.213145 - 0: The maximum resident set size (KB) = 709152 + 0: The total amount of wall time = 2174.813453 + 0: The maximum resident set size (KB) = 711188 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3354158/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2622326/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK -Moving dynf006.nc .........OK + Moving dynf006.nc .........OK Moving phyf000.nc .........OK Moving phyf006.nc .........OK Moving PRSLEV.GrbF00 .........OK @@ -52,14 +52,14 @@ Moving dynf006.nc .........OK Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2183.140915 - 0: The maximum resident set size (KB) = 719576 + 0: The total amount of wall time = 2247.219721 + 0: The maximum resident set size (KB) = 745224 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3354158/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2622326/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 = 2191.377959 - 0: The maximum resident set size (KB) = 730668 + 0: The total amount of wall time = 2249.680093 + 0: The maximum resident set size (KB) = 713548 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jun 14 18:57:19 UTC 2024 -Elapsed time: 02h:40m:50s. Have a nice day! +Mon Jun 24 17:10:12 UTC 2024 +Elapsed time: 02h:35m:16s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 4a67c33a7f..a99329a32a 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,22 +1,22 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -cfa2f75f86e39595b43e01c4b9e6f5d4b94c2527 +63b2c97ab37b3fc31677e2899885a18e74d3b165 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - d406c7e205bd62913eea0bc87bed1aeb63eb2f83 CICE-interface/CICE (CICE6.0.0-449-gd406c7e) + 9733e45c9219eba27a7632ddc0de5b338cca6b5d CICE-interface/CICE (remotes/origin/feature/endofrun_restart) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 07c26d1efae47445e4c36ff98942494788e7dc49 FV3 (heads/develop) - ab195d5026ca4c221b6cbb3888c8ae92d711f89a FV3/atmos_cubed_sphere (201912_public_release-397-gab195d5) + 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) + a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (remotes/origin/feature/grid_corner_jc_fix) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -36,343 +36,272 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240614 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_201515 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_225297 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [29:42, 10:42] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:45, 01:56](3174 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [34:48, 15:54] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [04:39, 03:27](1882 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [43:18, 02:24](1910 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [43:18, 03:18](1035 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [04:40, 02:21](1860 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [34:50, 15:55] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [04:38, 00:31](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [23:37, 04:17] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [15:51, 02:49](1915 MB) - -PASS -- COMPILE 's2swa_intel' [29:45, 10:41] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:42, 01:37](3206 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:42, 01:32](3205 MB) -PASS -- TEST 'cpld_restart_p8_intel' [56:53, 01:37](3134 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:42, 01:51](3223 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [00:38, 02:02](3154 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:42, 01:14](3433 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:42, 01:57](3194 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:43, 02:01](3148 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:42, 02:11](3205 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:42, 01:20](3183 MB) - -PASS -- COMPILE 's2sw_intel' [28:44, 10:20] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:43, 01:00](1896 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:43, 02:23](1968 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [29:45, 10:28] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:42, 01:29](1954 MB) - -PASS -- COMPILE 's2s_intel' [29:45, 10:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:41, 00:58](2927 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [09:41, 01:45](2928 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:01, 01:01](2329 MB) - -PASS -- COMPILE 's2swa_faster_intel' [36:52, 17:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [02:35, 02:19](3201 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [34:50, 16:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [04:38, 01:47](1903 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:47, 01:13](1068 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:45, 01:48](1871 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 03:57] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [11:34, 00:52](1918 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 10:03] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [01:10, 00:18](634 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [01:10, 00:30](1528 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [01:10, 00:55](1544 MB) -PASS -- TEST 'control_latlon_intel' [01:10, 00:49](1541 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:10, 01:13](1533 MB) -PASS -- TEST 'control_c48_intel' [01:09, 00:42](1613 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [01:09, 01:34](735 MB) -PASS -- TEST 'control_c192_intel' [01:10, 01:14](1653 MB) -PASS -- TEST 'control_c384_intel' [01:14, 02:03](1960 MB) -PASS -- TEST 'control_c384gdas_intel' [01:14, 02:52](1152 MB) -PASS -- TEST 'control_stochy_intel' [00:59, 00:29](591 MB) -PASS -- TEST 'control_stochy_restart_intel' [54:25, 00:21](397 MB) -PASS -- TEST 'control_lndp_intel' [00:38, 01:05](590 MB) -PASS -- TEST 'control_iovr4_intel' [00:22, 01:05](588 MB) -PASS -- TEST 'control_iovr5_intel' [57:34, 00:49](585 MB) -PASS -- TEST 'control_p8_intel' [57:31, 02:41](1838 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [56:35, 02:37](1837 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [55:56, 01:57](1838 MB) -PASS -- TEST 'control_restart_p8_intel' [41:02, 01:48](980 MB) -PASS -- TEST 'control_noqr_p8_intel' [54:22, 01:42](1821 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [40:41, 01:45](985 MB) -PASS -- TEST 'control_decomp_p8_intel' [54:21, 01:37](1820 MB) -PASS -- TEST 'control_2threads_p8_intel' [53:21, 01:55](1923 MB) -PASS -- TEST 'control_p8_lndp_intel' [52:33, 01:16](1830 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [52:19, 02:44](1890 MB) -PASS -- TEST 'control_p8_mynn_intel' [51:19, 02:22](1840 MB) -PASS -- TEST 'merra2_thompson_intel' [51:05, 02:57](1832 MB) -PASS -- TEST 'regional_control_intel' [48:26, 01:07](876 MB) -PASS -- TEST 'regional_restart_intel' [38:33, 00:12](873 MB) -PASS -- TEST 'regional_decomp_intel' [47:50, 00:17](884 MB) -PASS -- TEST 'regional_2threads_intel' [47:47, 01:07](967 MB) -PASS -- TEST 'regional_noquilt_intel' [46:25, 01:09](1198 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [45:53, 00:17](878 MB) -PASS -- TEST 'regional_wofs_intel' [45:49, 00:53](1604 MB) - -PASS -- COMPILE 'ifi_intel' [09:22, 08:12] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [01:20, 00:25](885 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [01:20, 00:11](871 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [01:21, 00:45](966 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:21] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [45:27, 01:55](974 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [44:49, 00:36](1150 MB) -PASS -- TEST 'rap_decomp_intel' [43:49, 01:29](975 MB) -PASS -- TEST 'rap_2threads_intel' [43:35, 02:19](1059 MB) -PASS -- TEST 'rap_restart_intel' [33:11, 02:20](846 MB) -PASS -- TEST 'rap_sfcdiff_intel' [41:24, 02:57](972 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [41:06, 02:12](972 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [30:46, 02:21](844 MB) -PASS -- TEST 'hrrr_control_intel' [41:03, 03:26](965 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [40:55, 02:42](965 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [40:46, 02:32](1042 MB) -PASS -- TEST 'hrrr_control_restart_intel' [32:20, 00:51](797 MB) -PASS -- TEST 'rrfs_v1beta_intel' [40:40, 02:38](965 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [39:28, 01:20](1935 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [39:02, 01:19](1922 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:38] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [38:31, 00:32](934 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 08:38] ( 1 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_intel' [, ]( MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:31, 15:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [37:59, 01:49](1827 MB) -PASS -- TEST 'regional_control_faster_intel' [37:56, 00:14](872 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:28, 05:14] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [37:48, 01:04](1562 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [37:33, 01:27](1566 MB) -PASS -- TEST 'control_stochy_debug_intel' [36:06, 00:32](766 MB) -PASS -- TEST 'control_lndp_debug_intel' [35:17, 01:02](769 MB) -PASS -- TEST 'control_csawmg_debug_intel' [35:17, 00:27](1077 MB) -PASS -- TEST 'control_ras_debug_intel' [33:11, 01:15](780 MB) -PASS -- TEST 'control_diag_debug_intel' [33:11, 00:54](1621 MB) -PASS -- TEST 'control_debug_p8_intel' [32:54, 00:29](1858 MB) -PASS -- TEST 'regional_debug_intel' [32:53, 00:16](926 MB) -PASS -- TEST 'rap_control_debug_intel' [32:20, 00:35](1153 MB) -PASS -- TEST 'hrrr_control_debug_intel' [30:51, 01:07](1148 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [30:46, 01:03](1150 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [30:35, 00:27](1150 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [30:33, 00:22](1151 MB) -PASS -- TEST 'rap_diag_debug_intel' [30:29, 01:04](1232 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [29:57, 01:06](1150 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [29:47, 01:08](1154 MB) -PASS -- TEST 'rap_lndp_debug_intel' [29:32, 00:15](1152 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [29:16, 00:26](1151 MB) -PASS -- TEST 'rap_noah_debug_intel' [28:48, 00:46](1144 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [28:45, 00:41](1148 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [28:42, 00:39](1145 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [28:23, 00:50](1145 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [28:15, 00:36](1152 MB) -PASS -- TEST 'rap_flake_debug_intel' [28:01, 00:36](1153 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:23, 02:34](1152 MB) - -PASS -- COMPILE 'wam_debug_intel' [15:30, 03:22] ( 840 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:36, 08:34] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [25:49, 01:23](1018 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [25:47, 02:39](852 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:18, 03:37](849 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:14, 02:26](913 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [24:03, 02:38](904 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [24:02, 03:05](848 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:23, 02:19](749 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [16:46, 00:26](731 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:38, 12:14] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [23:01, 00:37](1063 MB) -PASS -- TEST 'conus13km_2threads_intel' [17:48, 00:56](1045 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [17:47, 00:47](946 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [50:05, 08:41] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:15, 01:31](875 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [46:00, 03:29] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:09, 01:11](1025 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:09, 01:17](1024 MB) -PASS -- TEST 'conus13km_debug_intel' [15:09, 01:03](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:09, 00:23](797 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:10, 00:36](1098 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:09, 00:22](1192 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [25:39, 03:22] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [49:36, 01:03](1045 MB) - -PASS -- COMPILE 'hafsw_intel' [51:08, 09:56] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:13, 01:38](672 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:13, 01:15](1024 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:11, 01:46](719 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [09:11, 01:21](758 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:12, 01:44](771 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:11, 01:16](446 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:12, 01:57](468 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:12, 01:54](341 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:15, 02:33](403 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:11, 01:39](478 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:11, 00:58](478 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:13, 01:35](537 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:12, 00:26](369 MB) -PASS -- TEST 'gnv1_nested_intel' [09:10, 03:49](1678 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [43:58, 03:41] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:26, 00:46](580 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [51:10, 17:03] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [00:00, 01:43](583 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [58:55, 00:52](755 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [40:57, 09:52] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:16, 01:30](755 MB) - -PASS -- COMPILE 'hafs_all_intel' [39:57, 09:10] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:10, 01:30](722 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:10, 02:08](704 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [09:08, 00:12](897 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [35:50, 08:45] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:10, 00:53](768 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [58:40, 01:09](743 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:10, 00:19](647 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:10, 00:24](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:10, 00:14](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:55, 00:43](753 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:37, 01:02](757 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [58:44, 01:05](652 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [57:46, 00:52](652 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [57:40, 00:53](631 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [56:37, 00:11](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [55:35, 00:47](2028 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [54:26, 00:42](2025 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [39:56, 09:00] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [53:09, 00:19](768 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [08:21, 00:53] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [52:21, 00:50](273 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [52:14, 00:51](411 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [25:16, 00:20](411 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [33:48, 09:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [41:21, 01:29](1889 MB) - -PASS -- COMPILE 'atml_intel' [31:46, 09:57] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:29, 02:13](1862 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [39:29, 01:57](1858 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [19:47, 00:25](1006 MB) - -PASS -- COMPILE 'atml_debug_intel' [24:38, 04:06] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [44:33, 02:11](1887 MB) - -PASS -- COMPILE 'atmw_intel' [29:44, 08:56] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [35:19, 01:51](1864 MB) - -PASS -- COMPILE 'atmaero_intel' [32:47, 08:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [34:49, 01:36](3094 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [33:51, 01:59](2978 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [33:50, 01:40](2989 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [30:45, 03:30] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [33:23, 01:30](4501 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:54] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [55:05, 02:35](3169 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 16:07] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [50:00, 03:23](1880 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:42, 03:04](1901 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [27:24, 03:05](1039 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [50:01, 02:40](1853 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 15:43] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [50:00, 01:27](1874 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:52] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [01:13, 02:59](1910 MB) + +PASS -- COMPILE 's2swa_intel' [11:24, 11:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [55:05, 01:30](3197 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [55:05, 02:19](3193 MB) +PASS -- TEST 'cpld_restart_p8_intel' [46:02, 01:54](3128 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [55:05, 01:32](3216 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [46:02, 01:45](3147 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [55:05, 01:48](3429 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [55:05, 01:47](3190 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [55:06, 02:12](3140 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [55:05, 01:42](3196 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [55:05, 01:56](3177 MB) + +PASS -- COMPILE 's2sw_intel' [11:26, 10:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [55:03, 01:15](1892 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [55:03, 02:09](1960 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:25, 10:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:04, 02:14](1953 MB) + +PASS -- COMPILE 's2s_intel' [10:24, 09:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [56:04, 01:35](2924 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [56:04, 01:24](2927 MB) +PASS -- TEST 'cpld_restart_c48_intel' [51:36, 00:32](2325 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:32, 17:42] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [47:57, 01:34](3196 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 15:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [49:59, 01:49](1891 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:12, 01:48](1071 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:07, 01:25](1864 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:29] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [55:54, 01:03](1913 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:26, 11:22] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [42:00, 00:31](630 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [42:00, 00:54](1533 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [41:17, 00:55](1530 MB) +PASS -- TEST 'control_latlon_intel' [40:48, 00:19](1536 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [39:18, 00:50](1531 MB) +PASS -- TEST 'control_c48_intel' [38:44, 01:02](1611 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [38:11, 01:07](733 MB) +PASS -- TEST 'control_c192_intel' [37:58, 01:03](1649 MB) +PASS -- TEST 'control_c384_intel' [33:57, 02:17](1959 MB) +PASS -- TEST 'control_c384gdas_intel' [33:53, 03:08](1150 MB) +PASS -- TEST 'control_stochy_intel' [31:49, 00:34](587 MB) +PASS -- TEST 'control_stochy_restart_intel' [27:18, 00:32](388 MB) +PASS -- TEST 'control_lndp_intel' [31:44, 00:31](585 MB) +PASS -- TEST 'control_iovr4_intel' [31:44, 00:51](582 MB) +PASS -- TEST 'control_iovr5_intel' [31:44, 00:51](583 MB) +PASS -- TEST 'control_p8_intel' [31:41, 02:45](1829 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [30:43, 02:24](1828 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [29:59, 02:01](1832 MB) +PASS -- TEST 'control_restart_p8_intel' [23:19, 02:28](976 MB) +PASS -- TEST 'control_noqr_p8_intel' [29:49, 01:25](1822 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [22:08, 01:01](981 MB) +PASS -- TEST 'control_decomp_p8_intel' [29:36, 01:30](1825 MB) +PASS -- TEST 'control_2threads_p8_intel' [29:36, 01:47](1918 MB) +PASS -- TEST 'control_p8_lndp_intel' [29:20, 00:48](1831 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [29:15, 02:29](1891 MB) +PASS -- TEST 'control_p8_mynn_intel' [28:39, 02:27](1840 MB) +PASS -- TEST 'merra2_thompson_intel' [28:39, 02:49](1830 MB) +PASS -- TEST 'regional_control_intel' [28:29, 01:05](874 MB) +PASS -- TEST 'regional_restart_intel' [18:32, 00:21](873 MB) +PASS -- TEST 'regional_decomp_intel' [27:13, 00:15](874 MB) +PASS -- TEST 'regional_2threads_intel' [26:52, 00:31](956 MB) +PASS -- TEST 'regional_noquilt_intel' [26:09, 00:39](1201 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [26:09, 00:37](873 MB) +PASS -- TEST 'regional_wofs_intel' [26:08, 00:24](1598 MB) + +PASS -- COMPILE 'ifi_intel' [09:24, 08:33] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [46:39, 00:24](874 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [46:39, 01:08](874 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [46:40, 01:08](967 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 09:30] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [45:30, 02:20](969 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [45:31, 01:05](1146 MB) +PASS -- TEST 'rap_decomp_intel' [45:30, 01:55](972 MB) +PASS -- TEST 'rap_2threads_intel' [45:30, 02:24](1052 MB) +PASS -- TEST 'rap_restart_intel' [24:31, 02:41](839 MB) +PASS -- TEST 'rap_sfcdiff_intel' [45:30, 01:48](969 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [45:30, 02:28](969 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [24:31, 02:25](838 MB) +PASS -- TEST 'hrrr_control_intel' [45:30, 03:18](962 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [45:30, 01:53](963 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [45:31, 02:48](1041 MB) +PASS -- TEST 'hrrr_control_restart_intel' [22:22, 01:16](796 MB) +PASS -- TEST 'rrfs_v1beta_intel' [45:30, 03:16](965 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [45:30, 01:04](1927 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [22:01, 00:51](1919 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:59] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [45:42, 01:07](930 MB) + +PASS -- COMPILE 'wam_intel' [09:22, 08:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [45:42, 00:32](1626 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:30, 16:12] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [21:39, 02:19](1828 MB) +PASS -- TEST 'regional_control_faster_intel' [21:20, 00:11](867 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [36:50, 05:40] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [13:09, 00:42](1561 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [13:09, 00:52](1557 MB) +PASS -- TEST 'control_stochy_debug_intel' [13:09, 01:05](762 MB) +PASS -- TEST 'control_lndp_debug_intel' [13:09, 00:34](764 MB) +PASS -- TEST 'control_csawmg_debug_intel' [13:09, 01:04](1073 MB) +PASS -- TEST 'control_ras_debug_intel' [13:09, 00:56](772 MB) +PASS -- TEST 'control_diag_debug_intel' [13:09, 00:40](1624 MB) +PASS -- TEST 'control_debug_p8_intel' [13:09, 00:30](1857 MB) +PASS -- TEST 'regional_debug_intel' [13:08, 00:36](942 MB) +PASS -- TEST 'rap_control_debug_intel' [13:09, 01:06](1150 MB) +PASS -- TEST 'hrrr_control_debug_intel' [13:09, 01:12](1140 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [13:09, 00:51](1145 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [13:09, 00:58](1145 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:09, 00:25](1147 MB) +PASS -- TEST 'rap_diag_debug_intel' [13:09, 00:47](1228 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:36, 01:03](1146 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:50, 00:26](1148 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:55, 01:10](1150 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:36, 00:18](1147 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:21, 00:58](1142 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 00:55](1146 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:52, 00:32](1143 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:30, 00:45](1138 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [04:08, 00:52](1148 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:00, 01:16](1152 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [03:29, 02:54](1150 MB) + +PASS -- COMPILE 'wam_debug_intel' [34:48, 03:46] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:11, 00:59](1654 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [39:55, 08:55] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:28, 00:45](1013 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [02:13, 02:08](848 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [02:10, 03:50](845 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:01, 02:23](915 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [00:58, 02:20](897 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [00:54, 03:23](845 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [50:42, 01:53](747 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [51:31, 01:15](727 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [41:56, 12:40] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [00:49, 01:05](1055 MB) +PASS -- TEST 'conus13km_2threads_intel' [53:37, 00:36](1040 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [53:36, 00:28](938 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [59:15, 09:01] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:24, 01:31](869 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [55:11, 03:50] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [50:31, 00:51](1023 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [50:31, 01:06](1022 MB) +PASS -- TEST 'conus13km_debug_intel' [50:31, 00:26](1135 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [50:31, 01:15](805 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [50:32, 00:47](1098 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [50:31, 00:24](1193 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [55:11, 03:45] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [50:31, 00:54](1038 MB) + +PASS -- COMPILE 'hafsw_intel' [01:18, 10:29] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [44:00, 01:35](670 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [44:00, 00:50](1025 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:57, 01:42](715 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [43:55, 02:14](751 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [42:45, 02:07](908 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [39:22, 01:40](444 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [38:58, 02:01](463 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [37:00, 02:05](335 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [35:59, 02:22](403 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [35:55, 01:36](475 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [34:10, 01:36](474 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [34:03, 01:26](530 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [33:52, 01:19](367 MB) +PASS -- TEST 'gnv1_nested_intel' [33:49, 03:00](1668 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [53:09, 04:11] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [50:33, 01:26](635 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [03:20, 18:31] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:18, 01:06](580 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [32:52, 01:23](750 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [30:43, 10:05] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [44:30, 01:46](752 MB) + +PASS -- COMPILE 'hafs_all_intel' [28:42, 09:34] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [44:27, 01:50](708 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [44:27, 01:29](696 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [44:25, 01:05](903 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [25:41, 09:23] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [44:22, 01:00](752 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [32:48, 01:03](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [44:22, 00:56](646 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [44:22, 00:39](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [44:22, 00:59](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [44:22, 01:09](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [44:22, 00:12](762 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [44:22, 00:20](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [44:23, 01:17](648 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [44:23, 01:21](631 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [44:22, 00:31](767 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [44:22, 00:33](2021 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [44:22, 00:37](2026 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [21:34, 09:20] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [44:25, 00:51](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:16, 01:06] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [48:16, 00:36](271 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [48:16, 00:21](408 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [45:46, 00:24](408 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:24, 09:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [31:50, 00:54](1886 MB) + +PASS -- COMPILE 'atml_intel' [11:25, 10:39] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [29:07, 02:10](1856 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [26:43, 02:52](1863 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:00, 00:43](1005 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:21, 04:46] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [25:51, 02:02](1894 MB) + +PASS -- COMPILE 'atmw_intel' [12:26, 09:23] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [24:14, 02:30](1859 MB) + +PASS -- COMPILE 'atmaero_intel' [10:23, 09:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [23:54, 02:01](3092 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [23:39, 01:29](2981 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [23:14, 02:15](2985 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [30:44, 03:49] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [13:43, 01:54](4523 MB) SYNOPSIS: -Starting Date/Time: 20240617 21:20:03 -Ending Date/Time: 20240617 23:59:34 -Total Time: 02h:39m:58s +Starting Date/Time: 20240624 17:53:02 +Ending Date/Time: 20240624 20:17:16 +Total Time: 02h:24m:41s Compiles Completed: 38/38 -Tests Completed: 176/178 -Failed Tests: -* TEST control_wam_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/WChen-NOAA/ufs-weather-model/tests/logs/log_acorn/run_control_wam_intel.log -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/WChen-NOAA/ufs-weather-model/tests/logs/log_acorn/run_control_wam_debug_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ACORN REGRESSION TESTING LOG==== -====START OF ACORN REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -cfa2f75f86e39595b43e01c4b9e6f5d4b94c2527 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - d406c7e205bd62913eea0bc87bed1aeb63eb2f83 CICE-interface/CICE (CICE6.0.0-449-gd406c7e) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 07c26d1efae47445e4c36ff98942494788e7dc49 FV3 (heads/develop) - ab195d5026ca4c221b6cbb3888c8ae92d711f89a FV3/atmos_cubed_sphere (201912_public_release-397-gab195d5) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240614 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_209411 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_intel' [09:22, 08:35] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [18:56, 01:01](1630 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:16, 03:26] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [24:01, 00:41](1657 MB) - -SYNOPSIS: -Starting Date/Time: 20240618 12:31:33 -Ending Date/Time: 20240618 12:55:20 -Total Time: 00h:24m:02s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Tests Completed: 178/178 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index ced72f1247..706525fd1d 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,22 +1,22 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -0e00545f1ffdc0307d318d2e4f41cc243b2432de +ed92cb38e23dbdf4bd669e5004940b44f5fa6d46 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - d406c7e205bd62913eea0bc87bed1aeb63eb2f83 CICE-interface/CICE (CICE6.0.0-449-gd406c7e) + 29b4763fa0fcaec7c2dc7451d22aeb639abf5141 CICE-interface/CICE (heads/emc/develop-7-g29b4763) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 07c26d1efae47445e4c36ff98942494788e7dc49 FV3 (heads/develop) - ab195d5026ca4c221b6cbb3888c8ae92d711f89a FV3/atmos_cubed_sphere (201912_public_release-397-gab195d5) + 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) + a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (remotes/origin/feature/grid_corner_jc_fix) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -36,288 +36,288 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240614 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_25733 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_123133 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:35, 22:58] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:43, 06:26](3195 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:36, 24:59] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:15, 14:46](1918 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:46, 16:10](1949 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [18:12, 08:28](1080 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 17:05](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:36, 24:54] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:09, 14:44](1917 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [03:35, 12:54] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:14, 23:03](1933 MB) - -PASS -- COMPILE 's2swa_intel' [20:38, 23:15] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:26, 07:18](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:13, 07:04](3220 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:05, 04:12](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:17, 07:07](3247 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [13:06, 04:36](3181 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:51, 06:35](3718 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:46, 06:55](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:47, 06:14](3534 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:09, 07:00](3232 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [47:23, 11:03](3812 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:12, 07:26](3617 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [41:01, 12:12](4492 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [34:47, 08:39](4654 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:37, 06:39](3203 MB) - -PASS -- COMPILE 's2sw_intel' [14:37, 20:47] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:09, 05:16](1932 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:16, 05:36](1990 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:32, 13:23] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:12, 08:37](3286 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:35, 11:57] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:07, 06:17](1955 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:36, 16:42] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:04, 05:33](1994 MB) - -PASS -- COMPILE 's2s_intel' [10:33, 16:23] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [15:29, 07:27](2928 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [11:26, 02:59](2929 MB) -PASS -- TEST 'cpld_restart_c48_intel' [59:40, 01:55](2331 MB) - -PASS -- COMPILE 's2swa_faster_intel' [28:17, 27:07] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:34, 06:47](3228 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:17, 23:56] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:56, 14:55](1939 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:34, 08:55](1114 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:09, 17:19](1900 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:14, 12:44] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:16, 23:53](1944 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [24:16, 15:55] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [13:44, 03:30](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [12:04, 02:42](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:53, 02:38](1571 MB) -PASS -- TEST 'control_latlon_intel' [10:19, 02:37](1574 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:20, 02:38](1570 MB) -PASS -- TEST 'control_c48_intel' [04:04, 06:12](1613 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [01:52, 05:15](731 MB) -PASS -- TEST 'control_c192_intel' [16:15, 09:06](1694 MB) -PASS -- TEST 'control_c384_intel' [17:29, 09:19](2005 MB) -PASS -- TEST 'control_c384gdas_intel' [26:15, 07:58](1204 MB) -PASS -- TEST 'control_stochy_intel' [02:51, 01:30](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:48, 01:02](441 MB) -PASS -- TEST 'control_lndp_intel' [02:51, 01:28](628 MB) -PASS -- TEST 'control_iovr4_intel' [04:00, 02:10](624 MB) -PASS -- TEST 'control_iovr5_intel' [04:04, 02:13](621 MB) -PASS -- TEST 'control_p8_intel' [06:46, 03:42](1868 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:59, 03:37](1861 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:58, 03:47](1871 MB) -PASS -- TEST 'control_restart_p8_intel' [08:36, 02:25](1007 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:00, 03:38](1866 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:36, 02:25](1021 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:38, 03:29](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:35, 03:29](1957 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:32, 05:32](1867 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:48, 04:22](1918 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:52, 03:42](1872 MB) -PASS -- TEST 'merra2_thompson_intel' [10:57, 03:54](1868 MB) -PASS -- TEST 'regional_control_intel' [19:09, 05:57](882 MB) -PASS -- TEST 'regional_restart_intel' [05:02, 03:35](871 MB) -PASS -- TEST 'regional_decomp_intel' [18:56, 06:21](871 MB) -PASS -- TEST 'regional_noquilt_intel' [22:16, 05:59](1195 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [21:08, 05:57](872 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [20:59, 05:57](881 MB) -PASS -- TEST 'regional_wofs_intel' [21:06, 06:17](1609 MB) - -PASS -- COMPILE 'rrfs_intel' [22:15, 13:50] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [18:45, 06:29](1011 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:23, 04:17](1198 MB) -PASS -- TEST 'rap_decomp_intel' [19:30, 06:41](1006 MB) -PASS -- TEST 'rap_2threads_intel' [17:49, 06:07](1100 MB) -PASS -- TEST 'rap_restart_intel' [09:20, 03:46](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [17:45, 06:52](1004 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [19:38, 06:53](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:39, 04:58](882 MB) -PASS -- TEST 'hrrr_control_intel' [16:27, 03:31](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [16:25, 03:26](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [36:31, 03:11](1088 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:00, 02:13](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [17:47, 06:32](998 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [19:58, 07:42](1963 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:58, 07:26](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [15:22, 11:40] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [16:06, 07:23](964 MB) -PASS -- TEST 'control_ras_intel' [07:49, 03:09](658 MB) - -PASS -- COMPILE 'wam_intel' [13:14, 11:30] ( 5 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_intel' [, ]( MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:42, 17:47] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:54, 03:24](1869 MB) -PASS -- TEST 'regional_control_faster_intel' [14:59, 05:29](871 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [20:21, 12:21] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [17:04, 02:33](1597 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [17:06, 02:30](1599 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:07, 02:52](805 MB) -PASS -- TEST 'control_lndp_debug_intel' [07:07, 02:34](800 MB) -PASS -- TEST 'control_csawmg_debug_intel' [17:52, 04:48](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [06:04, 02:37](810 MB) -PASS -- TEST 'control_diag_debug_intel' [19:14, 02:45](1648 MB) -PASS -- TEST 'control_debug_p8_intel' [17:04, 03:24](1896 MB) -PASS -- TEST 'regional_debug_intel' [19:46, 16:43](916 MB) -PASS -- TEST 'rap_control_debug_intel' [11:24, 04:39](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [17:28, 04:33](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [16:31, 04:40](1179 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [16:33, 04:45](1178 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:14, 04:38](1179 MB) -PASS -- TEST 'rap_diag_debug_intel' [12:49, 04:54](1263 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:31, 04:49](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:22, 04:47](1184 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:22, 04:43](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:30, 04:41](1183 MB) -PASS -- TEST 'rap_noah_debug_intel' [15:29, 04:32](1181 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [11:23, 04:40](1183 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:19, 07:31](1177 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:22, 04:35](1177 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [17:31, 05:26](1181 MB) -PASS -- TEST 'rap_flake_debug_intel' [16:33, 04:40](1178 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:05, 07:57](1184 MB) - -PASS -- COMPILE 'wam_debug_intel' [16:18, 06:29] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:07, 12:29](1688 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [19:34, 10:46] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 03:52](1059 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [21:12, 05:18](884 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [31:19, 02:48](882 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [32:05, 05:00](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [30:10, 02:34](934 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [29:09, 03:04](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:02, 04:06](797 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:40, 01:39](774 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:31, 12:48] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [27:26, 01:58](1084 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:34, 01:04](1082 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:27, 01:12](972 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:24, 10:56] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [27:20, 03:43](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:30, 06:50] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [26:37, 04:33](1057 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:37, 04:24](1058 MB) -PASS -- TEST 'conus13km_debug_intel' [36:11, 13:24](1143 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [35:23, 13:32](833 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:14, 07:52](1142 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [35:17, 13:27](1208 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:30, 06:31] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [24:37, 04:39](1081 MB) - -PASS -- COMPILE 'hafsw_intel' [21:31, 17:44] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:21, 04:40](722 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:48, 05:18](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:47, 06:45](777 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:44, 11:07](795 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:05, 12:20](823 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:13, 05:21](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:34, 06:28](496 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:03, 02:40](394 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:39, 06:44](461 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:02, 03:31](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:14, 03:31](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:21, 03:59](591 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:41, 01:28](433 MB) -PASS -- TEST 'gnv1_nested_intel' [19:27, 04:14](1720 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:31, 07:54] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:19, 12:05](619 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:22, 26:18] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:21, 07:17](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:39, 07:46](689 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [58:27, 18:50] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:47, 05:32](679 MB) - -PASS -- COMPILE 'hafs_all_intel' [51:32, 15:40] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:25, 05:56](751 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:20, 05:58](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:23, 16:14](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [43:25, 08:17] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:41, 02:28](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:34](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:27](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:38, 02:23](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:43, 02:27](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:33, 02:29](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:39, 02:30](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:20](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:15, 05:44](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:51, 05:47](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:28, 02:32](762 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:39, 03:58](2022 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:42, 03:55](1956 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [40:19, 05:54] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:24, 05:12](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [42:19, 08:21] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:21, 02:30](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [34:24, 02:39] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:43, 01:24](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:12](453 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:49](453 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [44:20, 12:42] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:36, 04:07](1923 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [43:19, 11:48] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:34, 04:01](1903 MB) - -PASS -- COMPILE 'atml_intel' [37:24, 14:56] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:39, 08:53](1897 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:42, 08:43](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:53, 03:51](1042 MB) - -PASS -- COMPILE 'atml_debug_intel' [22:15, 09:30] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:40, 06:29](1914 MB) - -PASS -- COMPILE 'atmw_intel' [14:13, 13:37] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:46, 02:16](1888 MB) - -PASS -- COMPILE 'atmaero_intel' [13:18, 12:10] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:54, 04:30](3122 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:54, 04:27](2994 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:12, 04:25](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:12, 07:31] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:33, 21:58](4531 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:21, 21:12] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:34, 05:51](3202 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:23, 23:13] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:42, 14:35](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:55, 15:32](1951 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:54, 07:41](1079 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:45, 16:28](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:21, 23:03] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:03, 14:19](1915 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:21, 11:30] ( 1530 warnings 1948 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_intel' [22:21, 21:00] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:31, 06:39](3220 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:44, 06:32](3220 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:24, 04:14](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:31, 06:34](3249 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:21, 04:10](3184 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:20, 06:21](3727 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:20, 06:19](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:11, 05:27](3534 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:44, 06:31](3231 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:54, 10:24](3805 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:09, 06:58](3624 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:11, 11:11](4494 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:28, 07:38](4650 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:16, 06:21](3211 MB) + +PASS -- COMPILE 's2sw_intel' [20:23, 19:44] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:28, 04:52](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:34, 05:10](1992 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:21, 11:26] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:57, 08:38](3290 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:21, 10:44] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:19, 06:03](1945 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:22, 15:27] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:09, 04:56](1988 MB) + +PASS -- COMPILE 's2s_intel' [16:22, 15:26] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:02, 06:45](2930 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:07, 02:05](2931 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:07, 01:17](2325 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:23, 25:27] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:12, 06:14](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:22, 21:48] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:36, 14:49](1944 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:06, 07:52](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:30, 16:59](1914 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:19, 10:47] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:39, 23:48](1948 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:15, 15:09] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:40, 03:27](673 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:11, 02:29](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:31](1578 MB) +PASS -- TEST 'control_latlon_intel' [04:09, 02:27](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:15, 02:30](1577 MB) +PASS -- TEST 'control_c48_intel' [08:14, 06:14](1618 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:34, 05:13](733 MB) +PASS -- TEST 'control_c192_intel' [10:40, 08:40](1683 MB) +PASS -- TEST 'control_c384_intel' [14:47, 09:00](2005 MB) +PASS -- TEST 'control_c384gdas_intel' [14:39, 07:10](1195 MB) +PASS -- TEST 'control_stochy_intel' [02:30, 01:32](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:33, 00:53](442 MB) +PASS -- TEST 'control_lndp_intel' [03:37, 01:25](624 MB) +PASS -- TEST 'control_iovr4_intel' [03:39, 02:13](620 MB) +PASS -- TEST 'control_iovr5_intel' [03:40, 02:08](625 MB) +PASS -- TEST 'control_p8_intel' [05:17, 03:37](1869 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:16, 03:13](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:58, 03:11](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [04:16, 02:09](1012 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:54, 03:14](1865 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:18, 02:05](1020 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:46, 03:36](1868 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:46, 03:11](1959 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:44, 05:09](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 03:53](1925 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:52, 03:17](1874 MB) +PASS -- TEST 'merra2_thompson_intel' [06:45, 03:39](1866 MB) +PASS -- TEST 'regional_control_intel' [07:08, 05:09](874 MB) +PASS -- TEST 'regional_restart_intel' [04:55, 03:08](873 MB) +PASS -- TEST 'regional_decomp_intel' [07:08, 05:29](874 MB) +PASS -- TEST 'regional_noquilt_intel' [06:52, 05:11](1193 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 05:07](873 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:50, 05:19](881 MB) +PASS -- TEST 'regional_wofs_intel' [07:46, 05:48](1606 MB) + +PASS -- COMPILE 'rrfs_intel' [14:14, 13:05] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:28, 06:18](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:11, 03:48](1199 MB) +PASS -- TEST 'rap_decomp_intel' [08:28, 06:30](1006 MB) +PASS -- TEST 'rap_2threads_intel' [08:28, 05:56](1097 MB) +PASS -- TEST 'rap_restart_intel' [05:17, 03:23](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:46, 06:46](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:32, 06:39](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:03, 05:00](882 MB) +PASS -- TEST 'hrrr_control_intel' [05:10, 03:21](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:10, 03:17](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:10, 03:02](1086 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:49, 01:54](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:29, 06:11](1002 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:58, 07:27](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:08](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [12:20, 11:06] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:49, 06:38](968 MB) +PASS -- TEST 'control_ras_intel' [04:24, 02:54](658 MB) + +PASS -- COMPILE 'wam_intel' [11:21, 10:39] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:39, 10:18](1663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:23, 16:53] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:25, 03:02](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [05:58, 04:39](869 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:14, 12:23] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:02, 02:32](1599 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:02, 02:30](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:30, 02:50](801 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:28, 02:35](797 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:48, 04:27](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [03:27, 02:35](803 MB) +PASS -- TEST 'control_diag_debug_intel' [04:41, 02:37](1650 MB) +PASS -- TEST 'control_debug_p8_intel' [04:52, 03:25](1896 MB) +PASS -- TEST 'regional_debug_intel' [18:00, 16:16](917 MB) +PASS -- TEST 'rap_control_debug_intel' [05:31, 04:37](1183 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:39, 04:38](1177 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:38, 04:36](1179 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:29, 04:41](1181 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 04:44](1185 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:43, 04:52](1265 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 04:50](1179 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:27, 04:59](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:34, 04:40](1181 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:38, 04:40](1180 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:31, 04:31](1180 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:31, 04:40](1182 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:27, 07:31](1178 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:35, 04:36](1177 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:33](1188 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:29, 04:40](1177 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:54, 07:57](1181 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:17, 06:34] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:16, 12:13](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:14, 10:50] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 03:32](1057 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 05:18](880 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:05, 02:43](879 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:59, 04:41](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:06, 02:31](934 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:57, 02:54](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:53, 04:11](791 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:35, 01:38](776 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:21, 12:52] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:34, 01:51](1087 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:29, 00:58](1080 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:21, 01:08](971 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:21, 11:03] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:02, 03:39](914 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:19, 06:41] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:33, 04:29](1063 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:30, 04:30](1061 MB) +PASS -- TEST 'conus13km_debug_intel' [15:44, 13:18](1142 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:40, 14:33](826 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:46, 07:45](1138 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 13:17](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:13, 06:46] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:30, 04:38](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [18:16, 17:48] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:33, 04:33](721 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:56, 05:06](1068 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:39, 06:31](778 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:30, 10:56](798 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:11, 12:17](816 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:18, 05:00](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:33, 06:11](496 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:55, 02:37](395 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:09, 06:40](462 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:55, 03:28](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:06, 03:18](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 04:02](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:28](431 MB) +PASS -- TEST 'gnv1_nested_intel' [07:11, 04:11](1709 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:13, 07:50] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:08, 12:26](618 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [27:16, 26:16] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:21, 07:09](628 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:21, 07:25](687 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:14, 18:36] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:22, 05:26](678 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:14, 15:39] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:15, 05:46](758 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:30, 05:48](742 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:18, 16:10](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:13, 08:12] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:37, 02:28](762 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:34, 01:31](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:38, 02:19](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:35, 02:22](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:26, 02:22](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:33, 02:27](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:28, 02:30](751 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:19](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:55, 05:38](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:59, 05:38](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:28](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:45, 03:50](2019 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:39, 03:50](2018 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:12, 05:48] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:38, 05:08](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:18, 08:15] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:30, 02:26](752 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:35] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:38, 01:06](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:02](449 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:47](453 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:19, 12:53] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:55, 04:03](1926 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:18, 11:34] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:41, 03:47](1899 MB) + +PASS -- COMPILE 'atml_intel' [15:19, 14:43] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:33, 06:56](1895 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:34, 06:34](1884 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:56, 03:48](1039 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:12, 09:34] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:28, 06:07](1920 MB) + +PASS -- COMPILE 'atmw_intel' [15:20, 13:59] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:22, 02:25](1892 MB) + +PASS -- COMPILE 'atmaero_intel' [13:20, 11:55] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:32, 04:32](3123 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:41, 04:21](2993 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:11, 04:24](3008 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:19, 07:33] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:49, 21:40](4531 MB) SYNOPSIS: -Starting Date/Time: 20240614 08:18:23 -Ending Date/Time: 20240614 15:20:03 -Total Time: 07h:03m:08s +Starting Date/Time: 20240623 14:48:16 +Ending Date/Time: 20240623 16:24:20 +Total Time: 01h:36m:52s Compiles Completed: 41/41 Tests Completed: 183/184 Failed Tests: -* TEST control_wam_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/work/zshrader/rt-2283/tests/logs/log_derecho/run_control_wam_intel.log +* TEST cpld_debug_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2324/tests/logs/log_derecho/run_cpld_debug_gfsv17_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -327,64 +327,3 @@ If you are using this log as a pull request verification, please commit 'test_ch Result: FAILURE ====END OF DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -0e00545f1ffdc0307d318d2e4f41cc243b2432de - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - d406c7e205bd62913eea0bc87bed1aeb63eb2f83 CICE-interface/CICE (CICE6.0.0-449-gd406c7e) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 07c26d1efae47445e4c36ff98942494788e7dc49 FV3 (heads/develop) - ab195d5026ca4c221b6cbb3888c8ae92d711f89a FV3/atmos_cubed_sphere (201912_public_release-397-gab195d5) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240614 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_92706 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 'wam_intel' [57:17, 10:45] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [29:19, 09:59](1656 MB) - -SYNOPSIS: -Starting Date/Time: 20240616 12:39:08 -Ending Date/Time: 20240616 15:05:46 -Total Time: 02h:26m:48s -Compiles Completed: 1/1 -Tests Completed: 1/1 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: SUCCESS - -====END OF DERECHO REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 125263706f..002f9a8369 100755 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,22 +1,22 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -6c29f3ebd18b4703ac3fcf1a3fda24821da640ef +ed92cb38e23dbdf4bd669e5004940b44f5fa6d46 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - d406c7e205bd62913eea0bc87bed1aeb63eb2f83 CICE-interface/CICE (CICE6.0.0-449-gd406c7e) + 29b4763fa0fcaec7c2dc7451d22aeb639abf5141 CICE-interface/CICE (heads/emc/develop-7-g29b4763) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 07c26d1efae47445e4c36ff98942494788e7dc49 FV3 (heads/develop) - ab195d5026ca4c221b6cbb3888c8ae92d711f89a FV3/atmos_cubed_sphere (201912_public_release-397-gab195d5) + 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) + a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (remotes/origin/feature/grid_corner_jc_fix) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -35,285 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240613 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_171425 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240614 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_25320 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:12, 20:24] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:26, 07:26](3196 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:15, 25:35] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:43, 13:47](1927 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:10, 14:31](1932 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:13, 06:42](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:20, 15:10](1897 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:13, 22:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:52, 13:08](1914 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:16, 15:37] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:06, 24:10](1938 MB) - -PASS -- COMPILE 's2swa_intel' [21:12, 20:35] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:27, 08:10](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:45, 07:57](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:38, 05:38](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:27, 08:16](3243 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:36, 05:45](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:17, 07:02](3456 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:56, 08:19](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:17, 07:09](3167 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:45, 07:57](3224 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:58, 10:24](3437 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:13, 07:48](3606 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:49, 13:06](4192 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:43, 09:14](4344 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:56, 08:09](3206 MB) - -PASS -- COMPILE 's2sw_intel' [19:14, 18:50] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:42, 04:59](1932 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 05:34](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:12, 14:49] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:54, 10:16](3267 MB) - -PASS -- COMPILE 's2sw_debug_intel' [15:12, 14:41] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:48, 06:04](1945 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:12, 17:04] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:50, 05:24](1991 MB) - -PASS -- COMPILE 's2s_intel' [18:12, 17:21] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:23, 07:00](2913 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:21, 02:03](2913 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:51, 01:19](2308 MB) - -PASS -- COMPILE 's2swa_faster_intel' [28:20, 27:38] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:29, 08:26](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:19, 24:16] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:00, 15:00](1929 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:32, 07:51](1085 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:39, 17:47](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:13, 14:20] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:25, 26:52](1940 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:12, 15:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:06, 03:49](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:32, 02:55](1571 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:33, 03:37](1570 MB) -PASS -- TEST 'control_latlon_intel' [04:59, 03:02](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:33, 03:33](1572 MB) -PASS -- TEST 'control_c48_intel' [09:02, 06:38](1599 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:19, 05:44](720 MB) -PASS -- TEST 'control_c192_intel' [12:46, 10:07](1682 MB) -PASS -- TEST 'control_c384_intel' [21:16, 18:27](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [17:56, 14:26](1184 MB) -PASS -- TEST 'control_stochy_intel' [02:47, 01:58](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:58, 01:35](426 MB) -PASS -- TEST 'control_lndp_intel' [04:02, 02:11](623 MB) -PASS -- TEST 'control_iovr4_intel' [04:11, 02:43](619 MB) -PASS -- TEST 'control_iovr5_intel' [04:11, 02:42](620 MB) -PASS -- TEST 'control_p8_intel' [05:42, 03:58](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:54, 03:59](1860 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:41, 03:52](1866 MB) -PASS -- TEST 'control_restart_p8_intel' [04:36, 02:07](1014 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:38, 04:01](1860 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:53, 02:40](1006 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:35, 03:40](1858 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:53, 02:56](1951 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:33, 05:29](1858 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:44, 04:25](1918 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:11, 03:24](1869 MB) -PASS -- TEST 'merra2_thompson_intel' [06:58, 03:45](1866 MB) -PASS -- TEST 'regional_control_intel' [06:07, 05:03](859 MB) -PASS -- TEST 'regional_restart_intel' [03:56, 03:03](862 MB) -PASS -- TEST 'regional_decomp_intel' [07:08, 05:05](860 MB) -PASS -- TEST 'regional_2threads_intel' [04:12, 03:01](999 MB) -PASS -- TEST 'regional_noquilt_intel' [06:23, 04:48](1180 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:16, 04:43](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:15, 05:10](858 MB) -PASS -- TEST 'regional_wofs_intel' [08:09, 06:22](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [14:12, 13:37] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:48, 06:48](1007 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 04:01](1183 MB) -PASS -- TEST 'rap_decomp_intel' [10:09, 07:05](1007 MB) -PASS -- TEST 'rap_2threads_intel' [07:51, 06:03](1095 MB) -PASS -- TEST 'rap_restart_intel' [05:58, 03:32](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:07, 07:11](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:07, 07:37](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:20, 05:18](878 MB) -PASS -- TEST 'hrrr_control_intel' [07:04, 03:53](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:16, 04:31](1003 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:04, 03:08](1085 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:53, 02:02](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:48, 06:48](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:57, 08:13](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:56, 07:49](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [13:16, 13:04] -PASS -- TEST 'control_csawmg_intel' [08:11, 06:47](964 MB) -PASS -- TEST 'control_ras_intel' [05:45, 03:25](656 MB) - -PASS -- COMPILE 'wam_intel' [13:14, 12:34] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:27, 12:14](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [22:19, 21:45] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:39, 03:43](1859 MB) -PASS -- TEST 'regional_control_faster_intel' [05:58, 05:02](857 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:15, 13:35] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:13, 03:16](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:08, 03:01](1579 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:45, 03:11](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:36, 02:58](783 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:00, 04:30](1094 MB) -PASS -- TEST 'control_ras_debug_intel' [03:37, 02:51](792 MB) -PASS -- TEST 'control_diag_debug_intel' [05:07, 03:08](1642 MB) -PASS -- TEST 'control_debug_p8_intel' [04:59, 03:29](1878 MB) -PASS -- TEST 'regional_debug_intel' [18:25, 16:43](888 MB) -PASS -- TEST 'rap_control_debug_intel' [06:40, 05:32](1168 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:34, 04:54](1162 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:18, 05:19](1165 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:46, 05:03](1166 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:52, 05:18](1168 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:51, 05:20](1250 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:38, 05:15](1169 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:36, 05:20](1170 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:44, 05:13](1170 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:35, 05:13](1168 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:37, 05:01](1165 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:32, 05:03](1166 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:39, 08:04](1165 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:42, 04:58](1160 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:41, 06:15](1173 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:38, 05:20](1168 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:34, 08:25](1172 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:15, 10:11] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:18, 13:43](1672 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:13, 16:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:20, 03:56](1048 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:21, 06:11](886 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:53, 03:49](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:27, 05:27](948 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:33, 03:28](941 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:40, 04:13](885 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:10](786 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:02, 01:43](765 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:13, 17:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:02, 02:40](1093 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:14, 01:25](1073 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:04, 01:35](977 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:12, 16:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:38, 04:20](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 11:34] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:45, 05:08](1044 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:38, 05:11](1043 MB) -PASS -- TEST 'conus13km_debug_intel' [15:25, 13:59](1126 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:13, 14:21](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:32, 08:18](1114 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 14:36](1197 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:15, 12:07] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:43, 05:23](1072 MB) - -PASS -- COMPILE 'hafsw_intel' [20:22, 19:20] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:50, 05:26](703 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:53, 04:45](1057 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:40](751 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:37, 11:43](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:14, 12:53](801 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:06, 05:41](482 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:14, 06:59](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:56, 02:55](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:25, 08:12](434 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:22, 03:57](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:43, 03:44](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:38, 04:53](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:54, 01:46](403 MB) -PASS -- TEST 'gnv1_nested_intel' [09:40, 06:20](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [18:20, 17:16] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:30, 12:55](591 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [26:12, 25:24] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:08, 07:43](610 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:41, 07:47](789 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:11, 20:15] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:29, 06:10](785 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:15, 18:34] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:43, 06:12](736 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:49, 06:19](727 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:55, 20:16](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [16:13, 15:27] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:46, 02:52](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:34, 01:35](734 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:35, 02:40](636 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:39, 02:28](639 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:33, 02:42](638 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:33, 02:45](747 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:35](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:30](638 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:45, 06:19](691 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:02, 06:09](672 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:33](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 04:36](2016 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:35, 04:35](2015 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:21, 09:34] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:25](742 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:12, 15:06] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:30, 02:33](761 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 04:18] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:54, 01:53](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:52, 01:33](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:51, 01:08](455 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 16:42] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:31, 04:14](1923 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:13, 16:29] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:19, 04:16](1912 MB) - -PASS -- COMPILE 'atml_intel' [21:16, 20:37] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:40, 07:17](1891 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:40, 07:40](1891 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:54, 03:44](1044 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:14, 13:23] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:52, 06:25](1915 MB) - -PASS -- COMPILE 'atmw_intel' [17:16, 16:40] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:16, 02:50](1900 MB) - -PASS -- COMPILE 'atmaero_intel' [17:12, 16:55] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:32, 06:14](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:32, 06:36](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:16, 07:00](3018 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:15, 12:24] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:39, 18:47](4495 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:16, 19:34] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:57, 07:12](3197 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:19, 23:17] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:32, 13:34](1926 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:17, 14:25](1945 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:19, 06:38](1080 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:21, 14:57](1898 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:16, 25:15] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:45, 13:44](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:14, 13:18] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:21, 24:49](1938 MB) + +PASS -- COMPILE 's2swa_intel' [19:15, 18:56] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:46, 08:00](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:01, 08:19](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:30, 04:55](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:41, 07:50](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:22, 05:19](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:37, 06:33](3452 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:31, 07:44](3220 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:48, 06:53](3167 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:53, 07:52](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:59, 10:46](3434 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:14, 07:18](3601 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:12, 12:51](4189 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:27, 09:04](4343 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:36, 07:36](3205 MB) + +PASS -- COMPILE 's2sw_intel' [19:15, 18:58] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:39, 05:04](1932 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:43, 05:27](1995 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:14, 13:13] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:24, 10:07](3268 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:13, 12:20] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:23, 06:04](1945 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:15, 17:32] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:24, 05:43](1990 MB) + +PASS -- COMPILE 's2s_intel' [16:14, 16:05] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:49, 07:05](2913 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:04, 02:05](2913 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:02, 01:13](2308 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:12, 24:00] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:27, 08:11](3224 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:18, 22:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:29, 14:54](1930 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:24, 07:37](1090 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:19, 18:06](1908 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:13, 11:47] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:19, 26:29](1939 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:12, 14:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:46, 03:50](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:21, 03:29](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:19, 03:43](1570 MB) +PASS -- TEST 'control_latlon_intel' [10:14, 03:12](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:20, 03:16](1572 MB) +PASS -- TEST 'control_c48_intel' [13:39, 06:38](1599 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:28, 05:39](720 MB) +PASS -- TEST 'control_c192_intel' [17:24, 09:56](1681 MB) +PASS -- TEST 'control_c384_intel' [26:37, 18:10](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [24:23, 14:11](1181 MB) +PASS -- TEST 'control_stochy_intel' [03:47, 02:10](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:32, 01:12](426 MB) +PASS -- TEST 'control_lndp_intel' [03:47, 02:35](622 MB) +PASS -- TEST 'control_iovr4_intel' [06:48, 03:18](620 MB) +PASS -- TEST 'control_iovr5_intel' [06:47, 02:53](620 MB) +PASS -- TEST 'control_p8_intel' [09:36, 03:12](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:54, 03:29](1859 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:36, 03:42](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [06:51, 02:13](1013 MB) +PASS -- TEST 'control_noqr_p8_intel' [11:33, 03:37](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:19, 01:42](1017 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:29, 03:31](1861 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:25, 02:48](1954 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:45, 05:33](1858 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:02, 04:31](1919 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:57, 03:27](1868 MB) +PASS -- TEST 'merra2_thompson_intel' [07:55, 03:47](1866 MB) +PASS -- TEST 'regional_control_intel' [06:38, 04:48](859 MB) +PASS -- TEST 'regional_restart_intel' [04:31, 02:35](861 MB) +PASS -- TEST 'regional_decomp_intel' [07:39, 05:04](860 MB) +PASS -- TEST 'regional_2threads_intel' [06:36, 03:07](999 MB) +PASS -- TEST 'regional_noquilt_intel' [07:43, 04:50](1183 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:45, 04:57](858 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 05:00](866 MB) +PASS -- TEST 'regional_wofs_intel' [07:36, 06:00](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [13:12, 12:45] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:53, 06:54](1007 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:02, 04:00](1186 MB) +PASS -- TEST 'rap_decomp_intel' [10:55, 07:19](1007 MB) +PASS -- TEST 'rap_2threads_intel' [09:56, 06:08](1099 MB) +PASS -- TEST 'rap_restart_intel' [04:57, 03:25](876 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:00, 06:55](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:23, 07:10](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 05:22](878 MB) +PASS -- TEST 'hrrr_control_intel' [08:00, 03:47](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:51, 03:59](1003 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:52, 03:09](1083 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:41, 01:59](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:55, 06:53](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 08:10](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 07:59](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 12:00] +PASS -- TEST 'control_csawmg_intel' [09:33, 06:41](965 MB) +PASS -- TEST 'control_ras_intel' [06:26, 03:39](657 MB) + +PASS -- COMPILE 'wam_intel' [13:12, 12:37] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:58, 11:32](1663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:13, 19:37] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:14, 03:06](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [07:37, 04:31](854 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:20, 12:54] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:49, 03:00](1577 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:41, 03:13](1579 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:25, 03:22](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:26, 03:12](783 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:35, 04:51](1095 MB) +PASS -- TEST 'control_ras_debug_intel' [05:31, 03:22](792 MB) +PASS -- TEST 'control_diag_debug_intel' [05:41, 03:44](1642 MB) +PASS -- TEST 'control_debug_p8_intel' [05:38, 03:41](1878 MB) +PASS -- TEST 'regional_debug_intel' [18:40, 17:15](887 MB) +PASS -- TEST 'rap_control_debug_intel' [06:30, 05:33](1168 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:56](1162 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:29, 05:12](1165 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:34, 05:00](1166 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:31, 04:57](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:36, 05:14](1250 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:28, 05:06](1169 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:27, 05:06](1170 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:32, 05:14](1170 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 05:02](1168 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:29, 05:02](1166 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:27, 05:02](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:58](1165 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:28, 04:53](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:28, 05:55](1173 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:30, 05:00](1168 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:01, 08:29](1173 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:16, 07:18] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:07, 13:34](1672 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 12:06] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:47](1051 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:46, 05:55](887 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:59, 03:03](885 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:48, 05:02](953 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:49, 02:42](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:39, 03:35](885 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:50, 04:19](786 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:31, 02:15](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:07, 02:07](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:32, 01:20](1076 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:34, 01:36](977 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 13:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:57, 04:16](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:10, 09:40] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:32, 05:01](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:31, 04:51](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [15:50, 14:32](1126 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 14:04](804 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:39, 08:09](1113 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:38, 14:05](1197 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 09:45] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:12](1072 MB) + +PASS -- COMPILE 'hafsw_intel' [15:18, 15:00] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:13, 05:25](704 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 04:33](1060 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:21, 07:47](754 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:12, 12:45](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:22, 13:25](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:10, 06:24](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:32](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:07, 03:36](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:13, 07:59](436 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:51, 03:50](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:00, 03:37](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:57, 04:46](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:37, 01:42](403 MB) +PASS -- TEST 'gnv1_nested_intel' [07:46, 04:59](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:12, 09:51] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:01, 13:18](591 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [25:15, 24:14] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:10, 08:10](611 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:10, 07:54](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:15, 17:06] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:07, 06:29](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:13, 15:33] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:12, 06:17](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:18, 06:34](729 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:14, 20:06](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:13, 14:23] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 02:37](761 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:50](748 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:26, 02:29](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:25, 02:30](639 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:29](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:26, 02:34](758 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:24, 02:35](760 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:28](638 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:56, 06:04](691 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:53, 05:55](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:23, 03:02](761 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:26, 04:49](2014 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:26, 04:37](2014 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 08:43] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:28](744 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:16, 14:24] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:23, 02:54](761 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:13, 03:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:46, 02:28](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:43, 02:15](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:43, 00:57](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 14:08] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:21, 04:44](1923 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:12, 13:09] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:29, 04:34](1912 MB) + +PASS -- COMPILE 'atml_intel' [17:14, 16:25] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:27, 07:15](1891 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:57, 06:35](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:54, 05:37](1043 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:13, 09:49] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:19, 06:06](1916 MB) + +PASS -- COMPILE 'atmw_intel' [15:14, 14:54] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:00, 02:15](1899 MB) + +PASS -- COMPILE 'atmaero_intel' [13:12, 13:07] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:07, 05:36](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:16, 06:25](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:56, 06:18](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:12, 09:46] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:29, 18:12](4487 MB) SYNOPSIS: -Starting Date/Time: 20240614 01:52:33 -Ending Date/Time: 20240614 03:31:38 -Total Time: 01h:40m:20s +Starting Date/Time: 20240624 00:16:24 +Ending Date/Time: 20240624 01:55:23 +Total Time: 01h:43m:39s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 6115bda82b..ef5c788760 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,15 +1,15 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -6c29f3ebd18b4703ac3fcf1a3fda24821da640ef +ed92cb38e23dbdf4bd669e5004940b44f5fa6d46 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - d406c7e205bd62913eea0bc87bed1aeb63eb2f83 CICE-interface/CICE (CICE6.0.0-449-gd406c7e) + 29b4763fa0fcaec7c2dc7451d22aeb639abf5141 CICE-interface/CICE (heads/emc/develop-7-g29b4763) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 07c26d1efae47445e4c36ff98942494788e7dc49 FV3 (heads/develop) + 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -24,377 +24,377 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240613 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2975307 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240614 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3387121 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:12, 13:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:29, 05:56](3304 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:09, 17:20](1996 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:32, 18:00](2153 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:17, 08:09](1257 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:02, 19:25](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:43] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:49, 17:02](1977 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:31] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:02](1917 MB) - -PASS -- COMPILE 's2swa_intel' [16:12, 13:30] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:26, 06:05](3327 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:35, 06:08](3352 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:26, 03:36](3264 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:26, 06:04](3370 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:26, 03:41](3278 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:20, 05:51](3629 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:20, 06:03](3341 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:18, 05:00](3199 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:35, 06:05](3345 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:08, 10:25](3524 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 06:34](3632 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:58, 09:51](4285 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:20, 06:28](4373 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:26, 05:42](3322 MB) - -PASS -- COMPILE 's2sw_intel' [16:12, 12:53] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:12, 05:01](1994 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:18, 04:41](2037 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:33] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:10, 08:39](3355 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 04:58] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:54, 05:58](2020 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:12, 12:08] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:02, 04:34](2056 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:18, 05:44](3314 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:51] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 17:15](1984 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 17:57](2158 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:12, 08:10](1255 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:57, 19:17](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 17:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:42, 17:02](1969 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:22] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:03, 23:02](1919 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 13:33] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:09, 05:59](3347 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:21, 06:01](3319 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:24, 03:46](3262 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:10, 05:58](3364 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:23, 03:59](3241 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:08, 05:44](3609 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:08, 06:00](3344 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:12, 05:04](3206 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:23, 06:00](3337 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:24, 10:28](3519 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:51, 06:29](3625 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:20, 10:13](4283 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:31, 06:15](4377 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:14, 05:47](3325 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 12:45] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:57, 04:55](1991 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:02, 04:38](2014 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:26] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:59, 08:33](3387 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 05:04] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:59, 05:56](2006 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 12:02] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:03, 04:33](2049 MB) PASS -- COMPILE 's2s_intel' [13:12, 12:09] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:48, 09:44](3088 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:44, 02:50](3074 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:40, 01:41](2505 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:14, 21:42] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:16, 06:00](3346 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:14, 16:21] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:01, 17:16](2017 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:21, 08:16](1279 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:08, 19:48](1919 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:02] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:00, 25:26](1954 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:12, 12:01] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:23, 03:27](709 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:41, 02:55](1608 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:48, 03:07](1608 MB) -PASS -- TEST 'control_latlon_intel' [07:40, 03:02](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:57, 03:04](1602 MB) -PASS -- TEST 'control_c48_intel' [09:50, 07:41](1748 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:27, 06:26](872 MB) -PASS -- TEST 'control_c192_intel' [13:58, 10:38](1746 MB) -PASS -- TEST 'control_c384_intel' [12:53, 10:45](2017 MB) -PASS -- TEST 'control_c384gdas_intel' [13:51, 08:08](1396 MB) -PASS -- TEST 'control_stochy_intel' [05:22, 01:47](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:30, 01:00](502 MB) -PASS -- TEST 'control_lndp_intel' [04:21, 01:43](657 MB) -PASS -- TEST 'control_iovr4_intel' [05:25, 02:36](656 MB) -PASS -- TEST 'control_iovr5_intel' [05:22, 02:35](657 MB) -PASS -- TEST 'control_p8_intel' [05:56, 03:13](1902 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:01, 03:13](1904 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 03:05](1898 MB) -PASS -- TEST 'control_restart_p8_intel' [10:48, 01:48](1133 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:52, 03:05](1884 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [15:54, 01:48](1166 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:48, 03:17](1885 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:46, 02:54](1978 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:43, 05:26](1892 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:50, 04:14](1969 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:54, 03:11](1912 MB) -PASS -- TEST 'merra2_thompson_intel' [04:52, 03:28](1915 MB) -PASS -- TEST 'regional_control_intel' [10:40, 05:44](1101 MB) -PASS -- TEST 'regional_restart_intel' [10:36, 02:57](1097 MB) -PASS -- TEST 'regional_decomp_intel' [14:49, 05:45](1094 MB) -PASS -- TEST 'regional_2threads_intel' [11:39, 03:30](1096 MB) -PASS -- TEST 'regional_noquilt_intel' [14:43, 05:30](1402 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [14:48, 05:22](1099 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [14:43, 05:22](1102 MB) -PASS -- TEST 'regional_wofs_intel' [15:41, 06:52](1914 MB) - -PASS -- COMPILE 'rrfs_intel' [13:12, 11:15] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [15:41, 07:49](1108 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:00, 04:24](1300 MB) -PASS -- TEST 'rap_decomp_intel' [16:36, 08:14](1040 MB) -PASS -- TEST 'rap_2threads_intel' [14:48, 07:21](1186 MB) -PASS -- TEST 'rap_restart_intel' [08:48, 04:05](1107 MB) -PASS -- TEST 'rap_sfcdiff_intel' [15:52, 07:55](1104 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:52, 08:16](1048 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:48, 06:03](1132 MB) -PASS -- TEST 'hrrr_control_intel' [12:38, 04:02](1043 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [15:37, 04:09](1035 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [16:37, 03:42](1117 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:29, 02:22](1002 MB) -PASS -- TEST 'rrfs_v1beta_intel' [20:52, 07:37](1100 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [22:33, 09:20](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [21:31, 09:10](2064 MB) - -PASS -- COMPILE 'csawmg_intel' [12:12, 10:46] -PASS -- TEST 'control_csawmg_intel' [17:41, 06:12](1024 MB) -PASS -- TEST 'control_ras_intel' [13:26, 03:19](750 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:12, 04:16] -PASS -- TEST 'control_csawmg_gnu' [09:38, 08:29](761 MB) - -PASS -- COMPILE 'wam_intel' [11:13, 10:38] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [20:51, 10:58](1672 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:14, 18:22] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [12:50, 02:49](1901 MB) -PASS -- TEST 'regional_control_faster_intel' [13:40, 04:55](1092 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:47] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:56, 02:45](1616 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:56, 02:45](1614 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:01](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:29, 02:47](817 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:49, 04:24](1139 MB) -PASS -- TEST 'control_ras_debug_intel' [04:28, 02:49](825 MB) -PASS -- TEST 'control_diag_debug_intel' [07:57, 02:51](1681 MB) -PASS -- TEST 'control_debug_p8_intel' [07:54, 03:01](1907 MB) -PASS -- TEST 'regional_debug_intel' [21:52, 17:18](1097 MB) -PASS -- TEST 'rap_control_debug_intel' [07:31, 05:00](1210 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:33, 04:51](1209 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:33, 04:50](1209 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:33, 04:51](1210 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:33, 04:55](1205 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:40, 05:14](1290 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:30, 05:02](1207 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:27, 05:03](1206 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:27, 04:56](1206 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:24, 04:55](1203 MB) -PASS -- TEST 'rap_noah_debug_intel' [13:27, 04:48](1202 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:25, 04:51](1209 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:24, 08:10](1209 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [12:25, 04:59](1204 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:25, 05:52](1213 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:26, 05:03](1210 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:42, 08:30](1208 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:35] -PASS -- TEST 'control_csawmg_debug_gnu' [03:32, 02:23](723 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:12, 04:03] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:49, 13:34](1681 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 10:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 04:04](1162 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:41, 06:38](1055 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:35, 03:34](984 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:34, 06:19](1107 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:34, 03:11](962 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:31, 03:37](936 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:40, 04:52](1041 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:26, 01:58](926 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 15:07] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [10:53, 02:14](1208 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:51, 00:55](1123 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:49, 01:16](1117 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:13, 10:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:42, 04:11](982 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:32] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:23, 04:49](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:21, 04:52](1092 MB) -PASS -- TEST 'conus13km_debug_intel' [20:46, 14:42](1225 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:44, 14:44](932 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:40, 08:10](1163 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:42, 15:09](1315 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:20] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:22, 04:55](1132 MB) - -PASS -- COMPILE 'hafsw_intel' [15:13, 12:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:14, 05:23](748 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:30](1124 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:17](842 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:27, 13:52](860 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:27, 15:42](886 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:58, 05:56](507 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:26, 07:10](522 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:39, 02:57](379 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:39, 07:43](484 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:46, 04:03](537 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:56, 03:38](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:48, 04:18](593 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:27, 01:23](403 MB) -PASS -- TEST 'gnv1_nested_intel' [07:34, 04:10](1750 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:32] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:56, 13:01](589 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:13, 20:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:05, 08:55](646 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:10, 08:59](722 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:49] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:08, 06:47](700 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:12, 11:44] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:16, 06:33](834 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:16, 06:50](814 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:57, 16:24](1219 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:12, 06:41] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 02:45](1149 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:44](1099 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 02:38](1016 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 02:37](1027 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:20, 02:41](1024 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:45](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:44](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:35](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:19, 06:13](1064 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:15, 06:21](1044 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:41](1148 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:20, 03:58](2450 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:57](2502 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 03:39] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:25](1062 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:13, 06:38] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:45](1156 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:12] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 00:54](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:58](321 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:35](321 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:13, 11:40] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:05, 03:50](1961 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:13, 11:41] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:10, 03:42](1972 MB) - -PASS -- COMPILE 'atml_intel' [20:15, 12:48] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:00, 04:26](1871 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:18, 04:26](1878 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:42, 02:29](1102 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:12, 05:30] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:00, 05:40](1888 MB) - -PASS -- COMPILE 'atmw_intel' [22:14, 11:32] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:54](1935 MB) - -PASS -- COMPILE 'atmaero_intel' [23:16, 11:39] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:57, 04:14](3204 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:52, 04:52](3105 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 04:56](3121 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [16:14, 04:28] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:00, 21:49](4461 MB) - -PASS -- COMPILE 'atm_gnu' [16:14, 04:48] -PASS -- TEST 'control_c48_gnu' [13:41, 11:27](1538 MB) -PASS -- TEST 'control_stochy_gnu' [05:23, 03:25](504 MB) -PASS -- TEST 'control_ras_gnu' [07:22, 04:51](505 MB) -PASS -- TEST 'control_p8_gnu' [07:56, 04:48](1460 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:50, 04:41](1461 MB) -PASS -- TEST 'control_flake_gnu' [12:23, 10:08](547 MB) - -PASS -- COMPILE 'rrfs_gnu' [14:13, 04:21] -PASS -- TEST 'rap_control_gnu' [13:37, 10:54](853 MB) -PASS -- TEST 'rap_decomp_gnu' [13:35, 10:58](855 MB) -PASS -- TEST 'rap_2threads_gnu' [11:42, 09:50](943 MB) -PASS -- TEST 'rap_restart_gnu' [07:44, 05:43](578 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:40, 10:50](812 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:35, 11:05](855 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:41, 07:55](581 MB) -PASS -- TEST 'hrrr_control_gnu' [06:35, 05:35](850 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:36, 05:47](805 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:33, 05:08](922 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:41](850 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:27, 02:56](566 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:28, 02:50](660 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:42, 10:32](814 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [16:14, 07:39] -PASS -- TEST 'control_diag_debug_gnu' [03:44, 01:41](1276 MB) -PASS -- TEST 'regional_debug_gnu' [13:37, 11:59](726 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:21, 02:39](829 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:40](825 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:30, 02:38](830 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:38](825 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:36, 02:51](910 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:22, 04:12](826 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:22, 02:38](825 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:22, 02:38](823 MB) -PASS -- TEST 'control_ras_debug_gnu' [05:27, 01:37](491 MB) -PASS -- TEST 'control_stochy_debug_gnu' [06:22, 01:45](457 MB) -PASS -- TEST 'control_debug_p8_gnu' [05:38, 01:49](1455 MB) -PASS -- TEST 'rap_flake_debug_gnu' [06:25, 02:42](831 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [06:22, 02:54](828 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:37, 04:24](834 MB) - -PASS -- COMPILE 'wam_debug_gnu' [13:12, 02:36] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [15:12, 04:13] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:34, 09:21](710 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:33, 05:02](710 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:40, 08:38](761 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:34, 04:38](748 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:34, 05:07](709 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:47, 07:36](558 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:34, 02:36](542 MB) -PASS -- TEST 'conus13km_control_gnu' [04:52, 03:16](881 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:46, 05:40](883 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:44, 01:48](560 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [20:15, 10:52] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:41, 05:41](727 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:12, 07:38] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:24, 02:35](715 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:20, 02:35](719 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:50, 07:09](896 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:46, 07:08](583 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:46, 07:36](896 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:43, 07:12](962 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:12, 07:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:26, 02:44](747 MB) - -PASS -- COMPILE 's2swa_gnu' [21:13, 16:29] - -PASS -- COMPILE 's2s_gnu' [21:14, 15:52] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [39:19, 07:35](1530 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:20] - -PASS -- COMPILE 's2sw_pdlib_gnu' [19:13, 16:23] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:07, 22:56](1458 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 03:08] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:58, 13:22](1457 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [18:14, 15:25] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:20, 02:55](688 MB) +PASS -- TEST 'cpld_control_c48_intel' [10:47, 09:38](3089 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:42, 02:51](3078 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:40, 01:39](2507 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:12, 21:48] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:14, 05:54](3355 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 16:02] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 17:34](2003 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:13, 08:17](1268 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:09, 19:50](1919 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:33] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:55, 24:59](1913 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:12, 12:58] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:23, 03:27](705 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:42, 02:56](1589 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:48, 03:01](1606 MB) +PASS -- TEST 'control_latlon_intel' [03:34, 02:58](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:48, 02:57](1599 MB) +PASS -- TEST 'control_c48_intel' [08:43, 07:39](1748 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 06:27](873 MB) +PASS -- TEST 'control_c192_intel' [11:58, 10:34](1753 MB) +PASS -- TEST 'control_c384_intel' [13:04, 10:28](2004 MB) +PASS -- TEST 'control_c384gdas_intel' [11:47, 08:06](1400 MB) +PASS -- TEST 'control_stochy_intel' [02:28, 01:38](650 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:27, 01:03](509 MB) +PASS -- TEST 'control_lndp_intel' [02:25, 01:35](659 MB) +PASS -- TEST 'control_iovr4_intel' [03:28, 02:27](658 MB) +PASS -- TEST 'control_iovr5_intel' [03:27, 02:28](655 MB) +PASS -- TEST 'control_p8_intel' [05:02, 03:08](1900 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 03:10](1883 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:50, 03:00](1904 MB) +PASS -- TEST 'control_restart_p8_intel' [02:46, 01:45](1139 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:46, 03:06](1890 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:46](1156 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:48, 03:12](1883 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:52, 02:57](1986 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:44, 05:24](1898 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 04:07](1965 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:57, 03:06](1902 MB) +PASS -- TEST 'merra2_thompson_intel' [04:51, 03:22](1905 MB) +PASS -- TEST 'regional_control_intel' [06:39, 05:21](1097 MB) +PASS -- TEST 'regional_restart_intel' [03:34, 02:56](1091 MB) +PASS -- TEST 'regional_decomp_intel' [06:37, 05:46](1096 MB) +PASS -- TEST 'regional_2threads_intel' [04:36, 03:26](1095 MB) +PASS -- TEST 'regional_noquilt_intel' [06:41, 05:17](1405 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:18](1108 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:22](1102 MB) +PASS -- TEST 'regional_wofs_intel' [07:39, 06:46](1921 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 11:32] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:43, 07:45](1112 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:17, 04:09](1299 MB) +PASS -- TEST 'rap_decomp_intel' [09:41, 08:08](1042 MB) +PASS -- TEST 'rap_2threads_intel' [08:43, 07:17](1186 MB) +PASS -- TEST 'rap_restart_intel' [04:50, 04:02](1113 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:44, 07:45](1095 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:41, 08:13](1040 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:49](1133 MB) +PASS -- TEST 'hrrr_control_intel' [05:43, 04:02](1043 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:43, 04:09](1034 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:45, 03:41](1109 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:37, 02:10](1004 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:50, 07:40](1103 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:33, 09:19](1991 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:09](2061 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 11:08] +PASS -- TEST 'control_csawmg_intel' [08:40, 06:12](1025 MB) +PASS -- TEST 'control_ras_intel' [04:27, 03:18](749 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:14] +PASS -- TEST 'control_csawmg_gnu' [09:34, 08:16](749 MB) + +PASS -- COMPILE 'wam_intel' [11:12, 10:44] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:48, 11:06](1678 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:13, 18:21] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:49, 02:47](1896 MB) +PASS -- TEST 'regional_control_faster_intel' [05:35, 04:50](1096 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:12, 07:24] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:41, 02:39](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:41](1618 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:23, 03:01](824 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:46](822 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:35, 04:14](1137 MB) +PASS -- TEST 'control_ras_debug_intel' [03:22, 02:49](829 MB) +PASS -- TEST 'control_diag_debug_intel' [03:43, 02:45](1678 MB) +PASS -- TEST 'control_debug_p8_intel' [03:42, 03:01](1909 MB) +PASS -- TEST 'regional_debug_intel' [18:38, 17:06](1099 MB) +PASS -- TEST 'rap_control_debug_intel' [05:24, 05:00](1215 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:23, 04:46](1205 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:47](1215 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:50](1212 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:55](1207 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:38, 05:04](1286 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 04:59](1213 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 05:05](1208 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:27, 05:01](1208 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:27, 04:46](1206 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:27, 05:03](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:26, 04:51](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 08:06](1208 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:26, 04:44](1203 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:58](1207 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:24, 05:00](1213 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:26](1210 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:32] +PASS -- TEST 'control_csawmg_debug_gnu' [03:41, 02:23](736 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 04:05] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:50, 13:28](1688 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 10:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:04, 03:57](1163 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:30](1047 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:36, 03:29](987 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:33, 06:11](1101 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:33, 03:13](964 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:30, 03:38](935 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:43, 04:50](1025 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:32, 01:56](926 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:12, 15:01] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:55, 02:10](1204 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:49, 00:54](1129 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:14](1113 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 11:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 04:13](989 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:01] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:48](1093 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:44](1082 MB) +PASS -- TEST 'conus13km_debug_intel' [15:54, 14:29](1237 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:41](933 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:19](1167 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:35](1309 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:00] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:25, 04:56](1138 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 12:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:11](746 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:35, 06:35](1113 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 07:10](830 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:22, 13:41](871 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:32, 15:28](880 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:59, 05:36](504 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:23, 06:49](522 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:44, 02:44](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:11, 07:32](484 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:46, 03:54](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:33](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:57, 04:11](584 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:13](407 MB) +PASS -- TEST 'gnv1_nested_intel' [06:36, 04:03](1742 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:34] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:55, 12:54](589 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:12, 20:34] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:02, 08:52](656 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:06, 08:52](749 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:39] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:02, 06:36](740 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:13, 11:41] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:16, 06:49](833 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:35](810 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:56, 16:03](1212 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:47] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:44](1143 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:43](1114 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:19, 02:42](1021 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:42](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:19, 02:43](1018 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:20, 02:39](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:42](1167 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:34](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:19, 05:59](1055 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:17, 06:14](1047 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:42](1153 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:52](2447 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:57](2500 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:34] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:13](1091 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:33] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1161 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:15] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:55](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:27, 01:00](328 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:35](322 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:41] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:05, 03:46](1975 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:08] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:11, 03:38](1962 MB) + +PASS -- COMPILE 'atml_intel' [13:12, 12:37] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:03, 04:24](1865 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:58, 04:23](1867 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:47, 02:28](1100 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 05:05] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:01, 05:45](1878 MB) + +PASS -- COMPILE 'atmw_intel' [12:12, 11:29] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:58](1921 MB) + +PASS -- COMPILE 'atmaero_intel' [12:12, 11:32] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:00, 04:09](3190 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:57, 04:55](3102 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 05:07](3109 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:18] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:29, 21:25](4450 MB) + +PASS -- COMPILE 'atm_gnu' [05:12, 04:25] +PASS -- TEST 'control_c48_gnu' [12:37, 11:21](1538 MB) +PASS -- TEST 'control_stochy_gnu' [04:23, 03:21](500 MB) +PASS -- TEST 'control_ras_gnu' [05:22, 04:47](510 MB) +PASS -- TEST 'control_p8_gnu' [05:52, 04:49](1456 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:47, 04:52](1463 MB) +PASS -- TEST 'control_flake_gnu' [10:22, 10:05](542 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:23] +PASS -- TEST 'rap_control_gnu' [11:35, 10:48](817 MB) +PASS -- TEST 'rap_decomp_gnu' [11:33, 10:58](854 MB) +PASS -- TEST 'rap_2threads_gnu' [10:38, 09:52](943 MB) +PASS -- TEST 'rap_restart_gnu' [06:43, 05:32](578 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:36, 10:50](816 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:32, 10:54](854 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:50, 08:05](580 MB) +PASS -- TEST 'hrrr_control_gnu' [06:33, 05:32](815 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:33, 05:33](839 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:36, 05:02](933 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:38](849 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 02:51](567 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:29, 02:46](659 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:53, 10:33](810 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:42] +PASS -- TEST 'control_diag_debug_gnu' [02:43, 01:40](1276 MB) +PASS -- TEST 'regional_debug_gnu' [12:36, 11:24](724 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:39](829 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:32](822 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:41](827 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:40](825 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:34, 02:50](907 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:24, 04:07](825 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:42](822 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:21, 02:38](822 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:32](458 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:47](454 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:37, 01:47](1431 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:22, 02:36](826 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:52](832 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:33, 04:25](833 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:12, 02:43] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:14] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:24](706 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:33, 05:00](711 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:35, 08:40](760 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:31, 04:29](747 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 05:02](708 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:41, 07:03](558 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 02:32](540 MB) +PASS -- TEST 'conus13km_control_gnu' [04:51, 03:10](878 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:44, 06:07](884 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:49](554 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:13, 10:59] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:40](731 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:46] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:36](714 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:22, 02:26](715 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:50, 07:08](896 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:43, 07:05](586 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:39, 07:29](891 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:44, 07:07](962 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:40] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:42](734 MB) + +PASS -- COMPILE 's2swa_gnu' [17:13, 16:37] + +PASS -- COMPILE 's2s_gnu' [17:12, 16:11] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:02, 07:33](1533 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:12, 03:19] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:13, 16:18] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:59, 23:23](1445 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 03:06] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [16:54, 14:46](1456 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:17] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 03:01](686 MB) SYNOPSIS: -Starting Date/Time: 20240614 05:44:55 -Ending Date/Time: 20240614 08:29:58 -Total Time: 02h:45m:20s +Starting Date/Time: 20240624 04:15:54 +Ending Date/Time: 20240624 05:52:37 +Total Time: 01h:36m:57s Compiles Completed: 57/57 Tests Completed: 245/245 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index f12a09bcd9..d33100f865 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,22 +1,22 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -0e00545f1ffdc0307d318d2e4f41cc243b2432de +ed92cb38e23dbdf4bd669e5004940b44f5fa6d46 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - d406c7e205bd62913eea0bc87bed1aeb63eb2f83 CICE-interface/CICE (CICE6.0.0-449-gd406c7e) + 29b4763fa0fcaec7c2dc7451d22aeb639abf5141 CICE-interface/CICE (heads/emc/develop-7-g29b4763) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 07c26d1efae47445e4c36ff98942494788e7dc49 FV3 (heads/develop) - ab195d5026ca4c221b6cbb3888c8ae92d711f89a FV3/atmos_cubed_sphere (201912_public_release-397-gab195d5) + 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) + a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (remotes/origin/feature/grid_corner_jc_fix) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -36,444 +36,378 @@ 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-20240614 -COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1600979 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2188681 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:17] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:05, 07:37](2119 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:14] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:58, 13:46](1996 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:25, 14:32](2305 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:10, 06:52](1311 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:55, 15:33](1921 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 17:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:24, 13:07](1994 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 07:19] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:03, 20:18](1966 MB) - -PASS -- COMPILE 's2swa_intel' [12:11, 11:33] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:53, 07:36](2184 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 07:42](2177 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:06, 04:23](1965 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:53, 07:36](2197 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:06, 04:17](1738 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:49, 08:50](2541 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:53, 07:37](2182 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:52, 06:27](2098 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:58, 07:32](2180 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:42, 15:30](2983 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:53, 05:47](2924 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:04, 08:32](3784 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:43, 05:23](3632 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:51, 04:59](2154 MB) - -PASS -- COMPILE 's2sw_intel' [12:11, 11:34] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:44, 07:04](2040 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:50, 04:06](2081 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 07:22] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [08:45, 07:55](2209 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 07:03] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:49, 04:45](2034 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:11, 10:33] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:44, 04:03](2076 MB) - -PASS -- COMPILE 's2s_intel' [11:11, 10:26] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:34, 07:20](3092 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:35, 02:07](3071 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:31, 01:13](2498 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:43] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:56, 07:31](2179 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:16] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:40, 13:56](2044 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:53, 06:52](1385 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:41, 15:28](1965 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:52] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:45, 21:46](2013 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:18, 02:47](708 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:31, 02:24](1609 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:32](1621 MB) -PASS -- TEST 'control_latlon_intel' [03:28, 02:26](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:24](1617 MB) -PASS -- TEST 'control_c48_intel' [07:32, 06:57](1742 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:23, 05:40](857 MB) -PASS -- TEST 'control_c192_intel' [09:49, 08:56](1773 MB) -PASS -- TEST 'control_c384_intel' [11:21, 09:08](2031 MB) -PASS -- TEST 'control_c384gdas_intel' [08:50, 06:50](1535 MB) -PASS -- TEST 'control_stochy_intel' [02:17, 01:25](677 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:50](543 MB) -PASS -- TEST 'control_lndp_intel' [02:18, 01:20](665 MB) -PASS -- TEST 'control_iovr4_intel' [02:19, 02:04](658 MB) -PASS -- TEST 'control_iovr5_intel' [02:19, 02:03](665 MB) -PASS -- TEST 'control_p8_intel' [03:47, 02:38](1906 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:46, 02:39](1909 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:48, 02:34](1901 MB) -PASS -- TEST 'control_restart_p8_intel' [02:36, 01:31](1158 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:38, 02:34](1902 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:42, 01:28](1210 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:34, 02:43](1894 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:34, 02:28](1998 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:32](1912 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:46, 03:31](1986 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:44, 02:37](1919 MB) -PASS -- TEST 'merra2_thompson_intel' [03:56, 02:52](1918 MB) -PASS -- TEST 'regional_control_intel' [05:26, 04:37](1199 MB) -PASS -- TEST 'regional_restart_intel' [03:27, 02:35](1178 MB) -PASS -- TEST 'regional_decomp_intel' [05:23, 04:55](1201 MB) -PASS -- TEST 'regional_2threads_intel' [03:25, 03:00](1164 MB) -PASS -- TEST 'regional_noquilt_intel' [05:25, 04:28](1520 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:28, 04:35](1201 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:36](1206 MB) -PASS -- TEST 'regional_wofs_intel' [06:23, 05:35](2077 MB) - -PASS -- COMPILE 'rrfs_intel' [09:11, 08:12] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:45, 06:29](1191 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:46, 03:26](1408 MB) -PASS -- TEST 'rap_decomp_intel' [07:33, 06:47](1128 MB) -PASS -- TEST 'rap_2threads_intel' [07:33, 06:11](1383 MB) -PASS -- TEST 'rap_restart_intel' [04:52, 03:20](1132 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:37, 06:25](1204 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:37, 06:54](1143 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:54, 04:50](1182 MB) -PASS -- TEST 'hrrr_control_intel' [04:33, 03:20](1072 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:37, 03:23](1050 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:47, 03:02](1126 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:23, 01:50](1037 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:52, 06:18](1186 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:19, 07:39](2015 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 07:26](2178 MB) - -PASS -- COMPILE 'csawmg_intel' [08:11, 07:32] -PASS -- TEST 'control_csawmg_intel' [06:30, 05:25](1043 MB) -PASS -- TEST 'control_ras_intel' [03:16, 02:52](814 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:11, 03:56] -PASS -- TEST 'control_csawmg_gnu' [07:26, 06:35](1072 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 06:57] ( 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_intel' [, ]( MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 12:40] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:51, 02:22](1906 MB) -PASS -- TEST 'regional_control_faster_intel' [05:26, 04:15](1207 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:08] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:29, 02:12](1638 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:30, 02:05](1621 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:25](825 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:13](828 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:27, 03:28](1143 MB) -PASS -- TEST 'control_ras_debug_intel' [03:18, 02:14](835 MB) -PASS -- TEST 'control_diag_debug_intel' [02:28, 02:09](1688 MB) -PASS -- TEST 'control_debug_p8_intel' [03:28, 02:24](1926 MB) -PASS -- TEST 'regional_debug_intel' [15:26, 14:12](1126 MB) -PASS -- TEST 'rap_control_debug_intel' [04:16, 03:57](1215 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:16, 03:49](1209 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:16, 03:54](1220 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:17, 03:56](1212 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:15, 03:54](1217 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:23, 04:05](1313 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:16, 04:00](1212 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:16, 03:58](1218 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:17, 03:54](1223 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:16, 03:52](1227 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:21, 03:52](1212 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:17, 03:59](1217 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 06:24](1214 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:18, 03:52](1217 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 04:48](1228 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:18, 03:58](1211 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:48, 06:44](1230 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 04:06] -PASS -- TEST 'control_csawmg_debug_gnu' [02:29, 01:45](1059 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:31] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:11, 08:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:45, 03:14](1306 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:32, 05:21](1145 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:44, 02:53](1034 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:44, 05:01](1295 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:37, 02:37](1042 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:35, 03:00](977 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:42, 04:03](1101 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:19, 01:34](952 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:35, 01:41](1307 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:27, 00:43](1205 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:27, 01:02](1163 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:10, 08:24] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:28, 03:39](1081 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:40] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:16, 03:51](1088 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:18, 03:47](1099 MB) -PASS -- TEST 'conus13km_debug_intel' [12:35, 11:41](1354 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:35, 12:07](995 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:28, 06:40](1245 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:28, 11:38](1406 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:23] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:17, 03:55](1149 MB) - -PASS -- COMPILE 'hafsw_intel' [12:10, 11:36] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:00, 05:18](870 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:19, 04:58](1271 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:08, 06:15](933 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:58, 13:44](997 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:03, 14:56](1015 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:46, 05:20](615 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:10, 06:44](619 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:35, 02:28](441 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:48, 07:18](542 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:37, 03:44](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:35, 03:32](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:41, 04:42](690 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:23, 01:09](452 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 04:05] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:40, 11:15](640 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:11, 16:16] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:43, 16:08](776 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:47, 15:46](842 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 12:35] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:49, 10:03](795 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:48] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:01, 05:17](963 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:01, 05:22](929 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:17](1340 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:49] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:15, 02:08](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:18](1110 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:14, 02:02](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:04](1014 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:15, 02:05](1012 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:14, 02:09](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:14, 02:08](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:14, 02:01](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:54, 04:52](1165 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:50, 04:50](1137 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:06](1153 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:15, 02:59](2390 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 02:59](2447 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 04:12] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:15, 05:02](1083 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:10, 10:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:15, 02:06](1145 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:57] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:52](341 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:20, 00:50](571 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:19, 00:29](584 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:10, 13:03] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:43, 04:04](2015 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:10, 12:06] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:48, 04:01](1996 MB) - -PASS -- COMPILE 'atml_intel' [10:10, 09:40] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:54, 06:07](1900 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:54, 06:26](1905 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:36, 02:46](1149 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:10, 04:03] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:49, 05:41](1909 MB) - -PASS -- COMPILE 'atmw_intel' [12:15, 11:44] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:43, 02:29](1956 MB) - -PASS -- COMPILE 'atmaero_intel' [08:10, 07:56] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:42, 04:31](2029 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:43, 04:09](1812 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:37, 04:16](1825 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:10, 03:08] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:17, 16:48](4588 MB) - -PASS -- COMPILE 'atm_gnu' [04:10, 03:58] -PASS -- TEST 'control_c48_gnu' [13:32, 09:25](1572 MB) -PASS -- TEST 'control_stochy_gnu' [06:18, 02:15](735 MB) -PASS -- TEST 'control_ras_gnu' [07:16, 03:38](737 MB) -PASS -- TEST 'control_p8_gnu' [08:43, 04:26](1710 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [08:35, 04:38](1734 MB) -PASS -- TEST 'control_flake_gnu' [09:16, 04:18](817 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:11, 03:43] -PASS -- TEST 'rap_control_gnu' [12:29, 07:40](1085 MB) -PASS -- TEST 'rap_decomp_gnu' [11:30, 07:39](1088 MB) -PASS -- TEST 'rap_2threads_gnu' [10:44, 07:00](1122 MB) -PASS -- TEST 'rap_restart_gnu' [04:42, 03:50](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:39, 07:34](1084 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:32, 07:36](1087 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:48, 05:41](884 MB) -PASS -- TEST 'hrrr_control_gnu' [05:43, 03:53](1075 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:30, 03:56](1135 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:29, 03:29](1043 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:30, 03:53](1074 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:17, 02:04](878 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:17, 02:01](936 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:49, 07:27](1088 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:10, 11:05] -PASS -- TEST 'control_diag_debug_gnu' [02:29, 01:07](1636 MB) -PASS -- TEST 'regional_debug_gnu' [07:25, 06:24](1114 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:16, 01:55](1105 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:15, 01:55](1097 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:16, 01:58](1103 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:16, 01:55](1102 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:25, 02:03](1279 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:16, 03:00](1112 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:16, 01:54](1108 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:17, 01:55](1098 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:16, 01:07](732 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:13](737 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:26, 01:19](1728 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:17, 01:55](1107 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:08](1110 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:45, 03:13](1111 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:10, 04:53] -PASS -- TEST 'control_wam_debug_gnu' [05:30, 04:52](1571 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:42] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:30, 07:12](961 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:51, 03:41](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:43, 06:36](966 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:35, 03:21](892 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:34, 03:44](952 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:39, 05:21](857 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:27, 01:56](857 MB) -PASS -- TEST 'conus13km_control_gnu' [03:36, 02:26](1267 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:26, 01:02](1174 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:23](952 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:10, 10:00] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:15](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:15, 07:46] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:16, 01:57](979 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:16, 01:50](975 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:33, 05:20](1287 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:29, 05:32](969 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:26, 03:11](1198 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:26, 05:23](1357 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:15, 07:46] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:17, 01:54](1007 MB) - -PASS -- COMPILE 's2swa_gnu' [19:10, 18:49] -PASS -- TEST 'cpld_control_p8_gnu' [08:01, 06:27](4906 MB) - -PASS -- COMPILE 's2s_gnu' [19:11, 18:36] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [05:46, 04:40](2721 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:10, 03:08] -PASS -- TEST 'cpld_debug_p8_gnu' [05:49, 03:41](4925 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [20:11, 19:16] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:42, 25:34](2887 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:19] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:42, 11:54](2908 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 15:59] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:15, 02:11](764 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [10:53, 10:53] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:25, 07:40](2128 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:37, 16:37] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:14, 13:22](2007 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:03, 14:11](2292 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:11, 06:37](1308 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:55, 15:05](1926 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:34, 18:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:33, 13:09](1993 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:34, 06:34] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [21:10, 20:19](1962 MB) + +PASS -- COMPILE 's2swa_intel' [11:45, 11:45] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:39, 07:50](2183 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:26, 07:41](2186 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:54, 04:20](1978 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:14, 07:38](2203 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:15, 04:21](1742 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:14, 08:44](2542 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:07, 07:34](2181 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:57, 06:24](2091 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:30, 07:44](2181 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:29, 15:17](2979 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [06:57, 05:43](2923 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [11:48, 08:34](3788 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:59, 05:15](3623 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:38, 05:10](2158 MB) + +PASS -- COMPILE 's2sw_intel' [11:34, 11:34] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:50, 07:09](2020 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:51, 04:09](2079 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:35, 06:35] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [07:36, 06:52](2212 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:41, 06:41] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:18, 04:43](2030 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:41, 09:41] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:44, 04:03](2073 MB) + +PASS -- COMPILE 's2s_intel' [09:17, 09:17] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:47, 07:20](3089 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:28, 02:04](3060 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:50, 06:23](2512 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:15, 15:15] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:05, 07:25](2178 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:37, 16:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:32, 13:58](2047 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:15, 06:42](1389 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:59, 15:23](1949 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [03:32, 03:32] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:23, 21:52](2010 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:25, 08:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:01, 02:52](710 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [02:44, 02:25](1611 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:51, 02:29](1610 MB) +PASS -- TEST 'control_latlon_intel' [02:41, 02:25](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:50, 02:27](1610 MB) +PASS -- TEST 'control_c48_intel' [16:36, 16:18](1748 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [05:57, 05:46](857 MB) +PASS -- TEST 'control_c192_intel' [09:25, 09:00](1765 MB) +PASS -- TEST 'control_c384_intel' [09:51, 08:57](2048 MB) +PASS -- TEST 'control_c384gdas_intel' [08:11, 06:53](1516 MB) +PASS -- TEST 'control_stochy_intel' [01:29, 01:22](668 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:02, 00:51](545 MB) +PASS -- TEST 'control_lndp_intel' [01:23, 01:16](667 MB) +PASS -- TEST 'control_iovr4_intel' [02:15, 02:02](660 MB) +PASS -- TEST 'control_iovr5_intel' [02:13, 02:05](672 MB) +PASS -- TEST 'control_p8_intel' [03:09, 02:38](1905 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:05, 02:35](1902 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:05, 02:33](1913 MB) +PASS -- TEST 'control_restart_p8_intel' [02:02, 01:33](1160 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:03, 02:35](1893 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [01:57, 01:29](1204 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:03, 02:40](1893 MB) +PASS -- TEST 'control_2threads_p8_intel' [02:53, 02:25](2002 MB) +PASS -- TEST 'control_p8_lndp_intel' [04:46, 04:31](1895 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:02, 03:29](1972 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:40, 03:03](1916 MB) +PASS -- TEST 'merra2_thompson_intel' [03:34, 02:55](1915 MB) +PASS -- TEST 'regional_control_intel' [04:47, 04:33](1202 MB) +PASS -- TEST 'regional_restart_intel' [02:49, 02:34](1178 MB) +PASS -- TEST 'regional_decomp_intel' [04:59, 04:45](1202 MB) +PASS -- TEST 'regional_2threads_intel' [03:11, 02:55](1167 MB) +PASS -- TEST 'regional_noquilt_intel' [04:43, 04:26](1524 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [04:52, 04:34](1206 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [04:55, 04:38](1199 MB) +PASS -- TEST 'regional_wofs_intel' [06:21, 06:04](2098 MB) + +PASS -- COMPILE 'rrfs_intel' [07:46, 07:46] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:11, 06:38](1209 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [03:54, 03:22](1406 MB) +PASS -- TEST 'rap_decomp_intel' [07:21, 06:46](1153 MB) +PASS -- TEST 'rap_2threads_intel' [06:50, 06:18](1384 MB) +PASS -- TEST 'rap_restart_intel' [03:54, 03:28](1144 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:03, 06:31](1195 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:26, 06:54](1130 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:36, 04:59](1182 MB) +PASS -- TEST 'hrrr_control_intel' [03:52, 03:20](1084 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:02, 03:28](1044 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:34, 03:00](1111 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:09, 01:52](1029 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:55, 06:16](1181 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:48, 07:41](2009 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:30, 07:23](2201 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 07:10] +PASS -- TEST 'control_csawmg_intel' [05:42, 05:27](1075 MB) +PASS -- TEST 'control_ras_intel' [02:53, 02:48](815 MB) + +PASS -- COMPILE 'csawmg_gnu' [03:56, 03:56] +PASS -- TEST 'control_csawmg_gnu' [07:03, 06:44](1073 MB) + +PASS -- COMPILE 'wam_intel' [07:08, 07:08] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:57, 09:38](1677 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:47, 13:47] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:05, 02:22](1903 MB) +PASS -- TEST 'regional_control_faster_intel' [04:30, 04:10](1205 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:22, 05:22] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:23, 02:05](1628 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:25, 02:05](1626 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:35, 02:26](833 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:20, 02:11](825 MB) +PASS -- TEST 'control_csawmg_debug_intel' [03:37, 03:25](1152 MB) +PASS -- TEST 'control_ras_debug_intel' [02:19, 02:13](850 MB) +PASS -- TEST 'control_diag_debug_intel' [02:39, 02:16](1682 MB) +PASS -- TEST 'control_debug_p8_intel' [02:47, 02:25](1919 MB) +PASS -- TEST 'regional_debug_intel' [14:34, 14:15](1137 MB) +PASS -- TEST 'rap_control_debug_intel' [04:01, 03:53](1226 MB) +PASS -- TEST 'hrrr_control_debug_intel' [03:54, 03:48](1211 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:00, 03:53](1219 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [03:59, 03:52](1214 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:07, 03:58](1215 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:22, 04:07](1303 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:11, 04:01](1219 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:07, 04:01](1219 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:06, 03:58](1225 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:05, 03:58](1214 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:07, 03:57](1220 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:02, 03:56](1214 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:26, 06:21](1216 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:00, 03:53](1220 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [04:59, 04:47](1220 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:03, 03:57](1222 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:17, 06:42](1219 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:55, 04:55] +PASS -- TEST 'control_csawmg_debug_gnu' [02:06, 01:52](1055 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:30, 03:30] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:13, 07:13] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:41, 03:11](1282 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:59, 05:29](1153 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:33, 02:51](1051 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:32, 04:58](1292 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:14, 02:35](1041 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:41, 03:01](994 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:36, 04:11](1106 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:40, 01:34](953 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:34, 09:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:02, 01:39](1316 MB) +PASS -- TEST 'conus13km_2threads_intel' [00:59, 00:41](1206 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:20, 01:01](1153 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:14, 07:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:00, 03:43](1083 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:08, 03:08] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:04, 03:53](1091 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [03:55, 03:48](1089 MB) +PASS -- TEST 'conus13km_debug_intel' [12:02, 11:39](1328 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:09, 11:46](999 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [06:52, 06:37](1246 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:52, 11:33](1404 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:00, 03:00] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:02, 03:56](1163 MB) + +PASS -- COMPILE 'hafsw_intel' [11:43, 11:43] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:02, 05:14](869 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:10, 04:55](1272 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:15, 06:16](932 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:40, 13:49](976 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:53, 14:49](991 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:55, 05:19](609 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:45, 06:46](628 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [02:57, 02:28](439 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:47, 07:23](548 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:12, 03:44](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:04, 03:34](620 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:16, 04:40](673 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:25, 01:08](456 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [03:27, 03:27] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [11:40, 11:11](646 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:09, 15:09] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:55, 16:20](773 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:37, 15:48](847 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:18, 10:18] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:09, 09:24](790 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:27, 10:27] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:09, 05:19](959 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:13, 05:22](922 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:04, 16:31](1338 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [05:24, 05:24] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:09, 02:05](1149 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:59, 03:52](1113 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:07, 02:02](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:10, 02:04](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:11, 02:07](1014 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:09, 02:06](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:12, 02:07](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:06, 02:02](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:21, 04:48](1162 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:19, 04:46](1149 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:08, 02:06](1151 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:03, 02:58](2432 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:04, 03:00](2332 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:14, 03:14] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:06, 05:01](1078 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:29, 06:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:09, 02:06](1148 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:58, 00:58] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:04, 00:48](340 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:54, 00:43](583 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:43, 00:29](586 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [07:40, 07:40] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [03:43, 03:13](2023 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:07, 08:07] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:46, 03:09](1993 MB) + +PASS -- COMPILE 'atml_intel' [09:13, 09:13] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:10, 05:23](1904 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:13, 05:25](1900 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:21, 03:00](1147 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:33, 04:33] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:34, 04:46](1908 MB) + +PASS -- COMPILE 'atmw_intel' [09:55, 09:55] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:12, 01:40](1966 MB) + +PASS -- COMPILE 'atmaero_intel' [08:11, 08:11] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:14, 03:37](2034 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [04:49, 04:11](1797 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [04:45, 04:15](1825 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:03, 04:03] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [17:33, 16:27](4581 MB) + +PASS -- COMPILE 'atm_gnu' [04:18, 04:18] +PASS -- TEST 'control_c48_gnu' [09:55, 09:31](1554 MB) +PASS -- TEST 'control_stochy_gnu' [02:27, 02:16](730 MB) +PASS -- TEST 'control_ras_gnu' [03:51, 03:43](733 MB) +PASS -- TEST 'control_p8_gnu' [04:19, 03:47](1733 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:02, 03:34](1760 MB) +PASS -- TEST 'control_flake_gnu' [04:31, 04:20](812 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:36, 04:32] +PASS -- TEST 'rap_control_gnu' [08:13, 07:35](1088 MB) +PASS -- TEST 'rap_decomp_gnu' [08:22, 07:50](1085 MB) +PASS -- TEST 'rap_2threads_gnu' [07:45, 07:10](1147 MB) +PASS -- TEST 'rap_restart_gnu' [04:21, 03:53](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:18, 07:40](1085 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:15, 07:41](1088 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:27, 05:45](885 MB) +PASS -- TEST 'hrrr_control_gnu' [04:27, 03:54](1074 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:20, 03:54](1135 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [13:52, 13:14](1037 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:36, 03:56](1074 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:19, 02:05](879 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:19, 02:03](935 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:19, 07:37](1082 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:21, 07:21] +PASS -- TEST 'control_diag_debug_gnu' [01:35, 01:12](1633 MB) +PASS -- TEST 'regional_debug_gnu' [06:46, 06:26](1114 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:10, 02:00](1102 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [01:58, 01:50](1092 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:06, 01:58](1098 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:00, 01:53](1099 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:18, 02:03](1271 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:06, 03:00](1101 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:01, 01:53](1099 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:07, 01:57](1099 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:12, 01:06](727 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:23, 01:17](726 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:37, 01:20](1750 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:01, 01:54](1100 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:13, 02:07](1112 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [03:43, 03:11](1102 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:27, 03:27] +PASS -- TEST 'control_wam_debug_gnu' [05:28, 05:04](1576 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:51, 04:44] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:44, 07:12](977 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:16, 03:40](953 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:07, 06:37](971 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:04, 03:22](907 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:25, 03:46](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [05:54, 05:19](859 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:00, 01:54](862 MB) +PASS -- TEST 'conus13km_control_gnu' [02:47, 02:26](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:19, 01:01](1175 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:41, 01:23](942 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:26, 10:26] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:35, 04:18](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:33, 07:33] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [01:59, 01:54](981 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:03, 01:52](971 MB) +PASS -- TEST 'conus13km_debug_gnu' [05:40, 05:18](1287 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [05:45, 05:29](975 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [03:31, 03:12](1192 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:35, 05:16](1354 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:08, 07:08] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:08, 01:58](1007 MB) + +PASS -- COMPILE 's2swa_gnu' [15:09, 15:09] +PASS -- TEST 'cpld_control_p8_gnu' [07:08, 06:23](4919 MB) + +PASS -- COMPILE 's2s_gnu' [14:22, 14:22] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [05:20, 04:42](2720 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:25, 04:20] +PASS -- TEST 'cpld_debug_p8_gnu' [04:17, 03:46](4925 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:01, 17:01] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:15, 25:37](2873 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:54, 03:54] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:35, 12:04](2887 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:34, 15:34] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [15:17, 15:13](760 MB) SYNOPSIS: -Starting Date/Time: 20240614 09:27:03 -Ending Date/Time: 20240614 11:00:18 -Total Time: 01h:33m:30s +Starting Date/Time: 20240623 19:58:04 +Ending Date/Time: 20240624 00:04:55 +Total Time: 04h:07m:36s Compiles Completed: 57/57 -Tests Completed: 245/246 -Failed Tests: -* TEST control_wam_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2283/tests/logs/log_hercules/run_control_wam_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF HERCULES REGRESSION TESTING LOG==== -====START OF HERCULES REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -0e00545f1ffdc0307d318d2e4f41cc243b2432de - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - d406c7e205bd62913eea0bc87bed1aeb63eb2f83 CICE-interface/CICE (CICE6.0.0-449-gd406c7e) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 07c26d1efae47445e4c36ff98942494788e7dc49 FV3 (heads/develop) - ab195d5026ca4c221b6cbb3888c8ae92d711f89a FV3/atmos_cubed_sphere (201912_public_release-397-gab195d5) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240614 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1919244 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 'wam_intel' [08:10, 07:15] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:07, 09:31](1678 MB) - -SYNOPSIS: -Starting Date/Time: 20240614 10:58:37 -Ending Date/Time: 20240614 11:19:54 -Total Time: 00h:21m:21s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 246/246 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index cef098b77b..5bd507f722 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,22 +1,22 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -ccbb5203c2a005d56c2f9c9042ee733335964f35 +ed92cb38e23dbdf4bd669e5004940b44f5fa6d46 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - d406c7e205bd62913eea0bc87bed1aeb63eb2f83 CICE-interface/CICE (CICE6.0.0-449-gd406c7e) + 29b4763fa0fcaec7c2dc7451d22aeb639abf5141 CICE-interface/CICE (heads/emc/develop-7-g29b4763) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 07c26d1efae47445e4c36ff98942494788e7dc49 FV3 (heads/develop) - ab195d5026ca4c221b6cbb3888c8ae92d711f89a FV3/atmos_cubed_sphere (201912_public_release-397-gab195d5) + 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) + a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (remotes/origin/feature/grid_corner_jc_fix) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -36,253 +36,253 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240614 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3225026 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1959700 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-r) - USE ROCOTO -PASS -- COMPILE 's2swa_32bit_intel' [40:28, 40:28] ( 1 warnings 1382 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:21, 07:52](2002 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:26, 54:26] ( 1 warnings 1426 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:00, 22:16](1888 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:33, 23:36](2013 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:48, 10:52](1128 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:03, 26:19](1857 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:26, 49:26] ( 1 warnings 1423 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:04, 21:26](1892 MB) - -PASS -- COMPILE 's2swa_intel' [41:17, 41:17] ( 1380 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:29, 09:03](2035 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:14, 08:49](2013 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:21, 05:48](1704 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 08:48](2063 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:59, 06:11](1713 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:58, 09:36](2307 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:32, 10:12](2050 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:48, 07:39](2004 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:07, 08:32](2054 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:46, 08:18](2043 MB) - -PASS -- COMPILE 's2sw_intel' [38:40, 38:40] ( 1278 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:55, 06:46](1909 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:52, 07:31](1973 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:53, 05:53] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:50, 11:31](2063 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:31, 05:31] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:23, 08:21](1920 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [34:44, 34:44] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:55, 06:39](1959 MB) - -PASS -- COMPILE 's2s_intel' [35:05, 35:05] ( 1015 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [13:32, 12:53](3064 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:22, 03:41](3048 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:49, 02:01](2475 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:01, 34:01] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:51, 08:15](2038 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [52:27, 52:27] ( 1338 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:45, 22:38](1902 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:45, 11:53](1117 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:21, 26:04](1852 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:35, 05:35] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:23, 32:45](1922 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [37:35, 37:34] ( 1 warnings 1147 remarks ) -PASS -- TEST 'control_flake_intel' [04:51, 04:32](645 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:36, 03:57](1539 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:00, 04:16](1531 MB) -PASS -- TEST 'control_latlon_intel' [04:39, 03:57](1550 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:46, 05:01](1533 MB) -PASS -- TEST 'control_c48_intel' [12:34, 11:58](1739 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:26, 10:08](851 MB) -PASS -- TEST 'control_c192_intel' [16:04, 15:13](1677 MB) -PASS -- TEST 'control_c384_intel' [20:40, 18:49](1826 MB) -PASS -- TEST 'control_c384gdas_intel' [17:14, 14:34](1005 MB) -PASS -- TEST 'control_stochy_intel' [03:08, 02:51](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:21](435 MB) -PASS -- TEST 'control_lndp_intel' [02:30, 02:12](602 MB) -PASS -- TEST 'control_iovr4_intel' [03:41, 03:22](603 MB) -PASS -- TEST 'control_iovr5_intel' [03:40, 03:21](601 MB) -PASS -- TEST 'control_p8_intel' [06:17, 05:02](1835 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:42, 05:27](1839 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 05:13](1843 MB) -PASS -- TEST 'control_restart_p8_intel' [04:24, 03:16](1045 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:28, 05:10](1819 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:10, 03:01](1070 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:21, 05:10](1825 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:56, 04:50](1935 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:46, 08:03](1818 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:27, 06:07](1894 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:06, 04:49](1842 MB) -PASS -- TEST 'merra2_thompson_intel' [06:20, 04:55](1839 MB) -PASS -- TEST 'regional_control_intel' [09:15, 08:49](1014 MB) -PASS -- TEST 'regional_restart_intel' [05:20, 04:43](1021 MB) -PASS -- TEST 'regional_decomp_intel' [09:39, 09:10](1017 MB) -PASS -- TEST 'regional_2threads_intel' [07:18, 06:48](997 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:01, 08:21](1015 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:02, 08:27](1011 MB) - -PASS -- COMPILE 'rrfs_intel' [34:52, 34:52] ( 3 warnings 1114 remarks ) -PASS -- TEST 'rap_control_intel' [11:42, 10:35](987 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 05:55](1218 MB) -PASS -- TEST 'rap_decomp_intel' [12:12, 11:02](984 MB) -PASS -- TEST 'rap_2threads_intel' [11:08, 09:57](1078 MB) -PASS -- TEST 'rap_restart_intel' [06:39, 05:28](990 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:51, 10:44](982 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:12, 11:05](985 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:53, 07:45](1001 MB) -PASS -- TEST 'hrrr_control_intel' [06:37, 05:21](994 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:41, 05:31](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:06, 04:54](1066 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:20, 02:57](914 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:21, 10:07](980 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:11, 12:54](1938 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:44, 12:27](1937 MB) - -PASS -- COMPILE 'csawmg_intel' [32:32, 32:32] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:36, 09:05](960 MB) -PASS -- TEST 'control_ras_intel' [04:50, 04:33](663 MB) - -PASS -- COMPILE 'wam_intel' [32:32, 32:32] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [16:02, 15:22](1624 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:22, 16:22] ( 1298 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:56, 04:44](1825 MB) -PASS -- TEST 'regional_control_faster_intel' [08:26, 07:54](1014 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:21, 07:21] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 03:41](1565 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:26, 03:39](1560 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:09, 03:52](760 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:46, 03:29](764 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:37, 06:03](1080 MB) -PASS -- TEST 'control_ras_debug_intel' [03:49, 03:30](774 MB) -PASS -- TEST 'control_diag_debug_intel' [04:16, 03:34](1613 MB) -PASS -- TEST 'control_debug_p8_intel' [05:10, 04:27](1853 MB) -PASS -- TEST 'regional_debug_intel' [23:43, 23:08](1027 MB) -PASS -- TEST 'rap_control_debug_intel' [06:48, 06:22](1152 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:24, 06:08](1145 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:34, 06:16](1153 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:36, 06:16](1155 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 06:12](1148 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:01, 06:39](1226 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:43, 06:24](1157 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:47, 06:27](1155 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:50, 06:33](1153 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:39, 06:18](1156 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:28, 06:06](1151 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:35, 06:18](1149 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:30, 10:15](1147 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 06:09](1147 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:49, 07:30](1157 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:33, 06:20](1157 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:48, 10:39](1151 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:16, 05:16] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:24, 16:40](1637 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:18, 30:18] ( 3 warnings 1027 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:36, 05:29](1080 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:58, 08:53](903 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:21, 04:52](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:41, 08:34](948 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:48, 04:18](917 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:40, 05:13](855 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:42, 06:38](904 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 02:59](853 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [50:40, 50:37] ( 3 warnings 1197 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:57, 03:10](1100 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:16, 01:35](1026 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:24, 01:43](1029 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [30:54, 30:54] ( 3 warnings 1047 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 05:59](917 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:04, 05:04] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 06:03](1035 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:15, 05:55](1032 MB) -PASS -- TEST 'conus13km_debug_intel' [19:11, 18:25](1146 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:29, 18:41](832 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:54, 11:12](1079 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:47, 18:35](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:16, 05:16] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 06:17](1070 MB) - -PASS -- COMPILE 'hafsw_intel' [38:41, 38:41] ( 1 warnings 1426 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:42, 07:20](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:19, 07:53](1085 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:38, 10:10](779 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [20:13, 18:59](804 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:23, 19:47](967 MB) -PASS -- TEST 'gnv1_nested_intel' [10:28, 08:03](1669 MB) - -PASS -- COMPILE 'hafs_all_intel' [33:26, 33:26] ( 1267 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:10, 09:51](776 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:09, 09:50](748 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:24, 09:24] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:46, 03:38](1065 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:24, 02:12](1029 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:41, 03:32](933 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:54, 03:45](923 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:06, 03:58](920 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:02, 03:45](1070 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:57, 03:48](1062 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:58, 03:48](926 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:33, 08:26](898 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:20, 08:18](847 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 04:09](1067 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:34, 06:14](2345 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:56, 05:45](2391 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:26, 04:26] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:22, 08:12](1008 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:05, 09:05] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:51, 03:41](1078 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:02, 02:02] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:42, 02:14](232 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:50, 01:27](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:19, 00:59](256 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:21, 34:21] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:47, 05:46](1910 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [33:10, 33:10] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:45, 05:41](1888 MB) - -PASS -- COMPILE 'atml_intel' [41:27, 41:27] ( 8 warnings 1185 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:10, 09:44](1855 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:22, 09:57](1854 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:31, 05:47](1069 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:40, 05:40] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:32, 08:16](1877 MB) - -PASS -- COMPILE 'atmw_intel' [34:49, 34:49] ( 1259 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:30, 03:15](1821 MB) - -PASS -- COMPILE 'atmaero_intel' [33:11, 33:11] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:16, 06:07](1929 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:37, 06:28](1730 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:35, 06:37](1734 MB) +PASS -- COMPILE 's2swa_32bit_intel' [40:56, 40:56] ( 1 warnings 1382 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:24, 08:02](1998 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:02, 49:02] ( 1 warnings 1426 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:11, 22:31](1892 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:21, 23:32](2011 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:55, 11:06](1128 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:39, 25:00](1856 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [48:53, 48:53] ( 1 warnings 1423 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:53, 22:09](1861 MB) + +PASS -- COMPILE 's2swa_intel' [40:55, 40:55] ( 1380 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:44, 08:28](2039 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:59, 08:32](2035 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:20, 06:36](1717 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:03, 08:33](2066 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:09, 05:29](1721 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:23, 08:07](2301 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:42, 08:51](2034 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:24, 08:02](1989 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:25, 08:33](2052 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:37, 08:09](2028 MB) + +PASS -- COMPILE 's2sw_intel' [39:04, 39:04] ( 1278 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:54, 06:45](1881 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:13, 06:55](1961 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:54, 05:54] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:51, 11:31](2055 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:40, 05:40] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:15, 08:13](1911 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:19, 35:19] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:04, 06:43](1959 MB) + +PASS -- COMPILE 's2s_intel' [35:17, 35:17] ( 1015 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [13:53, 13:12](3040 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:37, 03:51](3033 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:33, 02:05](2459 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:23, 34:23] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:23, 08:44](2043 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [48:55, 48:55] ( 1338 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:15, 22:06](1913 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:30, 14:13](1136 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:50, 27:34](1872 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:15, 06:15] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:29, 33:16](1910 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:37, 38:37] ( 1 warnings 1147 remarks ) +PASS -- TEST 'control_flake_intel' [04:49, 04:33](649 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:32, 03:56](1552 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:46, 04:03](1558 MB) +PASS -- TEST 'control_latlon_intel' [04:38, 04:05](1547 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:45, 04:10](1546 MB) +PASS -- TEST 'control_c48_intel' [12:39, 12:04](1732 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:36, 10:18](848 MB) +PASS -- TEST 'control_c192_intel' [15:01, 14:15](1679 MB) +PASS -- TEST 'control_c384_intel' [19:45, 18:02](1826 MB) +PASS -- TEST 'control_c384gdas_intel' [15:52, 13:25](1001 MB) +PASS -- TEST 'control_stochy_intel' [02:33, 02:15](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:43, 01:19](436 MB) +PASS -- TEST 'control_lndp_intel' [02:24, 02:09](606 MB) +PASS -- TEST 'control_iovr4_intel' [03:46, 03:23](597 MB) +PASS -- TEST 'control_iovr5_intel' [03:36, 03:21](600 MB) +PASS -- TEST 'control_p8_intel' [05:43, 04:42](1836 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:48, 04:45](1851 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:45, 04:35](1843 MB) +PASS -- TEST 'control_restart_p8_intel' [03:45, 02:50](1060 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:34, 04:32](1832 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:55, 02:58](1074 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:03, 05:04](1826 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:17, 04:25](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:45, 08:08](1825 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:54, 05:54](1898 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:59, 04:52](1850 MB) +PASS -- TEST 'merra2_thompson_intel' [06:35, 05:15](1847 MB) +PASS -- TEST 'regional_control_intel' [09:44, 09:11](1009 MB) +PASS -- TEST 'regional_restart_intel' [05:57, 05:26](1018 MB) +PASS -- TEST 'regional_decomp_intel' [10:19, 09:43](1016 MB) +PASS -- TEST 'regional_2threads_intel' [08:16, 07:42](996 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:47, 09:09](1014 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:39, 09:08](1013 MB) + +PASS -- COMPILE 'rrfs_intel' [35:20, 35:20] ( 3 warnings 1114 remarks ) +PASS -- TEST 'rap_control_intel' [11:52, 10:42](987 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:43, 05:42](1219 MB) +PASS -- TEST 'rap_decomp_intel' [12:09, 11:00](988 MB) +PASS -- TEST 'rap_2threads_intel' [12:07, 11:10](1089 MB) +PASS -- TEST 'rap_restart_intel' [07:11, 06:01](998 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:43, 11:35](989 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:55, 11:44](983 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:05, 07:59](995 MB) +PASS -- TEST 'hrrr_control_intel' [07:02, 05:36](990 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:15, 06:06](981 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:42, 05:31](1053 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:16, 02:52](920 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:58, 10:40](986 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 13:04](1935 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:31, 13:11](1937 MB) + +PASS -- COMPILE 'csawmg_intel' [33:53, 33:53] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:06, 09:31](961 MB) +PASS -- TEST 'control_ras_intel' [05:20, 05:00](667 MB) + +PASS -- COMPILE 'wam_intel' [33:27, 33:27] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [15:32, 14:49](1621 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:59, 15:59] ( 1298 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:37, 04:22](1845 MB) +PASS -- TEST 'regional_control_faster_intel' [08:25, 07:53](1012 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:35, 07:35] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:08, 03:35](1560 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:09, 03:29](1569 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:17, 03:48](768 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:47, 03:27](761 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:11, 07:36](1082 MB) +PASS -- TEST 'control_ras_debug_intel' [04:57, 04:33](771 MB) +PASS -- TEST 'control_diag_debug_intel' [07:12, 03:27](1626 MB) +PASS -- TEST 'control_debug_p8_intel' [06:06, 04:31](1848 MB) +PASS -- TEST 'regional_debug_intel' [23:29, 22:47](1038 MB) +PASS -- TEST 'rap_control_debug_intel' [06:25, 06:09](1151 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:17, 06:00](1151 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 06:09](1150 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 06:12](1151 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 06:10](1155 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:19, 06:47](1235 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:28, 06:15](1148 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 06:13](1154 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:22, 06:08](1152 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 06:09](1157 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:17, 06:04](1148 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 06:09](1154 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 10:04](1149 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 06:02](1145 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:45, 07:27](1153 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:29, 06:10](1156 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:42, 10:34](1159 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:39, 04:39] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:09, 16:33](1632 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:27, 30:27] ( 3 warnings 1027 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:28, 05:25](1084 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:25, 08:22](903 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:01, 04:32](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:04, 08:03](951 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:27, 04:05](912 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:06, 04:42](869 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:21, 06:22](902 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:59, 02:37](842 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [50:45, 50:45] ( 3 warnings 1197 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:54, 03:02](1088 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:08, 01:30](1061 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:22, 01:43](1021 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [30:36, 30:36] ( 3 warnings 1047 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:10, 05:33](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:52, 04:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 06:05](1033 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:15, 05:56](1035 MB) +PASS -- TEST 'conus13km_debug_intel' [19:11, 18:27](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:28, 18:45](849 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:15, 10:40](1092 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:06, 18:28](1210 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:40, 04:40] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 06:15](1072 MB) + +PASS -- COMPILE 'hafsw_intel' [38:09, 38:09] ( 1 warnings 1426 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:22, 07:06](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:09, 06:49](1087 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:55, 09:16](758 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:49, 16:28](805 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:38, 19:05](821 MB) +PASS -- TEST 'gnv1_nested_intel' [09:15, 07:08](1660 MB) + +PASS -- COMPILE 'hafs_all_intel' [33:29, 33:29] ( 1267 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:03, 08:49](774 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:03, 08:45](750 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:29, 08:29] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:48, 03:39](1074 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 02:09](1043 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:43, 03:33](923 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:46, 03:36](925 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:46, 03:35](923 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:48, 03:39](1065 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:47, 03:39](1076 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 03:34](924 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:56, 07:55](883 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:49, 07:48](843 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:45, 03:38](1060 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 05:07](2394 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 05:07](2411 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:14, 03:14] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:32, 08:22](999 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:21, 08:21] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:45, 03:37](1061 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:54, 01:54] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:08, 01:44](232 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:45, 01:25](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:11, 00:54](253 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [33:56, 33:56] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:18, 06:13](1881 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [33:26, 33:26] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:27, 06:09](1859 MB) + +PASS -- COMPILE 'atml_intel' [37:15, 37:15] ( 8 warnings 1185 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:21, 08:57](1860 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:53, 09:24](1847 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:56, 05:16](1064 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:02, 06:02] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:40, 08:23](1887 MB) + +PASS -- COMPILE 'atmw_intel' [34:57, 34:57] ( 1259 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:26, 03:07](1869 MB) + +PASS -- COMPILE 'atmaero_intel' [33:02, 33:02] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:36, 06:17](1934 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:47, 06:43](1713 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:30, 06:38](1725 MB) SYNOPSIS: -Starting Date/Time: 20240617 23:58:25 -Ending Date/Time: 20240618 06:18:06 -Total Time: 06h:20m:19s +Starting Date/Time: 20240624 04:17:09 +Ending Date/Time: 20240624 09:27:57 +Total Time: 05h:11m:24s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index e43dfa3f20..675a2d422a 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,22 +1,22 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -bb9effee25fe2b045abcd4061f0aaab9bda5a46b +8c760efa1a434d8dede921101446ee396b5ff53f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 42d4010d7d1116aa8c4ac322dd353cfbb3e3aaa1 CDEPS-interface/CDEPS (remotes/origin/dice_cplhist) - 180f60fd5c9f76d5656a68f8d478f0155f0dc695 CICE-interface/CICE (heads/emc/develop-11-g180f60f) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 29b4763fa0fcaec7c2dc7451d22aeb639abf5141 CICE-interface/CICE (heads/emc/develop-7-g29b4763) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 07c26d1efae47445e4c36ff98942494788e7dc49 FV3 (heads/develop) - ab195d5026ca4c221b6cbb3888c8ae92d711f89a FV3/atmos_cubed_sphere (201912_public_release-397-gab195d5) + 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/feature/grid_corner_jc_fix) + a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (remotes/origin/feature/grid_corner_jc_fix) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -35,285 +35,284 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240607 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_154164 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240614 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3171683 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [17:10, 14:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [39:42, 05:34](3309 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [48:08, 17:21](1978 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:16, 18:17](2154 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:02, 08:33](1249 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [50:10, 19:32](1874 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:11] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [44:50, 17:10](1972 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 06:14] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:42, 23:04](1926 MB) - -PASS -- COMPILE 's2swa_intel' [16:10, 14:15] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [40:54, 05:58](3345 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:03, 05:52](3341 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:04, 03:58](3177 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [40:54, 05:52](3363 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:04, 03:53](3279 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [40:54, 06:22](3618 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [39:56, 05:56](3326 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:41, 04:48](3210 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:07, 05:51](3338 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [22:43, 10:36](3517 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [21:52, 06:45](3625 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [39:30, 11:06](4273 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:48, 07:40](4371 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [39:53, 05:35](3319 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 14:11] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [38:37, 04:46](1979 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [38:50, 04:45](1989 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:10, 06:14] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [18:23, 08:35](3380 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:20] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [16:13, 06:04](2006 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 13:04] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:22, 04:30](2039 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 13:52] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:54, 08:23](3088 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:54, 02:35](3065 MB) -PASS -- TEST 'cpld_restart_c48_intel' [18:58, 01:31](2494 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:11, 23:03] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:41, 05:30](3339 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:12, 18:34] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:13, 17:27](1959 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:34, 08:34](1249 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:11, 19:37](1902 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 04:30] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [58:36, 24:51](1955 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:05] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:25, 03:34](703 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:39, 02:56](1598 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:39, 03:01](1610 MB) -PASS -- TEST 'control_latlon_intel' [04:29, 02:55](1599 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:55, 03:07](1593 MB) -PASS -- TEST 'control_c48_intel' [08:43, 07:11](1762 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:33, 06:01](878 MB) -PASS -- TEST 'control_c192_intel' [12:21, 10:32](1754 MB) -PASS -- TEST 'control_c384_intel' [14:16, 11:36](2004 MB) -PASS -- TEST 'control_c384gdas_intel' [13:13, 09:28](1359 MB) -PASS -- TEST 'control_stochy_intel' [02:54, 01:46](657 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:27, 01:01](503 MB) -PASS -- TEST 'control_lndp_intel' [02:54, 01:37](657 MB) -PASS -- TEST 'control_iovr4_intel' [02:52, 02:28](655 MB) -PASS -- TEST 'control_iovr5_intel' [02:50, 02:30](651 MB) -PASS -- TEST 'control_p8_intel' [05:58, 03:51](1900 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:20, 03:05](1890 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:31, 03:00](1894 MB) -PASS -- TEST 'control_restart_p8_intel' [04:09, 02:06](1128 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:20, 03:01](1884 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:09, 01:49](1154 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:07, 03:08](1888 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:08, 03:16](1990 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:16, 05:25](1893 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:36, 04:10](1961 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:30, 03:11](1899 MB) -PASS -- TEST 'merra2_thompson_intel' [05:45, 03:25](1899 MB) -PASS -- TEST 'regional_control_intel' [07:10, 05:21](1101 MB) -PASS -- TEST 'regional_restart_intel' [04:42, 02:53](1097 MB) -PASS -- TEST 'regional_decomp_intel' [06:32, 05:42](1095 MB) -PASS -- TEST 'regional_2threads_intel' [04:32, 03:57](1091 MB) -PASS -- TEST 'regional_noquilt_intel' [06:35, 05:20](1395 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 05:21](1092 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:39](1097 MB) -PASS -- TEST 'regional_wofs_intel' [07:35, 06:49](1918 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 11:39] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [32:19, 07:49](1110 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [29:19, 04:48](1305 MB) -PASS -- TEST 'rap_decomp_intel' [33:21, 08:11](1031 MB) -PASS -- TEST 'rap_2threads_intel' [33:31, 08:18](1181 MB) -PASS -- TEST 'rap_restart_intel' [06:41, 04:37](1105 MB) -PASS -- TEST 'rap_sfcdiff_intel' [33:47, 08:17](1109 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [32:20, 08:08](1044 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:39, 05:57](1127 MB) -PASS -- TEST 'hrrr_control_intel' [29:17, 04:04](1039 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [29:17, 04:13](1025 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [28:39, 03:29](1119 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:15](1004 MB) -PASS -- TEST 'rrfs_v1beta_intel' [32:11, 07:38](1094 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [32:18, 09:16](1991 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [30:30, 09:00](2075 MB) - -PASS -- COMPILE 'csawmg_intel' [12:12, 11:54] -PASS -- TEST 'control_csawmg_intel' [07:43, 06:18](1015 MB) -PASS -- TEST 'control_ras_intel' [04:23, 03:20](742 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 11:18] -PASS -- TEST 'control_wam_intel' [04:22, 02:13](614 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [25:11, 20:07] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:29, 02:50](1894 MB) -PASS -- TEST 'regional_control_faster_intel' [07:38, 05:23](1099 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 06:05] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:48, 02:43](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:39](1619 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:27, 03:06](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 03:25](812 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:50](1128 MB) -PASS -- TEST 'control_ras_debug_intel' [03:58, 02:51](822 MB) -PASS -- TEST 'control_diag_debug_intel' [03:48, 02:48](1668 MB) -PASS -- TEST 'control_debug_p8_intel' [04:45, 02:59](1907 MB) -PASS -- TEST 'regional_debug_intel' [19:40, 17:30](1089 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 04:56](1155 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:23, 04:41](1194 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:28, 04:51](1199 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:54](1200 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 04:44](1197 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:34, 05:04](1291 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 04:57](1201 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 04:58](1201 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:25, 04:54](1206 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 04:50](1198 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:46](1195 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 04:54](1202 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 07:57](1202 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 04:52](1202 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:57](1193 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:25, 04:59](1203 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:39, 08:31](1213 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:11, 03:25] ( 855 warnings ) -PASS -- TEST 'control_wam_debug_intel' [06:22, 05:00](511 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:10, 11:38] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 04:25](1161 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:11, 06:30](1053 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:21, 03:28](933 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:00, 06:44](1088 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:46, 03:00](965 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:18, 03:37](926 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:22, 04:56](1027 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:58](926 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:11, 16:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:54, 02:08](1204 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:45, 01:00](1115 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:44, 01:15](1113 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:11, 11:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:46, 04:13](988 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 03:58] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 05:00](1078 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 04:56](1029 MB) -PASS -- TEST 'conus13km_debug_intel' [15:50, 14:13](1225 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:48, 14:33](932 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:26](1162 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:44, 13:57](1295 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 03:51] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:28, 05:04](1088 MB) - -PASS -- COMPILE 'hafsw_intel' [20:11, 13:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:17, 05:30](742 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 05:57](1116 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:33, 06:57](831 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:16, 13:14](862 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:25, 14:57](884 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 06:21](506 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:23, 07:35](511 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:52, 03:08](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:30, 08:07](483 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:09](535 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:00, 03:55](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:59, 05:31](539 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:21](406 MB) -PASS -- TEST 'gnv1_nested_intel' [09:26, 04:05](1753 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:11, 04:42] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:53, 13:05](567 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:11, 22:14] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:00, 09:40](669 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:07, 09:56](742 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 12:48] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:11, 07:10](695 MB) - -PASS -- COMPILE 'hafs_all_intel' [23:11, 12:15] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:20, 06:29](830 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 06:31](825 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:58, 16:04](1213 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [23:11, 07:12] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:41](1138 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 01:36](1088 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:37](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:45](1011 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:51](1016 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:37](1132 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:34](1141 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:44](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:22, 05:59](1066 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:22, 05:52](1030 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:41](1132 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 03:32](2484 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 03:40](2479 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [17:10, 03:51] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:17, 06:24](1063 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [18:11, 07:39] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:17, 02:42](1125 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [11:10, 01:10] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:50](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:22, 00:49](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:33](320 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:13, 12:04] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:10, 03:52](1984 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:14, 11:33] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:12, 03:40](1957 MB) - -PASS -- COMPILE 'atml_intel' [16:15, 13:34] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:39, 04:20](1868 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:32, 04:24](1853 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:44, 02:26](1104 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 05:21] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:28, 05:58](1876 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 12:01] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:16, 01:58](1925 MB) - -PASS -- COMPILE 'atmaero_intel' [14:22, 14:06] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:21, 04:12](3192 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 04:57](3094 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:07, 04:53](3104 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:17, 03:51] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:46, 21:12](4580 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [16:33, 16:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:12, 14:08](2085 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:30, 22:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:15, 17:53](1965 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:23, 18:49](2137 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:23, 08:50](1206 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:44, 20:20](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:42, 21:41] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:08, 17:37](1956 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:09, 08:09] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:26, 27:06](1928 MB) + +PASS -- COMPILE 's2swa_intel' [16:07, 16:07] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:19, 14:10](2138 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:29, 14:21](2130 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:50, 07:43](1806 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:25, 14:23](2164 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:15, 07:55](1709 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:00, 13:07](2427 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:11, 14:18](2131 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:16, 12:37](2041 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:10, 14:12](2138 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:11, 16:17](2718 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:54, 08:45](2725 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [17:01, 11:43](3638 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:07, 07:12](3480 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:46, 05:56](2108 MB) + +PASS -- COMPILE 's2sw_intel' [14:37, 14:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:24, 13:32](1971 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:54, 04:52](2043 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:06, 08:06] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:55, 08:47](2168 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:03, 08:03] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:04, 07:12](1991 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:47, 13:47] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:48, 04:46](2040 MB) + +PASS -- COMPILE 's2s_intel' [13:48, 13:47] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [13:49, 13:11](3095 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:25, 03:52](3064 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:58](2505 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:40, 23:40] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:51, 14:54](2135 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:03, 20:03] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:40, 17:56](1987 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:15, 08:26](1255 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:04, 20:17](1921 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:01, 06:01] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:23, 28:40](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:49, 12:49] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:49, 03:38](691 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:28, 03:04](1588 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:44, 03:09](1593 MB) +PASS -- TEST 'control_latlon_intel' [03:35, 03:08](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:41, 03:06](1593 MB) +PASS -- TEST 'control_c48_intel' [12:27, 11:59](1745 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:32, 10:17](859 MB) +PASS -- TEST 'control_c192_intel' [11:42, 11:08](1730 MB) +PASS -- TEST 'control_c384_intel' [13:23, 12:04](2015 MB) +PASS -- TEST 'control_c384gdas_intel' [11:29, 09:28](1359 MB) +PASS -- TEST 'control_stochy_intel' [01:56, 01:46](647 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:03](476 MB) +PASS -- TEST 'control_lndp_intel' [01:49, 01:40](652 MB) +PASS -- TEST 'control_iovr4_intel' [02:48, 02:37](647 MB) +PASS -- TEST 'control_iovr5_intel' [02:48, 02:37](646 MB) +PASS -- TEST 'control_p8_intel' [04:17, 03:30](1887 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:12, 03:22](1892 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:30, 03:22](1879 MB) +PASS -- TEST 'control_restart_p8_intel' [02:48, 01:57](1091 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:56, 03:19](1876 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:49, 01:52](1126 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:24, 03:25](1877 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:31, 03:32](1973 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:16, 05:48](1893 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 04:48](1949 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:26, 03:27](1889 MB) +PASS -- TEST 'merra2_thompson_intel' [05:01, 03:43](1891 MB) +PASS -- TEST 'regional_control_intel' [06:34, 06:09](1094 MB) +PASS -- TEST 'regional_restart_intel' [03:47, 03:20](1085 MB) +PASS -- TEST 'regional_decomp_intel' [06:58, 06:34](1077 MB) +PASS -- TEST 'regional_2threads_intel' [04:45, 04:25](1071 MB) +PASS -- TEST 'regional_noquilt_intel' [06:26, 06:06](1382 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:36, 06:08](1087 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:30, 06:09](1070 MB) +PASS -- TEST 'regional_wofs_intel' [07:51, 07:28](1901 MB) + +PASS -- COMPILE 'rrfs_intel' [11:59, 11:59] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:10, 08:10](1055 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:44, 05:00](1304 MB) +PASS -- TEST 'rap_decomp_intel' [09:31, 08:27](1019 MB) +PASS -- TEST 'rap_2threads_intel' [09:15, 08:13](1169 MB) +PASS -- TEST 'rap_restart_intel' [05:04, 04:14](1038 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:13, 08:09](1052 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:29, 08:27](1025 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:20, 06:07](1079 MB) +PASS -- TEST 'hrrr_control_intel' [05:13, 04:12](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:18, 04:17](1023 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:22, 09:17](1099 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:46, 02:18](955 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:05, 08:00](1049 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:48, 09:37](1990 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:32, 09:22](2023 MB) + +PASS -- COMPILE 'csawmg_intel' [10:44, 10:44] +PASS -- TEST 'control_csawmg_intel' [06:47, 06:28](1024 MB) +PASS -- TEST 'control_ras_intel' [03:35, 03:25](719 MB) + +PASS -- COMPILE 'wam_intel' [10:56, 10:56] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:36, 12:07](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:23, 19:23] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:19, 03:09](1882 MB) +PASS -- TEST 'regional_control_faster_intel' [06:13, 05:53](1088 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:42, 07:42] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:06, 02:42](1610 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:10, 02:38](1594 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:13, 03:04](808 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:53, 02:45](809 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:36, 04:17](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [03:00, 02:46](818 MB) +PASS -- TEST 'control_diag_debug_intel' [03:13, 02:47](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [03:25, 03:01](1900 MB) +PASS -- TEST 'regional_debug_intel' [17:59, 17:37](1089 MB) +PASS -- TEST 'rap_control_debug_intel' [05:04, 04:54](1201 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:55, 04:45](1196 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:03, 04:53](1195 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:12, 04:57](1196 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:57, 04:48](1197 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:25, 05:03](1281 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 05:04](1200 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 05:04](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:15, 05:00](1199 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 05:01](1197 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:06, 04:49](1194 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 05:07](1193 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:15, 08:02](1196 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:17, 05:02](1184 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:54, 05:43](1196 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:05, 04:55](1201 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:40, 08:34](1204 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:16, 05:16] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:17, 13:49](1675 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:59, 10:59] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:35, 04:52](1166 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:53, 06:55](1012 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:03, 03:41](929 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:01, 07:04](1074 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:52, 08:24](960 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:19, 03:51](905 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:32, 05:16](980 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 02:03](882 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:01, 15:01] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:22, 02:42](1176 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:48, 01:16](1128 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:51, 01:28](1078 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:21, 11:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:52, 04:26](971 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:22, 05:21] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:10, 04:55](1071 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:57, 04:41](1076 MB) +PASS -- TEST 'conus13km_debug_intel' [15:16, 14:44](1234 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:26, 14:53](925 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:54, 08:23](1166 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:09, 14:41](1294 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:17, 05:17] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:00, 04:51](1122 MB) + +PASS -- COMPILE 'hafsw_intel' [13:16, 13:16] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:58, 05:55](762 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 06:13](1140 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:46, 07:28](835 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:06, 24:04](868 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:38, 28:34](890 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 07:00](511 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:31, 08:16](526 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:05, 03:23](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:28, 09:27](487 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:19, 04:38](538 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:10, 04:23](546 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:43, 05:50](594 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:53, 01:32](407 MB) +PASS -- TEST 'gnv1_nested_intel' [06:09, 04:16](1732 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:16, 06:16] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:06, 13:15](593 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:59, 21:59] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:55, 12:53](677 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:03, 12:58](732 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:50, 13:50] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:50, 08:45](727 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:53, 12:53] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:18, 07:18](836 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:24, 07:19](815 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:05, 16:24](1204 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:22, 10:22] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:04, 02:56](1153 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:05, 01:55](1110 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:56, 02:49](1016 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:58, 02:50](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:58, 02:52](1014 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:59, 02:54](1157 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:03, 02:55](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:51, 02:46](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:23, 06:31](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:16, 06:24](1003 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:58, 02:54](1153 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:21, 04:15](2441 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:23, 04:16](2436 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:09, 05:09] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:41, 06:32](1076 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:28, 07:28] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:58, 02:53](1154 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:24, 01:24] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:25, 01:03](249 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:05, 00:52](321 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:50, 00:34](320 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:13, 12:13] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:58, 04:04](1970 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:58, 11:58] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:53, 03:55](1960 MB) + +PASS -- COMPILE 'atml_intel' [14:07, 14:07] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:52, 04:47](1870 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:01, 04:46](1875 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:26, 02:44](1084 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:44, 06:44] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:00, 05:45](1887 MB) + +PASS -- COMPILE 'atmw_intel' [12:52, 12:52] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:14, 02:09](1920 MB) + +PASS -- COMPILE 'atmaero_intel' [12:03, 12:03] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:31, 04:32](1995 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:14, 05:15](1776 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:06, 05:17](1792 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:53, 04:53] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:37, 21:00](4562 MB) SYNOPSIS: -Starting Date/Time: 20240610 08:53:16 -Ending Date/Time: 20240610 10:50:24 -Total Time: 01h:57m:39s +Starting Date/Time: 20240623 10:06:52 +Ending Date/Time: 20240623 13:50:59 +Total Time: 03h:44m:40s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index c13d1e7a23..61c0a827cc 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,22 +1,22 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -cfa2f75f86e39595b43e01c4b9e6f5d4b94c2527 +63b2c97ab37b3fc31677e2899885a18e74d3b165 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - d406c7e205bd62913eea0bc87bed1aeb63eb2f83 CICE-interface/CICE (CICE6.0.0-449-gd406c7e) + 9733e45c9219eba27a7632ddc0de5b338cca6b5d CICE-interface/CICE (CICE6.0.0-457-g9733e45) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 07c26d1efae47445e4c36ff98942494788e7dc49 FV3 (heads/develop) - ab195d5026ca4c221b6cbb3888c8ae92d711f89a FV3/atmos_cubed_sphere (201912_public_release-397-gab195d5) + 4fd5f0ef24fe34e3ef81b78af0686b1746c68f82 FV3 (remotes/origin/HEAD-1-g4fd5f0e) + a6fdff72c959b8bb5bc024187bbef16ea266be15 FV3/atmos_cubed_sphere (201912_public_release-399-ga6fdff7) ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -36,238 +36,238 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240614 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67370 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_40229 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [35:56, 34:56] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [58:16, 01:33](3095 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:27, 12:04] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:46, 01:42](1823 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [03:53, 01:38](1859 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [03:53, 01:34](985 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:47, 02:04](1800 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:48, 29:26] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [04:24, 00:44](1818 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:46] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:54, 02:07](1832 MB) - -PASS -- COMPILE 's2swa_intel' [23:44, 23:09] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:28, 01:26](3129 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:28, 01:42](3127 MB) -PASS -- TEST 'cpld_restart_p8_intel' [02:14, 01:49](3062 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:28, 01:16](3148 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [02:14, 01:50](3081 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:28, 01:45](3362 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:28, 01:22](3124 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:29, 01:41](3072 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:28, 01:44](3130 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [10:37, 05:14](4102 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [50:13, 03:56](4252 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:28, 01:39](3109 MB) - -PASS -- COMPILE 's2sw_intel' [25:43, 25:15] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:29, 01:20](1832 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:29, 01:35](1897 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:26, 10:58] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:46, 01:53](1891 MB) - -PASS -- COMPILE 's2s_intel' [16:29, 16:00] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [17:43, 01:25](2909 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [17:43, 01:12](2907 MB) -PASS -- TEST 'cpld_restart_c48_intel' [13:46, 00:54](2304 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:42, 21:53] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:31, 01:40](3127 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [33:54, 32:59] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [00:18, 01:01](1833 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [42:53, 01:26](1006 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:54, 01:23](1796 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [24:41, 22:29] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [04:12, 01:38](1850 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [30:45, 29:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [52:00, 01:22](572 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [52:00, 00:30](1471 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [52:00, 01:25](1474 MB) -PASS -- TEST 'control_latlon_intel' [52:00, 01:21](1473 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [52:00, 01:33](1470 MB) -PASS -- TEST 'control_c48_intel' [51:59, 00:52](1589 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [51:59, 00:50](715 MB) -PASS -- TEST 'control_c192_intel' [52:00, 01:18](1584 MB) -PASS -- TEST 'control_c384_intel' [52:04, 01:16](1902 MB) -PASS -- TEST 'control_c384gdas_intel' [52:04, 02:36](1090 MB) -PASS -- TEST 'control_stochy_intel' [52:00, 01:26](568 MB) -PASS -- TEST 'control_stochy_restart_intel' [48:25, 01:01](333 MB) -PASS -- TEST 'control_lndp_intel' [52:00, 00:25](525 MB) -PASS -- TEST 'control_iovr4_intel' [52:00, 00:47](527 MB) -PASS -- TEST 'control_iovr5_intel' [52:00, 00:44](526 MB) -PASS -- TEST 'control_p8_intel' [52:00, 01:44](1768 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [52:00, 02:07](1766 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [52:00, 02:05](1766 MB) -PASS -- TEST 'control_restart_p8_intel' [46:27, 00:55](918 MB) -PASS -- TEST 'control_noqr_p8_intel' [52:00, 01:45](1762 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [46:26, 01:38](907 MB) -PASS -- TEST 'control_decomp_p8_intel' [52:00, 01:34](1761 MB) -PASS -- TEST 'control_2threads_p8_intel' [52:00, 01:55](1853 MB) -PASS -- TEST 'control_p8_lndp_intel' [52:00, 00:57](1762 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [52:00, 02:00](1829 MB) -PASS -- TEST 'control_p8_mynn_intel' [52:00, 01:55](1779 MB) -PASS -- TEST 'merra2_thompson_intel' [52:00, 01:54](1777 MB) -PASS -- TEST 'regional_control_intel' [50:31, 01:04](852 MB) -PASS -- TEST 'regional_restart_intel' [43:47, 00:17](848 MB) -PASS -- TEST 'regional_decomp_intel' [49:30, 00:36](852 MB) -PASS -- TEST 'regional_2threads_intel' [48:20, 00:46](900 MB) -PASS -- TEST 'regional_noquilt_intel' [48:18, 01:11](1174 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [47:58, 01:08](848 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [47:16, 01:06](851 MB) -PASS -- TEST 'regional_wofs_intel' [46:58, 00:48](1579 MB) - -PASS -- COMPILE 'rrfs_intel' [32:46, 32:28] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [46:51, 01:30](911 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [46:50, 00:59](1093 MB) -PASS -- TEST 'rap_decomp_intel' [46:27, 01:15](911 MB) -PASS -- TEST 'rap_2threads_intel' [46:27, 01:41](999 MB) -PASS -- TEST 'rap_restart_intel' [37:44, 01:11](781 MB) -PASS -- TEST 'rap_sfcdiff_intel' [46:22, 01:48](910 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [46:10, 01:17](910 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [37:01, 01:17](781 MB) -PASS -- TEST 'hrrr_control_intel' [46:09, 01:11](906 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [46:04, 00:59](906 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [45:59, 01:23](988 MB) -PASS -- TEST 'hrrr_control_restart_intel' [40:53, 01:01](735 MB) -PASS -- TEST 'rrfs_v1beta_intel' [45:39, 02:15](903 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [45:16, 01:14](1872 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:12, 00:22](1859 MB) - -PASS -- COMPILE 'csawmg_intel' [35:52, 34:34] -PASS -- TEST 'control_csawmg_intel' [41:52, 00:24](871 MB) -PASS -- TEST 'control_ras_intel' [41:52, 00:50](565 MB) - -PASS -- COMPILE 'wam_intel' [30:48, 29:54] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [40:43, 00:51](1568 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [28:44, 28:01] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [41:43, 01:54](1771 MB) -PASS -- TEST 'regional_control_faster_intel' [41:42, 00:24](850 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [28:42, 26:58] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [39:46, 01:16](1486 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [39:46, 01:24](1485 MB) -PASS -- TEST 'control_stochy_debug_intel' [39:46, 00:47](694 MB) -PASS -- TEST 'control_lndp_debug_intel' [39:46, 01:07](691 MB) -PASS -- TEST 'control_csawmg_debug_intel' [39:46, 00:27](997 MB) -PASS -- TEST 'control_ras_debug_intel' [39:46, 01:04](702 MB) -PASS -- TEST 'control_diag_debug_intel' [39:27, 01:15](1550 MB) -PASS -- TEST 'control_debug_p8_intel' [39:08, 00:53](1790 MB) -PASS -- TEST 'regional_debug_intel' [39:06, 00:32](879 MB) -PASS -- TEST 'rap_control_debug_intel' [38:59, 00:53](1074 MB) -PASS -- TEST 'hrrr_control_debug_intel' [37:58, 01:01](1065 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [37:28, 00:51](1070 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [37:25, 00:48](1073 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [37:23, 00:52](1070 MB) -PASS -- TEST 'rap_diag_debug_intel' [37:01, 00:30](1155 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [36:59, 00:34](1072 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [36:38, 00:16](1077 MB) -PASS -- TEST 'rap_lndp_debug_intel' [36:23, 00:33](1074 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [36:01, 00:51](1072 MB) -PASS -- TEST 'rap_noah_debug_intel' [35:15, 00:47](1069 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [35:15, 00:42](1081 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [35:14, 00:36](1068 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [35:05, 00:55](1068 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [34:56, 00:30](1077 MB) -PASS -- TEST 'rap_flake_debug_intel' [34:50, 00:28](1071 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [34:41, 01:38](1079 MB) - -PASS -- COMPILE 'wam_debug_intel' [17:32, 16:26] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [45:00, 01:06](1579 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:44, 23:37] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [34:29, 01:34](956 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [34:21, 01:37](792 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [34:11, 01:48](786 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [34:00, 01:37](855 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [33:40, 01:58](845 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [32:50, 01:23](788 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [22:54, 01:20](690 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [24:54, 01:01](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [32:53, 32:20] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [27:14, 00:36](1004 MB) -PASS -- TEST 'conus13km_2threads_intel' [22:16, 00:51](1012 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [22:15, 00:38](886 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:31, 15:13] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [42:44, 01:05](809 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [22:45, 22:08] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [29:15, 01:04](962 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [29:15, 01:09](952 MB) -PASS -- TEST 'conus13km_debug_intel' [29:15, 01:34](1041 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [29:15, 01:22](715 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [29:16, 00:59](1045 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [29:15, 00:35](1112 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [18:39, 17:56] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [30:19, 00:46](977 MB) - -PASS -- COMPILE 'hafsw_intel' [17:37, 17:17] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [29:17, 01:34](619 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [29:17, 01:00](964 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [29:15, 02:06](657 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [29:15, 02:18](691 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:16, 02:15](709 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [29:15, 01:19](391 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [28:07, 02:02](403 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [27:55, 01:35](285 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:50, 02:08](374 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [27:44, 01:19](421 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [27:35, 01:47](411 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [26:19, 01:31](493 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [24:56, 01:01](312 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [17:32, 16:53] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:46, 01:23](506 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [30:48, 30:09] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:07, 01:41](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:07, 01:32](711 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:29, 14:13] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [24:41, 01:30](711 MB) - -PASS -- COMPILE 'hafs_all_intel' [21:35, 20:23] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [19:08, 02:08](660 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:08, 02:09](648 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:06, 00:27](882 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:27, 11:54] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [24:15, 00:46](1830 MB) - -PASS -- COMPILE 'atml_intel' [23:37, 23:21] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [11:27, 09:49] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [16:30, 14:31] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:44, 01:07](3025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [12:44, 01:32](2906 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:44, 01:25](2917 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:20, 05:52] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:55, 00:54](4436 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:31, 16:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [48:12, 01:09](3095 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:27, 11:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [52:16, 02:32](1820 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [33:09, 01:49](1848 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [33:05, 01:30](983 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:17, 02:15](1806 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:58, 40:24] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:40, 00:38](1821 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:19, 04:39] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [59:25, 01:59](1831 MB) + +PASS -- COMPILE 's2swa_intel' [13:27, 11:12] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [53:16, 01:28](3134 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [53:16, 01:53](3127 MB) +PASS -- TEST 'cpld_restart_p8_intel' [43:55, 01:06](3062 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [53:16, 01:38](3149 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [43:55, 01:57](3081 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [53:16, 01:04](3361 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [53:16, 01:31](3122 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [53:17, 01:30](3073 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [53:16, 01:56](3129 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [53:25, 03:57](4110 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [30:24, 04:14](4254 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [53:16, 01:57](3108 MB) + +PASS -- COMPILE 's2sw_intel' [33:47, 31:53] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [31:57, 01:29](1837 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [30:12, 02:05](1895 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [33:54, 31:52] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [30:12, 01:05](1894 MB) + +PASS -- COMPILE 's2s_intel' [24:37, 22:29] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [42:06, 01:02](2907 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [42:06, 00:46](2907 MB) +PASS -- TEST 'cpld_restart_c48_intel' [37:03, 01:01](2302 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:33, 18:23] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [46:10, 02:11](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:28, 11:53] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:15, 01:51](1830 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [33:47, 01:47](1006 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:48, 01:42](1800 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:24, 08:33] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [49:00, 01:01](1845 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [19:35, 17:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [27:04, 00:40](568 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [27:04, 00:47](1469 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:03, 00:45](1471 MB) +PASS -- TEST 'control_latlon_intel' [26:51, 00:37](1468 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:54, 01:02](1472 MB) +PASS -- TEST 'control_c48_intel' [25:47, 00:27](1588 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [25:41, 01:24](713 MB) +PASS -- TEST 'control_c192_intel' [25:04, 00:30](1592 MB) +PASS -- TEST 'control_c384_intel' [25:08, 02:02](1911 MB) +PASS -- TEST 'control_c384gdas_intel' [25:08, 02:07](1090 MB) +PASS -- TEST 'control_stochy_intel' [25:00, 00:22](531 MB) +PASS -- TEST 'control_stochy_restart_intel' [20:22, 01:07](333 MB) +PASS -- TEST 'control_lndp_intel' [24:59, 00:29](527 MB) +PASS -- TEST 'control_iovr4_intel' [24:59, 00:56](526 MB) +PASS -- TEST 'control_iovr5_intel' [24:59, 00:59](524 MB) +PASS -- TEST 'control_p8_intel' [24:58, 01:51](1765 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [24:58, 01:53](1770 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [24:52, 01:56](1767 MB) +PASS -- TEST 'control_restart_p8_intel' [17:23, 01:08](917 MB) +PASS -- TEST 'control_noqr_p8_intel' [23:58, 01:00](1764 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [16:54, 01:11](922 MB) +PASS -- TEST 'control_decomp_p8_intel' [23:51, 00:58](1764 MB) +PASS -- TEST 'control_2threads_p8_intel' [21:31, 00:59](1860 MB) +PASS -- TEST 'control_p8_lndp_intel' [20:43, 01:09](1771 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [20:30, 02:01](1820 MB) +PASS -- TEST 'control_p8_mynn_intel' [20:21, 02:05](1781 MB) +PASS -- TEST 'merra2_thompson_intel' [20:13, 01:47](1779 MB) +PASS -- TEST 'regional_control_intel' [20:11, 00:15](851 MB) +PASS -- TEST 'regional_restart_intel' [13:24, 00:50](852 MB) +PASS -- TEST 'regional_decomp_intel' [20:05, 00:59](853 MB) +PASS -- TEST 'regional_2threads_intel' [19:59, 00:22](906 MB) +PASS -- TEST 'regional_noquilt_intel' [19:53, 00:47](1176 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [19:32, 00:35](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [19:22, 00:26](848 MB) +PASS -- TEST 'regional_wofs_intel' [19:17, 01:13](1578 MB) + +PASS -- COMPILE 'rrfs_intel' [21:37, 20:34] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [19:16, 01:15](916 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [19:06, 00:51](1094 MB) +PASS -- TEST 'rap_decomp_intel' [17:24, 01:30](913 MB) +PASS -- TEST 'rap_2threads_intel' [17:24, 01:48](1000 MB) +PASS -- TEST 'rap_restart_intel' [08:49, 01:16](782 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:52, 01:21](912 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [16:49, 01:03](908 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:32, 02:06](784 MB) +PASS -- TEST 'hrrr_control_intel' [15:58, 01:23](905 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [15:52, 01:13](909 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [15:36, 01:07](985 MB) +PASS -- TEST 'hrrr_control_restart_intel' [09:32, 01:06](735 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:20, 02:01](907 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:52, 01:00](1869 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:40, 01:20](1859 MB) + +PASS -- COMPILE 'csawmg_intel' [19:37, 18:04] +PASS -- TEST 'control_csawmg_intel' [13:32, 00:52](873 MB) +PASS -- TEST 'control_ras_intel' [13:06, 00:29](566 MB) + +PASS -- COMPILE 'wam_intel' [12:30, 09:35] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [36:29, 01:15](1565 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:36, 18:56] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [12:57, 01:52](1774 MB) +PASS -- TEST 'regional_control_faster_intel' [12:21, 00:42](851 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:27, 10:57] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [33:42, 00:32](1481 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [33:42, 01:26](1485 MB) +PASS -- TEST 'control_stochy_debug_intel' [33:42, 01:16](689 MB) +PASS -- TEST 'control_lndp_debug_intel' [33:42, 01:21](690 MB) +PASS -- TEST 'control_csawmg_debug_intel' [33:42, 00:46](998 MB) +PASS -- TEST 'control_ras_debug_intel' [33:42, 01:19](696 MB) +PASS -- TEST 'control_diag_debug_intel' [33:42, 01:28](1551 MB) +PASS -- TEST 'control_debug_p8_intel' [33:42, 01:14](1790 MB) +PASS -- TEST 'regional_debug_intel' [33:41, 00:12](877 MB) +PASS -- TEST 'rap_control_debug_intel' [33:42, 01:04](1075 MB) +PASS -- TEST 'hrrr_control_debug_intel' [33:42, 01:07](1070 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [33:42, 00:36](1074 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [33:42, 00:39](1070 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [33:42, 00:41](1072 MB) +PASS -- TEST 'rap_diag_debug_intel' [33:42, 01:25](1155 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [33:42, 01:02](1073 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [33:42, 00:57](1076 MB) +PASS -- TEST 'rap_lndp_debug_intel' [33:42, 01:02](1076 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [33:42, 00:26](1072 MB) +PASS -- TEST 'rap_noah_debug_intel' [33:42, 00:46](1070 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:11, 01:16](1070 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:10, 01:10](1066 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:54, 00:28](1068 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:50, 00:41](1077 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:41, 00:43](1075 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:37, 01:51](1078 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:28, 10:24] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:58, 01:15](1579 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:29, 11:36] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:49, 01:01](957 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:02, 02:10](796 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:35, 02:35](785 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:32, 01:14](856 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:28, 02:27](846 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:37, 02:04](789 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [00:37, 01:21](692 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:33, 00:20](670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:44, 22:53] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:59, 01:17](1007 MB) +PASS -- TEST 'conus13km_2threads_intel' [59:04, 00:17](1006 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [58:21, 00:35](882 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:36, 15:50] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:03, 00:41](810 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:24, 07:41] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:32, 00:21](953 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 00:28](954 MB) +PASS -- TEST 'conus13km_debug_intel' [05:42, 00:25](1041 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [05:34, 00:23](718 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [04:32, 01:06](1047 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [04:00, 00:23](1112 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [22:41, 20:28] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [58:09, 00:48](982 MB) + +PASS -- COMPILE 'hafsw_intel' [16:31, 12:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:00, 01:30](615 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [03:45, 00:32](968 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [03:39, 01:48](658 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [03:32, 02:22](695 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [03:24, 02:22](710 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [03:05, 01:07](388 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:32, 01:50](401 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [02:19, 01:18](294 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [01:49, 02:17](373 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [01:34, 00:51](415 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [00:54, 01:32](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [00:36, 01:30](489 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [00:16, 01:27](324 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:24, 06:51] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [00:01, 01:27](515 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [27:46, 23:16] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [59:31, 01:23](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [58:05, 01:33](709 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:35, 16:45] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [57:56, 00:58](707 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:26, 09:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [56:58, 01:35](661 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:50, 01:31](646 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [55:01, 00:24](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [22:39, 19:55] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [53:53, 01:34](1826 MB) + +PASS -- COMPILE 'atml_intel' [20:37, 18:03] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [15:35, 13:22] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [11:29, 09:57] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [46:32, 01:52](3026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [46:25, 01:19](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [46:24, 01:02](2921 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:29, 10:29] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [40:59, 01:19](4436 MB) SYNOPSIS: -Starting Date/Time: 20240617 17:25:27 -Ending Date/Time: 20240617 19:04:51 -Total Time: 01h:40m:14s +Starting Date/Time: 20240624 17:52:50 +Ending Date/Time: 20240624 20:08:42 +Total Time: 02h:16m:31s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/parm/ufs.configure.datm_cdeps.IN b/tests/parm/ufs.configure.datm_cdeps.IN index b69d230f2c..afaa2f98cf 100644 --- a/tests/parm/ufs.configure.datm_cdeps.IN +++ b/tests/parm/ufs.configure.datm_cdeps.IN @@ -119,6 +119,7 @@ ALLCOMP_attributes:: restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] coldair_outbreak_mod = .false. flds_wiso = .false. diff --git a/tests/parm/ufs.configure.hafs_atm_docn.IN b/tests/parm/ufs.configure.hafs_atm_docn.IN index 5f5aebefc0..c5d5304eb6 100644 --- a/tests/parm/ufs.configure.hafs_atm_docn.IN +++ b/tests/parm/ufs.configure.hafs_atm_docn.IN @@ -91,6 +91,7 @@ ALLCOMP_attributes:: restart_n = 6 restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] orb_eccen = 1.e36 orb_iyear = 2000 diff --git a/tests/parm/ufs.configure.hafs_atm_ocn.IN b/tests/parm/ufs.configure.hafs_atm_ocn.IN index 04404e63a4..8b16fd5ef7 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn.IN @@ -120,6 +120,7 @@ ALLCOMP_attributes:: restart_n = 6 restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] orb_eccen = 1.e36 orb_iyear = 2000 diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN index a4398c369b..c9cc9d0fe2 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN @@ -133,6 +133,7 @@ ALLCOMP_attributes:: restart_n = 6 restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] orb_eccen = 1.e36 orb_iyear = 2000 diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN index dd24683169..f1b2bd18ca 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN @@ -137,6 +137,7 @@ ALLCOMP_attributes:: restart_n = 6 restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] orb_eccen = 1.e36 orb_iyear = 2000 diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN index 673d864573..2a57c59cf3 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN @@ -123,6 +123,7 @@ ALLCOMP_attributes:: restart_n = 3 restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] orb_eccen = 1.e36 orb_iyear = 2000 diff --git a/tests/parm/ufs.configure.hafs_atm_wav.IN b/tests/parm/ufs.configure.hafs_atm_wav.IN index b57d6c685d..9adfb9ed85 100644 --- a/tests/parm/ufs.configure.hafs_atm_wav.IN +++ b/tests/parm/ufs.configure.hafs_atm_wav.IN @@ -95,6 +95,7 @@ ALLCOMP_attributes:: restart_n = 6 restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] orb_eccen = 1.e36 orb_iyear = 2000 diff --git a/tests/parm/ufs.configure.s2s.IN b/tests/parm/ufs.configure.s2s.IN index 3efa42e6fe..9ff939a6c7 100644 --- a/tests/parm/ufs.configure.s2s.IN +++ b/tests/parm/ufs.configure.s2s.IN @@ -107,6 +107,7 @@ ALLCOMP_attributes:: restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] stop_n = @[FHMAX] stop_option = nhours diff --git a/tests/parm/ufs.configure.s2s_aoflux_esmf.IN b/tests/parm/ufs.configure.s2s_aoflux_esmf.IN index d1be7c7b86..c5c2705e03 100644 --- a/tests/parm/ufs.configure.s2s_aoflux_esmf.IN +++ b/tests/parm/ufs.configure.s2s_aoflux_esmf.IN @@ -122,6 +122,7 @@ ALLCOMP_attributes:: restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] eps_imesh = @[eps_imesh] stop_n = @[FHMAX] diff --git a/tests/parm/ufs.configure.s2s_esmf.IN b/tests/parm/ufs.configure.s2s_esmf.IN index 1b164f1e8b..3161e4891f 100644 --- a/tests/parm/ufs.configure.s2s_esmf.IN +++ b/tests/parm/ufs.configure.s2s_esmf.IN @@ -115,6 +115,7 @@ ALLCOMP_attributes:: restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] stop_n = @[FHMAX] stop_option = nhours diff --git a/tests/parm/ufs.configure.s2sa.IN b/tests/parm/ufs.configure.s2sa.IN index 419a11f6c5..f49831094c 100644 --- a/tests/parm/ufs.configure.s2sa.IN +++ b/tests/parm/ufs.configure.s2sa.IN @@ -118,6 +118,7 @@ ALLCOMP_attributes:: restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] stop_n = @[FHMAX] stop_option = nhours diff --git a/tests/parm/ufs.configure.s2sa_esmf.IN b/tests/parm/ufs.configure.s2sa_esmf.IN index bac867307e..3921f3881b 100644 --- a/tests/parm/ufs.configure.s2sa_esmf.IN +++ b/tests/parm/ufs.configure.s2sa_esmf.IN @@ -123,6 +123,7 @@ ALLCOMP_attributes:: restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] stop_n = @[FHMAX] stop_option = nhours diff --git a/tests/parm/ufs.configure.s2sw.IN b/tests/parm/ufs.configure.s2sw.IN index 95f35864bf..1ccf32fe09 100644 --- a/tests/parm/ufs.configure.s2sw.IN +++ b/tests/parm/ufs.configure.s2sw.IN @@ -124,6 +124,7 @@ ALLCOMP_attributes:: restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] stop_n = @[FHMAX] stop_option = nhours diff --git a/tests/parm/ufs.configure.s2sw_esmf.IN b/tests/parm/ufs.configure.s2sw_esmf.IN index e62fca65af..a9eed48546 100644 --- a/tests/parm/ufs.configure.s2sw_esmf.IN +++ b/tests/parm/ufs.configure.s2sw_esmf.IN @@ -127,6 +127,7 @@ ALLCOMP_attributes:: restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] stop_n = @[FHMAX] stop_option = nhours diff --git a/tests/parm/ufs.configure.s2sw_fast_esmf.IN b/tests/parm/ufs.configure.s2sw_fast_esmf.IN index 6338a000c8..3d7df9de69 100644 --- a/tests/parm/ufs.configure.s2sw_fast_esmf.IN +++ b/tests/parm/ufs.configure.s2sw_fast_esmf.IN @@ -127,6 +127,7 @@ ALLCOMP_attributes:: restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] stop_n = @[FHMAX] stop_option = nhours diff --git a/tests/parm/ufs.configure.s2swa.IN b/tests/parm/ufs.configure.s2swa.IN index 7f6627ca37..a1bb9f95a6 100644 --- a/tests/parm/ufs.configure.s2swa.IN +++ b/tests/parm/ufs.configure.s2swa.IN @@ -133,6 +133,7 @@ ALLCOMP_attributes:: restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] stop_n = @[FHMAX] stop_option = nhours diff --git a/tests/parm/ufs.configure.s2swa_esmf.IN b/tests/parm/ufs.configure.s2swa_esmf.IN index 69156317e3..820da8ee0f 100644 --- a/tests/parm/ufs.configure.s2swa_esmf.IN +++ b/tests/parm/ufs.configure.s2swa_esmf.IN @@ -139,6 +139,7 @@ ALLCOMP_attributes:: restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] stop_n = @[FHMAX] stop_option = nhours diff --git a/tests/parm/ufs.configure.s2swa_fast_esmf.IN b/tests/parm/ufs.configure.s2swa_fast_esmf.IN index ce8c6607d3..e77f9266bc 100644 --- a/tests/parm/ufs.configure.s2swa_fast_esmf.IN +++ b/tests/parm/ufs.configure.s2swa_fast_esmf.IN @@ -140,6 +140,7 @@ ALLCOMP_attributes:: restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] stop_n = @[FHMAX] stop_option = nhours diff --git a/tests/rt.conf b/tests/rt.conf index 6e731bfec2..9c08ebeea9 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -36,7 +36,7 @@ COMPILE | s2swa_32bit_pdlib_sfs | intel | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DC RUN | cpld_control_sfs | - noaacloud | baseline | COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 | -RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline | +RUN | cpld_debug_gfsv17 | - noaacloud jet derecho | baseline | COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | RUN | cpld_control_p8 | - noaacloud | baseline | diff --git a/tests/rt.sh b/tests/rt.sh index ee899c2f17..8d2ed7a467 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -765,12 +765,9 @@ case ${MACHINE_ID} in ;; orion) echo "rt.sh: Setting up orion..." - module load git/2.28.0 - module load gcc/10.2.0 - module load python/3.9.2 if [[ "${ROCOTO:-false}" == true ]] ; then - module load contrib rocoto + module load contrib ruby/3.2.3 rocoto/1.3.7 ROCOTO_SCHEDULER="slurm" fi @@ -791,6 +788,8 @@ 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 ;; hercules) echo "rt.sh: Setting up hercules..."