diff --git a/.github/scripts/check_log_warnings_remarks.py b/.github/scripts/check_log_warnings_remarks.py
index e8a6379831..2571c72a8b 100644
--- a/.github/scripts/check_log_warnings_remarks.py
+++ b/.github/scripts/check_log_warnings_remarks.py
@@ -34,6 +34,10 @@ def call_API(self, endpoint):
api_call = APICall(endpoint)
response = requests.get(api_call.url, headers=api_call.header)
+ if response.status_code != 200:
+ logging.warning(response)
+ print(response)
+ sys.exit(1)
response = json.loads(response.text)
return response
@@ -96,15 +100,15 @@ def _get_pr_data(self, commit):
def compare_results(self, pr_log, base_log):
"""Compare warnings/remarks for PR head and base commits to determine whether warnings/remarks have increased."""
- increases = {'warnings': [], 'remarks': []}
+ increases = {'warnings': {}, 'remarks': {}}
for test in pr_log:
# Check warnings
if pr_log[test][0] > base_log[test][0]:
- increases['warnings'].append(test)
+ increases['warnings'].update({test: pr_log[test][0] - base_log[test][0]})
# Check remarks
if pr_log[test][1] > base_log[test][1]:
- increases['remarks'].append(test)
+ increases['remarks'].update({test: pr_log[test][1] - base_log[test][1]})
return increases
@@ -118,7 +122,9 @@ def print_html_results(dict):
for category in results.keys():
if results[category]:
mdFile.write(f"\n
{machine.upper()}
\n")
- unordered_list = [f"**{category.title()}:**", dict[machine][category]]
+ unordered_list = [f"**{category.title()}:**", []]
+ for test, value in dict[machine][category].items():
+ unordered_list[1].append(f"{test}: {value}")
mdFile.new_list(unordered_list, marked_with='*')
return mdFile.get_md_text()
diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6
index b4d9a23218..72563d6198 160000
--- a/MOM6-interface/MOM6
+++ b/MOM6-interface/MOM6
@@ -1 +1 @@
-Subproject commit b4d9a232181b3057587f30362876a9626abf7f98
+Subproject commit 72563d619896492a9c61e2b7cdbe6a9cdbbd7920
diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake
index 398830789b..37a1314405 100644
--- a/MOM6-interface/mom6_files.cmake
+++ b/MOM6-interface/mom6_files.cmake
@@ -336,7 +336,7 @@ list(APPEND mom6_nuopc_src_files
MOM6/config_src/drivers/nuopc_cap/mom_cap_time.F90
MOM6/config_src/drivers/nuopc_cap/mom_ocean_model_nuopc.F90
MOM6/config_src/drivers/nuopc_cap/mom_surface_forcing_nuopc.F90
- MOM6/config_src/drivers/nuopc_cap/mom_ufs_trace_wrapper.F90
+ MOM6/config_src/drivers/nuopc_cap/mom_cap_profiling.F90
MOM6/config_src/drivers/nuopc_cap/mom_inline_mod.F90
MOM6/config_src/drivers/nuopc_cap/mom_cap_outputlog.F90
MOM6/config_src/drivers/unit_tests/test_MOM_ANN.F90
diff --git a/UFSATM b/UFSATM
index 03731b3e61..939d1ddee2 160000
--- a/UFSATM
+++ b/UFSATM
@@ -1 +1 @@
-Subproject commit 03731b3e610ff22e7dad6830b8ce35df1b89715f
+Subproject commit 939d1ddee2b833a557459cca002989b20411c70b
diff --git a/tests/logs/OpnReqTests_control_p8_ursa.log b/tests/logs/OpnReqTests_control_p8_ursa.log
index 967edcb59f..94f1219968 100644
--- a/tests/logs/OpnReqTests_control_p8_ursa.log
+++ b/tests/logs/OpnReqTests_control_p8_ursa.log
@@ -1,9 +1,9 @@
-Wed Mar 4 23:01:31 UTC 2026
+Mon Mar 9 18:53:40 UTC 2026
Start Operation Requirement Test
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170967/bit_base_bit_base
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2068788/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 137.791725
- 0: The maximum resident set size (KB) = 2588120
+ 0: The total amount of wall time = 135.999336
+ 0: The maximum resident set size (KB) = 2593604
Test bit_base PASS
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170967/dbg_base_dbg_base
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2068788/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 = 1232.071527
- 0: The maximum resident set size (KB) = 2550812
+ 0: The total amount of wall time = 1240.024205
+ 0: The maximum resident set size (KB) = 2526908
Test dbg_base PASS
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170967/dcp_dcp
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2068788/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 523.259799
- 0: The maximum resident set size (KB) = 2515228
+ 0: The total amount of wall time = 122.770360
+ 0: The maximum resident set size (KB) = 2505984
Test dcp PASS
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170967/mpi_mpi
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2068788/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 112.970449
- 0: The maximum resident set size (KB) = 2503888
+ 0: The total amount of wall time = 116.808086
+ 0: The maximum resident set size (KB) = 2507000
Test mpi PASS
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170967/rst_rst
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2068788/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 119.124706
- 0: The maximum resident set size (KB) = 2503936
+ 0: The total amount of wall time = 115.108826
+ 0: The maximum resident set size (KB) = 2509156
Test rst PASS
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170967/std_base_std_base
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2068788/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 122.939120
- 0: The maximum resident set size (KB) = 2508276
+ 0: The total amount of wall time = 113.171843
+ 0: The maximum resident set size (KB) = 2521228
Test std_base PASS
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170967/thr_thr
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2068788/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 336.428836
- 0: The maximum resident set size (KB) = 2514812
+ 0: The total amount of wall time = 128.508869
+ 0: The maximum resident set size (KB) = 2494664
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Mar 5 00:21:31 UTC 2026
-Elapsed time: 01h:20m:00s. Have a nice day!
+Mon Mar 9 20:02:52 UTC 2026
+Elapsed time: 01h:09m:12s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_ursa.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_ursa.log
index a131cabd82..6d6cd663b8 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_ursa.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_ursa.log
@@ -1,9 +1,9 @@
-Wed Mar 4 23:01:31 UTC 2026
+Mon Mar 9 18:53:41 UTC 2026
Start Operation Requirement Test
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170954/dbg_base_dbg_base
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2069016/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 3026.477143
- 0: The maximum resident set size (KB) = 3024252
+ 0: The total amount of wall time = 3024.336448
+ 0: The maximum resident set size (KB) = 3046392
Test dbg_base PASS
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170954/rst_rst
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2069016/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 284.475682
- 0: The maximum resident set size (KB) = 3002600
+ 0: The total amount of wall time = 284.303806
+ 0: The maximum resident set size (KB) = 3008196
Test rst PASS
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170954/std_base_std_base
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2069016/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 283.763951
- 0: The maximum resident set size (KB) = 2998376
+ 0: The total amount of wall time = 283.924324
+ 0: The maximum resident set size (KB) = 2997428
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Mar 5 00:27:27 UTC 2026
-Elapsed time: 01h:25m:56s. Have a nice day!
+Mon Mar 9 20:13:49 UTC 2026
+Elapsed time: 01h:20m:09s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_ursa.log b/tests/logs/OpnReqTests_regional_control_ursa.log
index 8edef56eb7..a484349fe2 100644
--- a/tests/logs/OpnReqTests_regional_control_ursa.log
+++ b/tests/logs/OpnReqTests_regional_control_ursa.log
@@ -1,9 +1,9 @@
-Wed Mar 4 23:01:31 UTC 2026
+Mon Mar 9 18:53:41 UTC 2026
Start Operation Requirement Test
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170941/bit_base_bit_base
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2069042/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 = 298.295321
- 0: The maximum resident set size (KB) = 2081192
+ 0: The total amount of wall time = 290.863931
+ 0: The maximum resident set size (KB) = 2080012
Test bit_base PASS
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170941/dcp_dcp
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2069042/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -33,14 +33,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 196.588471
- 0: The maximum resident set size (KB) = 1718536
+ 0: The total amount of wall time = 199.682059
+ 0: The maximum resident set size (KB) = 1716664
Test dcp PASS
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170941/std_base_std_base
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2069042/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -52,14 +52,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 197.293571
- 0: The maximum resident set size (KB) = 1706876
+ 0: The total amount of wall time = 198.829673
+ 0: The maximum resident set size (KB) = 1724460
Test std_base PASS
baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel
-working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1170941/thr_thr
+working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2069042/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 = 197.396008
- 0: The maximum resident set size (KB) = 1723320
+ 0: The total amount of wall time = 197.142608
+ 0: The maximum resident set size (KB) = 1711592
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Mar 4 23:43:03 UTC 2026
-Elapsed time: 00h:41m:32s. Have a nice day!
+Mon Mar 9 19:34:19 UTC 2026
+Elapsed time: 00h:40m:38s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index 78c877076c..bb7f6cee7a 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,7 +1,7 @@
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-600eae9361aa8f352bb3af6cf064ea5ef5489219
+ddb458054cc960f8fc5d2227de90f67659603233
Submodule hashes used in testing:
fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386)
@@ -15,13 +15,13 @@ Submodule hashes used in testing:
bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777)
05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a)
c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02)
- b4d9a232181b3057587f30362876a9626abf7f98 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10784-gb4d9a2321)
- 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7)
+ 08529ba87ea4ee6403446afc0c8b14f744f79c58 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10790-g08529ba87)
+ c38ddb7ebdd2d58c517b63a99bbdc8e348732db2 MOM6-interface/MOM6/pkg/CVMix-src (c38ddb7)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc)
- 4c48d84186f19336186127a63d36f68f5b8be917 UFSATM (remotes/origin/Zhao_Carr_cloud)
+ 5e7015b492169be892e4ad465cc9c71943bc8242 UFSATM (remotes/origin/feature/fv3_doxy_doc)
22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5)
- 90f266d4926a85f8ff201addee16a8e63b9a5069 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6688-g90f266d4)
+ b09af5da7617014c48a49c0476cc5481a7150f4c UFSATM/ccpp/physics (EP4-2243-gb09af5da)
c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (v2.1.3~3)
41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd)
0c00ba42a222a26754348c6f103a8e97d26f33e7 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (0c00ba4)
@@ -42,274 +42,274 @@ 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-20260225
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3111130
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_254234
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [19:33, 16:26] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [26:40, 06:34](3321 MB)
-PASS -- TEST 'cpld_control_gefs_intel' [46:40, 16:47](4082 MB)
-PASS -- TEST 'cpld_restart_gefs_intel' [24:48, 07:45](3886 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:30, 16:11] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [20:40, 13:13](1897 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:16, 14:05](1944 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [15:16, 06:19](1070 MB)
-PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:20, 06:17](1931 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:40, 15:26](1874 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_intel' [17:30, 14:48] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [17:15, 11:52](2195 MB)
-PASS -- TEST 'cpld_restart_sfs_intel' [18:38, 06:09](1357 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:19, 04:35] ( 355 warnings 1 remarks )
-PASS -- TEST 'cpld_debug_sfs_intel' [18:23, 12:51](2242 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:05] ( 355 warnings 324 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:03, 20:12](1938 MB)
-
-PASS -- COMPILE 's2swa_intel' [19:32, 16:22] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [24:31, 08:12](3354 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:32, 08:17](3355 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [10:57, 04:45](3234 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [23:26, 08:23](3373 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [11:22, 04:45](3252 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [15:22, 07:29](3560 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [28:35, 08:00](3346 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [20:30, 06:47](3292 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [28:42, 08:19](3355 MB)
-
-PASS -- COMPILE 's2swal_intel' [19:31, 16:31] ( 1 warnings 2 remarks )
-PASS -- TEST 'cpld_control_p8_lnd_intel' [28:43, 08:27](3357 MB)
-PASS -- TEST 'cpld_restart_p8_lnd_intel' [10:32, 04:53](3236 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [19:24, 08:24](3345 MB)
-
-PASS -- COMPILE 's2sw_intel' [18:31, 15:22] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [10:47, 04:29](1916 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:18, 07:13](1987 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [17:31, 14:48] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:03, 05:16](1987 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:32, 15:31] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:59, 13:03](1920 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:55, 06:24](1102 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:08, 15:14](1890 MB)
-PASS -- TEST 'cpld_control_c48_5deg_intel' [09:34, 06:04](2889 MB)
-PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:39, 02:11](2898 MB)
-PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:15, 01:23](2294 MB)
-PASS -- TEST 'cpld_control_c24_5deg_intel' [05:00, 01:27](2116 MB)
-PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [05:01, 01:04](2113 MB)
-PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:47, 00:53](1449 MB)
-PASS -- TEST 'cpld_control_c24_9deg_intel' [05:00, 01:23](2114 MB)
-PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [05:00, 00:59](2112 MB)
-PASS -- TEST 'cpld_restart_c24_9deg_intel' [04:47, 00:53](1451 MB)
-PASS -- TEST 'cpld_control_c12_9deg_intel' [05:00, 01:04](2040 MB)
-PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:59, 00:51](2042 MB)
-PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:45, 00:43](1395 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:19, 04:41] ( 355 warnings 324 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:55, 24:05](1962 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:26, 10:30] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_CubedSphereGrid_intel' [17:50, 02:20](1564 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:55, 02:35](1573 MB)
-PASS -- TEST 'control_latlon_intel' [20:50, 02:36](1574 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:53, 02:35](1572 MB)
-PASS -- TEST 'control_c48_intel' [10:47, 06:21](1592 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [09:44, 05:50](715 MB)
-PASS -- TEST 'control_c48_lnd_iau_intel' [10:44, 06:27](1595 MB)
-PASS -- TEST 'control_c192_intel' [20:06, 06:59](1701 MB)
-PASS -- TEST 'control_c384_intel' [35:40, 08:31](2000 MB)
-PASS -- TEST 'control_c384gdas_intel' [45:18, 09:32](1131 MB)
-PASS -- TEST 'control_stochy_intel' [13:41, 01:51](632 MB)
-PASS -- TEST 'control_stochy_restart_intel' [05:34, 01:06](398 MB)
-PASS -- TEST 'control_lndp_intel' [13:39, 01:51](634 MB)
-PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [13:03, 02:58](914 MB)
-PASS -- TEST 'control_p8_intel' [12:26, 02:57](1852 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [10:38, 03:02](1855 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [10:09, 02:59](1857 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [10:18, 02:55](1874 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [11:39, 03:05](1883 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [10:46, 02:18](2429 MB)
-PASS -- TEST 'control_restart_p8_intel' [06:39, 01:52](1012 MB)
-PASS -- TEST 'control_noqr_p8_intel' [10:58, 02:59](1851 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [07:14, 01:49](1011 MB)
-PASS -- TEST 'control_decomp_p8_intel' [09:35, 02:55](1845 MB)
-PASS -- TEST 'control_2threads_p8_intel' [09:31, 02:51](1929 MB)
-PASS -- TEST 'control_p8_lndp_intel' [10:03, 04:55](1858 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [10:21, 04:20](1905 MB)
-PASS -- TEST 'control_p8_mynn_intel' [09:15, 03:06](1867 MB)
-PASS -- TEST 'merra2_thompson_intel' [10:38, 03:26](1855 MB)
-PASS -- TEST 'merra2_hf_thompson_intel' [10:14, 04:30](1862 MB)
-PASS -- TEST 'regional_control_intel' [08:55, 05:00](879 MB)
-PASS -- TEST 'regional_restart_intel' [07:54, 02:45](881 MB)
-PASS -- TEST 'regional_decomp_intel' [08:48, 05:20](880 MB)
-PASS -- TEST 'regional_2threads_intel' [06:50, 03:08](992 MB)
-PASS -- TEST 'regional_noquilt_intel' [08:54, 05:05](1170 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:53, 05:01](884 MB)
-PASS -- TEST 'regional_wofs_intel' [09:56, 06:35](1605 MB)
-
-PASS -- COMPILE 'atm_dyn32_rad32_intel' [13:26, 09:42] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [09:14, 04:00](1883 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:24, 08:52] ( 4 warnings 92 remarks )
-PASS -- TEST 'rap_control_intel' [08:11, 03:50](1012 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:19, 04:11](1188 MB)
-PASS -- TEST 'rap_decomp_intel' [08:28, 03:57](1014 MB)
-PASS -- TEST 'rap_2threads_intel' [08:25, 03:29](1083 MB)
-PASS -- TEST 'rap_restart_intel' [08:18, 02:09](764 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:38, 03:48](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:38, 03:47](1014 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:24, 02:09](762 MB)
-PASS -- TEST 'hrrr_control_intel' [09:29, 03:38](1010 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [08:23, 03:48](1008 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:33, 03:22](1078 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [07:37, 02:04](758 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:06, 06:43](1001 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [12:39, 08:47](1969 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:39, 08:22](1961 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:24, 08:42] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [11:02, 06:28](960 MB)
-PASS -- TEST 'control_ras_intel' [06:31, 03:25](662 MB)
-
-PASS -- COMPILE 'wam_intel' [11:23, 08:14] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_wam_intel' [17:14, 12:29](1650 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:19, 04:57] ( 490 warnings 92 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:37, 02:35](1600 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:38, 02:41](1610 MB)
-PASS -- TEST 'control_stochy_debug_intel' [06:31, 03:29](814 MB)
-PASS -- TEST 'control_lndp_debug_intel' [07:37, 03:19](817 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [08:51, 04:44](1106 MB)
-PASS -- TEST 'control_ras_debug_intel' [07:32, 03:12](820 MB)
-PASS -- TEST 'control_diag_debug_intel' [07:44, 03:09](1676 MB)
-PASS -- TEST 'control_debug_p8_intel' [09:06, 03:14](1896 MB)
-PASS -- TEST 'regional_debug_intel' [22:11, 18:21](934 MB)
-PASS -- TEST 'rap_control_debug_intel' [09:35, 05:38](1185 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [09:39, 05:35](1184 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [10:37, 05:33](1187 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [10:36, 05:37](1184 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:37, 05:47](1186 MB)
-PASS -- TEST 'rap_diag_debug_intel' [10:44, 05:51](1271 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:37, 05:47](1182 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:34, 05:43](1185 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [11:40, 05:48](1192 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:37, 05:33](1186 MB)
-PASS -- TEST 'rap_noah_debug_intel' [11:37, 05:31](1184 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [10:37, 05:31](1184 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:45, 08:48](1181 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [11:41, 05:32](1188 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [17:31, 09:38](1185 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:18, 03:27] ( 454 warnings 1 remarks )
-PASS -- TEST 'control_wam_debug_intel' [21:18, 14:40](1697 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:24, 08:21] ( 4 warnings 91 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:24, 03:51](1025 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:50, 03:08](889 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:12, 03:02](885 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:28, 03:03](934 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:51, 02:45](927 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:48, 03:15](890 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:09, 01:48](732 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:35, 01:48](726 MB)
-PASS -- TEST 'conus13km_control_intel' [06:28, 02:58](1017 MB)
-PASS -- TEST 'conus13km_2threads_intel' [07:04, 01:22](1143 MB)
-PASS -- TEST 'conus13km_decomp_intel' [08:08, 02:56](1028 MB)
-PASS -- TEST 'conus13km_restart_intel' [05:08, 01:43](686 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [12:25, 08:16] ( 4 warnings 91 remarks )
-PASS -- TEST 'conus13km_gl_inline_intel' [07:13, 02:12](698 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:25, 08:24] ( 4 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:03, 04:00](922 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [18:31, 16:14] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:15, 06:33](3323 MB)
+PASS -- TEST 'cpld_control_gefs_intel' [47:18, 16:51](4082 MB)
+PASS -- TEST 'cpld_restart_gefs_intel' [25:15, 07:46](3891 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:31, 16:19] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [27:14, 13:05](1898 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:20, 14:06](1938 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:02, 06:18](1079 MB)
+PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:18, 06:32](1934 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:17, 15:14](1875 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_intel' [17:30, 14:50] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [17:21, 11:52](2195 MB)
+PASS -- TEST 'cpld_restart_sfs_intel' [20:59, 06:14](1364 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:19, 04:33] ( 355 warnings 1 remarks )
+PASS -- TEST 'cpld_debug_sfs_intel' [18:23, 12:44](2239 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:19, 05:00] ( 355 warnings 324 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:10, 20:14](1936 MB)
+
+PASS -- COMPILE 's2swa_intel' [18:30, 16:10] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [18:14, 08:21](3356 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:54, 08:13](3355 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [12:56, 04:49](3236 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [16:12, 08:16](3373 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [14:27, 04:42](3250 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [14:29, 07:37](3557 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [16:09, 08:07](3343 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [14:29, 06:52](3290 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:43, 08:19](3355 MB)
+
+PASS -- COMPILE 's2swal_intel' [19:33, 16:42] ( 1 warnings 2 remarks )
+PASS -- TEST 'cpld_control_p8_lnd_intel' [32:38, 08:33](3358 MB)
+PASS -- TEST 'cpld_restart_p8_lnd_intel' [11:28, 04:49](3238 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [24:20, 08:22](3346 MB)
+
+PASS -- COMPILE 's2sw_intel' [17:32, 15:07] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:32, 04:40](1915 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:13, 07:19](1988 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [17:32, 14:36] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:03, 05:16](1986 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:32, 15:33] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:20, 13:06](1920 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:05, 06:18](1105 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:25, 15:21](1887 MB)
+PASS -- TEST 'cpld_control_c48_5deg_intel' [09:47, 05:57](2886 MB)
+PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [07:46, 02:07](2901 MB)
+PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:13, 01:28](2305 MB)
+PASS -- TEST 'cpld_control_c24_5deg_intel' [05:14, 01:20](2108 MB)
+PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [05:13, 00:58](2112 MB)
+PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:46, 00:49](1448 MB)
+PASS -- TEST 'cpld_control_c24_9deg_intel' [05:13, 01:26](2107 MB)
+PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:12, 00:53](2113 MB)
+PASS -- TEST 'cpld_restart_c24_9deg_intel' [04:47, 00:46](1452 MB)
+PASS -- TEST 'cpld_control_c12_9deg_intel' [04:11, 00:58](2037 MB)
+PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:11, 00:46](2039 MB)
+PASS -- TEST 'cpld_restart_c12_9deg_intel' [05:49, 00:49](1395 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:19, 04:42] ( 355 warnings 324 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:52, 24:03](1964 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:25, 10:29] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_CubedSphereGrid_intel' [14:47, 02:21](1563 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:50, 02:39](1573 MB)
+PASS -- TEST 'control_latlon_intel' [14:40, 02:31](1573 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:48, 02:43](1573 MB)
+PASS -- TEST 'control_c48_intel' [09:53, 06:27](1593 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [09:47, 05:40](716 MB)
+PASS -- TEST 'control_c48_lnd_iau_intel' [10:45, 06:33](1593 MB)
+PASS -- TEST 'control_c192_intel' [16:00, 06:58](1701 MB)
+PASS -- TEST 'control_c384_intel' [36:35, 08:34](1987 MB)
+PASS -- TEST 'control_c384gdas_intel' [47:15, 09:35](1129 MB)
+PASS -- TEST 'control_stochy_intel' [10:38, 01:53](632 MB)
+PASS -- TEST 'control_stochy_restart_intel' [07:37, 01:08](399 MB)
+PASS -- TEST 'control_lndp_intel' [10:35, 01:55](635 MB)
+PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [11:00, 03:01](911 MB)
+PASS -- TEST 'control_p8_intel' [12:24, 02:55](1850 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [11:38, 03:08](1856 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [12:18, 02:57](1854 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [11:18, 02:53](1875 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [11:43, 03:05](1883 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [14:53, 02:18](2431 MB)
+PASS -- TEST 'control_restart_p8_intel' [06:36, 01:47](1011 MB)
+PASS -- TEST 'control_noqr_p8_intel' [10:39, 02:53](1852 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [06:14, 01:45](1012 MB)
+PASS -- TEST 'control_decomp_p8_intel' [10:46, 03:01](1843 MB)
+PASS -- TEST 'control_2threads_p8_intel' [10:39, 02:49](1938 MB)
+PASS -- TEST 'control_p8_lndp_intel' [12:04, 04:54](1856 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [13:14, 04:09](1906 MB)
+PASS -- TEST 'control_p8_mynn_intel' [12:09, 03:04](1868 MB)
+PASS -- TEST 'merra2_thompson_intel' [11:35, 03:31](1855 MB)
+PASS -- TEST 'merra2_hf_thompson_intel' [12:20, 04:31](1861 MB)
+PASS -- TEST 'regional_control_intel' [08:54, 04:58](883 MB)
+PASS -- TEST 'regional_restart_intel' [06:56, 02:48](888 MB)
+PASS -- TEST 'regional_decomp_intel' [08:50, 05:21](878 MB)
+PASS -- TEST 'regional_2threads_intel' [07:48, 03:05](991 MB)
+PASS -- TEST 'regional_noquilt_intel' [08:53, 05:00](1168 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:51, 05:05](878 MB)
+PASS -- TEST 'regional_wofs_intel' [09:56, 06:49](1606 MB)
+
+PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:24, 09:43] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [09:14, 03:56](1884 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:24, 08:50] ( 4 warnings 92 remarks )
+PASS -- TEST 'rap_control_intel' [08:31, 03:57](1014 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:18, 04:15](1180 MB)
+PASS -- TEST 'rap_decomp_intel' [08:23, 03:54](1013 MB)
+PASS -- TEST 'rap_2threads_intel' [07:33, 03:36](1084 MB)
+PASS -- TEST 'rap_restart_intel' [08:49, 02:08](763 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:08, 03:42](1010 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:22, 03:55](1014 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:21, 02:05](762 MB)
+PASS -- TEST 'hrrr_control_intel' [07:41, 03:42](1010 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:25, 03:43](1005 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:22, 03:20](1074 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [08:37, 02:11](758 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:09, 06:35](1004 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [12:41, 08:49](1967 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:40, 08:21](1958 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:24, 08:41] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [10:57, 06:26](959 MB)
+PASS -- TEST 'control_ras_intel' [07:32, 03:22](665 MB)
+
+PASS -- COMPILE 'wam_intel' [11:24, 08:17] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_wam_intel' [17:13, 12:34](1658 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:19, 04:58] ( 490 warnings 92 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:37, 02:40](1601 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:40, 02:47](1608 MB)
+PASS -- TEST 'control_stochy_debug_intel' [06:32, 03:24](813 MB)
+PASS -- TEST 'control_lndp_debug_intel' [07:33, 03:11](816 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [08:58, 04:49](1108 MB)
+PASS -- TEST 'control_ras_debug_intel' [07:32, 03:13](823 MB)
+PASS -- TEST 'control_diag_debug_intel' [07:43, 03:08](1668 MB)
+PASS -- TEST 'control_debug_p8_intel' [08:58, 03:11](1894 MB)
+PASS -- TEST 'regional_debug_intel' [22:12, 18:34](952 MB)
+PASS -- TEST 'rap_control_debug_intel' [11:37, 05:38](1185 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [10:40, 05:25](1183 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [10:37, 05:32](1186 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [11:37, 05:38](1187 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [12:38, 05:45](1180 MB)
+PASS -- TEST 'rap_diag_debug_intel' [12:47, 05:54](1271 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:38, 05:42](1182 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [11:35, 05:44](1184 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [11:36, 05:56](1188 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:37, 05:48](1185 MB)
+PASS -- TEST 'rap_noah_debug_intel' [11:36, 05:23](1185 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [12:37, 05:40](1181 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:40, 08:51](1183 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [11:37, 05:33](1188 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:30, 09:39](1192 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:18, 03:35] ( 454 warnings 1 remarks )
+PASS -- TEST 'control_wam_debug_intel' [21:22, 14:38](1698 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:24, 08:17] ( 4 warnings 91 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:22, 03:52](1041 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:41, 03:11](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:14, 03:04](887 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:29, 02:50](940 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:56, 02:45](932 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:48, 03:24](891 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:14, 01:49](730 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:35, 01:47](727 MB)
+PASS -- TEST 'conus13km_control_intel' [06:24, 02:52](1018 MB)
+PASS -- TEST 'conus13km_2threads_intel' [07:00, 01:20](1142 MB)
+PASS -- TEST 'conus13km_decomp_intel' [08:11, 02:57](1029 MB)
+PASS -- TEST 'conus13km_restart_intel' [06:04, 01:50](686 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [12:24, 08:15] ( 4 warnings 91 remarks )
+PASS -- TEST 'conus13km_gl_inline_intel' [08:12, 02:05](698 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:24, 08:26] ( 4 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:00, 04:02](922 MB)
PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 03:37] ( 327 warnings 91 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:36, 05:23](1069 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:38, 05:13](1069 MB)
-PASS -- TEST 'conus13km_debug_intel' [27:29, 23:53](1098 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [27:25, 24:09](812 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [17:10, 13:28](1194 MB)
-PASS -- TEST 'conus13km_debug_decomp_intel' [28:26, 24:48](1105 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:28, 23:55](1168 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:19, 03:32] ( 327 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:36, 05:29](1102 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:28, 12:19] ( 1 warnings 1 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [08:03, 04:33](695 MB)
-PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [13:07, 04:44](906 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:42, 03:32](1049 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:10, 11:29](784 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:06, 05:32](458 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:08, 06:39](476 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [14:06, 03:02](382 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [28:18, 07:48](419 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:51, 03:45](491 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:08, 03:44](490 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:42, 01:33](403 MB)
-PASS -- TEST 'gnv1_nested_intel' [09:07, 03:46](1694 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:26, 10:15] ( 1 warnings )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:36, 05:25](781 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:25, 09:04] ( 1 warnings )
-PASS -- TEST 'hafs_regional_docn_intel' [15:09, 06:45](750 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:11, 06:42](724 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [18:32, 13:59]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:26, 02:54](1567 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:30, 02:07](1568 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:25, 02:38](672 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:26, 02:43](670 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:26, 02:37](685 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:26, 02:54](1567 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:25, 02:49](1567 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:26, 02:44](674 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:31, 06:57](1366 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:27, 06:37](693 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:24, 02:52](1565 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:29, 05:06](4521 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [08:29, 05:04](4522 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:16, 00:55] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:40, 01:09](298 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:34, 00:59](438 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:37, 00:47](438 MB)
-
-PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:31, 14:19] ( 1 warnings 1 remarks )
-PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:36, 03:53](1906 MB)
-
-PASS -- COMPILE 'atml_intel' [15:28, 09:56] ( 9 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_intel' [09:16, 03:16](1861 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:04, 02:13](1029 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [10:24, 04:28] ( 497 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:20, 05:35](1909 MB)
-
-PASS -- COMPILE 'atmw_intel' [15:27, 09:07] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:03, 02:00](1874 MB)
-
-PASS -- COMPILE 'atmaero_intel' [20:33, 15:24] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [11:52, 04:33](3229 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [11:36, 05:17](3111 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:37, 05:22](3118 MB)
-
-PASS -- COMPILE 'atmaq_intel' [15:28, 09:05] ( 1 warnings )
-PASS -- TEST 'regional_atmaq_intel' [21:57, 14:36](2392 MB)
-PASS -- TEST 'regional_atmaq_canopy_intel' [25:58, 19:19](2450 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [10:23, 03:43] ( 471 warnings )
-PASS -- TEST 'regional_atmaq_debug_intel' [46:17, 40:15](1865 MB)
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:35, 05:31](1071 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:41, 05:14](1066 MB)
+PASS -- TEST 'conus13km_debug_intel' [28:33, 23:53](1099 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [27:29, 23:50](812 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [17:09, 13:28](1211 MB)
+PASS -- TEST 'conus13km_debug_decomp_intel' [28:19, 24:34](1091 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:27, 23:47](1168 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 03:35] ( 327 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:36, 05:26](1099 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:29, 12:17] ( 1 warnings 1 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [08:02, 04:33](698 MB)
+PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [12:05, 04:49](903 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:44, 03:36](1040 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:08, 11:31](787 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:02, 05:31](461 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:08, 06:40](467 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [11:57, 03:01](376 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [29:13, 07:48](422 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:56, 03:52](494 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:03, 03:35](495 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:38, 01:34](402 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:07, 03:40](1693 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:27, 10:28] ( 1 warnings )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:32, 05:16](772 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:26, 09:01] ( 1 warnings )
+PASS -- TEST 'hafs_regional_docn_intel' [14:08, 06:46](749 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:13, 06:47](720 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [16:29, 13:54]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:26, 03:06](1564 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:27, 01:57](1565 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:25, 02:34](685 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:27, 02:45](671 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:27, 02:42](670 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:27, 02:58](1567 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:27, 02:56](1564 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:25, 02:33](672 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:29, 07:01](1365 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:29, 06:44](680 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:25, 03:05](1567 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:28, 05:01](4521 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [08:31, 05:05](4522 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [09:21, 00:55] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:40, 01:04](302 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:33, 00:57](437 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:39, 00:44](438 MB)
+
+PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:33, 14:23] ( 1 warnings 1 remarks )
+PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:36, 03:50](1907 MB)
+
+PASS -- COMPILE 'atml_intel' [18:31, 10:03] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_intel' [09:18, 03:25](1862 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:06, 01:59](1029 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [11:23, 04:26] ( 497 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:19, 05:41](1902 MB)
+
+PASS -- COMPILE 'atmw_intel' [15:27, 09:08] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:01, 02:07](1875 MB)
+
+PASS -- COMPILE 'atmaero_intel' [22:35, 15:41] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [10:53, 04:36](3230 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [11:37, 05:25](3113 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:39, 05:28](3118 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:24, 09:03] ( 1 warnings )
+PASS -- TEST 'regional_atmaq_intel' [21:57, 14:51](2399 MB)
+PASS -- TEST 'regional_atmaq_canopy_intel' [25:59, 19:31](2452 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:18, 03:45] ( 471 warnings )
+PASS -- TEST 'regional_atmaq_debug_intel' [47:10, 40:11](1982 MB)
SYNOPSIS:
-Starting Date/Time: 20260306 14:11:14
-Ending Date/Time: 20260306 16:44:03
-Total Time: 02h:33m:19s
+Starting Date/Time: 20260310 13:16:45
+Ending Date/Time: 20260310 15:49:27
+Total Time: 02h:33m:11s
Compiles Completed: 35/35
Tests Completed: 188/188
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 2d7873a6e4..7f1bbb1c15 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-05cf0cce86866b0b91b5a6d315da6ecb8e0dc187
+29145037cde3805fe8069fea8867f045e758f4cf
Submodule hashes used in testing:
fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386)
@@ -15,13 +15,13 @@ Submodule hashes used in testing:
bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777)
05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a)
c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02)
- b4d9a232181b3057587f30362876a9626abf7f98 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10784-gb4d9a2321)
- 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7)
+ 08529ba87ea4ee6403446afc0c8b14f744f79c58 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10790-g08529ba87)
+ c38ddb7ebdd2d58c517b63a99bbdc8e348732db2 MOM6-interface/MOM6/pkg/CVMix-src (c38ddb7)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc)
- 4c48d84186f19336186127a63d36f68f5b8be917 UFSATM (remotes/origin/Zhao_Carr_cloud)
+ 5e7015b492169be892e4ad465cc9c71943bc8242 UFSATM (remotes/origin/feature/fv3_doxy_doc)
22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5)
- 90f266d4926a85f8ff201addee16a8e63b9a5069 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6688-g90f266d4)
+ b09af5da7617014c48a49c0476cc5481a7150f4c UFSATM/ccpp/physics (EP4-2243-gb09af5da)
c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (v2.1.3~3)
41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd)
0c00ba42a222a26754348c6f103a8e97d26f33e7 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (0c00ba4)
@@ -42,379 +42,379 @@ 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-20260225
-COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_26735
+COMPARISON DIRECTORY: /glade/derecho/scratch/gpetro/FV3_RT/rt_110372
RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nral0032
+* (-a) - HPC PROJECT ACCOUNT: NRAL0032
* (-r) - USE ROCOTO
-PASS -- COMPILE 's2swa_32bit_intel' [28:24, 28:24] ( 1 warnings 1092 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:48, 06:26](1979 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [29:57, 29:57] ( 1 warnings 1091 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [14:51, 12:53](1870 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:57, 14:32](1891 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:46, 07:22](1025 MB)
-PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [09:54, 07:23](1876 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:29, 14:29](1832 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_intel' [18:38, 18:38] ( 1 warnings 987 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [14:02, 10:14](2163 MB)
-PASS -- TEST 'cpld_restart_sfs_intel' [12:40, 06:24](1312 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:34, 06:34] ( 359 warnings 987 remarks )
-PASS -- TEST 'cpld_debug_sfs_intel' [15:26, 12:01](2192 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:40, 07:40] ( 359 warnings 1403 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [20:16, 18:36](1870 MB)
-
-PASS -- COMPILE 's2swa_intel' [28:23, 28:23] ( 1 warnings 1092 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [09:45, 08:17](2026 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:46, 08:23](2012 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:13, 05:27](1537 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:46, 08:13](2032 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:47, 05:29](1389 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [16:01, 14:35](2169 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:22, 07:52](2025 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:31, 06:56](1953 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:46, 08:51](2013 MB)
-
-PASS -- COMPILE 's2swal_intel' [28:18, 28:18] ( 1 warnings 1113 remarks )
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:59, 09:12](1996 MB)
-
-PASS -- COMPILE 's2sw_intel' [24:11, 24:11] ( 1 warnings 1060 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:58, 04:49](1872 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:43, 07:25](1933 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:38, 07:38] ( 359 warnings 1372 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [13:50, 12:38](2032 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:03, 07:03] ( 359 warnings 1354 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:58, 05:57](1899 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [18:59, 18:59] ( 1 warnings 998 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:39, 05:52](1929 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [26:19, 26:19] ( 1 warnings 1083 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:00, 13:13](1891 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:58, 06:59](1053 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:50, 15:09](1839 MB)
-PASS -- TEST 'cpld_control_c48_5deg_intel' [06:16, 05:16](2852 MB)
-PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [02:50, 01:45](2858 MB)
-PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:05, 01:02](2269 MB)
-PASS -- TEST 'cpld_control_c24_5deg_intel' [01:37, 01:00](2078 MB)
-PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [01:18, 00:37](2078 MB)
-PASS -- TEST 'cpld_restart_c24_5deg_intel' [01:10, 00:27](1421 MB)
-PASS -- TEST 'cpld_control_c24_9deg_intel' [01:38, 00:58](2075 MB)
-PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [01:17, 00:35](2076 MB)
-PASS -- TEST 'cpld_restart_c24_9deg_intel' [01:12, 00:29](1425 MB)
-PASS -- TEST 'cpld_control_c12_9deg_intel' [01:16, 00:37](2004 MB)
-PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [01:11, 00:30](2006 MB)
-PASS -- TEST 'cpld_restart_c12_9deg_intel' [01:04, 00:23](1362 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:31, 08:30] ( 359 warnings 1385 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:21, 23:51](1896 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:57, 14:56] ( 1 warnings 539 remarks )
-PASS -- TEST 'control_CubedSphereGrid_intel' [02:51, 02:23](1516 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:10, 02:33](1521 MB)
-PASS -- TEST 'control_latlon_intel' [02:47, 02:26](1517 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:53, 02:29](1516 MB)
-PASS -- TEST 'control_c48_intel' [05:52, 05:29](1554 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [05:29, 05:08](682 MB)
-PASS -- TEST 'control_c48_lnd_iau_intel' [06:04, 05:40](1556 MB)
-PASS -- TEST 'control_c192_intel' [07:18, 06:30](1656 MB)
-PASS -- TEST 'control_c384_intel' [09:04, 07:19](1949 MB)
-PASS -- TEST 'control_c384gdas_intel' [12:16, 08:48](1116 MB)
-PASS -- TEST 'control_stochy_intel' [02:11, 01:52](580 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:40, 01:18](388 MB)
-PASS -- TEST 'control_lndp_intel' [02:04, 01:44](581 MB)
-PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:35, 03:47](874 MB)
-PASS -- TEST 'control_p8_intel' [05:21, 03:34](1803 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 03:29](1809 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:57, 03:13](1817 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:52, 03:21](1828 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:36, 03:55](1835 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:36, 03:22](2395 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:24, 02:45](970 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:18, 03:38](1803 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:06, 02:34](971 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:34, 03:51](1804 MB)
-PASS -- TEST 'control_2threads_p8_intel' [07:15, 05:32](1886 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:28, 05:33](1816 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:35, 04:53](1855 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:25, 03:54](1814 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:43, 03:54](1816 MB)
-PASS -- TEST 'merra2_hf_thompson_intel' [06:39, 05:15](1822 MB)
-PASS -- TEST 'regional_control_intel' [05:09, 04:26](843 MB)
-PASS -- TEST 'regional_restart_intel' [03:19, 02:35](860 MB)
-PASS -- TEST 'regional_decomp_intel' [05:22, 04:41](860 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:11, 04:27](1136 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:12, 04:25](854 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:15, 04:29](844 MB)
-PASS -- TEST 'regional_wofs_intel' [06:46, 06:00](1579 MB)
-
-PASS -- COMPILE 'atm_dyn32_rad32_intel' [13:48, 13:47] ( 1 warnings 519 remarks )
-PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:22, 04:40](1837 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:11, 12:11] ( 4 warnings 490 remarks )
-PASS -- TEST 'rap_control_intel' [04:44, 03:22](967 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:11, 03:49](1146 MB)
-PASS -- TEST 'rap_decomp_intel' [04:46, 03:26](965 MB)
-PASS -- TEST 'rap_2threads_intel' [07:12, 05:48](1039 MB)
-PASS -- TEST 'rap_restart_intel' [03:23, 02:00](826 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [04:46, 03:21](964 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:51, 03:31](964 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [03:28, 02:10](825 MB)
-PASS -- TEST 'hrrr_control_intel' [04:39, 03:14](960 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:44, 03:19](960 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:51, 05:24](1031 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:16, 01:56](789 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [07:02, 05:37](960 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:06, 07:42](1905 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:51, 07:23](1906 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:26, 11:26] ( 1 warnings 459 remarks )
-PASS -- TEST 'control_csawmg_intel' [07:11, 06:36](919 MB)
-PASS -- TEST 'control_ras_intel' [03:30, 03:10](622 MB)
-
-PASS -- COMPILE 'wam_intel' [10:53, 10:53] ( 1 warnings 442 remarks )
-PASS -- TEST 'control_wam_intel' [11:51, 11:06](1596 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [08:32, 08:31] ( 494 warnings 628 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:56, 02:31](1546 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:59, 02:33](1552 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:44, 03:24](748 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:26, 03:03](750 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:22, 05:22](1049 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:29, 03:02](756 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:56, 03:10](1605 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:08, 04:04](1840 MB)
-PASS -- TEST 'regional_debug_intel' [17:07, 16:25](894 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:34, 05:08](1129 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:35, 05:12](1125 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:29, 05:05](1131 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:35, 05:09](1131 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 05:13](1130 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:14, 05:23](1216 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:36, 05:12](1129 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:36, 05:12](1129 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:42, 05:14](1132 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:36, 05:10](1129 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:27, 05:03](1127 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:37, 05:11](1129 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:30, 08:08](1128 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [05:35, 05:10](1133 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:59, 08:32](1135 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:07, 05:07] ( 457 warnings 442 remarks )
-PASS -- TEST 'control_wam_debug_intel' [13:55, 12:55](1630 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:52, 10:51] ( 4 warnings 457 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:53, 03:34](1040 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:20, 03:00](845 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:46, 02:58](841 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:26, 04:58](893 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:38, 04:48](890 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:44, 02:58](843 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:14, 01:53](734 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:18, 01:50](728 MB)
-PASS -- TEST 'conus13km_control_intel' [03:58, 02:46](987 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:12, 02:03](1117 MB)
-PASS -- TEST 'conus13km_decomp_intel' [03:55, 02:47](1007 MB)
-PASS -- TEST 'conus13km_restart_intel' [02:53, 01:41](877 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [10:58, 10:57] ( 4 warnings 487 remarks )
-PASS -- TEST 'conus13km_gl_inline_intel' [03:12, 02:08](662 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 11:12] ( 4 warnings 457 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:42, 03:50](879 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:27, 05:27] ( 330 warnings 463 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:59](1013 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:14, 04:55](1007 MB)
-PASS -- TEST 'conus13km_debug_intel' [22:03, 21:00](1037 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [22:23, 21:23](742 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [23:51, 22:49](1162 MB)
-PASS -- TEST 'conus13km_debug_decomp_intel' [22:17, 21:26](1049 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:51, 20:57](1108 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:17, 05:17] ( 330 warnings 457 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:32, 05:09](1052 MB)
-
-PASS -- COMPILE 'hafsw_intel' [19:13, 19:13] ( 1 warnings 738 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [04:48, 03:52](743 MB)
-PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:11, 06:22](996 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:01, 03:21](994 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [11:13, 10:09](854 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:45, 04:56](416 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:40, 05:40](427 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:17, 02:31](338 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:59, 06:14](380 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:25, 03:33](456 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:12, 03:17](453 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:45, 01:24](373 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:17, 03:30](1649 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [21:54, 21:53] ( 1 warnings 977 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:59, 04:45](620 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:02, 15:02] ( 1 warnings 680 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [06:56, 05:59](791 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:52, 06:01](773 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [14:23, 14:23] ( 569 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:08, 02:55](1543 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:12, 01:57](1543 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:00, 02:47](646 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:06, 02:49](645 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:00, 02:48](661 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:12, 02:57](1543 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:07, 02:55](1543 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:01, 02:47](645 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:39, 06:47](1334 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:35, 06:41](655 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:07, 02:56](1543 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 05:01](4497 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 05:00](4499 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 04:06] ( 2 warnings 569 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:48, 05:36](1543 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:00, 01:58] ( 129 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:09, 01:37](266 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 01:05](402 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:01, 00:43](402 MB)
-
-PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:45, 16:44] ( 1 warnings 656 remarks )
-PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:57, 04:28](1859 MB)
-
-PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:51, 11:50] ( 1 warnings 544 remarks )
-PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:55, 05:27](1850 MB)
-
-PASS -- COMPILE 'atml_intel' [14:35, 14:35] ( 9 warnings 593 remarks )
-
-PASS -- COMPILE 'atml_debug_intel' [07:10, 07:10] ( 501 warnings 593 remarks )
-
-PASS -- COMPILE 'atmw_intel' [13:38, 13:38] ( 1 warnings 568 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:49, 03:09](1822 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:15, 13:14] ( 1 warnings 460 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [07:14, 05:31](1896 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:57, 04:50](1663 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:08, 04:57](1679 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:29, 12:29] ( 1 warnings 645 remarks )
-PASS -- TEST 'regional_atmaq_intel' [17:18, 14:49](2925 MB)
-PASS -- TEST 'regional_atmaq_canopy_intel' [20:12, 17:42](2923 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:40, 05:40] ( 474 warnings 645 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [36:36, 34:07](2939 MB)
-
-PASS -- COMPILE 'atm_fbh_intel' [10:17, 10:16] ( 4 warnings 464 remarks )
-PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:42, 08:21](774 MB)
-
-PASS -- COMPILE 'atm_gnu' [06:20, 06:20]
-PASS -- TEST 'control_c48_gnu' [07:54, 07:14](1510 MB)
-PASS -- TEST 'control_stochy_gnu' [03:10, 02:44](606 MB)
-PASS -- TEST 'control_ras_gnu' [04:35, 04:03](616 MB)
-PASS -- TEST 'control_p8_gnu' [06:43, 05:03](1561 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [06:20, 04:56](1582 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:20, 06:20]
-PASS -- TEST 'rap_control_gnu' [05:50, 04:25](957 MB)
-PASS -- TEST 'rap_decomp_gnu' [06:04, 04:35](955 MB)
-PASS -- TEST 'rap_2threads_gnu' [08:39, 07:15](1030 MB)
-PASS -- TEST 'rap_restart_gnu' [03:57, 02:31](704 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [05:48, 04:22](956 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:50, 04:25](956 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:02, 02:31](704 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:42, 04:18](951 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:42, 04:18](936 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [08:18, 06:56](1018 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:42, 04:14](951 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [02:55, 02:24](695 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:57, 02:25](782 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:21, 07:47](949 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [05:26, 05:26]
-PASS -- TEST 'control_csawmg_gnu' [09:23, 08:30](852 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [16:39, 16:39]
-PASS -- TEST 'control_diag_debug_gnu' [02:42, 01:57](1388 MB)
-PASS -- TEST 'regional_debug_gnu' [08:45, 07:53](794 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:15, 02:47](967 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 02:47](961 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:13, 02:47](966 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:14, 02:47](964 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:54, 02:58](1055 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:37, 04:13](963 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:05, 02:41](970 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:11, 01:49](606 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:22, 01:59](598 MB)
-PASS -- TEST 'control_debug_p8_gnu' [04:01, 02:57](1563 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:13, 02:48](967 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:48, 04:25](974 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [03:43, 03:43]
-PASS -- TEST 'control_wam_debug_gnu' [07:33, 06:26](1404 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:39, 07:39]
-PASS -- TEST 'control_csawmg_debug_gnu' [04:17, 03:24](836 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:25, 05:25]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:24, 04:05](810 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:41, 03:57](807 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:56, 06:38](858 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [08:13, 06:28](852 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:47, 04:02](805 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:40, 02:23](674 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:43, 02:18](675 MB)
-PASS -- TEST 'conus13km_control_gnu' [05:09, 03:51](930 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:41, 02:29](1042 MB)
-PASS -- TEST 'conus13km_decomp_gnu' [05:04, 03:54](935 MB)
-PASS -- TEST 'conus13km_restart_gnu' [03:02, 02:17](587 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [22:01, 22:01]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:42](843 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [16:36, 16:36]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:07, 02:43](817 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:54, 02:34](815 MB)
-PASS -- TEST 'conus13km_debug_gnu' [11:01, 09:51](943 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [11:07, 10:22](654 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [11:28, 10:34](1056 MB)
-PASS -- TEST 'conus13km_debug_decomp_gnu' [10:49, 09:52](949 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:09, 10:06](1013 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [16:34, 16:33]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:10, 02:45](847 MB)
-
-PASS -- COMPILE 's2swa_gnu' [20:42, 20:42]
-PASS -- TEST 'cpld_control_p8_gnu' [12:26, 10:10](1668 MB)
-
-PASS -- COMPILE 's2s_gnu' [19:07, 19:06]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:28, 09:28](1639 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [06:47, 06:47]
-PASS -- TEST 'cpld_debug_p8_gnu' [09:30, 07:35](1675 MB)
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [20:07, 20:07]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [13:58, 12:14](1586 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:03, 06:03]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:16, 09:21](1585 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [16:29, 16:29]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:22, 03:09](1516 MB)
-
-PASS -- COMPILE 'atm_mpas_dyn32_gnu' [03:34, 03:33]
-PASS -- TEST 'control_gfs_mpas_gnu' [02:25, 01:48](6371 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [28:18, 28:18] ( 1 warnings 1092 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:11, 06:47](1978 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:24, 30:24] ( 1 warnings 1091 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [14:58, 13:12](1871 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:53, 14:02](1891 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:30, 06:37](1025 MB)
+PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [08:41, 06:40](1889 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:29, 14:33](1832 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_intel' [18:57, 18:57] ( 1 warnings 987 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [14:40, 10:48](2159 MB)
+PASS -- TEST 'cpld_restart_sfs_intel' [12:15, 06:57](1300 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:42, 06:42] ( 359 warnings 987 remarks )
+PASS -- TEST 'cpld_debug_sfs_intel' [15:55, 12:01](2173 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:53, 07:53] ( 359 warnings 1403 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [20:24, 18:42](1870 MB)
+
+PASS -- COMPILE 's2swa_intel' [28:41, 28:41] ( 1 warnings 1092 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [09:59, 08:15](2013 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:50, 08:29](2012 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:19, 04:45](1537 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:38, 08:13](2032 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:38, 04:55](1390 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [15:50, 14:38](2171 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:16, 07:57](2012 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:20, 06:59](1953 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:52, 08:22](2013 MB)
+
+PASS -- COMPILE 's2swal_intel' [28:16, 28:16] ( 1 warnings 1113 remarks )
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:47, 08:29](1998 MB)
+
+PASS -- COMPILE 's2sw_intel' [24:45, 24:45] ( 1 warnings 1060 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:56, 04:47](1871 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:35, 07:17](1933 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:58, 07:58] ( 359 warnings 1372 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [14:00, 12:41](2031 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:21, 07:21] ( 359 warnings 1354 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:24, 06:15](1894 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [19:28, 19:28] ( 1 warnings 998 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:45, 05:27](1928 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [25:54, 25:54] ( 1 warnings 1083 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:09, 12:58](1892 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:58, 06:38](1055 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:48, 14:36](1840 MB)
+PASS -- TEST 'cpld_control_c48_5deg_intel' [05:57, 05:08](2852 MB)
+PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [02:30, 01:41](2859 MB)
+PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:03, 01:03](2269 MB)
+PASS -- TEST 'cpld_control_c24_5deg_intel' [01:26, 00:57](2077 MB)
+PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [01:08, 00:36](2078 MB)
+PASS -- TEST 'cpld_restart_c24_5deg_intel' [01:01, 00:26](1424 MB)
+PASS -- TEST 'cpld_control_c24_9deg_intel' [01:27, 00:58](2075 MB)
+PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [01:08, 00:37](2076 MB)
+PASS -- TEST 'cpld_restart_c24_9deg_intel' [01:04, 00:27](1425 MB)
+PASS -- TEST 'cpld_control_c12_9deg_intel' [01:06, 00:36](2004 MB)
+PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [00:59, 00:29](2006 MB)
+PASS -- TEST 'cpld_restart_c12_9deg_intel' [01:01, 00:24](1361 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 07:20] ( 359 warnings 1385 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:21, 23:12](1893 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:10, 14:10] ( 1 warnings 539 remarks )
+PASS -- TEST 'control_CubedSphereGrid_intel' [02:42, 02:20](1513 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:56, 02:28](1521 MB)
+PASS -- TEST 'control_latlon_intel' [02:42, 02:24](1516 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:55, 02:32](1517 MB)
+PASS -- TEST 'control_c48_intel' [05:48, 05:29](1554 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [05:27, 05:08](682 MB)
+PASS -- TEST 'control_c48_lnd_iau_intel' [05:57, 05:37](1555 MB)
+PASS -- TEST 'control_c192_intel' [07:02, 06:27](1655 MB)
+PASS -- TEST 'control_c384_intel' [09:07, 07:20](1939 MB)
+PASS -- TEST 'control_c384gdas_intel' [11:22, 08:39](1117 MB)
+PASS -- TEST 'control_stochy_intel' [02:08, 01:52](581 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:28, 01:11](392 MB)
+PASS -- TEST 'control_lndp_intel' [01:55, 01:40](581 MB)
+PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:02, 03:27](874 MB)
+PASS -- TEST 'control_p8_intel' [05:12, 03:42](1802 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:36, 03:22](1810 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:40, 03:20](1818 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:48, 03:23](1828 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:10, 03:36](1836 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:11, 03:02](2382 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:49, 02:27](971 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:56, 03:30](1804 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:44, 02:24](972 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:46, 03:18](1804 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:36, 05:11](1885 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:17, 05:35](1817 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:43, 04:21](1856 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:54, 03:36](1814 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:26, 03:52](1816 MB)
+PASS -- TEST 'merra2_hf_thompson_intel' [06:05, 04:47](1820 MB)
+PASS -- TEST 'regional_control_intel' [05:00, 04:29](854 MB)
+PASS -- TEST 'regional_restart_intel' [03:08, 02:35](861 MB)
+PASS -- TEST 'regional_decomp_intel' [05:17, 04:46](851 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:10, 04:36](1137 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:04, 04:33](854 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [04:58, 04:26](844 MB)
+PASS -- TEST 'regional_wofs_intel' [06:37, 06:06](1577 MB)
+
+PASS -- COMPILE 'atm_dyn32_rad32_intel' [13:04, 13:02] ( 1 warnings 519 remarks )
+PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:36, 04:13](1836 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:13, 11:13] ( 4 warnings 490 remarks )
+PASS -- TEST 'rap_control_intel' [04:41, 03:20](965 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:44, 03:47](1144 MB)
+PASS -- TEST 'rap_decomp_intel' [04:45, 03:30](966 MB)
+PASS -- TEST 'rap_2threads_intel' [06:56, 05:42](1042 MB)
+PASS -- TEST 'rap_restart_intel' [03:16, 01:59](826 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [04:33, 03:19](964 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:34, 03:22](965 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [03:20, 02:04](825 MB)
+PASS -- TEST 'hrrr_control_intel' [04:27, 03:12](959 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:30, 03:17](960 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:32, 05:20](1032 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:14, 01:55](789 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [06:54, 05:35](960 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [07:58, 07:40](1908 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:46, 07:29](1896 MB)
+
+PASS -- COMPILE 'csawmg_intel' [10:44, 10:44] ( 1 warnings 459 remarks )
+PASS -- TEST 'control_csawmg_intel' [07:41, 07:06](918 MB)
+PASS -- TEST 'control_ras_intel' [03:32, 03:14](622 MB)
+
+PASS -- COMPILE 'wam_intel' [10:08, 10:08] ( 1 warnings 442 remarks )
+PASS -- TEST 'control_wam_intel' [11:50, 11:10](1595 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:33, 07:33] ( 494 warnings 628 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:53, 02:32](1547 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:50, 02:30](1551 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:29, 03:13](748 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:16, 03:01](750 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:38, 05:03](1048 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:15, 02:58](756 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:26, 02:56](1606 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:08, 03:22](1841 MB)
+PASS -- TEST 'regional_debug_intel' [16:50, 16:18](883 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:22, 05:04](1129 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:12, 04:55](1125 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 05:00](1131 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:21, 05:03](1131 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 05:00](1129 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:50, 05:18](1217 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 05:09](1129 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 05:06](1129 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:20, 05:05](1132 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:20, 05:04](1129 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:12, 04:58](1127 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 05:01](1129 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:28, 08:08](1127 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 04:59](1132 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:48, 08:27](1135 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:20, 04:20] ( 457 warnings 442 remarks )
+PASS -- TEST 'control_wam_debug_intel' [13:18, 12:40](1631 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:08, 10:08] ( 4 warnings 457 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:38, 03:35](1036 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:04, 02:55](845 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:31, 02:55](841 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:03, 04:58](894 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:24, 04:49](888 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 02:59](843 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:56, 01:49](737 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:10, 01:48](727 MB)
+PASS -- TEST 'conus13km_control_intel' [03:38, 02:48](987 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:35, 01:53](1112 MB)
+PASS -- TEST 'conus13km_decomp_intel' [03:29, 02:42](1007 MB)
+PASS -- TEST 'conus13km_restart_intel' [02:29, 01:43](877 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [10:09, 10:09] ( 4 warnings 487 remarks )
+PASS -- TEST 'conus13km_gl_inline_intel' [02:46, 02:03](662 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:14, 10:14] ( 4 warnings 457 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:23, 03:47](883 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:38, 04:38] ( 330 warnings 463 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:10, 04:54](1013 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:00, 04:44](1007 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:37, 20:54](1037 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:41, 21:00](742 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [23:08, 22:33](1157 MB)
+PASS -- TEST 'conus13km_debug_decomp_intel' [21:58, 21:22](1049 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:36, 21:00](1108 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:23, 04:23] ( 330 warnings 457 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:16, 04:58](1052 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:54, 17:54] ( 1 warnings 738 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [04:30, 03:52](744 MB)
+PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:49, 05:35](996 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [03:41, 03:19](999 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [10:41, 10:04](842 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:33, 04:57](415 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:17, 05:40](429 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:00, 02:32](337 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:36, 06:21](384 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:55, 03:24](455 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:57, 03:18](456 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:36, 01:20](374 MB)
+PASS -- TEST 'gnv1_nested_intel' [04:41, 03:15](1648 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [20:25, 20:25] ( 1 warnings 977 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:02, 04:36](622 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:12, 14:11] ( 1 warnings 680 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [06:28, 05:54](789 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:40, 06:02](776 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [13:34, 13:34] ( 569 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:03, 02:55](1543 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:03, 01:53](1543 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:50, 02:41](645 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:01, 02:51](657 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:56, 02:46](645 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:01, 02:53](1543 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:03, 02:55](1543 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:49, 02:41](645 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:06, 07:08](1333 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:23, 06:23](659 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:01, 02:54](1543 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:44, 04:35](4498 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:52, 04:41](4498 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:39, 03:39] ( 2 warnings 569 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:41, 05:31](1543 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:36, 01:35] ( 129 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:40, 01:19](267 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:18, 01:01](402 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:58, 00:42](402 MB)
+
+PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:54, 15:54] ( 1 warnings 656 remarks )
+PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:08, 04:09](1860 MB)
+
+PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:50, 10:50] ( 1 warnings 544 remarks )
+PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:14, 05:18](1849 MB)
+
+PASS -- COMPILE 'atml_intel' [13:45, 13:43] ( 9 warnings 593 remarks )
+
+PASS -- COMPILE 'atml_debug_intel' [06:29, 06:29] ( 501 warnings 593 remarks )
+
+PASS -- COMPILE 'atmw_intel' [12:35, 12:35] ( 1 warnings 568 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:06, 02:43](1822 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:20, 12:19] ( 1 warnings 460 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [06:18, 05:04](1897 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:44, 04:49](1663 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:52, 04:54](1679 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:41, 11:41] ( 1 warnings 645 remarks )
+PASS -- TEST 'regional_atmaq_intel' [16:51, 15:10](2925 MB)
+PASS -- TEST 'regional_atmaq_canopy_intel' [19:36, 17:54](2925 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:49, 04:49] ( 474 warnings 645 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [35:49, 34:09](2939 MB)
+
+PASS -- COMPILE 'atm_fbh_intel' [09:47, 09:47] ( 4 warnings 464 remarks )
+PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:34, 08:16](773 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:53, 05:52]
+PASS -- TEST 'control_c48_gnu' [07:43, 07:12](1510 MB)
+PASS -- TEST 'control_stochy_gnu' [02:53, 02:39](606 MB)
+PASS -- TEST 'control_ras_gnu' [04:14, 04:01](613 MB)
+PASS -- TEST 'control_p8_gnu' [05:44, 04:38](1552 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:28, 04:32](1546 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:55, 05:54]
+PASS -- TEST 'rap_control_gnu' [05:34, 04:24](955 MB)
+PASS -- TEST 'rap_decomp_gnu' [05:34, 04:21](956 MB)
+PASS -- TEST 'rap_2threads_gnu' [08:28, 07:15](1028 MB)
+PASS -- TEST 'rap_restart_gnu' [03:38, 02:26](704 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [05:35, 04:21](957 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:36, 04:26](954 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:41, 02:28](702 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:36, 04:22](948 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:25, 04:11](935 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [08:11, 06:49](1019 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:26, 04:12](951 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [02:43, 02:24](694 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:41, 02:21](781 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:09, 07:54](950 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [05:00, 04:59]
+PASS -- TEST 'control_csawmg_gnu' [08:32, 08:01](854 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [15:52, 15:52]
+PASS -- TEST 'control_diag_debug_gnu' [02:15, 01:48](1388 MB)
+PASS -- TEST 'regional_debug_gnu' [08:15, 07:44](795 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:00, 02:43](968 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:58, 02:41](962 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:07, 02:49](966 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:54, 02:39](966 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:26, 02:53](1051 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:22, 04:04](965 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:55, 02:37](966 MB)
+PASS -- TEST 'control_ras_debug_gnu' [01:58, 01:42](605 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:05, 01:49](598 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:15, 02:29](1547 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [02:53, 02:38](967 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:34, 04:13](974 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [03:19, 03:19]
+PASS -- TEST 'control_wam_debug_gnu' [07:04, 06:23](1403 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:02, 07:02]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:23, 02:53](848 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:02, 05:02]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:16, 04:03](811 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:31, 03:54](807 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:43, 06:38](858 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [08:02, 06:25](856 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:38, 04:02](807 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:20, 02:15](673 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:34, 02:17](673 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:39, 03:49](930 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:16, 02:30](1042 MB)
+PASS -- TEST 'conus13km_decomp_gnu' [04:40, 03:56](935 MB)
+PASS -- TEST 'conus13km_restart_gnu' [02:58, 02:15](587 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [21:11, 21:11]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:20, 04:41](845 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [15:54, 15:54]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:54, 02:40](818 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:53, 02:37](815 MB)
+PASS -- TEST 'conus13km_debug_gnu' [10:54, 10:14](946 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [10:59, 10:16](657 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [10:43, 10:05](1055 MB)
+PASS -- TEST 'conus13km_debug_decomp_gnu' [10:43, 10:05](952 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:30, 09:54](1013 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [15:55, 15:55]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:52, 02:39](848 MB)
+
+PASS -- COMPILE 's2swa_gnu' [20:24, 20:24]
+PASS -- TEST 'cpld_control_p8_gnu' [11:33, 09:57](1667 MB)
+
+PASS -- COMPILE 's2s_gnu' [18:33, 18:33]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:26, 09:01](1637 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [05:54, 05:54]
+PASS -- TEST 'cpld_debug_p8_gnu' [08:04, 06:50](1664 MB)
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [19:33, 19:33]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [13:05, 11:53](1609 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:13, 05:13]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [09:52, 08:44](1585 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:16, 16:16]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 03:06](1515 MB)
+
+PASS -- COMPILE 'atm_mpas_dyn32_gnu' [03:01, 03:00]
+PASS -- TEST 'control_gfs_mpas_gnu' [01:29, 01:04](6356 MB)
SYNOPSIS:
-Starting Date/Time: 20260304 15:48:19
-Ending Date/Time: 20260304 22:25:16
-Total Time: 06h:40m:28s
+Starting Date/Time: 20260309 11:34:49
+Ending Date/Time: 20260309 14:20:15
+Total Time: 02h:46m:49s
Compiles Completed: 57/57
Tests Completed: 249/249
diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log
index b3a5948903..6093f49ce0 100644
--- a/tests/logs/RegressionTests_gaeac6.log
+++ b/tests/logs/RegressionTests_gaeac6.log
@@ -1,7 +1,7 @@
====START OF GAEAC6 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-56f644cfb8d47f93ea73874929f362448d883c9e
+29145037cde3805fe8069fea8867f045e758f4cf
Submodule hashes used in testing:
fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386)
@@ -15,13 +15,13 @@ Submodule hashes used in testing:
bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777)
05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a)
c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02)
- b4d9a232181b3057587f30362876a9626abf7f98 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10784-gb4d9a2321)
- 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7)
+ 08529ba87ea4ee6403446afc0c8b14f744f79c58 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10790-g08529ba87)
+ c38ddb7ebdd2d58c517b63a99bbdc8e348732db2 MOM6-interface/MOM6/pkg/CVMix-src (c38ddb7)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc)
- 4c48d84186f19336186127a63d36f68f5b8be917 UFSATM (remotes/origin/Zhao_Carr_cloud)
+ 5e7015b492169be892e4ad465cc9c71943bc8242 UFSATM (remotes/origin/feature/fv3_doxy_doc)
22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5)
- 90f266d4926a85f8ff201addee16a8e63b9a5069 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6688-g90f266d4)
+ b09af5da7617014c48a49c0476cc5481a7150f4c UFSATM/ccpp/physics (EP4-2243-gb09af5da)
c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (v2.1.3~3)
41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd)
0c00ba42a222a26754348c6f103a8e97d26f33e7 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (0c00ba4)
@@ -42,289 +42,289 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20260225
-COMPARISON DIRECTORY: /gpfs/f6/epic/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4044284
+COMPARISON DIRECTORY: /gpfs/f6/epic/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2038398
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:39] ( 1 warnings 3 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:32, 04:01](6339 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 12:09] ( 1 warnings 3 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [11:07, 08:43](6339 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [12:00, 09:25](6338 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [06:48, 04:15](6339 MB)
-PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:57, 04:16](6339 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [12:41, 10:05](6339 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_intel' [12:11, 10:47] ( 1 warnings 3 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [11:48, 07:09](6338 MB)
-PASS -- TEST 'cpld_restart_sfs_intel' [07:08, 03:51](6338 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:11, 03:43] ( 359 warnings 3 remarks )
-PASS -- TEST 'cpld_debug_sfs_intel' [11:54, 07:52](6338 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:45] ( 359 warnings 316 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [14:48, 12:51](6339 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:11, 11:53] ( 1 warnings 3 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [08:10, 05:09](6339 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:20, 05:05](6339 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [04:58, 02:51](6339 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:06, 05:08](6339 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [05:02, 02:51](6338 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:10, 06:00](6339 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [06:58, 05:01](6338 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [06:51, 04:05](6339 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:29, 05:07](6338 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [09:22, 05:24](6338 MB)
-
-PASS -- COMPILE 's2swal_intel' [13:11, 11:42] ( 1 warnings 4 remarks )
-PASS -- TEST 'cpld_control_p8_lnd_intel' [08:40, 05:10](6339 MB)
-PASS -- TEST 'cpld_restart_p8_lnd_intel' [04:52, 02:55](6339 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:09, 05:15](6338 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:11, 11:41] ( 1 warnings 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [04:52, 02:51](6338 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:00, 04:34](6339 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:37] ( 359 warnings 297 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [10:51, 08:33](6339 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:22] ( 359 warnings 297 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:30, 03:57](6339 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:11, 09:28] ( 1 warnings 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:49, 03:19](6339 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:54] ( 1 warnings 3 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:37, 08:45](6338 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:56, 04:15](6338 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [12:32, 10:06](6338 MB)
-PASS -- TEST 'cpld_control_c48_5deg_intel' [05:36, 04:01](6338 MB)
-PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:44, 01:16](6338 MB)
-PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:28, 00:53](6337 MB)
-PASS -- TEST 'cpld_control_c24_5deg_intel' [02:30, 00:45](6338 MB)
-PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:25, 00:25](6338 MB)
-PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:23, 00:23](6337 MB)
-PASS -- TEST 'cpld_control_c24_9deg_intel' [02:21, 00:45](6339 MB)
-PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:34, 00:29](6337 MB)
-PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:22, 00:22](6338 MB)
-PASS -- TEST 'cpld_control_c12_9deg_intel' [02:20, 00:29](6337 MB)
-PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:22, 00:24](6337 MB)
-PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:25, 00:19](6338 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:05] ( 359 warnings 316 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [18:40, 16:17](6339 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:11, 07:32] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:22, 01:36](6338 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:31, 01:42](6339 MB)
-PASS -- TEST 'control_latlon_intel' [03:23, 01:38](6339 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:20, 01:42](6339 MB)
-PASS -- TEST 'control_c48_intel' [06:27, 04:20](6337 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [05:27, 04:05](6337 MB)
-PASS -- TEST 'control_c48_lnd_iau_intel' [06:27, 04:26](6337 MB)
-PASS -- TEST 'control_c192_intel' [06:30, 04:37](6339 MB)
-PASS -- TEST 'control_c384_intel' [12:05, 09:19](6339 MB)
-PASS -- TEST 'control_c384gdas_intel' [14:26, 10:28](6339 MB)
-PASS -- TEST 'control_stochy_intel' [03:20, 01:16](6339 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:47](6339 MB)
-PASS -- TEST 'control_lndp_intel' [03:18, 01:11](6339 MB)
-PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [03:25, 01:59](6339 MB)
-PASS -- TEST 'control_p8_intel' [03:49, 01:55](6339 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:42, 01:59](6338 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:36, 01:55](6339 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:33, 01:57](6339 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:47, 02:01](6339 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:37, 01:37](6339 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:43, 01:13](6338 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:42, 01:57](6339 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:10](6340 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:45, 02:00](6339 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:41, 02:09](6339 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:32, 03:12](6339 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:40, 02:44](6339 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:40, 02:05](6339 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:44, 02:17](6339 MB)
-PASS -- TEST 'merra2_hf_thompson_intel' [05:27, 04:01](6339 MB)
-PASS -- TEST 'regional_control_intel' [05:23, 03:15](6339 MB)
-PASS -- TEST 'regional_restart_intel' [03:22, 01:48](6339 MB)
-PASS -- TEST 'regional_decomp_intel' [05:23, 03:23](6339 MB)
-PASS -- TEST 'regional_2threads_intel' [04:23, 02:37](6338 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:28, 03:14](6339 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:31, 03:15](6339 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 03:14](6339 MB)
-PASS -- TEST 'regional_wofs_intel' [06:35, 04:11](6339 MB)
-
-PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:11, 06:50] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:41, 02:37](6339 MB)
-
-PASS -- COMPILE 'rrfs_intel' [07:11, 06:02] ( 4 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [04:41, 02:25](6338 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:37, 02:44](6338 MB)
-PASS -- TEST 'rap_decomp_intel' [04:34, 02:34](6339 MB)
-PASS -- TEST 'rap_2threads_intel' [04:39, 02:46](6339 MB)
-PASS -- TEST 'rap_restart_intel' [03:31, 01:21](6339 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [04:37, 02:25](6339 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:32, 02:29](6339 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [03:30, 01:21](6338 MB)
-PASS -- TEST 'hrrr_control_intel' [04:35, 02:22](6338 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:35, 02:25](6339 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:21, 02:38](6338 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:18](6339 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [06:30, 04:26](6339 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [07:22, 05:25](6339 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:20, 05:13](6339 MB)
-
-PASS -- COMPILE 'csawmg_intel' [07:11, 06:03] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [06:25, 04:09](6339 MB)
-PASS -- TEST 'control_ras_intel' [04:15, 02:14](6338 MB)
-
-PASS -- COMPILE 'wam_intel' [07:11, 05:46] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_wam_intel' [09:40, 07:43](6339 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:28] ( 494 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:22, 01:38](6339 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:19, 01:42](6339 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:12](6338 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:00](6339 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:27, 03:02](6338 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:21, 02:00](6339 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:20, 01:58](6339 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:36, 01:59](6339 MB)
-PASS -- TEST 'regional_debug_intel' [13:36, 11:32](6339 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:17, 03:30](6338 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:21, 03:24](6339 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 03:28](6339 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 03:26](6339 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 03:27](6339 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:25, 03:42](6339 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:18, 03:35](6338 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 03:31](6339 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:19, 03:29](6339 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 03:28](6338 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:19, 03:22](6339 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 03:30](6339 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:19, 05:39](6338 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 03:34](6339 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:55, 05:53](6338 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:10, 02:18] ( 457 warnings 1 remarks )
-PASS -- TEST 'control_wam_debug_intel' [10:28, 09:02](6339 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:54] ( 4 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:38, 02:34](6338 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:36, 02:09](6339 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:34, 02:10](6342 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:22, 02:29](6337 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:21, 02:21](6338 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:22, 02:10](6339 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:24, 01:13](6339 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:12](6339 MB)
-PASS -- TEST 'conus13km_control_intel' [03:51, 01:52](6338 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:56](6339 MB)
-PASS -- TEST 'conus13km_decomp_intel' [03:35, 01:52](6338 MB)
-PASS -- TEST 'conus13km_restart_intel' [03:43, 01:08](6338 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [08:11, 06:07] ( 4 warnings 8 remarks )
-PASS -- TEST 'conus13km_gl_inline_intel' [03:47, 01:24](6338 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:53] ( 4 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:52, 02:41](6339 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:11] ( 330 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 03:24](6338 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:19, 03:20](6338 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:42, 14:10](6338 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:36, 14:08](6339 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [14:26, 12:58](6338 MB)
-PASS -- TEST 'conus13km_debug_decomp_intel' [16:31, 14:22](6339 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:30, 14:08](6338 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:13] ( 330 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 03:28](6339 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:11, 09:05] ( 1 warnings 2 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [04:39, 02:46](6338 MB)
-PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [09:19, 03:54](6339 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:29, 02:21](6338 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [09:30, 07:25](6338 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:02, 03:22](6338 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:35, 03:59](6339 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:29, 01:43](6339 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:17, 04:17](6339 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 02:28](6338 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:30, 02:18](6338 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:33, 00:56](6338 MB)
-PASS -- TEST 'gnv1_nested_intel' [04:46, 02:20](6339 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:57] ( 1 warnings )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:20, 03:24](6340 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [09:11, 08:02] ( 1 warnings 1 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [07:24, 04:20](6338 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:18, 04:20](6338 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [11:11, 09:09] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:00](6338 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:22](6339 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [13:10, 11:09] ( 1 warnings 3 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:16, 04:01](6339 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:10, 12:12] ( 1 warnings 3 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [11:15, 08:44](6339 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:49, 09:37](6338 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [07:00, 04:14](6338 MB)
+PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:54, 04:17](6338 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [11:59, 09:59](6338 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_intel' [12:11, 10:58] ( 1 warnings 3 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [11:52, 07:29](6339 MB)
+PASS -- TEST 'cpld_restart_sfs_intel' [07:24, 03:50](6338 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:10, 03:33] ( 359 warnings 3 remarks )
+PASS -- TEST 'cpld_debug_sfs_intel' [11:08, 07:52](6338 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:44] ( 359 warnings 316 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [15:03, 12:49](6340 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:11, 12:07] ( 1 warnings 3 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [08:27, 05:09](6339 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:20, 05:08](6339 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [05:48, 03:04](6339 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [07:54, 05:12](6339 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [05:52, 03:03](6339 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [07:52, 06:01](6339 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [07:15, 05:00](6339 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [06:53, 04:08](6339 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:20, 05:11](6339 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [09:21, 05:24](6339 MB)
+
+PASS -- COMPILE 's2swal_intel' [14:11, 12:12] ( 1 warnings 4 remarks )
+PASS -- TEST 'cpld_control_p8_lnd_intel' [08:21, 05:10](6339 MB)
+PASS -- TEST 'cpld_restart_p8_lnd_intel' [06:02, 03:06](6338 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:06, 05:20](6339 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:11, 11:14] ( 1 warnings 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:07, 02:49](6339 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:50, 04:37](6339 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:42] ( 359 warnings 297 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [10:53, 08:39](6339 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:22] ( 359 warnings 297 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:20, 03:59](6339 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:11, 10:34] ( 1 warnings 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:59, 03:21](6339 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [13:10, 11:21] ( 1 warnings 3 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:40, 08:47](6339 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:40, 04:17](6338 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [12:28, 10:05](6340 MB)
+PASS -- TEST 'cpld_control_c48_5deg_intel' [05:27, 04:01](6339 MB)
+PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:31, 01:18](6337 MB)
+PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:40, 00:49](6337 MB)
+PASS -- TEST 'cpld_control_c24_5deg_intel' [02:23, 00:46](6338 MB)
+PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:25, 00:26](6337 MB)
+PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:26, 00:31](6338 MB)
+PASS -- TEST 'cpld_control_c24_9deg_intel' [02:22, 00:47](6338 MB)
+PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:28, 00:27](6337 MB)
+PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:31, 00:21](6338 MB)
+PASS -- TEST 'cpld_control_c12_9deg_intel' [02:27, 00:28](6337 MB)
+PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:33, 00:22](6338 MB)
+PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:28, 00:20](6337 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:21] ( 359 warnings 316 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [18:40, 16:16](6340 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:13, 07:47] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:30, 01:36](6338 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 01:43](6338 MB)
+PASS -- TEST 'control_latlon_intel' [03:30, 01:40](6339 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:30, 01:42](6339 MB)
+PASS -- TEST 'control_c48_intel' [06:40, 04:19](6339 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [05:33, 04:04](6338 MB)
+PASS -- TEST 'control_c48_lnd_iau_intel' [06:30, 04:26](6338 MB)
+PASS -- TEST 'control_c192_intel' [06:43, 04:40](6339 MB)
+PASS -- TEST 'control_c384_intel' [12:09, 09:30](6338 MB)
+PASS -- TEST 'control_c384gdas_intel' [14:08, 10:27](6339 MB)
+PASS -- TEST 'control_stochy_intel' [03:16, 01:16](6339 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:16, 00:46](6339 MB)
+PASS -- TEST 'control_lndp_intel' [03:18, 01:11](6338 MB)
+PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [03:25, 02:01](6339 MB)
+PASS -- TEST 'control_p8_intel' [04:08, 01:55](6339 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:39, 01:59](6339 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:41, 01:53](6339 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:29, 01:58](6339 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:36, 02:01](6339 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:34, 01:35](6339 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:39, 01:23](6339 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:33, 01:58](6339 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:51, 01:12](6339 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:25, 02:09](6339 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:26, 02:17](6339 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:31, 03:28](6339 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:39, 02:55](6339 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:44, 02:02](6339 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:36, 02:15](6339 MB)
+PASS -- TEST 'merra2_hf_thompson_intel' [06:42, 04:00](6339 MB)
+PASS -- TEST 'regional_control_intel' [05:27, 03:14](6339 MB)
+PASS -- TEST 'regional_restart_intel' [04:23, 02:04](6339 MB)
+PASS -- TEST 'regional_decomp_intel' [05:21, 03:25](6338 MB)
+PASS -- TEST 'regional_2threads_intel' [04:22, 02:36](6339 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:24, 03:10](6338 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:22, 03:13](6339 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:22, 03:12](6339 MB)
+PASS -- TEST 'regional_wofs_intel' [06:30, 04:15](6339 MB)
+
+PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:10, 06:41] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:37, 02:35](6339 MB)
+
+PASS -- COMPILE 'rrfs_intel' [08:11, 06:16] ( 4 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [04:44, 02:26](6339 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:44, 02:47](6338 MB)
+PASS -- TEST 'rap_decomp_intel' [04:39, 02:30](6338 MB)
+PASS -- TEST 'rap_2threads_intel' [04:30, 02:47](6339 MB)
+PASS -- TEST 'rap_restart_intel' [03:54, 01:21](6339 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [04:44, 02:28](6339 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:34, 02:32](6339 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [03:26, 01:22](6339 MB)
+PASS -- TEST 'hrrr_control_intel' [04:30, 02:19](6339 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:26, 02:26](6339 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:27, 02:38](6338 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:18](6339 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [06:31, 04:09](6339 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [07:21, 05:28](6339 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:20, 05:08](6339 MB)
+
+PASS -- COMPILE 'csawmg_intel' [08:11, 06:14] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [06:24, 04:11](6339 MB)
+PASS -- TEST 'control_ras_intel' [04:15, 02:14](6339 MB)
+
+PASS -- COMPILE 'wam_intel' [07:11, 05:50] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_wam_intel' [09:30, 07:57](6338 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:47] ( 494 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:25, 01:51](6339 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:37, 01:50](6339 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:24, 02:11](6339 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:15, 02:00](6338 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:22, 02:55](6339 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:15, 02:00](6339 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:27, 02:00](6339 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:26, 02:00](6339 MB)
+PASS -- TEST 'regional_debug_intel' [13:24, 11:40](6339 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:19, 03:30](6339 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:22, 03:27](6339 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:18, 03:28](6338 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 03:30](6339 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 03:31](6339 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:20, 03:39](6339 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:35](6339 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:17, 03:34](6339 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:16, 03:34](6339 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:31](6339 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:25](6338 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:20, 03:33](6339 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:39](6339 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 03:26](6338 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:54, 06:00](6338 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:11, 02:20] ( 457 warnings 1 remarks )
+PASS -- TEST 'control_wam_debug_intel' [10:26, 08:50](6338 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:00] ( 4 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:41, 02:38](6339 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:44, 02:09](6339 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:31, 02:06](6339 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:23, 02:26](6339 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:28, 02:20](6339 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:38, 02:08](6339 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:21, 01:14](6339 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:21, 01:11](6339 MB)
+PASS -- TEST 'conus13km_control_intel' [04:10, 01:52](6338 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:31, 00:56](6339 MB)
+PASS -- TEST 'conus13km_decomp_intel' [04:24, 02:06](6339 MB)
+PASS -- TEST 'conus13km_restart_intel' [03:33, 01:09](6338 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [07:11, 05:54] ( 4 warnings 8 remarks )
+PASS -- TEST 'conus13km_gl_inline_intel' [03:37, 01:30](6338 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 06:16] ( 4 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:28, 02:40](6339 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:24] ( 330 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 03:25](6339 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 03:19](6339 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:29, 14:06](6339 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:37, 14:12](6338 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [14:24, 12:59](6338 MB)
+PASS -- TEST 'conus13km_debug_decomp_intel' [16:34, 14:29](6339 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:23, 13:56](6338 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:21] ( 330 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:19, 03:30](6339 MB)
+
+PASS -- COMPILE 'hafsw_intel' [10:10, 08:54] ( 1 warnings 2 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [04:33, 02:46](6339 MB)
+PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:07, 03:56](6339 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:19, 02:23](6338 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [09:40, 07:30](6339 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 03:25](6339 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:50, 03:59](6338 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:30, 01:43](6338 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:46, 04:17](6338 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:34, 02:26](6338 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:29, 02:16](6339 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:27, 00:57](6339 MB)
+PASS -- TEST 'gnv1_nested_intel' [04:56, 02:23](6339 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [09:10, 07:50] ( 1 warnings )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:18, 03:23](6339 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [09:10, 07:59] ( 1 warnings 1 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [06:27, 04:17](6339 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:18, 04:20](6339 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [11:11, 09:12] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:01](6337 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:22](6338 MB)
PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 01:49](6338 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:20, 01:50](6337 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 01:51](6338 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 01:59](6337 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 02:00](6338 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:25, 01:49](6337 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:47, 04:47](6338 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:39, 04:33](6338 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:00](6339 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:38](6337 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:40](6338 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:16, 01:50](6338 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:52](6338 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:25, 02:02](6338 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 02:00](6338 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:16, 01:51](6339 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:38, 04:47](6340 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:41, 04:32](6339 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:00](6337 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:40](6337 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:52](6337 MB)
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:27] ( 2 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 03:59](6339 MB)
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:37] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 04:21](6339 MB)
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:41] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:21, 00:58](6339 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:46](6339 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:33](6339 MB)
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:40] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:59](6339 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:46](6339 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:34](6339 MB)
-PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:36] ( 1 warnings 3 remarks )
-PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:48, 02:26](6340 MB)
+PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:24] ( 1 warnings 3 remarks )
+PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:41, 02:27](6339 MB)
-PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 06:05] ( 1 warnings 1 remarks )
-PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:36, 03:10](6339 MB)
+PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 06:34] ( 1 warnings 1 remarks )
+PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:35, 03:12](6339 MB)
-PASS -- COMPILE 'atml_intel' [08:10, 06:53] ( 9 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_intel' [05:11, 02:25](6340 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:28, 01:28](6338 MB)
+PASS -- COMPILE 'atml_intel' [09:10, 07:45] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_intel' [04:53, 02:25](6338 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:28, 01:27](6339 MB)
-PASS -- COMPILE 'atml_debug_intel' [04:11, 02:55] ( 501 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:31, 03:33](6339 MB)
+PASS -- COMPILE 'atml_debug_intel' [04:10, 03:04] ( 501 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:36, 03:34](6338 MB)
-PASS -- COMPILE 'atmw_intel' [09:11, 07:15] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:29, 01:20](6338 MB)
+PASS -- COMPILE 'atmw_intel' [09:11, 07:43] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:28, 01:24](6338 MB)
-PASS -- COMPILE 'atmaero_intel' [10:11, 08:41] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [04:32, 03:00](6339 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:26, 03:23](6338 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:26, 03:23](6339 MB)
+PASS -- COMPILE 'atmaero_intel' [10:11, 08:32] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [05:04, 02:51](6342 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:55, 03:17](6339 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:29, 03:21](6339 MB)
-PASS -- COMPILE 'atmaq_intel' [08:10, 06:24] ( 1 warnings )
-PASS -- TEST 'regional_atmaq_intel' [15:55, 12:32](6338 MB)
-PASS -- TEST 'regional_atmaq_canopy_intel' [18:05, 15:09](6339 MB)
+PASS -- COMPILE 'atmaq_intel' [08:11, 06:23] ( 1 warnings )
+PASS -- TEST 'regional_atmaq_intel' [15:43, 12:40](6339 MB)
+PASS -- TEST 'regional_atmaq_canopy_intel' [18:19, 15:20](6339 MB)
-PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:15] ( 474 warnings )
-PASS -- TEST 'regional_atmaq_debug_intel' [28:40, 25:54](6339 MB)
+PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:18] ( 474 warnings )
+PASS -- TEST 'regional_atmaq_debug_intel' [28:27, 25:42](6338 MB)
-PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:43] ( 4 warnings 8 remarks )
-PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:22, 06:01](6338 MB)
+PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:38] ( 4 warnings 8 remarks )
+PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:27, 06:02](6338 MB)
SYNOPSIS:
-Starting Date/Time: 20260304 22:41:07
-Ending Date/Time: 20260304 23:57:12
-Total Time: 01h:17m:12s
+Starting Date/Time: 20260309 16:03:27
+Ending Date/Time: 20260309 17:19:49
+Total Time: 01h:17m:06s
Compiles Completed: 40/40
Tests Completed: 193/193
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 67cf75877d..333c96bb10 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-05cf0cce86866b0b91b5a6d315da6ecb8e0dc187
+29145037cde3805fe8069fea8867f045e758f4cf
Submodule hashes used in testing:
fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386)
@@ -15,13 +15,13 @@ Submodule hashes used in testing:
bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777)
05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a)
c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02)
- b4d9a232181b3057587f30362876a9626abf7f98 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10784-gb4d9a2321)
- 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7)
+ 08529ba87ea4ee6403446afc0c8b14f744f79c58 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10790-g08529ba87)
+ c38ddb7ebdd2d58c517b63a99bbdc8e348732db2 MOM6-interface/MOM6/pkg/CVMix-src (c38ddb7)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc)
- 4c48d84186f19336186127a63d36f68f5b8be917 UFSATM (remotes/origin/Zhao_Carr_cloud)
+ 5e7015b492169be892e4ad465cc9c71943bc8242 UFSATM (remotes/origin/feature/fv3_doxy_doc)
22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5)
- 90f266d4926a85f8ff201addee16a8e63b9a5069 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6688-g90f266d4)
+ b09af5da7617014c48a49c0476cc5481a7150f4c UFSATM/ccpp/physics (EP4-2243-gb09af5da)
c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (v2.1.3~3)
41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd)
0c00ba42a222a26754348c6f103a8e97d26f33e7 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (0c00ba4)
@@ -42,388 +42,388 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work2/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20260225
-COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_4089250
+COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_931046
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:10, 19:38] ( 1 warnings 1092 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:38, 08:32](2153 MB)
-PASS -- TEST 'cpld_control_gefs_intel' [36:50, 18:13](3084 MB)
-PASS -- TEST 'cpld_restart_gefs_intel' [22:05, 05:46](2780 MB)
-PASS -- TEST 'cpld_dcp_gefs_intel' [29:50, 15:10](3160 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:51] ( 1 warnings 1091 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [18:31, 15:26](2028 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:36, 16:02](2332 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:38, 05:43](1337 MB)
-PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [10:53, 07:19](2214 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:36, 15:55](1920 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_intel' [21:11, 19:53] ( 1 warnings 987 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [18:01, 11:32](2313 MB)
-PASS -- TEST 'cpld_restart_sfs_intel' [13:19, 06:42](1645 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:11, 04:22] ( 359 warnings 987 remarks )
-PASS -- TEST 'cpld_debug_sfs_intel' [16:49, 11:08](2337 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 04:41] ( 359 warnings 1403 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [21:48, 18:40](1991 MB)
-
-PASS -- COMPILE 's2swa_intel' [21:11, 20:04] ( 1 warnings 1092 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [11:23, 08:36](2256 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:15, 08:01](2256 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:22, 04:23](1952 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [11:07, 08:59](2289 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:24, 04:26](1839 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [15:11, 12:13](2374 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [12:09, 09:10](2242 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:12, 06:43](2130 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:17, 08:40](2253 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:03, 14:29](2929 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:41, 05:28](2970 MB)
-
-PASS -- COMPILE 's2swal_intel' [19:11, 17:51] ( 1 warnings 1113 remarks )
-PASS -- TEST 'cpld_control_p8_lnd_intel' [12:15, 09:18](2214 MB)
-PASS -- TEST 'cpld_restart_p8_lnd_intel' [07:36, 04:26](1931 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:09, 08:04](2242 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:15, 17:57] ( 1 warnings 1060 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [10:04, 07:38](2040 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:11, 05:57](2179 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:10, 04:32] ( 359 warnings 1372 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [16:29, 13:39](2275 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:10, 04:15] ( 359 warnings 1354 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:11, 05:10](2074 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [23:11, 21:36] ( 1 warnings 998 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:12, 04:03](2134 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:38] ( 1 warnings 1083 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:01, 12:46](2093 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:23, 05:41](1398 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:03, 13:23](1985 MB)
-PASS -- TEST 'cpld_control_c48_5deg_intel' [07:41, 05:16](3047 MB)
-PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:40, 01:44](3039 MB)
-PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:44, 00:58](2459 MB)
-PASS -- TEST 'cpld_control_c24_5deg_intel' [02:27, 00:57](2241 MB)
-PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:34, 00:32](2236 MB)
-PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:28, 00:24](1553 MB)
-PASS -- TEST 'cpld_control_c24_9deg_intel' [02:30, 00:56](2242 MB)
-PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:28, 00:32](2234 MB)
-PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:28, 00:24](1544 MB)
-PASS -- TEST 'cpld_control_c12_9deg_intel' [02:28, 00:33](2163 MB)
-PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:28, 00:26](2152 MB)
-PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:28, 00:22](1505 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:19] ( 359 warnings 1385 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:07, 22:03](2062 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:10, 10:30] ( 1 warnings 539 remarks )
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:32, 01:59](1614 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:42, 02:12](1622 MB)
-PASS -- TEST 'control_latlon_intel' [03:26, 02:05](1621 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:10](1610 MB)
-PASS -- TEST 'control_c48_intel' [07:30, 05:40](1702 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:31, 05:30](842 MB)
-PASS -- TEST 'control_c48_lnd_iau_intel' [07:31, 05:53](1713 MB)
-PASS -- TEST 'control_c192_intel' [07:53, 06:00](1817 MB)
-PASS -- TEST 'control_c384_intel' [09:40, 06:44](2009 MB)
-PASS -- TEST 'control_c384gdas_intel' [11:42, 07:58](1481 MB)
-PASS -- TEST 'control_stochy_intel' [03:28, 01:29](677 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:28, 00:54](540 MB)
-PASS -- TEST 'control_lndp_intel' [03:26, 01:21](679 MB)
-PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:52, 02:24](975 MB)
-PASS -- TEST 'control_p8_intel' [05:15, 02:21](1900 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 02:32](1908 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:16, 02:20](1910 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [06:17, 03:22](1930 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [06:21, 03:12](1937 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:13, 02:25](2426 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:51, 01:27](1218 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:15, 02:21](1907 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:50, 01:23](1198 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:15, 02:25](1895 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:18, 03:33](1990 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:56, 04:02](1910 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:25, 03:29](1973 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:17, 02:28](1916 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:22, 02:53](1911 MB)
-PASS -- TEST 'merra2_hf_thompson_intel' [06:52, 04:38](1917 MB)
-PASS -- TEST 'regional_control_intel' [07:29, 05:19](1204 MB)
-PASS -- TEST 'regional_restart_intel' [04:30, 02:48](1180 MB)
-PASS -- TEST 'regional_decomp_intel' [07:27, 05:52](1188 MB)
-PASS -- TEST 'regional_2threads_intel' [06:24, 04:18](1089 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:30, 05:32](1505 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:27, 05:20](1197 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:23, 05:17](1198 MB)
-PASS -- TEST 'regional_wofs_intel' [07:24, 05:43](2073 MB)
-
-PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:11, 10:28] ( 1 warnings 519 remarks )
-PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:05, 03:49](1943 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:11, 09:10] ( 4 warnings 490 remarks )
-PASS -- TEST 'rap_control_intel' [04:46, 02:51](1077 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:50, 03:10](1426 MB)
-PASS -- TEST 'rap_decomp_intel' [04:37, 03:00](1064 MB)
-PASS -- TEST 'rap_2threads_intel' [06:48, 04:26](1155 MB)
-PASS -- TEST 'rap_restart_intel' [03:57, 01:36](1101 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [04:46, 02:52](1082 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:34, 03:02](1065 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [03:57, 01:35](1105 MB)
-PASS -- TEST 'hrrr_control_intel' [04:50, 02:43](1081 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:32, 02:46](1057 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:47, 04:08](1138 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:31](1034 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [07:59, 05:13](1186 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 07:03](2014 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 06:40](2182 MB)
-
-PASS -- COMPILE 'csawmg_intel' [10:11, 09:09] ( 1 warnings 459 remarks )
-PASS -- TEST 'control_csawmg_intel' [07:25, 05:21](1080 MB)
-PASS -- TEST 'control_ras_intel' [04:19, 02:48](841 MB)
-
-PASS -- COMPILE 'wam_intel' [16:11, 14:30] ( 1 warnings 442 remarks )
-PASS -- TEST 'control_wam_intel' [15:37, 13:59](1674 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:12] ( 494 warnings 628 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 01:53](1631 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:20, 02:10](1640 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:17, 02:43](846 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:18, 02:22](847 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:27, 04:39](1154 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:21, 02:31](851 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:26, 02:23](1700 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:40, 03:34](1935 MB)
-PASS -- TEST 'regional_debug_intel' [18:29, 17:02](1159 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:18, 04:16](1235 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:09](1227 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:16](1229 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:17](1240 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:11](1233 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:26, 04:19](1326 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 04:23](1233 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:18, 04:11](1237 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:18, 04:16](1241 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:20, 04:09](1243 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:17, 04:08](1233 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:18, 04:15](1236 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:18, 06:46](1239 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:20, 04:17](1247 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:11, 05:02] ( 457 warnings 442 remarks )
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 11:34] ( 4 warnings 457 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:50, 02:59](1304 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:49, 02:32](1052 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:58, 03:01](1055 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:41, 03:47](1085 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:45, 03:37](1054 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:39, 03:20](992 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:48, 01:25](973 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:22, 01:50](982 MB)
-PASS -- TEST 'conus13km_control_intel' [04:57, 02:52](1498 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:35, 01:20](1334 MB)
-PASS -- TEST 'conus13km_decomp_intel' [04:38, 02:46](1536 MB)
-PASS -- TEST 'conus13km_restart_intel' [03:42, 01:35](1267 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [11:11, 09:41] ( 4 warnings 487 remarks )
-PASS -- TEST 'conus13km_gl_inline_intel' [04:04, 01:54](1061 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:41] ( 4 warnings 457 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:34, 03:25](1095 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:38] ( 330 warnings 463 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 04:07](1112 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:19, 04:03](1111 MB)
-PASS -- TEST 'conus13km_debug_intel' [20:37, 18:44](1541 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [20:36, 18:28](1188 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [23:30, 21:12](1366 MB)
-PASS -- TEST 'conus13km_debug_decomp_intel' [21:30, 19:23](1563 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:30, 18:37](1608 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:55] ( 330 warnings 457 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:43](1225 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:11, 13:37] ( 1 warnings 738 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [05:42, 03:20](992 MB)
-PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:16, 05:21](1183 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:24, 02:48](1277 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:54, 13:52](1121 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:54, 04:32](591 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:58, 05:21](605 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:39, 02:11](431 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:37, 05:48](499 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:35, 03:02](603 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:45, 02:53](608 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:27, 00:55](454 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:19, 03:00](1760 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:53] ( 1 warnings 977 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:47, 11:25](811 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:11, 10:37] ( 1 warnings 680 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [06:47, 05:05](1078 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:48, 05:10](1072 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [46:12, 44:34] ( 569 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:24](1853 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:32](1806 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:19](1098 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:17](1086 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:20](1084 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:23](1853 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:27](1856 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:18](1085 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:55, 05:48](1713 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:54, 05:36](1180 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:27](1838 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 03:55](4831 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:58](4838 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:27] ( 2 warnings 569 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 05:31](1777 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:48] ( 129 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 01:00](339 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:36](556 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:26](559 MB)
-
-PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [22:12, 20:36] ( 1 warnings 656 remarks )
-PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:48, 03:06](2033 MB)
-
-PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 08:48] ( 1 warnings 544 remarks )
-PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:56, 04:07](2057 MB)
-
-PASS -- COMPILE 'atml_intel' [11:11, 10:05] ( 9 warnings 593 remarks )
-PASS -- TEST 'control_p8_atmlnd_intel' [04:59, 02:49](1888 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:43, 01:33](1203 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [07:11, 06:09] ( 501 warnings 593 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:57, 04:16](1914 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:11, 11:48] ( 1 warnings 568 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:58](1944 MB)
-
-PASS -- COMPILE 'atmaero_intel' [14:11, 12:37] ( 1 warnings 460 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [05:48, 03:30](2007 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:40, 04:09](1800 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:39, 04:05](1800 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:11, 09:54] ( 1 warnings 645 remarks )
-PASS -- TEST 'regional_atmaq_intel' [14:32, 11:51](2942 MB)
-PASS -- TEST 'regional_atmaq_canopy_intel' [18:09, 15:23](2949 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [29:12, 27:29] ( 1 warnings 1092 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:18, 07:39](2161 MB)
+PASS -- TEST 'cpld_control_gefs_intel' [27:35, 14:55](3088 MB)
+PASS -- TEST 'cpld_restart_gefs_intel' [21:52, 05:56](2775 MB)
+PASS -- TEST 'cpld_dcp_gefs_intel' [27:34, 14:02](3173 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:11, 24:05] ( 1 warnings 1091 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:27, 14:51](2013 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:41, 16:19](2327 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:37, 06:00](1334 MB)
+PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [09:49, 07:03](2215 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:20, 15:38](1918 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_intel' [25:11, 23:51] ( 1 warnings 987 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [16:24, 10:38](2312 MB)
+PASS -- TEST 'cpld_restart_sfs_intel' [13:10, 06:35](1650 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:11, 03:42] ( 359 warnings 987 remarks )
+PASS -- TEST 'cpld_debug_sfs_intel' [14:49, 09:45](2338 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:07] ( 359 warnings 1403 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [19:30, 17:08](1995 MB)
+
+PASS -- COMPILE 's2swa_intel' [24:11, 22:33] ( 1 warnings 1092 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [11:31, 08:28](2264 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:16, 07:56](2255 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:21, 04:17](1947 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:00, 07:52](2281 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:22, 04:22](1833 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [13:08, 11:06](2388 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:00, 08:00](2242 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:07, 06:52](2129 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:12, 07:59](2265 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:52, 14:49](2935 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:44, 05:25](2964 MB)
+
+PASS -- COMPILE 's2swal_intel' [24:11, 22:34] ( 1 warnings 1113 remarks )
+PASS -- TEST 'cpld_control_p8_lnd_intel' [12:15, 09:14](2214 MB)
+PASS -- TEST 'cpld_restart_p8_lnd_intel' [07:23, 04:42](1919 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:08, 08:18](2235 MB)
+
+PASS -- COMPILE 's2sw_intel' [22:11, 20:35] ( 1 warnings 1060 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [10:04, 07:30](2051 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:06, 05:50](2166 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:25] ( 359 warnings 1372 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [15:09, 12:59](2288 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:11, 04:13] ( 359 warnings 1354 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:49, 05:15](2071 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [19:11, 17:44] ( 1 warnings 998 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:03, 04:05](2142 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:36] ( 1 warnings 1083 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:06, 12:12](2088 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:17, 05:58](1412 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:01, 13:35](2002 MB)
+PASS -- TEST 'cpld_control_c48_5deg_intel' [07:40, 05:16](3052 MB)
+PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:40, 01:37](3040 MB)
+PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:43, 00:58](2479 MB)
+PASS -- TEST 'cpld_control_c24_5deg_intel' [02:28, 00:55](2242 MB)
+PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:27, 00:33](2228 MB)
+PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:26, 00:25](1552 MB)
+PASS -- TEST 'cpld_control_c24_9deg_intel' [02:27, 00:54](2228 MB)
+PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:28, 00:31](2223 MB)
+PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:27, 00:24](1544 MB)
+PASS -- TEST 'cpld_control_c12_9deg_intel' [02:26, 00:31](2167 MB)
+PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:29, 00:25](2154 MB)
+PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:30, 00:20](1505 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:16] ( 359 warnings 1385 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:12, 21:46](2070 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:41] ( 1 warnings 539 remarks )
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:29, 01:54](1599 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:37, 02:04](1627 MB)
+PASS -- TEST 'control_latlon_intel' [03:26, 01:59](1620 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:01](1621 MB)
+PASS -- TEST 'control_c48_intel' [07:30, 05:33](1698 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 05:22](834 MB)
+PASS -- TEST 'control_c48_lnd_iau_intel' [07:29, 05:50](1709 MB)
+PASS -- TEST 'control_c192_intel' [07:43, 06:01](1821 MB)
+PASS -- TEST 'control_c384_intel' [09:36, 06:42](2011 MB)
+PASS -- TEST 'control_c384gdas_intel' [11:37, 07:54](1484 MB)
+PASS -- TEST 'control_stochy_intel' [03:23, 01:26](682 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:54](557 MB)
+PASS -- TEST 'control_lndp_intel' [03:23, 01:20](678 MB)
+PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:42, 02:27](976 MB)
+PASS -- TEST 'control_p8_intel' [04:59, 02:23](1897 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:04, 02:29](1905 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:02, 02:25](1912 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:03, 02:42](1930 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:09, 03:07](1938 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:00, 02:28](2430 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:52, 01:26](1216 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:59, 02:25](1901 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 01:22](1217 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:59, 02:25](1907 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:03, 03:37](1989 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:49, 04:05](1912 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:11, 03:26](1971 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:01, 02:28](1926 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:07, 02:52](1912 MB)
+PASS -- TEST 'merra2_hf_thompson_intel' [06:54, 04:36](1920 MB)
+PASS -- TEST 'regional_control_intel' [07:27, 05:29](1199 MB)
+PASS -- TEST 'regional_restart_intel' [04:26, 02:59](1191 MB)
+PASS -- TEST 'regional_decomp_intel' [07:24, 06:09](1176 MB)
+PASS -- TEST 'regional_2threads_intel' [06:24, 04:18](1097 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:31, 05:33](1506 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:25, 05:16](1190 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:25, 05:09](1189 MB)
+PASS -- TEST 'regional_wofs_intel' [07:26, 05:28](2094 MB)
+
+PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:11, 10:25] ( 1 warnings 519 remarks )
+PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [06:03, 03:50](1952 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:11, 09:37] ( 4 warnings 490 remarks )
+PASS -- TEST 'rap_control_intel' [04:48, 02:51](1094 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:48, 03:11](1439 MB)
+PASS -- TEST 'rap_decomp_intel' [04:46, 03:03](1068 MB)
+PASS -- TEST 'rap_2threads_intel' [06:46, 04:27](1169 MB)
+PASS -- TEST 'rap_restart_intel' [03:49, 01:37](1106 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [04:48, 02:50](1101 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:33, 03:02](1062 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [03:52, 01:34](1099 MB)
+PASS -- TEST 'hrrr_control_intel' [04:51, 02:42](1087 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:40, 02:47](1064 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:48, 04:07](1140 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:25, 01:30](1046 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [06:58, 05:03](1206 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 06:59](2012 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 06:42](2158 MB)
+
+PASS -- COMPILE 'csawmg_intel' [10:11, 08:58] ( 1 warnings 459 remarks )
+PASS -- TEST 'control_csawmg_intel' [07:24, 05:20](1077 MB)
+PASS -- TEST 'control_ras_intel' [04:17, 02:47](836 MB)
+
+PASS -- COMPILE 'wam_intel' [11:10, 09:28] ( 1 warnings 442 remarks )
+PASS -- TEST 'control_wam_intel' [15:37, 13:49](1678 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:38] ( 494 warnings 628 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:25, 01:53](1633 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:20, 01:54](1641 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:31](853 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:28](847 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:26, 04:01](1154 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:18, 02:42](859 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:32, 02:28](1699 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:37, 02:20](1933 MB)
+PASS -- TEST 'regional_debug_intel' [18:30, 16:53](1159 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:20, 04:23](1247 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:13](1225 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:26](1236 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:38](1246 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:33](1240 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:27, 04:26](1327 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 04:17](1238 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:21](1252 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:17, 04:16](1244 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 04:08](1240 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:09](1238 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:17](1242 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:19, 06:58](1245 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 04:20](1254 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:10, 02:57] ( 457 warnings 442 remarks )
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 09:37] ( 4 warnings 457 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:50, 02:57](1314 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:44, 02:35](1077 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:56, 03:04](1052 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:42, 03:44](1080 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:56, 03:38](1051 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:38, 03:21](998 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:54, 01:26](982 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:41](972 MB)
+PASS -- TEST 'conus13km_control_intel' [04:54, 03:03](1497 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:38, 01:20](1320 MB)
+PASS -- TEST 'conus13km_decomp_intel' [04:47, 02:50](1542 MB)
+PASS -- TEST 'conus13km_restart_intel' [03:40, 01:42](1256 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [11:11, 09:35] ( 4 warnings 487 remarks )
+PASS -- TEST 'conus13km_gl_inline_intel' [04:01, 01:48](1059 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:28] ( 4 warnings 457 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:36, 03:16](1121 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:16] ( 330 warnings 463 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 03:58](1114 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:19, 03:54](1119 MB)
+PASS -- TEST 'conus13km_debug_intel' [20:37, 18:27](1546 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [20:41, 18:53](1144 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [22:33, 21:04](1372 MB)
+PASS -- TEST 'conus13km_debug_decomp_intel' [21:31, 19:13](1587 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:31, 18:52](1606 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:20] ( 330 warnings 457 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 04:48](1219 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:12, 13:47] ( 1 warnings 738 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [05:42, 03:20](991 MB)
+PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:13, 05:19](1160 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:21, 02:48](1281 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:50, 14:02](1112 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:43, 04:41](590 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:53, 05:26](608 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:34, 02:14](434 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:36, 05:52](501 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:46, 03:07](604 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:42, 02:58](604 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 00:52](453 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:21, 02:53](1763 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 12:29] ( 1 warnings 977 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:53, 11:14](821 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:11, 11:21] ( 1 warnings 680 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [07:46, 05:10](1077 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:44, 05:11](1041 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [19:11, 17:32] ( 569 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 02:29](1859 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:33](1795 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:15, 02:17](1088 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:16](1078 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:17](1100 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:27](1850 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:26](1853 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:16](1090 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:01, 05:48](1714 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:55, 05:39](1174 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:28](1852 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:51](4833 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:53](4830 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:26] ( 2 warnings 569 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 05:22](1774 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:49] ( 129 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:57](333 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:37](557 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:24](555 MB)
+
+PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:11, 18:31] ( 1 warnings 656 remarks )
+PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:55, 03:05](2044 MB)
+
+PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:52] ( 1 warnings 544 remarks )
+PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:50, 04:04](2056 MB)
+
+PASS -- COMPILE 'atml_intel' [13:11, 11:16] ( 9 warnings 593 remarks )
+PASS -- TEST 'control_p8_atmlnd_intel' [05:02, 02:48](1876 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:43, 01:36](1189 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [06:10, 04:36] ( 501 warnings 593 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:59, 04:14](1914 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:11, 10:36] ( 1 warnings 568 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:56, 01:57](1940 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:11, 11:57] ( 1 warnings 460 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [05:49, 03:33](2006 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:37, 04:03](1783 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:41, 04:05](1805 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:11, 10:13] ( 1 warnings 645 remarks )
+PASS -- TEST 'regional_atmaq_intel' [14:30, 11:54](2947 MB)
+PASS -- TEST 'regional_atmaq_canopy_intel' [18:06, 15:17](2947 MB)
PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:57] ( 474 warnings 645 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [34:00, 31:50](2957 MB)
-
-PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:19] ( 4 warnings 464 remarks )
-PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:22, 09:50](1082 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:11, 03:51]
-PASS -- TEST 'control_c48_gnu' [09:30, 08:00](1580 MB)
-PASS -- TEST 'control_stochy_gnu' [04:22, 02:19](585 MB)
-PASS -- TEST 'control_ras_gnu' [05:19, 03:44](591 MB)
-PASS -- TEST 'control_p8_gnu' [06:07, 03:36](1541 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:47, 03:27](1519 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:11, 03:47]
-PASS -- TEST 'rap_control_gnu' [06:39, 04:13](938 MB)
-PASS -- TEST 'rap_decomp_gnu' [06:35, 04:29](935 MB)
-PASS -- TEST 'rap_2threads_gnu' [05:50, 03:32](989 MB)
-PASS -- TEST 'rap_restart_gnu' [04:57, 02:13](674 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [06:47, 04:12](931 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [06:35, 04:16](938 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:58, 02:16](672 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:44, 04:02](933 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:40, 04:03](921 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:31, 03:40](987 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:38, 04:12](931 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:22, 02:14](669 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:21, 02:09](754 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [10:01, 07:51](927 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [05:11, 03:32]
-PASS -- TEST 'control_csawmg_gnu' [08:28, 06:50](831 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:11, 08:15]
-PASS -- TEST 'control_diag_debug_gnu' [03:28, 01:15](1364 MB)
-PASS -- TEST 'regional_debug_gnu' [09:26, 07:45](874 MB)
-PASS -- TEST 'rap_control_debug_gnu' [04:20, 02:22](944 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:13](939 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:35](944 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [04:23, 02:18](944 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:29, 02:29](1032 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:17, 03:38](940 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:21, 02:26](950 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:20](576 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:21](575 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:28](1528 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:20, 02:24](945 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:51, 03:45](948 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:50]
-PASS -- TEST 'control_wam_debug_gnu' [07:38, 05:29](1380 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:10]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:26, 01:59](819 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:46]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:41, 05:21](790 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:46, 04:52](790 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [06:47, 04:32](834 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:43, 04:23](835 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:40, 04:54](787 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:52, 02:48](641 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:29, 02:30](646 MB)
-PASS -- TEST 'conus13km_control_gnu' [07:02, 04:13](1031 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:42, 02:03](1016 MB)
-PASS -- TEST 'conus13km_decomp_gnu' [06:39, 04:20](1036 MB)
-PASS -- TEST 'conus13km_restart_gnu' [04:47, 02:17](758 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:50]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:36, 04:22](818 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:51]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:06](800 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:23, 02:07](797 MB)
-PASS -- TEST 'conus13km_debug_gnu' [10:42, 09:09](1050 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [11:34, 09:10](777 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [11:31, 09:10](1032 MB)
-PASS -- TEST 'conus13km_debug_decomp_gnu' [11:28, 09:23](1055 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:31, 09:00](1121 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:16, 06:26]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:23, 02:06](824 MB)
-
-PASS -- COMPILE 's2swa_gnu' [18:11, 16:45]
-PASS -- TEST 'cpld_control_p8_gnu' [13:40, 10:35](1713 MB)
-
-PASS -- COMPILE 's2s_gnu' [17:11, 15:38]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:03, 08:31](1618 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:29]
-PASS -- TEST 'cpld_debug_p8_gnu' [08:06, 05:30](1719 MB)
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [20:11, 18:41]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [16:00, 13:53](1572 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:16]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:00, 08:55](1597 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [19:12, 18:05]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:16, 02:45](1603 MB)
-
-PASS -- COMPILE 'atm_mpas_dyn32_gnu' [04:11, 02:49]
-PASS -- TEST 'control_gfs_mpas_gnu' [02:20, 00:38](6439 MB)
+PASS -- TEST 'regional_atmaq_debug_intel' [34:03, 31:56](2961 MB)
+
+PASS -- COMPILE 'atm_fbh_intel' [10:10, 08:19] ( 4 warnings 464 remarks )
+PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:23, 09:49](1082 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:11, 03:55]
+PASS -- TEST 'control_c48_gnu' [09:30, 07:57](1580 MB)
+PASS -- TEST 'control_stochy_gnu' [04:20, 02:21](587 MB)
+PASS -- TEST 'control_ras_gnu' [05:20, 03:46](594 MB)
+PASS -- TEST 'control_p8_gnu' [06:00, 04:00](1530 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:43, 03:31](1558 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:10, 04:07]
+PASS -- TEST 'rap_control_gnu' [06:33, 04:20](934 MB)
+PASS -- TEST 'rap_decomp_gnu' [06:36, 04:18](933 MB)
+PASS -- TEST 'rap_2threads_gnu' [05:48, 03:42](986 MB)
+PASS -- TEST 'rap_restart_gnu' [04:55, 02:16](674 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [06:43, 04:17](936 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [06:36, 04:24](936 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:58, 02:12](674 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:54, 04:01](935 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:34, 04:08](921 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:43, 03:35](991 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:37, 04:03](932 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:20, 02:10](666 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:26, 02:08](750 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:57, 07:48](927 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [05:10, 03:42]
+PASS -- TEST 'control_csawmg_gnu' [08:26, 06:50](834 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:37]
+PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:20](1364 MB)
+PASS -- TEST 'regional_debug_gnu' [09:26, 07:48](887 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:03](950 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:19](941 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:23](945 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:10](950 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:17](1033 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 03:41](941 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:18, 02:10](945 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:22](584 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:29](576 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:20](1535 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:42](951 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:51, 03:47](948 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:49]
+PASS -- TEST 'control_wam_debug_gnu' [07:39, 05:14](1385 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 03:09]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:27, 01:54](819 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 03:42]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:32, 05:16](789 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:56, 04:42](786 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [06:44, 04:28](833 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:39, 04:14](827 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:37, 05:05](788 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:47, 02:59](643 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:22, 02:45](642 MB)
+PASS -- TEST 'conus13km_control_gnu' [06:58, 04:20](1031 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:35, 02:07](1015 MB)
+PASS -- TEST 'conus13km_decomp_gnu' [06:36, 04:21](1037 MB)
+PASS -- TEST 'conus13km_restart_gnu' [04:41, 02:15](759 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:11, 10:36]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:33, 04:23](820 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:00]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:11](801 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:08](799 MB)
+PASS -- TEST 'conus13km_debug_gnu' [10:37, 08:58](1052 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [10:33, 09:00](781 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [10:31, 09:08](1036 MB)
+PASS -- TEST 'conus13km_debug_decomp_gnu' [11:27, 09:14](1057 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:29, 09:15](1123 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:23]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:08](825 MB)
+
+PASS -- COMPILE 's2swa_gnu' [20:12, 19:01]
+PASS -- TEST 'cpld_control_p8_gnu' [13:23, 10:40](1715 MB)
+
+PASS -- COMPILE 's2s_gnu' [20:12, 19:03]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:06, 08:24](1620 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:14]
+PASS -- TEST 'cpld_debug_p8_gnu' [08:11, 05:31](1720 MB)
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 17:03]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [15:53, 14:00](1592 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:24]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:01, 08:47](1596 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [20:12, 18:30]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 02:43](1604 MB)
+
+PASS -- COMPILE 'atm_mpas_dyn32_gnu' [04:11, 02:50]
+PASS -- TEST 'control_gfs_mpas_gnu' [02:25, 00:37](6447 MB)
SYNOPSIS:
-Starting Date/Time: 20260304 14:27:44
-Ending Date/Time: 20260304 16:00:27
-Total Time: 01h:34m:10s
+Starting Date/Time: 20260309 12:33:52
+Ending Date/Time: 20260309 14:08:31
+Total Time: 01h:35m:44s
Compiles Completed: 57/57
Tests Completed: 258/258
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index d675232e86..babc806851 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-05cf0cce86866b0b91b5a6d315da6ecb8e0dc187
+29145037cde3805fe8069fea8867f045e758f4cf
Submodule hashes used in testing:
fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386)
@@ -15,13 +15,13 @@ Submodule hashes used in testing:
bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777)
05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a)
c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02)
- b4d9a232181b3057587f30362876a9626abf7f98 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10784-gb4d9a2321)
- 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7)
+ 08529ba87ea4ee6403446afc0c8b14f744f79c58 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10790-g08529ba87)
+ c38ddb7ebdd2d58c517b63a99bbdc8e348732db2 MOM6-interface/MOM6/pkg/CVMix-src (c38ddb7)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc)
- 4c48d84186f19336186127a63d36f68f5b8be917 UFSATM (remotes/origin/Zhao_Carr_cloud)
+ 5e7015b492169be892e4ad465cc9c71943bc8242 UFSATM (remotes/origin/feature/fv3_doxy_doc)
22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5)
- 90f266d4926a85f8ff201addee16a8e63b9a5069 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6688-g90f266d4)
+ b09af5da7617014c48a49c0476cc5481a7150f4c UFSATM/ccpp/physics (EP4-2243-gb09af5da)
c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (v2.1.3~3)
41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd)
0c00ba42a222a26754348c6f103a8e97d26f33e7 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (0c00ba4)
@@ -42,296 +42,296 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work2/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20260225
-COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_781286
+COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_210993
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [32:11, 30:14] ( 1 warnings 1092 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:06, 16:16](2097 MB)
-PASS -- TEST 'cpld_control_gefs_intel' [39:26, 19:55](3036 MB)
-PASS -- TEST 'cpld_restart_gefs_intel' [29:32, 08:11](2702 MB)
-PASS -- TEST 'cpld_dcp_gefs_intel' [43:01, 20:57](3045 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [32:12, 30:14] ( 1 warnings 1091 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [26:40, 22:38](1959 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:21, 24:42](2147 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:27, 09:35](1217 MB)
-PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:32, 10:41](2090 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:46, 27:08](1873 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_intel' [27:11, 25:13] ( 1 warnings 987 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [20:14, 12:41](2232 MB)
-PASS -- TEST 'cpld_restart_sfs_intel' [16:02, 08:09](1507 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:11, 05:40] ( 359 warnings 987 remarks )
-PASS -- TEST 'cpld_debug_sfs_intel' [20:16, 12:32](2260 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:03] ( 359 warnings 1403 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:22, 23:09](1943 MB)
-
-PASS -- COMPILE 's2swa_intel' [27:11, 25:12] ( 1 warnings 1092 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [21:33, 17:26](2195 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:00, 16:17](2184 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [12:39, 08:20](1776 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [19:02, 16:03](2208 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [12:27, 08:37](1767 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [15:00, 11:38](2296 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [19:12, 16:04](2175 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [16:45, 14:09](2068 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:11, 16:04](2196 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [21:27, 16:19](2664 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [14:41, 08:53](2829 MB)
-
-PASS -- COMPILE 's2swal_intel' [26:11, 24:57] ( 1 warnings 1113 remarks )
-PASS -- TEST 'cpld_control_p8_lnd_intel' [22:00, 18:26](2142 MB)
-PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:24, 08:28](1746 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [12:52, 09:03](2167 MB)
-
-PASS -- COMPILE 's2sw_intel' [25:11, 23:53] ( 1 warnings 1060 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [19:55, 16:34](1988 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:02, 06:37](2103 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:50] ( 359 warnings 1372 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [18:12, 14:46](2213 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:56] ( 359 warnings 1354 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:43, 07:20](2018 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [24:11, 22:54] ( 1 warnings 998 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:03, 04:30](2094 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [31:11, 29:09] ( 1 warnings 1083 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:13, 19:58](2022 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:35, 09:24](1255 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:06, 23:01](1937 MB)
-PASS -- TEST 'cpld_control_c48_5deg_intel' [10:10, 07:40](3052 MB)
-PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:07, 02:28](3039 MB)
-PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:20, 01:25](2481 MB)
-PASS -- TEST 'cpld_control_c24_5deg_intel' [03:58, 01:22](2239 MB)
-PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:54, 00:50](2240 MB)
-PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:44, 00:36](1550 MB)
-PASS -- TEST 'cpld_control_c24_9deg_intel' [03:49, 01:22](2236 MB)
-PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:44, 00:49](2239 MB)
-PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:43, 00:35](1552 MB)
-PASS -- TEST 'cpld_control_c12_9deg_intel' [02:48, 00:47](2165 MB)
-PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:50, 00:41](2163 MB)
-PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:50, 00:30](1504 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:28] ( 359 warnings 1385 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:46, 29:05](1996 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:31] ( 1 warnings 539 remarks )
-PASS -- TEST 'control_CubedSphereGrid_intel' [07:48, 02:36](1585 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:55, 02:48](1596 MB)
-PASS -- TEST 'control_latlon_intel' [07:43, 02:44](1590 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:47, 02:45](1588 MB)
-PASS -- TEST 'control_c48_intel' [13:50, 08:36](1713 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [12:44, 07:59](845 MB)
-PASS -- TEST 'control_c48_lnd_iau_intel' [13:50, 08:49](1717 MB)
-PASS -- TEST 'control_c192_intel' [13:10, 07:56](1793 MB)
-PASS -- TEST 'control_c384_intel' [15:21, 09:48](1987 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:23, 10:49](1291 MB)
-PASS -- TEST 'control_stochy_intel' [03:37, 01:50](651 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:44, 01:07](485 MB)
-PASS -- TEST 'control_lndp_intel' [03:36, 01:45](659 MB)
-PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [09:21, 04:16](951 MB)
-PASS -- TEST 'control_p8_intel' [09:56, 04:21](1879 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [10:01, 04:32](1888 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [10:09, 04:26](1880 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [10:07, 04:18](1901 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [10:23, 04:26](1912 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [08:57, 03:33](2401 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:31, 01:50](1129 MB)
-PASS -- TEST 'control_noqr_p8_intel' [09:56, 04:29](1885 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:29, 01:48](1130 MB)
-PASS -- TEST 'control_decomp_p8_intel' [11:11, 04:55](1886 MB)
-PASS -- TEST 'control_2threads_p8_intel' [09:56, 04:45](1977 MB)
-PASS -- TEST 'control_p8_lndp_intel' [11:25, 06:37](1894 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [13:57, 08:34](1933 MB)
-PASS -- TEST 'control_p8_mynn_intel' [10:05, 04:48](1892 MB)
-PASS -- TEST 'merra2_thompson_intel' [11:24, 05:25](1896 MB)
-PASS -- TEST 'merra2_hf_thompson_intel' [08:29, 05:37](1895 MB)
-PASS -- TEST 'regional_control_intel' [08:36, 06:11](1088 MB)
-PASS -- TEST 'regional_restart_intel' [05:46, 03:19](1098 MB)
-PASS -- TEST 'regional_decomp_intel' [08:39, 06:26](1086 MB)
-PASS -- TEST 'regional_2threads_intel' [05:34, 04:10](1046 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:47, 06:07](1366 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 06:08](1082 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:51, 06:08](1085 MB)
-PASS -- TEST 'regional_wofs_intel' [09:42, 07:36](1902 MB)
-
-PASS -- COMPILE 'atm_dyn32_rad32_intel' [15:11, 13:40] ( 1 warnings 519 remarks )
-PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:31, 04:30](1918 MB)
-
-PASS -- COMPILE 'rrfs_intel' [14:11, 13:03] ( 4 warnings 490 remarks )
-PASS -- TEST 'rap_control_intel' [07:35, 04:16](1039 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:10, 05:17](1361 MB)
-PASS -- TEST 'rap_decomp_intel' [07:08, 04:24](1031 MB)
-PASS -- TEST 'rap_2threads_intel' [07:14, 04:27](1128 MB)
-PASS -- TEST 'rap_restart_intel' [06:02, 02:19](1001 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [07:13, 04:14](1032 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:08, 04:24](1025 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [05:50, 02:19](1006 MB)
-PASS -- TEST 'hrrr_control_intel' [06:39, 04:04](1038 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:12, 04:11](1031 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:05, 04:11](1108 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:45, 02:16](964 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:37, 07:30](1036 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:14](1989 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:29, 08:57](2019 MB)
-
-PASS -- COMPILE 'csawmg_intel' [16:11, 13:29] ( 1 warnings 459 remarks )
-PASS -- TEST 'control_csawmg_intel' [08:48, 06:14](1043 MB)
-PASS -- TEST 'control_ras_intel' [05:33, 03:23](746 MB)
-
-PASS -- COMPILE 'wam_intel' [14:11, 12:20] ( 1 warnings 442 remarks )
-PASS -- TEST 'control_wam_intel' [14:59, 12:39](1665 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:42] ( 494 warnings 628 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:33, 02:18](1618 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:33, 02:23](1616 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:01](825 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:43](829 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:45, 05:12](1133 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:26, 02:48](828 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:40, 02:47](1687 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:57, 02:45](1919 MB)
-PASS -- TEST 'regional_debug_intel' [20:51, 18:54](1105 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:32, 05:03](1212 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:31, 04:45](1206 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:57](1204 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 05:03](1214 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:34, 04:52](1199 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:41, 05:09](1303 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 05:04](1209 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:30, 05:00](1207 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:28, 05:06](1218 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:30, 05:03](1214 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:28, 04:58](1212 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:57](1214 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 07:57](1206 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:39, 05:00](1221 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:11, 04:47] ( 457 warnings 442 remarks )
-PASS -- TEST 'control_wam_debug_intel' [16:10, 13:36](1701 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:18] ( 4 warnings 457 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:17, 05:01](1239 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:33, 03:44](936 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:04, 03:37](921 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:27, 03:59](969 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:28, 03:53](955 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:27, 03:50](909 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:43, 02:05](888 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:53, 02:02](878 MB)
-PASS -- TEST 'conus13km_control_intel' [06:42, 03:43](1306 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:02, 01:34](1226 MB)
-PASS -- TEST 'conus13km_decomp_intel' [06:08, 03:47](1339 MB)
-PASS -- TEST 'conus13km_restart_intel' [04:06, 02:08](1191 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [14:11, 12:25] ( 4 warnings 487 remarks )
-PASS -- TEST 'conus13km_gl_inline_intel' [05:48, 02:53](971 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:20] ( 4 warnings 457 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 04:25](1007 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:24] ( 330 warnings 463 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:30, 05:01](1094 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 04:56](1089 MB)
-PASS -- TEST 'conus13km_debug_intel' [26:08, 23:54](1348 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [24:59, 22:10](1044 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [23:48, 21:39](1269 MB)
-PASS -- TEST 'conus13km_debug_decomp_intel' [25:57, 23:38](1417 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:44, 22:14](1416 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:29] ( 330 warnings 457 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 04:56](1173 MB)
-
-PASS -- COMPILE 'hafsw_intel' [21:11, 19:29] ( 1 warnings 738 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:00, 04:43](877 MB)
-PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:37, 05:59](1058 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:34, 04:20](1187 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [32:07, 29:16](987 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:03, 06:50](488 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:16, 07:29](506 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:59, 03:20](366 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:13, 08:09](417 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:05, 04:21](521 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:12, 04:08](521 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:36, 01:26](395 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:54, 03:48](1722 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 16:00] ( 1 warnings 977 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:29, 11:15](716 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:11, 13:52] ( 1 warnings 680 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [09:06, 06:34](957 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:10, 06:33](938 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [24:12, 22:52] ( 569 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:22, 03:30](1846 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:24](1795 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:19, 03:12](1091 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:21, 03:10](1094 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:20, 03:10](1108 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 03:30](1845 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:28](1853 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:19, 03:08](1091 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:23, 07:43](1660 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:15, 07:20](1024 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:19, 03:32](1850 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 05:53](4820 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 05:56](4819 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:40] ( 2 warnings 569 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 07:02](1779 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:19] ( 129 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:17](256 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 00:50](314 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:32](309 MB)
-
-PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:37] ( 167 remarks )
-PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:38](562 MB)
-PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:40, 00:21](440 MB)
-
-PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:12, 24:22] ( 1 warnings 656 remarks )
-PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:13, 03:59](1986 MB)
-
-PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:12, 13:18] ( 1 warnings 544 remarks )
-PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:28, 04:53](1995 MB)
-
-PASS -- COMPILE 'atml_intel' [15:11, 14:05] ( 9 warnings 593 remarks )
-PASS -- TEST 'control_p8_atmlnd_intel' [06:37, 03:44](1857 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:05, 02:03](1107 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [07:10, 05:41] ( 501 warnings 593 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:37, 05:27](1886 MB)
-
-PASS -- COMPILE 'atmw_intel' [15:10, 13:17] ( 1 warnings 568 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:28, 02:04](1905 MB)
-
-PASS -- COMPILE 'atmaero_intel' [17:11, 15:36] ( 1 warnings 460 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [07:24, 04:24](1977 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:09, 05:13](1751 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:11, 05:16](1776 MB)
-
-PASS -- COMPILE 'atmaq_intel' [15:11, 13:39] ( 1 warnings 645 remarks )
-PASS -- TEST 'regional_atmaq_intel' [22:17, 18:15](2909 MB)
-PASS -- TEST 'regional_atmaq_canopy_intel' [26:06, 22:39](2922 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:31] ( 474 warnings 645 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [42:53, 39:50](2932 MB)
-
-PASS -- COMPILE 'atm_fbh_intel' [13:11, 11:59] ( 4 warnings 464 remarks )
-PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:32, 13:51](1083 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [29:11, 27:37] ( 1 warnings 1092 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:07, 16:12](2100 MB)
+PASS -- TEST 'cpld_control_gefs_intel' [36:08, 20:08](3033 MB)
+PASS -- TEST 'cpld_restart_gefs_intel' [24:39, 06:41](2705 MB)
+PASS -- TEST 'cpld_dcp_gefs_intel' [36:47, 21:08](3050 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [31:14, 29:29] ( 1 warnings 1091 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [26:24, 22:24](1961 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:14, 25:30](2113 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:54, 10:16](1224 MB)
+PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [16:23, 11:34](2090 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:18, 26:48](1872 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_intel' [31:11, 29:19] ( 1 warnings 987 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [20:45, 13:19](2229 MB)
+PASS -- TEST 'cpld_restart_sfs_intel' [16:20, 07:45](1507 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:11, 05:42] ( 359 warnings 987 remarks )
+PASS -- TEST 'cpld_debug_sfs_intel' [18:19, 11:40](2255 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:59] ( 359 warnings 1403 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:03, 22:51](1949 MB)
+
+PASS -- COMPILE 's2swa_intel' [32:12, 30:52] ( 1 warnings 1092 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [20:03, 17:09](2194 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:57, 16:09](2193 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [12:04, 08:41](1776 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [18:30, 16:08](2191 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [12:23, 08:35](1764 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [15:54, 12:07](2289 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [18:40, 15:48](2177 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [16:50, 14:02](2065 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:04, 16:15](2183 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [20:55, 16:22](2667 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [15:17, 09:49](2833 MB)
+
+PASS -- COMPILE 's2swal_intel' [32:12, 30:22] ( 1 warnings 1113 remarks )
+PASS -- TEST 'cpld_control_p8_lnd_intel' [19:59, 17:00](2138 MB)
+PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:24, 08:33](1747 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:34, 08:33](2163 MB)
+
+PASS -- COMPILE 's2sw_intel' [32:12, 30:50] ( 1 warnings 1060 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [18:34, 15:44](1989 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:46, 06:31](2101 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:26] ( 359 warnings 1372 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [16:52, 13:45](2212 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:08] ( 359 warnings 1354 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:18, 06:47](2018 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [27:12, 25:15] ( 1 warnings 998 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:39, 04:51](2093 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [26:11, 24:46] ( 1 warnings 1083 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:49, 20:23](2009 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:16, 09:28](1254 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:52, 23:11](1928 MB)
+PASS -- TEST 'cpld_control_c48_5deg_intel' [10:03, 07:38](3044 MB)
+PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:04, 02:24](3037 MB)
+PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:00, 01:25](2475 MB)
+PASS -- TEST 'cpld_control_c24_5deg_intel' [03:38, 01:22](2240 MB)
+PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:38, 00:47](2239 MB)
+PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:46, 00:36](1551 MB)
+PASS -- TEST 'cpld_control_c24_9deg_intel' [03:40, 01:22](2236 MB)
+PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:38, 00:48](2233 MB)
+PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:34, 00:35](1551 MB)
+PASS -- TEST 'cpld_control_c12_9deg_intel' [02:40, 00:48](2165 MB)
+PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:38, 00:41](2163 MB)
+PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:41, 00:31](1505 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 05:56] ( 359 warnings 1385 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:25, 29:01](1993 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:49] ( 1 warnings 539 remarks )
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:48, 02:33](1590 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:57, 02:43](1602 MB)
+PASS -- TEST 'control_latlon_intel' [04:44, 02:39](1593 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:48, 02:40](1588 MB)
+PASS -- TEST 'control_c48_intel' [10:49, 08:35](1714 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [09:47, 07:56](844 MB)
+PASS -- TEST 'control_c48_lnd_iau_intel' [10:48, 08:47](1718 MB)
+PASS -- TEST 'control_c192_intel' [10:11, 07:47](1794 MB)
+PASS -- TEST 'control_c384_intel' [13:19, 09:40](1970 MB)
+PASS -- TEST 'control_c384gdas_intel' [16:04, 10:33](1306 MB)
+PASS -- TEST 'control_stochy_intel' [03:38, 01:49](653 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:36, 01:08](480 MB)
+PASS -- TEST 'control_lndp_intel' [03:38, 01:43](662 MB)
+PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [06:22, 03:11](947 MB)
+PASS -- TEST 'control_p8_intel' [05:54, 03:05](1874 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:11, 03:20](1891 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [07:14, 04:02](1894 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [06:07, 03:02](1901 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [07:30, 03:14](1919 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:54, 02:54](2408 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:50, 01:48](1126 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:54, 03:02](1878 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:50, 01:45](1122 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:54, 03:09](1877 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:57, 03:32](1955 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:28, 05:18](1883 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:59, 04:42](1934 MB)
+PASS -- TEST 'control_p8_mynn_intel' [07:10, 03:18](1894 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:24, 03:43](1895 MB)
+PASS -- TEST 'merra2_hf_thompson_intel' [08:33, 05:33](1900 MB)
+PASS -- TEST 'regional_control_intel' [08:42, 06:10](1087 MB)
+PASS -- TEST 'regional_restart_intel' [05:40, 03:19](1110 MB)
+PASS -- TEST 'regional_decomp_intel' [08:31, 06:26](1084 MB)
+PASS -- TEST 'regional_2threads_intel' [05:44, 04:08](1034 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:50, 06:06](1360 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 06:06](1088 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:57, 06:08](1087 MB)
+PASS -- TEST 'regional_wofs_intel' [09:51, 07:36](1900 MB)
+
+PASS -- COMPILE 'atm_dyn32_rad32_intel' [15:11, 14:07] ( 1 warnings 519 remarks )
+PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:30, 04:32](1908 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:11, 13:04] ( 4 warnings 490 remarks )
+PASS -- TEST 'rap_control_intel' [07:28, 04:17](1038 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:12, 05:19](1364 MB)
+PASS -- TEST 'rap_decomp_intel' [07:11, 04:26](1031 MB)
+PASS -- TEST 'rap_2threads_intel' [07:11, 04:28](1116 MB)
+PASS -- TEST 'rap_restart_intel' [05:38, 02:20](1003 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [07:16, 04:12](1040 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:12, 04:23](1029 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [05:38, 02:18](1006 MB)
+PASS -- TEST 'hrrr_control_intel' [06:31, 04:03](1031 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:14, 04:11](1028 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:02, 04:11](1106 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:14](963 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:30, 07:32](1038 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:21](1990 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 08:56](2009 MB)
+
+PASS -- COMPILE 'csawmg_intel' [15:11, 13:36] ( 1 warnings 459 remarks )
+PASS -- TEST 'control_csawmg_intel' [08:47, 06:14](1041 MB)
+PASS -- TEST 'control_ras_intel' [05:25, 03:22](741 MB)
+
+PASS -- COMPILE 'wam_intel' [14:11, 12:54] ( 1 warnings 442 remarks )
+PASS -- TEST 'control_wam_intel' [14:57, 12:29](1666 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:31] ( 494 warnings 628 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:31, 02:14](1609 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:29, 02:22](1612 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:21, 03:04](828 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:44](826 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:44, 05:12](1130 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:24, 02:45](829 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:42, 02:48](1688 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:56, 02:44](1908 MB)
+PASS -- TEST 'regional_debug_intel' [18:44, 17:05](1083 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:31, 05:01](1213 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:55](1207 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:59](1210 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:00](1211 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 04:56](1201 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:42](1294 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:11](1211 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 05:08](1210 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:25, 05:07](1210 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:28, 05:03](1210 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:52](1205 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 05:02](1215 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 08:18](1203 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:31, 05:03](1212 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:11, 04:25] ( 457 warnings 442 remarks )
+PASS -- TEST 'control_wam_debug_intel' [15:56, 13:11](1700 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:31] ( 4 warnings 457 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:12, 05:03](1238 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:17, 03:44](935 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:38, 03:36](923 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:58, 04:00](966 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:10, 03:49](956 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:09, 03:46](908 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:29, 02:05](891 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:53, 02:02](877 MB)
+PASS -- TEST 'conus13km_control_intel' [06:21, 03:43](1305 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:57, 01:30](1223 MB)
+PASS -- TEST 'conus13km_decomp_intel' [07:10, 03:48](1337 MB)
+PASS -- TEST 'conus13km_restart_intel' [03:54, 02:08](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [14:11, 12:46] ( 4 warnings 487 remarks )
+PASS -- TEST 'conus13km_gl_inline_intel' [06:25, 02:53](971 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:24] ( 4 warnings 457 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:55, 04:26](1010 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:01] ( 330 warnings 463 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:54](1092 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 05:05](1095 MB)
+PASS -- TEST 'conus13km_debug_intel' [25:03, 23:04](1346 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [24:57, 22:56](1023 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [24:03, 21:39](1279 MB)
+PASS -- TEST 'conus13km_debug_decomp_intel' [25:04, 22:48](1372 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:59, 22:56](1419 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:24] ( 330 warnings 457 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 05:03](1173 MB)
+
+PASS -- COMPILE 'hafsw_intel' [20:11, 18:51] ( 1 warnings 738 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [06:58, 04:39](877 MB)
+PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:26, 06:00](1070 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:36, 04:20](1186 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [32:04, 29:14](976 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:57, 06:35](486 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:09, 07:31](505 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:50, 03:17](366 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:04, 08:08](418 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:57, 04:21](521 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:46, 04:09](522 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:39, 01:24](398 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:47, 03:48](1734 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:27] ( 1 warnings 977 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:18, 11:23](706 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:11, 13:35] ( 1 warnings 680 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [09:03, 06:31](955 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:57, 06:32](934 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [27:12, 25:46] ( 569 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 03:30](1850 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:28](1797 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:19, 03:10](1096 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:19, 03:11](1087 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 03:10](1086 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:20, 03:28](1831 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:21, 03:31](1853 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 03:07](1083 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:25, 07:38](1659 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:20, 07:19](1026 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:30](1851 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 05:51](4829 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 05:55](4829 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:41] ( 2 warnings 569 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:21, 06:52](1775 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:19] ( 129 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:21](251 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:26, 00:48](317 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:34](312 MB)
+
+PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:37] ( 167 remarks )
+PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:37](562 MB)
+PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:20](456 MB)
+
+PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [25:11, 23:33] ( 1 warnings 656 remarks )
+PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:12, 03:50](1983 MB)
+
+PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:10, 13:13] ( 1 warnings 544 remarks )
+PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:09, 04:49](1986 MB)
+
+PASS -- COMPILE 'atml_intel' [16:11, 14:37] ( 9 warnings 593 remarks )
+PASS -- TEST 'control_p8_atmlnd_intel' [06:36, 03:39](1853 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:07, 02:03](1110 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [07:10, 05:57] ( 501 warnings 593 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:29, 05:38](1883 MB)
+
+PASS -- COMPILE 'atmw_intel' [15:10, 13:47] ( 1 warnings 568 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:27, 02:05](1902 MB)
+
+PASS -- COMPILE 'atmaero_intel' [16:11, 14:55] ( 1 warnings 460 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [07:21, 04:25](1976 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:10, 05:16](1756 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:09, 05:18](1780 MB)
+
+PASS -- COMPILE 'atmaq_intel' [15:11, 13:42] ( 1 warnings 645 remarks )
+PASS -- TEST 'regional_atmaq_intel' [21:05, 18:01](2910 MB)
+PASS -- TEST 'regional_atmaq_canopy_intel' [30:58, 27:18](2920 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:53] ( 474 warnings 645 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [42:46, 40:06](2936 MB)
+
+PASS -- COMPILE 'atm_fbh_intel' [13:11, 11:57] ( 4 warnings 464 remarks )
+PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:31, 13:47](1085 MB)
SYNOPSIS:
-Starting Date/Time: 20260304 14:27:46
-Ending Date/Time: 20260304 16:33:45
-Total Time: 02h:07m:04s
+Starting Date/Time: 20260309 12:36:23
+Ending Date/Time: 20260309 14:40:00
+Total Time: 02h:04m:41s
Compiles Completed: 41/41
Tests Completed: 198/198
diff --git a/tests/logs/RegressionTests_ursa.log b/tests/logs/RegressionTests_ursa.log
index e768350a05..da090db75b 100644
--- a/tests/logs/RegressionTests_ursa.log
+++ b/tests/logs/RegressionTests_ursa.log
@@ -1,7 +1,7 @@
====START OF URSA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-56f644cfb8d47f93ea73874929f362448d883c9e
+29145037cde3805fe8069fea8867f045e758f4cf
Submodule hashes used in testing:
fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386)
@@ -15,13 +15,13 @@ Submodule hashes used in testing:
bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777)
05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a)
c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02)
- b4d9a232181b3057587f30362876a9626abf7f98 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10784-gb4d9a2321)
- 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7)
+ 08529ba87ea4ee6403446afc0c8b14f744f79c58 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10790-g08529ba87)
+ c38ddb7ebdd2d58c517b63a99bbdc8e348732db2 MOM6-interface/MOM6/pkg/CVMix-src (c38ddb7)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc)
- 4c48d84186f19336186127a63d36f68f5b8be917 UFSATM (remotes/origin/Zhao_Carr_cloud)
+ 5e7015b492169be892e4ad465cc9c71943bc8242 UFSATM (remotes/origin/feature/fv3_doxy_doc)
22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5)
- 90f266d4926a85f8ff201addee16a8e63b9a5069 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6688-g90f266d4)
+ b09af5da7617014c48a49c0476cc5481a7150f4c UFSATM/ccpp/physics (EP4-2243-gb09af5da)
c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (v2.1.3~3)
41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd)
0c00ba42a222a26754348c6f103a8e97d26f33e7 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (0c00ba4)
@@ -42,411 +42,411 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20260225
-COMPARISON DIRECTORY: /scratch3/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2293155
+COMPARISON DIRECTORY: /scratch3/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_418219
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [15:11, 14:03] ( 1 warnings 1092 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:01, 06:59](2177 MB)
-PASS -- TEST 'cpld_control_gefs_intel' [46:46, 20:24](3180 MB)
-PASS -- TEST 'cpld_restart_gefs_intel' [19:31, 05:44](2914 MB)
-PASS -- TEST 'cpld_dcp_gefs_intel' [58:36, 32:33](3418 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:11, 13:37] ( 1 warnings 1091 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [12:06, 09:19](2050 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:11, 10:12](2588 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [16:53, 03:45](1503 MB)
-PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [07:58, 04:42](2347 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:42, 16:54](1984 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_intel' [14:11, 12:17] ( 1 warnings 987 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [12:34, 08:31](2398 MB)
-PASS -- TEST 'cpld_restart_sfs_intel' [24:28, 04:19](1917 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [04:11, 03:01] ( 359 warnings 987 remarks )
-PASS -- TEST 'cpld_debug_sfs_intel' [47:16, 08:21](2434 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:42] ( 359 warnings 1403 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [49:49, 13:19](2082 MB)
-
-PASS -- COMPILE 's2swa_intel' [15:11, 14:03] ( 1 warnings 1092 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [09:53, 07:20](2525 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:03, 07:11](2499 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [24:07, 03:42](2265 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:08, 06:47](2359 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [23:52, 03:51](2000 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [14:53, 12:07](2969 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:40, 06:59](2442 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [14:43, 11:50](2278 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:58, 06:46](2462 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [22:43, 17:39](3578 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [24:12, 14:47](3468 MB)
-
-PASS -- COMPILE 's2swal_intel' [15:11, 13:58] ( 1 warnings 1113 remarks )
-PASS -- TEST 'cpld_control_p8_lnd_intel' [11:02, 07:22](2491 MB)
-PASS -- TEST 'cpld_restart_p8_lnd_intel' [22:10, 03:38](2299 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:54, 05:34](3175 MB)
-
-PASS -- COMPILE 's2sw_intel' [15:11, 13:33] ( 1 warnings 1060 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:45, 06:24](2096 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:52, 05:01](2996 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [04:11, 02:59] ( 359 warnings 1372 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [47:07, 09:05](2363 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:22] ( 359 warnings 1354 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [41:44, 04:32](2120 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:12, 13:46] ( 1 warnings 998 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:56, 03:25](2159 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [15:12, 13:30] ( 1 warnings 1083 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:46, 08:13](2161 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [22:01, 03:52](1647 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:43, 11:50](2107 MB)
-PASS -- TEST 'cpld_control_c48_5deg_intel' [06:34, 04:13](3035 MB)
-PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:31, 01:22](3020 MB)
-PASS -- TEST 'cpld_restart_c48_5deg_intel' [06:30, 04:15](2460 MB)
-PASS -- TEST 'cpld_control_c24_5deg_intel' [02:27, 00:50](2210 MB)
-PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:25, 00:31](2210 MB)
-PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:25, 00:25](1532 MB)
-PASS -- TEST 'cpld_control_c24_9deg_intel' [02:26, 00:49](2208 MB)
-PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:26, 00:30](2211 MB)
-PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:24, 00:49](1530 MB)
-PASS -- TEST 'cpld_control_c12_9deg_intel' [02:25, 00:32](2138 MB)
-PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:25, 00:49](2139 MB)
-PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:25, 00:23](1489 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:14] ( 359 warnings 1385 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [50:45, 19:20](2183 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [08:11, 07:03] ( 1 warnings 539 remarks )
-PASS -- TEST 'control_CubedSphereGrid_intel' [29:24, 01:33](2195 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [30:29, 01:39](2217 MB)
-PASS -- TEST 'control_latlon_intel' [30:24, 01:38](2226 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [30:25, 01:38](2224 MB)
-PASS -- TEST 'control_c48_intel' [07:24, 04:25](1665 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:22, 04:02](804 MB)
-PASS -- TEST 'control_c48_lnd_iau_intel' [07:24, 04:31](1668 MB)
-PASS -- TEST 'control_c192_intel' [33:38, 04:42](1822 MB)
-PASS -- TEST 'control_c384_intel' [34:19, 05:33](2082 MB)
-PASS -- TEST 'control_c384gdas_intel' [36:02, 06:09](1897 MB)
-PASS -- TEST 'control_stochy_intel' [27:21, 09:38](1312 MB)
-PASS -- TEST 'control_stochy_restart_intel' [12:19, 07:40](1249 MB)
-PASS -- TEST 'control_lndp_intel' [29:22, 01:05](1302 MB)
-PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [30:35, 02:09](1588 MB)
-PASS -- TEST 'control_p8_intel' [30:42, 02:01](2508 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [31:51, 02:10](2520 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [30:45, 02:05](2500 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [30:47, 01:59](2527 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [31:46, 02:05](2542 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [30:48, 01:52](2395 MB)
-PASS -- TEST 'control_restart_p8_intel' [13:37, 06:49](1926 MB)
-PASS -- TEST 'control_noqr_p8_intel' [30:42, 01:57](2498 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [15:32, 01:14](1853 MB)
-PASS -- TEST 'control_decomp_p8_intel' [30:39, 02:03](2510 MB)
-PASS -- TEST 'control_2threads_p8_intel' [29:47, 01:42](2013 MB)
-PASS -- TEST 'control_p8_lndp_intel' [32:39, 03:22](2524 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [31:44, 02:48](2579 MB)
-PASS -- TEST 'control_p8_mynn_intel' [30:48, 02:05](2515 MB)
-PASS -- TEST 'merra2_thompson_intel' [16:37, 02:28](2530 MB)
-PASS -- TEST 'merra2_hf_thompson_intel' [18:28, 03:59](2547 MB)
-PASS -- TEST 'regional_control_intel' [05:26, 03:44](1726 MB)
-PASS -- TEST 'regional_restart_intel' [11:25, 01:55](1690 MB)
-PASS -- TEST 'regional_decomp_intel' [17:48, 03:33](1711 MB)
-PASS -- TEST 'regional_2threads_intel' [15:45, 02:02](1575 MB)
-PASS -- TEST 'regional_noquilt_intel' [17:26, 03:21](1987 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [16:26, 03:23](1716 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [16:24, 03:30](1711 MB)
-PASS -- TEST 'regional_wofs_intel' [16:25, 04:16](2623 MB)
-
-PASS -- COMPILE 'atm_dyn32_rad32_intel' [09:11, 06:33] ( 1 warnings 519 remarks )
-PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [28:38, 12:28](2570 MB)
-
-PASS -- COMPILE 'rrfs_intel' [08:12, 05:57] ( 4 warnings 490 remarks )
-PASS -- TEST 'rap_control_intel' [19:25, 02:28](1773 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [19:46, 02:43](1620 MB)
-PASS -- TEST 'rap_decomp_intel' [18:25, 02:32](1719 MB)
-PASS -- TEST 'rap_2threads_intel' [17:31, 01:59](1171 MB)
-PASS -- TEST 'rap_restart_intel' [03:27, 01:21](1759 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [16:29, 02:28](1795 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:23, 02:31](1733 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [03:29, 01:21](1777 MB)
-PASS -- TEST 'hrrr_control_intel' [15:28, 02:23](1765 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [13:24, 02:28](1710 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [11:27, 01:54](1160 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:17](1738 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:35, 04:35](1910 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [12:19, 05:50](2658 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:19, 05:41](2894 MB)
-
-PASS -- COMPILE 'csawmg_intel' [08:11, 06:23] ( 1 warnings 459 remarks )
-PASS -- TEST 'control_csawmg_intel' [11:26, 04:18](1767 MB)
-PASS -- TEST 'control_ras_intel' [08:18, 02:13](1593 MB)
-
-PASS -- COMPILE 'wam_intel' [07:11, 05:50] ( 1 warnings 442 remarks )
-PASS -- TEST 'control_wam_intel' [14:39, 08:00](2419 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 03:43] ( 494 warnings 628 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:21, 01:37](2239 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:19, 01:40](2258 MB)
-PASS -- TEST 'control_stochy_debug_intel' [08:16, 02:11](1473 MB)
-PASS -- TEST 'control_lndp_debug_intel' [07:17, 01:57](1470 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [09:25, 03:03](1798 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:17, 01:58](1481 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:24, 02:00](2318 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:31, 02:02](2543 MB)
-PASS -- TEST 'regional_debug_intel' [14:30, 12:07](1624 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:18, 03:33](1871 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:20, 03:27](1862 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:20, 03:31](1867 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:32](1864 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 03:32](1875 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:24, 03:50](1953 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:36](1876 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 03:35](1866 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:18, 03:33](1869 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 03:34](1862 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:24](1862 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:18, 03:30](1866 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:18, 05:36](1863 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 03:33](1870 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:31, 05:59](1873 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:11, 02:17] ( 457 warnings 442 remarks )
-PASS -- TEST 'control_wam_debug_intel' [12:34, 09:15](2291 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:47] ( 4 warnings 457 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:45, 02:30](1491 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:26, 02:09](1744 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:25, 02:03](1711 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:22, 01:41](1076 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:21, 01:39](1042 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:21, 02:13](1657 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:28, 01:18](1646 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:19, 01:08](1649 MB)
-PASS -- TEST 'conus13km_control_intel' [04:48, 01:59](1751 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:32, 00:50](1777 MB)
-PASS -- TEST 'conus13km_decomp_intel' [07:33, 01:59](1819 MB)
-PASS -- TEST 'conus13km_restart_intel' [04:31, 01:08](1544 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [07:11, 05:56] ( 4 warnings 487 remarks )
-PASS -- TEST 'conus13km_gl_inline_intel' [03:39, 01:18](1327 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:55] ( 4 warnings 457 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:29, 02:39](1802 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:25] ( 330 warnings 463 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 03:24](1747 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:17, 09:18](1754 MB)
-PASS -- TEST 'conus13km_debug_intel' [19:35, 14:57](1806 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [19:32, 14:45](1432 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:30, 08:20](1815 MB)
-PASS -- TEST 'conus13km_debug_decomp_intel' [19:30, 15:35](1844 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:30, 14:55](1878 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:15] ( 330 warnings 457 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:18, 03:29](1851 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:12, 08:37] ( 1 warnings 738 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:34, 02:46](1139 MB)
-PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [09:48, 03:56](1347 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:20, 02:24](1459 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [35:35, 30:12](1327 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:36, 03:21](794 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:40, 03:58](817 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [06:31, 01:35](536 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:08, 04:21](614 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:31, 02:19](752 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:31, 02:07](755 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:22, 00:45](521 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:56, 02:19](1742 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 08:13] ( 1 warnings 977 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:14, 17:40](1087 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [10:11, 07:59] ( 1 warnings 680 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [07:32, 04:15](1319 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:35, 04:18](1284 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [13:11, 11:43] ( 569 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 01:58](1919 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:17](1867 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 02:05](1176 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [13:16, 11:35](1157 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [12:15, 11:07](1158 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:00](1919 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 01:57](1922 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 01:47](1161 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:58, 05:18](1816 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:55, 05:18](1336 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:08](1912 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:15, 08:27](4789 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:26](4787 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:22] ( 2 warnings 569 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 03:55](1834 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 00:46] ( 129 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:42](361 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:22, 00:31](621 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:22](622 MB)
-
-PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 11:58] ( 1 warnings 656 remarks )
-PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:46, 02:31](2826 MB)
-
-PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 06:07] ( 1 warnings 544 remarks )
-PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:37, 03:30](2865 MB)
-
-PASS -- COMPILE 'atml_intel' [10:11, 07:10] ( 9 warnings 593 remarks )
-PASS -- TEST 'control_p8_atmlnd_intel' [04:39, 02:37](1920 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:29, 01:25](1291 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [05:11, 03:38] ( 501 warnings 593 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:37, 03:30](1941 MB)
-
-PASS -- COMPILE 'atmw_intel' [09:11, 07:37] ( 1 warnings 568 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:36, 01:57](2696 MB)
-
-PASS -- COMPILE 'atmaero_intel' [10:11, 08:53] ( 1 warnings 460 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [05:42, 03:09](1991 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:33, 03:16](2383 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [17:34, 15:16](2430 MB)
-
-PASS -- COMPILE 'atmaq_intel' [08:11, 06:22] ( 1 warnings 645 remarks )
-PASS -- TEST 'regional_atmaq_intel' [14:29, 10:56](2878 MB)
-PASS -- TEST 'regional_atmaq_canopy_intel' [16:26, 13:32](2877 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:44] ( 474 warnings 645 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [30:15, 27:18](2893 MB)
-
-PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:53] ( 4 warnings 464 remarks )
-PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:21, 06:31](1136 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [15:12, 13:24]
-PASS -- TEST 'cpld_control_gfsv17_intelllvm' [11:45, 09:51](2048 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:11, 03:52]
-PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [16:47, 13:26](2101 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_intelllvm' [14:11, 12:11]
-PASS -- TEST 'cpld_control_sfs_intelllvm' [12:30, 08:08](2396 MB)
-
-PASS -- COMPILE 's2swa_intelllvm' [17:11, 15:41]
-PASS -- TEST 'cpld_control_p8_intelllvm' [10:07, 07:08](2520 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:06]
-PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [03:26, 02:07](1751 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 05:52]
-PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [04:28, 02:38](1799 MB)
-
-PASS -- COMPILE 'datm_cdeps_intelllvm' [13:11, 11:24]
-PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:15, 01:58](1920 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:11, 02:18]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [05:15, 03:54](1839 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:11, 03:06]
-PASS -- TEST 'control_c48_gnu' [07:23, 05:53](1508 MB)
-PASS -- TEST 'control_stochy_gnu' [04:17, 02:00](509 MB)
-PASS -- TEST 'control_ras_gnu' [05:17, 03:08](514 MB)
-PASS -- TEST 'control_p8_gnu' [04:43, 03:06](1438 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 03:00](1456 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:11, 02:55]
-PASS -- TEST 'rap_control_gnu' [06:23, 03:31](848 MB)
-PASS -- TEST 'rap_decomp_gnu' [05:29, 03:30](848 MB)
-PASS -- TEST 'rap_2threads_gnu' [05:23, 02:40](898 MB)
-PASS -- TEST 'rap_restart_gnu' [04:27, 01:50](581 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [05:28, 03:27](848 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:23, 07:56](847 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:26, 01:48](581 MB)
-PASS -- TEST 'hrrr_control_gnu' [11:28, 09:10](849 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:24, 03:20](835 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [04:27, 02:34](890 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:22, 03:18](851 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [05:19, 01:46](577 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:18, 01:45](663 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:27, 06:21](842 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [04:11, 02:35]
-PASS -- TEST 'control_csawmg_gnu' [08:25, 05:40](753 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 05:50]
-PASS -- TEST 'control_diag_debug_gnu' [03:23, 01:16](1281 MB)
-PASS -- TEST 'regional_debug_gnu' [07:27, 05:35](760 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:17, 01:49](855 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:46](856 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [04:17, 01:48](860 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [04:17, 01:47](860 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:24, 02:03](943 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:17, 02:50](851 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 01:48](855 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:06](500 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [15:11, 13:45] ( 1 warnings 1092 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:02, 06:27](2184 MB)
+PASS -- TEST 'cpld_control_gefs_intel' [28:50, 19:18](3197 MB)
+PASS -- TEST 'cpld_restart_gefs_intel' [18:23, 06:27](2889 MB)
+PASS -- TEST 'cpld_dcp_gefs_intel' [40:50, 32:04](3438 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 13:00] ( 1 warnings 1091 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [12:56, 09:25](2068 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [12:00, 09:59](2651 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [05:59, 03:48](1477 MB)
+PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [07:05, 04:34](2347 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:43, 17:04](1982 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_intel' [13:11, 11:43] ( 1 warnings 987 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [13:51, 08:30](2404 MB)
+PASS -- TEST 'cpld_restart_sfs_intel' [09:51, 04:28](1860 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:12, 03:36] ( 359 warnings 987 remarks )
+PASS -- TEST 'cpld_debug_sfs_intel' [14:31, 08:12](2434 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:47] ( 359 warnings 1403 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [15:57, 13:19](2092 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:11, 13:07] ( 1 warnings 1092 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [11:06, 07:18](2489 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:12, 06:43](2503 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [05:58, 03:45](2263 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [11:05, 07:03](2353 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [05:59, 03:45](2000 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [17:49, 13:31](2983 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:05, 07:42](2460 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [15:50, 11:43](2303 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:11, 06:57](2452 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [22:54, 18:40](3577 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [16:22, 12:00](3471 MB)
+
+PASS -- COMPILE 's2swal_intel' [14:11, 12:15] ( 1 warnings 1113 remarks )
+PASS -- TEST 'cpld_control_p8_lnd_intel' [11:09, 08:02](2534 MB)
+PASS -- TEST 'cpld_restart_p8_lnd_intel' [06:05, 03:44](2301 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:06, 05:39](3157 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:11, 11:50] ( 1 warnings 1060 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:54, 06:13](2084 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:05, 04:49](2991 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:12, 03:45] ( 359 warnings 1372 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [14:03, 09:04](2385 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:12, 03:24] ( 359 warnings 1354 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:51, 04:32](2107 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:11, 12:12] ( 1 warnings 998 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:07, 03:32](2194 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [14:11, 12:52] ( 1 warnings 1083 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:56, 08:11](2178 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:57, 03:51](1633 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:39, 11:42](2087 MB)
+PASS -- TEST 'cpld_control_c48_5deg_intel' [06:33, 04:10](3033 MB)
+PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:39, 01:24](3021 MB)
+PASS -- TEST 'cpld_restart_c48_5deg_intel' [22:36, 20:22](2460 MB)
+PASS -- TEST 'cpld_control_c24_5deg_intel' [02:34, 00:51](2211 MB)
+PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:30, 00:31](2210 MB)
+PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:26, 00:26](1531 MB)
+PASS -- TEST 'cpld_control_c24_9deg_intel' [02:30, 00:49](2209 MB)
+PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:30, 00:31](2206 MB)
+PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:27, 00:25](1532 MB)
+PASS -- TEST 'cpld_control_c12_9deg_intel' [02:31, 00:32](2139 MB)
+PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:28, 00:26](2136 MB)
+PASS -- TEST 'cpld_restart_c12_9deg_intel' [12:29, 11:05](1490 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 03:18] ( 359 warnings 1385 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:50, 19:32](2183 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:12, 07:16] ( 1 warnings 539 remarks )
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:23, 01:34](2206 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:27, 01:40](2218 MB)
+PASS -- TEST 'control_latlon_intel' [04:20, 01:39](2221 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:22, 01:40](2222 MB)
+PASS -- TEST 'control_c48_intel' [06:25, 04:17](1670 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [05:24, 04:04](800 MB)
+PASS -- TEST 'control_c48_lnd_iau_intel' [06:25, 04:24](1666 MB)
+PASS -- TEST 'control_c192_intel' [08:36, 04:49](1824 MB)
+PASS -- TEST 'control_c384_intel' [10:20, 06:25](2061 MB)
+PASS -- TEST 'control_c384gdas_intel' [11:14, 06:17](1894 MB)
+PASS -- TEST 'control_stochy_intel' [03:19, 01:13](1299 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:19, 00:41](1198 MB)
+PASS -- TEST 'control_lndp_intel' [03:19, 01:26](1297 MB)
+PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [11:28, 08:59](1606 MB)
+PASS -- TEST 'control_p8_intel' [04:45, 02:04](2508 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:51, 02:11](2514 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:41, 02:13](2508 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:43, 02:02](2532 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:42, 02:17](2538 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:43, 01:56](2436 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:33, 01:14](1849 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:36, 02:04](2520 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:33, 01:14](1844 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:34, 02:10](2511 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:33, 01:43](2011 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:32, 04:01](2502 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:41, 02:50](2579 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:41, 02:08](2515 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:39, 02:26](2532 MB)
+PASS -- TEST 'merra2_hf_thompson_intel' [05:30, 03:58](2537 MB)
+PASS -- TEST 'regional_control_intel' [05:26, 03:29](1709 MB)
+PASS -- TEST 'regional_restart_intel' [03:25, 01:56](1671 MB)
+PASS -- TEST 'regional_decomp_intel' [05:25, 03:35](1723 MB)
+PASS -- TEST 'regional_2threads_intel' [03:27, 02:06](1574 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:30, 03:22](1987 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:27, 03:24](1730 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:25, 03:25](1700 MB)
+PASS -- TEST 'regional_wofs_intel' [06:28, 04:16](2631 MB)
+
+PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:11, 06:50] ( 1 warnings 519 remarks )
+PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:39, 02:42](2551 MB)
+
+PASS -- COMPILE 'rrfs_intel' [08:12, 06:01] ( 4 warnings 490 remarks )
+PASS -- TEST 'rap_control_intel' [04:33, 02:33](1805 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:49, 02:40](1617 MB)
+PASS -- TEST 'rap_decomp_intel' [05:24, 02:37](1720 MB)
+PASS -- TEST 'rap_2threads_intel' [05:24, 01:59](1168 MB)
+PASS -- TEST 'rap_restart_intel' [03:26, 01:20](1762 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:28, 09:38](1946 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:32, 02:33](1720 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [03:30, 01:20](1753 MB)
+PASS -- TEST 'hrrr_control_intel' [04:26, 02:22](1769 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:23, 02:27](1715 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [03:31, 01:56](1161 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:17](1730 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [06:38, 04:20](1935 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [07:20, 05:52](2659 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:21, 05:41](2898 MB)
+
+PASS -- COMPILE 'csawmg_intel' [08:12, 06:22] ( 1 warnings 459 remarks )
+PASS -- TEST 'control_csawmg_intel' [06:27, 04:24](1746 MB)
+PASS -- TEST 'control_ras_intel' [04:16, 02:23](1590 MB)
+
+PASS -- COMPILE 'wam_intel' [08:12, 06:01] ( 1 warnings 442 remarks )
+PASS -- TEST 'control_wam_intel' [09:39, 07:58](2411 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 03:42] ( 494 warnings 628 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:20, 01:47](2240 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:19, 01:39](2253 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:09](1470 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:16, 01:55](1471 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:26, 03:05](1784 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:16, 02:00](1479 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:24, 01:59](2312 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:33, 02:06](2552 MB)
+PASS -- TEST 'regional_debug_intel' [14:30, 12:02](1643 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:18, 03:32](1867 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:18, 03:26](1868 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:30](1860 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:33](1866 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 03:31](1870 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:23, 03:50](1953 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:58](1869 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:17, 03:34](1869 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:18, 03:39](1869 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 03:33](1875 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:18, 03:30](1859 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 03:35](1868 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 05:40](1867 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 03:30](1863 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:35, 06:06](1873 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:12, 02:28] ( 457 warnings 442 remarks )
+PASS -- TEST 'control_wam_debug_intel' [11:34, 09:42](2288 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:49] ( 4 warnings 457 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:52, 02:39](1485 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:23, 02:29](1711 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:22, 02:08](1720 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:28, 01:40](1069 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:27, 01:39](1046 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:22, 02:32](1649 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:24, 01:10](1656 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:18, 01:08](1618 MB)
+PASS -- TEST 'conus13km_control_intel' [03:52, 01:56](1769 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:35, 00:52](1768 MB)
+PASS -- TEST 'conus13km_decomp_intel' [03:34, 01:55](1812 MB)
+PASS -- TEST 'conus13km_restart_intel' [03:33, 01:08](1540 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [07:12, 05:49] ( 4 warnings 487 remarks )
+PASS -- TEST 'conus13km_gl_inline_intel' [03:43, 01:18](1338 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:06] ( 4 warnings 457 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:31, 02:40](1821 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 02:19] ( 330 warnings 463 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 03:30](1756 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:18, 03:25](1747 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:36, 14:54](1797 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:33, 15:07](1428 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:31, 08:22](1826 MB)
+PASS -- TEST 'conus13km_debug_decomp_intel' [17:31, 15:21](1848 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:32, 15:02](1870 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 02:09] ( 330 warnings 457 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:19, 03:33](1862 MB)
+
+PASS -- COMPILE 'hafsw_intel' [10:11, 08:46] ( 1 warnings 738 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [04:37, 02:47](1164 MB)
+PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:51, 04:08](1366 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:23, 02:34](1451 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [31:40, 29:54](1320 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:42, 03:49](798 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:43, 04:38](806 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:35, 02:04](525 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:20, 05:12](614 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:37, 02:18](755 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 02:07](767 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:22, 00:47](512 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:00, 02:19](1773 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 08:00] ( 1 warnings 977 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [24:17, 21:27](1114 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [09:12, 07:33] ( 1 warnings 680 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [06:34, 04:17](1281 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:35, 04:22](1280 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:57] ( 569 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:02](1916 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:17](1865 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 01:54](1177 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:16, 01:55](1164 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:53](1163 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 01:59](1918 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 02:00](1918 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 01:47](1175 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:02, 05:32](1831 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:01, 05:16](1329 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:00](1913 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 03:25](4792 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:19](4791 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 02:16] ( 2 warnings 569 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:17, 03:56](1840 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 00:44] ( 129 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:43](365 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:34](622 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:23](622 MB)
+
+PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 11:59] ( 1 warnings 656 remarks )
+PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:50, 02:32](2835 MB)
+
+PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 06:12] ( 1 warnings 544 remarks )
+PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:45, 03:46](2860 MB)
+
+PASS -- COMPILE 'atml_intel' [08:11, 06:57] ( 9 warnings 593 remarks )
+PASS -- TEST 'control_p8_atmlnd_intel' [04:46, 02:23](1898 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:31, 01:27](1299 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:12, 03:33] ( 501 warnings 593 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:45, 03:30](1935 MB)
+
+PASS -- COMPILE 'atmw_intel' [09:11, 07:42] ( 1 warnings 568 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:39, 01:47](2704 MB)
+
+PASS -- COMPILE 'atmaero_intel' [10:11, 08:50] ( 1 warnings 460 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [05:47, 03:33](1990 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [23:38, 21:48](2402 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:38, 03:23](2408 MB)
+
+PASS -- COMPILE 'atmaq_intel' [08:11, 06:17] ( 1 warnings 645 remarks )
+PASS -- TEST 'regional_atmaq_intel' [14:35, 11:34](2878 MB)
+PASS -- TEST 'regional_atmaq_canopy_intel' [16:08, 13:25](2878 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:30] ( 474 warnings 645 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [30:08, 27:28](2892 MB)
+
+PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:45] ( 4 warnings 464 remarks )
+PASS -- TEST 'cpld_regional_atm_fbh_intel' [28:22, 26:47](1133 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [15:11, 13:27]
+PASS -- TEST 'cpld_control_gfsv17_intelllvm' [11:52, 09:29](2059 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:11, 03:12]
+PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:49, 13:14](2074 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_intelllvm' [15:11, 13:10]
+PASS -- TEST 'cpld_control_sfs_intelllvm' [13:00, 08:20](2404 MB)
+
+PASS -- COMPILE 's2swa_intelllvm' [16:11, 14:23]
+PASS -- TEST 'cpld_control_p8_intelllvm' [10:10, 07:11](2467 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:42]
+PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [14:29, 12:52](1903 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:11, 05:42]
+PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [04:31, 02:39](1800 MB)
+
+PASS -- COMPILE 'datm_cdeps_intelllvm' [12:10, 10:52]
+PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:16, 02:05](1923 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:10, 02:28]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [05:16, 04:02](1837 MB)
+
+PASS -- COMPILE 'atm_gnu' [04:10, 02:54]
+PASS -- TEST 'control_c48_gnu' [30:24, 28:32](1508 MB)
+PASS -- TEST 'control_stochy_gnu' [03:17, 01:58](508 MB)
+PASS -- TEST 'control_ras_gnu' [05:17, 03:10](514 MB)
+PASS -- TEST 'control_p8_gnu' [04:47, 03:05](1426 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [04:40, 03:00](1470 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [04:10, 02:47]
+PASS -- TEST 'rap_control_gnu' [05:23, 03:27](847 MB)
+PASS -- TEST 'rap_decomp_gnu' [05:23, 03:28](847 MB)
+PASS -- TEST 'rap_2threads_gnu' [04:32, 02:42](898 MB)
+PASS -- TEST 'rap_restart_gnu' [06:29, 01:52](581 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [05:31, 03:28](847 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:24, 03:29](847 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [05:27, 01:51](575 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:34, 03:21](849 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 03:23](834 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [07:23, 02:36](887 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [08:22, 03:26](850 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:18, 01:47](575 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:19, 01:46](663 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [10:33, 06:18](843 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [04:10, 02:39]
+PASS -- TEST 'control_csawmg_gnu' [09:27, 05:45](753 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 05:21]
+PASS -- TEST 'control_diag_debug_gnu' [05:24, 01:17](1280 MB)
+PASS -- TEST 'regional_debug_gnu' [11:29, 05:41](768 MB)
+PASS -- TEST 'rap_control_debug_gnu' [05:18, 01:49](855 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [09:18, 04:47](856 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [05:17, 01:48](860 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [05:17, 01:51](860 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [06:25, 02:03](943 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 02:50](852 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:18, 01:50](856 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:11](500 MB)
PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:12](493 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:30, 01:20](1434 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:18, 01:46](857 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:31, 02:55](865 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:33, 01:19](1442 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:19, 01:55](855 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:32, 03:02](864 MB)
-PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:40]
-PASS -- TEST 'control_wam_debug_gnu' [09:36, 04:30](1304 MB)
+PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:27]
+PASS -- TEST 'control_wam_debug_gnu' [06:38, 04:43](1305 MB)
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:48]
-PASS -- TEST 'control_csawmg_debug_gnu' [09:26, 03:59](734 MB)
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:29]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:26, 01:47](736 MB)
PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 02:46]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:23, 09:17](705 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:21, 03:09](709 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [06:26, 02:27](732 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:21, 02:22](727 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:25, 03:06](708 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:24, 01:42](554 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:19, 01:41](555 MB)
-PASS -- TEST 'conus13km_control_gnu' [08:49, 02:59](904 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:36, 01:11](905 MB)
-PASS -- TEST 'conus13km_decomp_gnu' [08:38, 03:04](907 MB)
-PASS -- TEST 'conus13km_restart_gnu' [03:36, 01:39](582 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:10, 06:28]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:29, 03:38](733 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 05:13]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [06:18, 01:45](714 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [08:18, 04:42](715 MB)
-PASS -- TEST 'conus13km_debug_gnu' [13:35, 06:58](891 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [14:34, 07:08](647 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [09:32, 04:06](922 MB)
-PASS -- TEST 'conus13km_debug_decomp_gnu' [14:29, 07:21](913 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [13:30, 07:04](990 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 05:24]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:20, 01:51](741 MB)
-
-PASS -- COMPILE 's2swa_gnu' [13:10, 11:13]
-PASS -- TEST 'cpld_control_p8_gnu' [12:11, 07:38](1597 MB)
-
-PASS -- COMPILE 's2s_gnu' [12:12, 10:32]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:54, 06:53](1546 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [03:10, 02:07]
-PASS -- TEST 'cpld_debug_p8_gnu' [08:57, 04:44](1595 MB)
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [12:10, 10:41]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [12:46, 08:56](1562 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 01:42]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [09:45, 06:31](1585 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [11:10, 10:00]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:13](1511 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:22, 03:12](706 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:22, 03:10](709 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [04:27, 02:28](732 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:26, 02:22](728 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [18:28, 16:29](709 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:29, 01:44](554 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:19, 01:39](556 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:47, 02:53](904 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:34, 01:11](905 MB)
+PASS -- TEST 'conus13km_decomp_gnu' [04:33, 03:00](906 MB)
+PASS -- TEST 'conus13km_restart_gnu' [03:33, 01:40](581 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 06:20]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:30, 03:40](733 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 05:19]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:48](715 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:18, 01:44](717 MB)
+PASS -- TEST 'conus13km_debug_gnu' [08:36, 07:09](891 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [08:35, 06:58](648 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:31, 04:03](923 MB)
+PASS -- TEST 'conus13km_debug_decomp_gnu' [09:31, 07:23](910 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:32, 07:06](990 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 05:12]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:49](741 MB)
+
+PASS -- COMPILE 's2swa_gnu' [13:10, 11:56]
+PASS -- TEST 'cpld_control_p8_gnu' [10:14, 07:41](1586 MB)
+
+PASS -- COMPILE 's2s_gnu' [12:10, 10:25]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:01, 06:56](1558 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [03:10, 01:58]
+PASS -- TEST 'cpld_debug_p8_gnu' [07:00, 04:41](1592 MB)
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [12:10, 11:08]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [10:51, 08:56](1561 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 01:44]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:49, 06:33](1575 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [11:10, 10:06]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [09:16, 07:19](1513 MB)
SYNOPSIS:
-Starting Date/Time: 20260305 03:40:13
-Ending Date/Time: 20260305 05:47:16
-Total Time: 02h:07m:22s
+Starting Date/Time: 20260309 20:03:09
+Ending Date/Time: 20260309 21:54:35
+Total Time: 01h:52m:08s
Compiles Completed: 64/64
Tests Completed: 267/267
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index b40b90f71a..10e29040e5 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-600eae9361aa8f352bb3af6cf064ea5ef5489219
+ddb458054cc960f8fc5d2227de90f67659603233
Submodule hashes used in testing:
fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386)
@@ -15,13 +15,13 @@ Submodule hashes used in testing:
bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777)
05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a)
c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02)
- b4d9a232181b3057587f30362876a9626abf7f98 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10784-gb4d9a2321)
- 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7)
+ 08529ba87ea4ee6403446afc0c8b14f744f79c58 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10790-g08529ba87)
+ c38ddb7ebdd2d58c517b63a99bbdc8e348732db2 MOM6-interface/MOM6/pkg/CVMix-src (c38ddb7)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc)
- 4c48d84186f19336186127a63d36f68f5b8be917 UFSATM (remotes/origin/Zhao_Carr_cloud)
+ 5e7015b492169be892e4ad465cc9c71943bc8242 UFSATM (remotes/origin/feature/fv3_doxy_doc)
22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5)
- 90f266d4926a85f8ff201addee16a8e63b9a5069 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6688-g90f266d4)
+ b09af5da7617014c48a49c0476cc5481a7150f4c UFSATM/ccpp/physics (EP4-2243-gb09af5da)
c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (v2.1.3~3)
41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd)
0c00ba42a222a26754348c6f103a8e97d26f33e7 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (0c00ba4)
@@ -42,247 +42,247 @@ 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-20260225
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2552885
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_354358
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [18:32, 16:02] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:37, 06:52](1943 MB)
-PASS -- TEST 'cpld_control_gefs_intel' [33:13, 16:33](2874 MB)
-PASS -- TEST 'cpld_restart_gefs_intel' [26:27, 06:52](2571 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:36, 16:21] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:13, 13:55](1818 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:31, 15:09](1844 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:14, 06:36](978 MB)
-PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [12:40, 06:49](1841 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:02, 16:31](1798 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_intel' [17:31, 14:48] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [17:51, 11:49](2096 MB)
-PASS -- TEST 'cpld_restart_sfs_intel' [14:06, 06:32](1261 MB)
-
-PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:21, 04:32] ( 355 warnings 1 remarks )
-PASS -- TEST 'cpld_debug_sfs_intel' [19:48, 13:00](2146 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 04:48] ( 355 warnings 324 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:23, 20:20](1857 MB)
-
-PASS -- COMPILE 's2swa_intel' [19:33, 16:25] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [13:06, 08:38](1972 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:28, 08:39](1976 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [10:22, 04:58](1537 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [12:58, 08:41](2007 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [10:31, 04:58](1310 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:49, 07:50](2122 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [12:55, 08:37](1967 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [11:20, 06:55](1924 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:27, 08:37](1983 MB)
-
-PASS -- COMPILE 's2swal_intel' [18:34, 16:11] ( 1 warnings 2 remarks )
-PASS -- TEST 'cpld_s2sa_p8_intel' [13:18, 08:34](1967 MB)
-
-PASS -- COMPILE 's2sw_intel' [17:32, 14:47] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:46, 04:54](1823 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:37, 07:21](1893 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [17:34, 14:43] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:14, 05:20](1899 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:34, 15:16] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:58, 13:32](1830 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:18, 06:33](1011 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:03, 15:35](1808 MB)
-PASS -- TEST 'cpld_control_c48_5deg_intel' [09:31, 06:05](2895 MB)
-PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:29, 02:14](2903 MB)
-PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:34, 01:29](2312 MB)
-PASS -- TEST 'cpld_control_c24_5deg_intel' [04:58, 01:25](2122 MB)
-PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:58, 01:01](2120 MB)
-PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:50, 00:48](1459 MB)
-PASS -- TEST 'cpld_control_c24_9deg_intel' [04:59, 01:24](2120 MB)
-PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:55, 00:57](2118 MB)
-PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:51, 00:57](1457 MB)
-PASS -- TEST 'cpld_control_c12_9deg_intel' [03:54, 00:57](2053 MB)
-PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:55, 00:52](2049 MB)
-PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:49, 00:54](1405 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 04:40] ( 355 warnings 324 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:16, 24:12](1871 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:30, 10:28] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 02:31](1479 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:44, 02:44](1487 MB)
-PASS -- TEST 'control_latlon_intel' [05:34, 02:36](1485 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:42, 02:40](1487 MB)
-PASS -- TEST 'control_c48_intel' [09:49, 06:17](1599 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:49, 05:32](728 MB)
-PASS -- TEST 'control_c48_lnd_iau_intel' [09:56, 06:27](1601 MB)
-PASS -- TEST 'control_c192_intel' [11:05, 07:15](1616 MB)
-PASS -- TEST 'control_c384_intel' [13:19, 08:24](1913 MB)
-PASS -- TEST 'control_c384gdas_intel' [16:12, 09:32](1039 MB)
-PASS -- TEST 'control_stochy_intel' [05:33, 01:53](550 MB)
-PASS -- TEST 'control_stochy_restart_intel' [04:39, 01:13](297 MB)
-PASS -- TEST 'control_lndp_intel' [04:36, 01:52](543 MB)
-PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:05, 03:24](827 MB)
-PASS -- TEST 'control_p8_intel' [08:44, 03:14](1761 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [08:04, 03:28](1757 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [08:13, 03:18](1763 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [08:19, 03:13](1790 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [08:44, 03:17](1790 MB)
-PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [06:46, 02:26](2355 MB)
-PASS -- TEST 'control_restart_p8_intel' [07:22, 02:01](915 MB)
-PASS -- TEST 'control_noqr_p8_intel' [07:46, 03:06](1763 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [06:49, 01:58](918 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:40, 03:08](1761 MB)
-PASS -- TEST 'control_2threads_p8_intel' [07:15, 02:52](1835 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:04, 05:08](1775 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [09:11, 04:19](1819 MB)
-PASS -- TEST 'control_p8_mynn_intel' [08:04, 03:19](1778 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:27, 03:37](1773 MB)
-PASS -- TEST 'merra2_hf_thompson_intel' [10:25, 05:27](1782 MB)
-PASS -- TEST 'regional_control_intel' [09:02, 05:23](913 MB)
-PASS -- TEST 'regional_restart_intel' [05:54, 03:01](910 MB)
-PASS -- TEST 'regional_decomp_intel' [08:59, 05:37](916 MB)
-PASS -- TEST 'regional_2threads_intel' [06:59, 03:21](916 MB)
-PASS -- TEST 'regional_noquilt_intel' [08:56, 05:19](1185 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [09:04, 05:21](920 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:55, 05:22](913 MB)
-PASS -- TEST 'regional_wofs_intel' [09:58, 06:45](1640 MB)
-
-PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:26, 09:47] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [09:16, 04:03](1790 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:26, 08:53] ( 4 warnings 92 remarks )
-PASS -- TEST 'rap_control_intel' [09:11, 04:02](915 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:26, 04:13](1077 MB)
-PASS -- TEST 'rap_decomp_intel' [08:29, 04:06](921 MB)
-PASS -- TEST 'rap_2threads_intel' [07:32, 03:48](984 MB)
-PASS -- TEST 'rap_restart_intel' [07:33, 02:18](668 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:20, 04:01](918 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:40, 04:02](919 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:29, 02:17](668 MB)
-PASS -- TEST 'hrrr_control_intel' [07:46, 03:53](911 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:38, 03:54](911 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:27, 03:28](982 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [05:51, 02:10](664 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:32, 07:02](912 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:42, 08:31](1878 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:47, 08:09](1870 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:33, 08:47] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [10:08, 06:34](871 MB)
-PASS -- TEST 'control_ras_intel' [06:32, 03:27](578 MB)
-
-PASS -- COMPILE 'wam_intel' [11:30, 08:17] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_wam_intel' [16:20, 12:30](1568 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:26, 04:56] ( 490 warnings 92 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:39, 02:41](1508 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:39, 02:49](1522 MB)
-PASS -- TEST 'control_stochy_debug_intel' [06:32, 03:31](724 MB)
-PASS -- TEST 'control_lndp_debug_intel' [06:34, 03:14](726 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [08:53, 04:57](1015 MB)
-PASS -- TEST 'control_ras_debug_intel' [06:34, 03:13](730 MB)
-PASS -- TEST 'control_diag_debug_intel' [06:47, 03:15](1579 MB)
-PASS -- TEST 'control_debug_p8_intel' [07:10, 03:15](1804 MB)
-PASS -- TEST 'regional_debug_intel' [22:18, 18:39](967 MB)
-PASS -- TEST 'rap_control_debug_intel' [08:39, 05:42](1099 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [08:52, 05:33](1091 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [08:39, 05:41](1093 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [08:39, 05:38](1100 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:52, 05:44](1099 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:46, 06:00](1181 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:39, 05:49](1099 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:34, 05:52](1099 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [08:36, 05:44](1105 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:45, 05:43](1097 MB)
-PASS -- TEST 'rap_noah_debug_intel' [08:42, 05:36](1098 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [08:39, 05:39](1097 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:45, 09:07](1096 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:47, 05:41](1101 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:48, 09:36](1097 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:20, 03:40] ( 454 warnings 1 remarks )
-PASS -- TEST 'control_wam_debug_intel' [18:31, 14:49](1602 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:31, 08:15] ( 4 warnings 91 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:37, 03:57](935 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:03, 03:10](798 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:57, 03:08](798 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:42, 02:54](850 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:18, 02:49](830 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:21, 03:15](795 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:17, 01:53](630 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:48, 01:45](629 MB)
-PASS -- TEST 'conus13km_control_intel' [06:37, 02:58](1025 MB)
-PASS -- TEST 'conus13km_2threads_intel' [05:15, 01:16](1044 MB)
-PASS -- TEST 'conus13km_decomp_intel' [06:20, 02:57](1032 MB)
-PASS -- TEST 'conus13km_restart_intel' [05:23, 01:51](697 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [11:25, 08:22] ( 4 warnings 91 remarks )
-PASS -- TEST 'conus13km_gl_inline_intel' [05:30, 02:05](741 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:31, 08:26] ( 4 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:04, 04:04](826 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 03:37] ( 327 warnings 91 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:43, 05:35](976 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:50, 05:23](979 MB)
-PASS -- TEST 'conus13km_debug_intel' [27:43, 23:54](1088 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [27:43, 23:57](844 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [17:24, 13:18](1121 MB)
-PASS -- TEST 'conus13km_debug_decomp_intel' [27:31, 24:29](1114 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:33, 24:05](1156 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 03:34] ( 327 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:44, 05:37](1004 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:29, 12:20] ( 1 warnings 1 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [08:16, 04:38](619 MB)
-PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [10:11, 05:35](842 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:52, 03:42](963 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:31, 12:25](803 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:06, 05:40](385 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:11, 06:49](400 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [06:09, 02:45](270 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:02, 07:38](323 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:59, 03:57](426 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:00, 03:46](420 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:42, 01:19](313 MB)
-PASS -- TEST 'gnv1_nested_intel' [09:18, 03:57](1600 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:26, 10:31] ( 1 warnings )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:31, 05:36](699 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:24, 08:56] ( 1 warnings )
-PASS -- TEST 'hafs_regional_docn_intel' [11:08, 07:00](680 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:17, 07:06](651 MB)
-
-PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:31, 15:04] ( 1 warnings 1 remarks )
-PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:55, 03:59](1824 MB)
-
-PASS -- COMPILE 'atml_intel' [12:28, 10:03] ( 9 warnings 2 remarks )
-
-PASS -- COMPILE 'atml_debug_intel' [07:20, 04:29] ( 497 warnings 2 remarks )
-
-PASS -- COMPILE 'atmaero_intel' [18:34, 15:36] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [09:06, 04:45](1857 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:41, 05:13](1694 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:46, 05:17](1708 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:24, 09:10] ( 1 warnings )
-PASS -- TEST 'regional_atmaq_intel' [21:19, 15:31](2327 MB)
-PASS -- TEST 'regional_atmaq_canopy_intel' [26:27, 20:16](2368 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [06:18, 03:49] ( 471 warnings )
-PASS -- TEST 'regional_atmaq_debug_intel' [46:43, 40:45](1888 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:36, 16:17] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:27, 06:49](1936 MB)
+PASS -- TEST 'cpld_control_gefs_intel' [35:03, 17:03](2859 MB)
+PASS -- TEST 'cpld_restart_gefs_intel' [39:08, 06:50](2574 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:37, 16:46] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:31, 13:54](1821 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:44, 15:01](1842 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:05, 06:30](987 MB)
+PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [21:05, 06:49](1845 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:53, 16:29](1800 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_intel' [19:34, 14:48] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [17:45, 11:39](2100 MB)
+PASS -- TEST 'cpld_restart_sfs_intel' [16:00, 06:45](1260 MB)
+
+PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [09:23, 04:28] ( 355 warnings 1 remarks )
+PASS -- TEST 'cpld_debug_sfs_intel' [20:12, 13:00](2148 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:21, 04:46] ( 355 warnings 324 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:47, 20:26](1856 MB)
+
+PASS -- COMPILE 's2swa_intel' [21:37, 16:46] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [13:15, 08:32](1970 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:30, 08:32](1976 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [13:36, 05:02](1541 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [13:09, 08:32](2007 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [13:41, 05:03](1312 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [12:53, 07:59](2126 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [12:53, 08:24](1967 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [12:22, 07:05](1928 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:33, 08:24](1977 MB)
+
+PASS -- COMPILE 's2swal_intel' [20:36, 16:22] ( 1 warnings 2 remarks )
+PASS -- TEST 'cpld_s2sa_p8_intel' [13:12, 08:27](1967 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:35, 15:06] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:46, 04:55](1823 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:10, 07:29](1887 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [19:32, 14:55] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:10, 05:18](1894 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:33, 15:26] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:03, 13:24](1835 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:20, 06:42](1012 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:18, 15:38](1808 MB)
+PASS -- TEST 'cpld_control_c48_5deg_intel' [10:40, 06:04](2895 MB)
+PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:40, 02:12](2903 MB)
+PASS -- TEST 'cpld_restart_c48_5deg_intel' [06:32, 01:30](2312 MB)
+PASS -- TEST 'cpld_control_c24_5deg_intel' [05:05, 01:23](2122 MB)
+PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [05:08, 00:55](2121 MB)
+PASS -- TEST 'cpld_restart_c24_5deg_intel' [06:03, 00:55](1459 MB)
+PASS -- TEST 'cpld_control_c24_9deg_intel' [05:03, 01:21](2118 MB)
+PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [05:08, 00:57](2118 MB)
+PASS -- TEST 'cpld_restart_c24_9deg_intel' [04:59, 00:54](1458 MB)
+PASS -- TEST 'cpld_control_c12_9deg_intel' [05:00, 01:01](2053 MB)
+PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [05:03, 00:51](2050 MB)
+PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:56, 00:50](1405 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:19, 04:43] ( 355 warnings 324 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:07, 24:50](1875 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:35, 10:28] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_CubedSphereGrid_intel' [06:47, 02:42](1478 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:51, 02:47](1484 MB)
+PASS -- TEST 'control_latlon_intel' [05:32, 02:38](1489 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:38, 02:41](1487 MB)
+PASS -- TEST 'control_c48_intel' [11:03, 06:12](1599 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [09:52, 05:35](727 MB)
+PASS -- TEST 'control_c48_lnd_iau_intel' [10:59, 06:24](1600 MB)
+PASS -- TEST 'control_c192_intel' [12:14, 07:14](1612 MB)
+PASS -- TEST 'control_c384_intel' [13:31, 08:28](1909 MB)
+PASS -- TEST 'control_c384gdas_intel' [16:20, 09:27](1041 MB)
+PASS -- TEST 'control_stochy_intel' [05:35, 01:52](545 MB)
+PASS -- TEST 'control_stochy_restart_intel' [06:39, 01:12](296 MB)
+PASS -- TEST 'control_lndp_intel' [04:31, 01:45](545 MB)
+PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:00, 03:09](831 MB)
+PASS -- TEST 'control_p8_intel' [08:30, 03:10](1762 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:46, 03:19](1758 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [08:28, 03:10](1765 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [10:18, 03:02](1788 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [12:35, 03:14](1793 MB)
+PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [11:02, 02:28](2352 MB)
+PASS -- TEST 'control_restart_p8_intel' [07:22, 02:06](920 MB)
+PASS -- TEST 'control_noqr_p8_intel' [11:53, 03:12](1763 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [08:28, 01:58](917 MB)
+PASS -- TEST 'control_decomp_p8_intel' [11:47, 03:13](1760 MB)
+PASS -- TEST 'control_2threads_p8_intel' [11:15, 02:51](1837 MB)
+PASS -- TEST 'control_p8_lndp_intel' [12:17, 05:18](1775 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [12:25, 04:20](1814 MB)
+PASS -- TEST 'control_p8_mynn_intel' [10:10, 03:20](1773 MB)
+PASS -- TEST 'merra2_thompson_intel' [11:40, 03:44](1774 MB)
+PASS -- TEST 'merra2_hf_thompson_intel' [11:29, 05:49](1783 MB)
+PASS -- TEST 'regional_control_intel' [10:00, 05:28](913 MB)
+PASS -- TEST 'regional_restart_intel' [08:02, 03:14](910 MB)
+PASS -- TEST 'regional_decomp_intel' [09:55, 05:55](914 MB)
+PASS -- TEST 'regional_2threads_intel' [06:53, 03:33](920 MB)
+PASS -- TEST 'regional_noquilt_intel' [08:59, 05:36](1187 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [09:11, 05:32](911 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [09:05, 05:33](912 MB)
+PASS -- TEST 'regional_wofs_intel' [13:12, 06:41](1643 MB)
+
+PASS -- COMPILE 'atm_dyn32_rad32_intel' [13:33, 09:54] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [12:29, 04:07](1789 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:30, 08:52] ( 4 warnings 92 remarks )
+PASS -- TEST 'rap_control_intel' [11:18, 03:59](915 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:31, 04:13](1078 MB)
+PASS -- TEST 'rap_decomp_intel' [12:24, 04:06](928 MB)
+PASS -- TEST 'rap_2threads_intel' [09:43, 03:39](989 MB)
+PASS -- TEST 'rap_restart_intel' [08:35, 02:16](669 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:58, 04:01](921 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:48, 04:12](922 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:16, 02:15](670 MB)
+PASS -- TEST 'hrrr_control_intel' [09:43, 03:53](913 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [09:40, 03:57](910 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [09:50, 03:27](981 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [06:57, 02:09](666 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [13:36, 07:04](915 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [12:53, 08:34](1866 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:47, 08:08](1871 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:31, 08:44] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [11:02, 06:34](873 MB)
+PASS -- TEST 'control_ras_intel' [07:36, 03:32](576 MB)
+
+PASS -- COMPILE 'wam_intel' [11:31, 08:24] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_wam_intel' [18:24, 12:43](1571 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:20, 04:59] ( 490 warnings 92 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:45, 02:45](1514 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:41, 02:50](1523 MB)
+PASS -- TEST 'control_stochy_debug_intel' [07:34, 03:35](725 MB)
+PASS -- TEST 'control_lndp_debug_intel' [07:38, 03:14](724 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [08:58, 05:03](1014 MB)
+PASS -- TEST 'control_ras_debug_intel' [07:35, 03:21](735 MB)
+PASS -- TEST 'control_diag_debug_intel' [06:52, 03:19](1579 MB)
+PASS -- TEST 'control_debug_p8_intel' [08:11, 03:15](1804 MB)
+PASS -- TEST 'regional_debug_intel' [22:23, 18:41](967 MB)
+PASS -- TEST 'rap_control_debug_intel' [09:45, 05:39](1098 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [09:48, 05:33](1088 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [09:49, 05:46](1098 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [09:43, 05:45](1098 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:52, 05:39](1093 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:55, 05:57](1180 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:55, 05:47](1100 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:37, 05:46](1099 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [11:39, 05:44](1106 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:36, 05:38](1094 MB)
+PASS -- TEST 'rap_noah_debug_intel' [10:44, 05:36](1097 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [10:40, 05:39](1099 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:47, 09:05](1097 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [10:50, 05:37](1095 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:39, 09:39](1101 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:19, 03:35] ( 454 warnings 1 remarks )
+PASS -- TEST 'control_wam_debug_intel' [21:28, 14:51](1607 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:30, 08:23] ( 4 warnings 91 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:28, 03:50](937 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:17, 03:09](793 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:31, 03:04](788 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:45, 02:51](841 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:06, 02:44](835 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:04, 03:11](797 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:27, 01:55](635 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:50, 01:51](630 MB)
+PASS -- TEST 'conus13km_control_intel' [12:49, 03:00](1025 MB)
+PASS -- TEST 'conus13km_2threads_intel' [13:18, 01:17](1057 MB)
+PASS -- TEST 'conus13km_decomp_intel' [14:22, 02:58](1032 MB)
+PASS -- TEST 'conus13km_restart_intel' [15:35, 01:52](697 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [11:30, 08:19] ( 4 warnings 91 remarks )
+PASS -- TEST 'conus13km_gl_inline_intel' [14:25, 02:07](740 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:30, 08:27] ( 4 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:18, 04:00](825 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:18, 03:40] ( 327 warnings 91 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:44, 05:29](979 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [17:58, 05:22](978 MB)
+PASS -- TEST 'conus13km_debug_intel' [35:43, 23:56](1091 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [35:49, 23:56](844 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [24:25, 13:18](1103 MB)
+PASS -- TEST 'conus13km_debug_decomp_intel' [35:30, 24:30](1111 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [34:43, 23:56](1175 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:20, 03:27] ( 327 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:56, 05:38](1005 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:31, 12:09] ( 1 warnings 1 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [18:21, 04:37](608 MB)
+PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [21:28, 05:37](827 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:53, 03:42](961 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [27:41, 12:18](828 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [21:30, 05:42](383 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [21:37, 06:42](398 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [16:31, 02:51](273 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [22:39, 07:42](322 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:10, 03:58](426 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [18:18, 03:50](421 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:48, 01:23](306 MB)
+PASS -- TEST 'gnv1_nested_intel' [18:35, 04:00](1600 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:29, 10:24] ( 1 warnings )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:08, 05:34](705 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:25, 09:04] ( 1 warnings )
+PASS -- TEST 'hafs_regional_docn_intel' [19:21, 07:05](670 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:19, 07:10](647 MB)
+
+PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:30, 14:35] ( 1 warnings 1 remarks )
+PASS -- TEST 'atm_ds2s_docn_pcice_intel' [16:09, 04:03](1821 MB)
+
+PASS -- COMPILE 'atml_intel' [12:26, 09:55] ( 9 warnings 2 remarks )
+
+PASS -- COMPILE 'atml_debug_intel' [07:20, 04:21] ( 497 warnings 2 remarks )
+
+PASS -- COMPILE 'atmaero_intel' [18:33, 15:34] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [17:16, 04:49](1857 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [16:49, 05:19](1696 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [16:01, 05:26](1711 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:26, 09:02] ( 1 warnings )
+PASS -- TEST 'regional_atmaq_intel' [27:22, 15:45](2332 MB)
+PASS -- TEST 'regional_atmaq_canopy_intel' [32:12, 20:35](2371 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:20, 03:39] ( 471 warnings )
+PASS -- TEST 'regional_atmaq_debug_intel' [50:58, 40:40](1855 MB)
SYNOPSIS:
-Starting Date/Time: 20260306 14:10:56
-Ending Date/Time: 20260306 16:06:12
-Total Time: 01h:56m:14s
+Starting Date/Time: 20260310 13:17:08
+Ending Date/Time: 20260310 15:35:40
+Total Time: 02h:19m:21s
Compiles Completed: 32/32
Tests Completed: 167/167