From 15038131c1723b808afc23ec3eedfba217cebd22 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Wed, 16 Apr 2025 14:13:21 -0400 Subject: [PATCH 01/43] first tests of feature/tendency_cleanup --- .gitmodules | 6 ++++-- FV3 | 2 +- tests/rt_tend.conf | 28 ++++++++++++++++++++++++++++ 3 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 tests/rt_tend.conf diff --git a/.gitmodules b/.gitmodules index ab72b60a64..3ed3d04e57 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,9 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NOAA-EMC/fv3atm - branch = develop + #url = https://github.com/NOAA-EMC/fv3atm + #branch = develop + url = https://github.com/grantfirl/fv3atm + branch = feature/tendency_cleanup [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/FV3 b/FV3 index 463686c694..14695e4ee6 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 463686c69470927f08bb1366c8f44c3515281c6c +Subproject commit 14695e4ee6771a650dd0dcff6eb37603b1aba218 diff --git a/tests/rt_tend.conf b/tests/rt_tend.conf new file mode 100644 index 0000000000..ceef767463 --- /dev/null +++ b/tests/rt_tend.conf @@ -0,0 +1,28 @@ +### RT.CONF FORMATTING ### +# COMPILE Line ( Items separated by a | ) +# Item 1: COMPILE - This tells rt.conf the following information is to be used in setting up a compile job +# Item 2: Compile name - The rt.sh will add _gnu or _intel to it. There must be no duplicate names for each compiler. +# If two compilations are identical except compiler, please use the same name for each. +# Item 3: Compiler to use in build (intel or gnu) +# Item 4: CMAKE Options - Provide all CMAKE options for the build +# Item 5: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines) +## -> EX: + hera orion gaea = compile will only run on hera orion and gaea machines +## -> EX: - wcoss2 acorn = compile will NOT be run on wcoss2 or acorn +# Item 6: [set as fv3]. Used to control the compile job only if FV3 was present, previously used to run a test w/o compiling code +# +# RUN Line ( Items separated by a | ) +## NOTE: The build resulting from the COMPILE line above the RUN line will be used to run the test +# Item 1: RUN - This tells rt.conf the following information is to be used in setting up a model run +# Item 2: Test name. (Which test in the tests/tests directory should be sourced) +# Item 3: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines). +## reference example above +# Item 4: Controls whether the run creates its own baseline or it uses the baseline from a different (control) test. +# Item 5: Test name to compare baselines with if not itself. + +############################# +### Intel (Classic) Tests ### +############################# + +### ATM-GOCART tests ### +COMPILE | atmaero | intel | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - noaacloud | fv3 | +RUN | atmaero_control_p8 | - noaacloud | baseline | From 088c978fa211939978d604d0abb21b6e9269d562 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Wed, 16 Apr 2025 14:25:01 -0400 Subject: [PATCH 02/43] update FV3 submodule pointer --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 14695e4ee6..989412e36d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 14695e4ee6771a650dd0dcff6eb37603b1aba218 +Subproject commit 989412e36d828aab1a76a3e4630436e5c16f5b5a From 0cd08df4c7a7cfcdfe96f12836fd899902fb4a75 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 17 Apr 2025 14:26:16 -0400 Subject: [PATCH 03/43] update FV3 submodule --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 989412e36d..a0a03b8dac 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 989412e36d828aab1a76a3e4630436e5c16f5b5a +Subproject commit a0a03b8dacee9dff140203f20f23c42117ad98cc From 2952e70ee56ecf73ca9767b48d1043bc6928cdb2 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Mon, 21 Apr 2025 13:01:39 -0400 Subject: [PATCH 04/43] use easier removal of gfdl_parse_tracers --- .gitmodules | 2 +- FV3 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 3ed3d04e57..11e3dacec0 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,7 +3,7 @@ #url = https://github.com/NOAA-EMC/fv3atm #branch = develop url = https://github.com/grantfirl/fv3atm - branch = feature/tendency_cleanup + branch = feature/tendency_cleanup_easy [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/FV3 b/FV3 index a0a03b8dac..97dff52a42 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a0a03b8dacee9dff140203f20f23c42117ad98cc +Subproject commit 97dff52a42e010d1b6d86810784cdc09738d57f9 From 9888de1f1f0e2ca46f25d5a6ed3b3f1276d73929 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 8 May 2025 13:01:35 -0400 Subject: [PATCH 05/43] update FV3 submodule pointer after diagnostics/save cleanup --- .gitmodules | 2 +- FV3 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 11e3dacec0..3ed3d04e57 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,7 +3,7 @@ #url = https://github.com/NOAA-EMC/fv3atm #branch = develop url = https://github.com/grantfirl/fv3atm - branch = feature/tendency_cleanup_easy + branch = feature/tendency_cleanup [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/FV3 b/FV3 index 97dff52a42..b1603015f3 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 97dff52a42e010d1b6d86810784cdc09738d57f9 +Subproject commit b1603015f3c1bbeb2cb55b8f5ef84cad38ed61ad From d16a0791034882ce0725ef9f854aecfbc44cd212 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 8 May 2025 13:37:14 -0400 Subject: [PATCH 06/43] udpate FV3 submodule pointer --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index b4f73cd1df..99be359b60 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b4f73cd1df2d581c02a08fb8d203c291abd25410 +Subproject commit 99be359b60bdce05b8ee7ce80a39c30d65d28af6 From 6ecb52a9763c61cbbfbd41ef8add6ba0a3fa4f97 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 8 May 2025 14:14:58 -0400 Subject: [PATCH 07/43] update FV3 submodule pointer --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 99be359b60..7bc286caf3 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 99be359b60bdce05b8ee7ce80a39c30d65d28af6 +Subproject commit 7bc286caf36a87528a72b83268e05c5fc522102c From e52db5a0ad72c5ce65814420f5f2cd35556be453 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Wed, 4 Jun 2025 12:41:48 -0400 Subject: [PATCH 08/43] update tests/rt_tend.conf --- tests/rt_tend.conf | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tests/rt_tend.conf b/tests/rt_tend.conf index ceef767463..23c9ee4a53 100644 --- a/tests/rt_tend.conf +++ b/tests/rt_tend.conf @@ -23,6 +23,24 @@ ### Intel (Classic) Tests ### ############################# +### ATM tests ### +COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 | +RUN | control_p8 | - noaacloud | baseline | +RUN | control_restart_p8 | - noaacloud | | control_p8 + +### DEBUG ATM tests ### +COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_p8_ugwpv1 | - noaacloud | fv3 | +RUN | control_debug_p8 | - noaacloud | baseline | + ### ATM-GOCART tests ### COMPILE | atmaero | intel | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - noaacloud | fv3 | RUN | atmaero_control_p8 | - noaacloud | baseline | + +############################# +### Gnu Tests ############### +############################# + +### CCPP PROD tests ### +COMPILE | atm | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8_ugwpv1 | + hera hercules | fv3 | +RUN | control_p8 | + hera hercules | baseline | + From 5a9715ea293d1857d67036ebbbf214d16a2bebb8 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Wed, 18 Jun 2025 21:03:31 +0000 Subject: [PATCH 09/43] update rt_tend.conf and FV3 --- FV3 | 2 +- tests/rt_tend.conf | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/FV3 b/FV3 index d093b69966..5ec7f9e272 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d093b69966016f045ac5a80b4080a0465e3ccf8c +Subproject commit 5ec7f9e27220585c99be0734f7ceb05da9e62046 diff --git a/tests/rt_tend.conf b/tests/rt_tend.conf index 23c9ee4a53..7329ba4456 100644 --- a/tests/rt_tend.conf +++ b/tests/rt_tend.conf @@ -26,11 +26,15 @@ ### ATM tests ### COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 | RUN | control_p8 | - noaacloud | baseline | -RUN | control_restart_p8 | - noaacloud | | control_p8 +RUN | control_restart_p8 | - noaacloud | baseline | + +COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RRFS_v1beta -D32BIT=ON | | fv3 | +RUN | rrfs_v1beta | | baseline | ### DEBUG ATM tests ### -COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_p8_ugwpv1 | - noaacloud | fv3 | +COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_p8_ugwpv1,FV3_RRFS_v1beta | - noaacloud | fv3 | RUN | control_debug_p8 | - noaacloud | baseline | +RUN | rrfs_v1beta_debug | - noaacloud | baseline | ### ATM-GOCART tests ### COMPILE | atmaero | intel | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - noaacloud | fv3 | From cbdb4bfad56c94775def3c2438618c8492e842ca Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Wed, 18 Jun 2025 22:22:56 +0000 Subject: [PATCH 10/43] update FV3 submodule --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 5ec7f9e272..0fa106898f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 5ec7f9e27220585c99be0734f7ceb05da9e62046 +Subproject commit 0fa106898ff20e90a161dee860796cb722fc3f88 From 9fdc2db665e783a4c34f05e44f35dba9909b6c4e Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Wed, 9 Jul 2025 16:51:45 -0400 Subject: [PATCH 11/43] update FV3 submodule --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 0fa106898f..5ef6dfd315 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 0fa106898ff20e90a161dee860796cb722fc3f88 +Subproject commit 5ef6dfd31528a180ae2d017e49465305d2926aa6 From d104bb82a6bbc5af4f934834bb7b839065de6488 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 10 Jul 2025 13:10:55 -0400 Subject: [PATCH 12/43] update FV3 submodule --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 5ef6dfd315..f464f61967 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 5ef6dfd31528a180ae2d017e49465305d2926aa6 +Subproject commit f464f619675905c5103bef07fec660185d7abd15 From a6e1afaa4e0762a6545c82fea9849ab6e93e6560 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 10 Jul 2025 16:07:49 -0400 Subject: [PATCH 13/43] update FV3 and CMEPS pointers --- .gitmodules | 6 ++++-- CMEPS-interface/CMEPS | 2 +- FV3 | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitmodules b/.gitmodules index 3ed3d04e57..a877471add 100644 --- a/.gitmodules +++ b/.gitmodules @@ -18,8 +18,10 @@ branch = develop [submodule "CMEPS"] path = CMEPS-interface/CMEPS - url = https://github.com/NOAA-EMC/CMEPS - branch = emc/develop + #url = https://github.com/NOAA-EMC/CMEPS + #branch = emc/develop + url = https://github.com/grantfirl/CMEPS + branch = feature/tendency_cleanup [submodule "HYCOM"] path = HYCOM-interface/HYCOM url = https://github.com/NOAA-EMC/HYCOM-src diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index ae6db2120e..bb5c14cfb5 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit ae6db2120e7a97429a2b2d3287e13feebe25d530 +Subproject commit bb5c14cfb5cc7ecad9247e98d175efd4ddbabdce diff --git a/FV3 b/FV3 index 7ce899dc16..4b1281febf 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 7ce899dc167aac4b28b8275e022ae0256112646f +Subproject commit 4b1281febfcb1ef984a66a54ee24166138aa97bf From c36368a3ce8d939e2950a8081f1e1c06a3a7ecad Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Wed, 16 Jul 2025 13:24:39 -0400 Subject: [PATCH 14/43] update FV3 pointer --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 994dfbe657..b7000b672e 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 994dfbe657da5e9e5fe63a40c41ba1b46aa09579 +Subproject commit b7000b672e32691151d2ad7e5564fca99e51cbb6 From 4d962e6e0fdf89a432970f5d164d727c26a0b776 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Wed, 16 Jul 2025 17:18:19 -0400 Subject: [PATCH 15/43] update FV3 pointer --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index b7000b672e..42a6c03d78 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b7000b672e32691151d2ad7e5564fca99e51cbb6 +Subproject commit 42a6c03d788821920b32e3456d2b4976045d6c28 From 4627b103eaa66d240eff0021d2ef72196993133d Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 17 Jul 2025 19:21:30 +0000 Subject: [PATCH 16/43] add Ursa logs --- tests/logs/RegressionTests_ursa.log | 1366 ++++++++++++++++++--------- tests/test_changes.list | 250 +++++ 2 files changed, 1190 insertions(+), 426 deletions(-) diff --git a/tests/logs/RegressionTests_ursa.log b/tests/logs/RegressionTests_ursa.log index 8dd2ddef3e..c1b6d7ad84 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: -4225922190007ff63cdc9b5e0508786bfc212766 +4d962e6e0fdf89a432970f5d164d727c26a0b776 Submodule hashes used in testing: d3c1bc45492f8b35948c97021e4e6ab4d4c203e4 AQM (v0.2.0-38-gd3c1bc4) @@ -9,11 +9,11 @@ Submodule hashes used in testing: 132fa6963ba2f7103f711eb567e4fe97ed0804a8 CDEPS-interface/CDEPS (cdeps0.4.17-406-g132fa69) 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) - ae6db2120e7a97429a2b2d3287e13feebe25d530 CMEPS-interface/CMEPS (cmeps_v0.4.1-2318-gae6db21) + bb5c14cfb5cc7ecad9247e98d175efd4ddbabdce CMEPS-interface/CMEPS (cmeps_v0.4.1-2319-gbb5c14c) 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) - ba45896ed1b5a1de0320843c9bcd292a21c26b31 FV3 (remotes/origin/feature/gfdlmpv3) + 42a6c03d788821920b32e3456d2b4976045d6c28 FV3 (heads/feature/tendency_cleanup) 11359cb04a420fc87e4cf0f035f4d1215ab24488 FV3/ccpp/framework (2025-01-06-dev-5-g11359cb) - 633e9ed68d4b37b10c80a178457257bc5f95bd67 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-5206-g633e9ed6) ++c277d2732b16c00dc61cc61e194aafb4343875e5 FV3/ccpp/physics (EP4-1761-gc277d273) c62efd27caa26f660edf24232f33f154e608b77a FV3/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 4f1a5ef4b83461a79a62c8d965ebc2b26cf5eba8 FV3/fv3/atmos_cubed_sphere (201912_public_release-416-g4f1a5ef) @@ -40,438 +40,952 @@ 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-20250701 -COMPARISON DIRECTORY: /scratch3/NAGAPE/epic/Jong.Kim/stmp/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3913938 +COMPARISON DIRECTORY: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2299050 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic +* (-a) - HPC PROJECT ACCOUNT: gmtb +* (-l) - USE CONFIG FILE: rt.conf +* (-k) - KEEP RUN DIRECTORY * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:11, 10:05] ( 1040 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:56, 06:41](2192 MB) -PASS -- TEST 'cpld_control_gefs_intel' [29:20, 20:59](3259 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [13:58, 05:59](2950 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [39:02, 32:07](3439 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:11, 13:13] ( 1038 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [13:53, 11:49](2061 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:01, 13:20](2609 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:45, 05:49](1483 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:39, 20:09](2008 MB) -PASS -- TEST 'cpld_control_gfsv17_nowav_iau_intel' [05:49, 03:50](3298 MB) -PASS -- TEST 'cpld_restart_gfsv17_nowav_iau_intel' [03:42, 02:00](3069 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:11, 13:40] ( 1038 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:36, 12:32](2008 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 03:59] ( 1535 warnings 2923 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [16:01, 13:18](2083 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:51] ( 1040 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:06, 07:33](2498 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:12, 06:56](2492 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:50, 03:50](2271 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:03, 07:08](2366 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:51, 03:48](1999 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [21:51, 19:49](2998 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:43, 08:12](2414 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:42, 11:49](2283 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:03, 06:54](2458 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:40, 18:31](3596 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:29, 12:14](3466 MB) - -PASS -- COMPILE 's2swal_intel' [11:11, 09:31] ( 1061 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [10:05, 07:36](2538 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:50, 03:55](2241 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:58, 06:12](3087 MB) - -PASS -- COMPILE 's2sw_intel' [11:11, 09:12] ( 1008 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:50, 06:32](2112 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:59, 05:13](2995 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:05] ( 1425 warnings 2173 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:11, 08:58](2388 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:33] ( 1425 warnings 2155 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:00, 04:30](2112 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:11, 07:17] ( 944 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:58, 03:23](2160 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:11, 09:28] ( 1026 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:03, 06:37](2494 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:11, 12:18] ( 1031 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:51, 11:01](2191 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:55, 05:26](1674 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:41, 15:41](2092 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [06:32, 04:28](3037 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:32, 01:29](3021 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:25, 00:53](2463 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:27, 00:56](2213 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:26, 00:33](2211 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:24, 00:26](1544 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:26, 00:54](2211 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:26, 00:34](2214 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:23, 00:25](1543 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:25, 00:34](2141 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:25, 00:28](2137 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:23, 00:23](1489 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:20] ( 1535 warnings 2905 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:58, 19:21](2193 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:12, 07:09] ( 499 remarks ) -PASS -- TEST 'control_flake_intel' [04:19, 02:33](1349 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:28, 01:48](2205 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:34, 02:15](2225 MB) -PASS -- TEST 'control_latlon_intel' [03:26, 01:42](2231 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 01:45](2230 MB) -PASS -- TEST 'control_c48_intel' [06:32, 04:40](1673 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 04:50](810 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:27, 04:42](1674 MB) -PASS -- TEST 'control_c192_intel' [06:41, 04:58](1808 MB) -PASS -- TEST 'control_c384_intel' [08:29, 05:43](2095 MB) -PASS -- TEST 'control_c384gdas_intel' [09:05, 06:10](1925 MB) -PASS -- TEST 'control_stochy_intel' [03:18, 01:12](1300 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:18, 00:41](1206 MB) -PASS -- TEST 'control_lndp_intel' [03:17, 01:36](1306 MB) -PASS -- TEST 'control_iovr4_intel' [03:19, 01:48](1297 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:27, 02:10](1595 MB) -PASS -- TEST 'control_iovr5_intel' [03:19, 01:46](1299 MB) -PASS -- TEST 'control_p8_intel' [03:38, 02:08](2537 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:44, 02:12](2536 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:37, 02:09](2508 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:39, 02:10](2554 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:42, 02:12](2536 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:39, 02:43](2397 MB) -PASS -- TEST 'control_restart_p8_intel' [03:30, 01:35](1818 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:37, 02:30](2518 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:29, 01:35](1867 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:30, 02:15](2506 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:28, 06:08](2283 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:32, 03:33](2521 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:38, 02:58](2594 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:39, 02:45](2540 MB) -PASS -- TEST 'merra2_thompson_intel' [05:00, 02:53](2542 MB) -PASS -- TEST 'regional_control_intel' [05:58, 03:34](1724 MB) -PASS -- TEST 'regional_restart_intel' [03:28, 02:01](1695 MB) -PASS -- TEST 'regional_decomp_intel' [06:02, 03:45](1719 MB) -PASS -- TEST 'regional_2threads_intel' [21:50, 19:34](1557 MB) -PASS -- TEST 'regional_noquilt_intel' [05:31, 03:36](1999 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:30, 03:35](1725 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:26, 03:34](1720 MB) -PASS -- TEST 'regional_wofs_intel' [06:26, 04:25](2644 MB) - -PASS -- COMPILE 'rrfs_intel' [08:11, 06:30] ( 3 warnings 445 remarks ) -PASS -- TEST 'rap_control_intel' [06:32, 05:07](1940 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:02, 03:17](1598 MB) -PASS -- TEST 'rap_decomp_intel' [07:28, 05:12](1838 MB) -PASS -- TEST 'rap_2threads_intel' [14:26, 12:39](1649 MB) -PASS -- TEST 'rap_restart_intel' [04:28, 02:57](1849 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:31, 05:04](1914 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:24, 05:19](1861 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:27, 03:46](1921 MB) -PASS -- TEST 'hrrr_control_intel' [05:24, 03:18](1775 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:35, 02:43](1692 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:24, 06:43](1519 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:29](1727 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:30, 06:07](1948 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:18, 06:28](2662 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 06:28](2896 MB) - -PASS -- COMPILE 'csawmg_intel' [08:11, 06:27] ( 413 remarks ) -PASS -- TEST 'control_csawmg_intel' [06:25, 04:27](1755 MB) -PASS -- TEST 'control_ras_intel' [04:17, 02:41](1595 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 05:36] ( 391 remarks ) -PASS -- TEST 'control_wam_intel' [09:31, 07:58](2431 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:55] ( 407 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:37, 02:09](2528 MB) -PASS -- TEST 'regional_control_faster_intel' [05:25, 03:26](1729 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 03:33] ( 883 warnings 585 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:31, 01:39](2244 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:32, 01:41](2262 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:19, 02:13](1490 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:19, 02:00](1483 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:29, 03:03](1795 MB) -PASS -- TEST 'control_ras_debug_intel' [09:19, 07:13](1500 MB) -PASS -- TEST 'control_diag_debug_intel' [03:35, 01:59](2323 MB) -PASS -- TEST 'control_debug_p8_intel' [03:29, 02:05](2549 MB) -PASS -- TEST 'regional_debug_intel' [13:27, 11:43](1634 MB) -PASS -- TEST 'rap_control_debug_intel' [05:20, 04:00](1886 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:17, 03:34](1862 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:16, 04:21](1871 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 03:31](1875 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:31, 03:32](1878 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:26, 04:04](1957 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:51](1881 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 03:39](1877 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:58](1879 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:35](1888 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:18, 03:32](1889 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 03:41](1873 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:21, 05:36](1879 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:19, 03:49](1883 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:17, 03:33](1877 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:41, 06:19](1890 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:11, 02:05] ( 840 warnings 391 remarks ) -PASS -- TEST 'control_wam_debug_intel' [11:32, 09:08](2309 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:46] ( 3 warnings 412 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 02:43](1460 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:28, 04:16](1860 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:26, 02:50](1712 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:26, 11:27](1576 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:25, 05:49](1448 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:21, 02:22](1659 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:26, 03:16](1803 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:18, 01:17](1652 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:55] ( 3 warnings 389 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:42, 01:26](2059 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:29, 02:14](1667 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:30, 01:11](1819 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:01] ( 3 warnings 412 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:29, 02:58](1834 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:27] ( 787 warnings 418 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 03:51](1756 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 03:24](1746 MB) -PASS -- TEST 'conus13km_debug_intel' [11:34, 09:30](2080 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [11:38, 09:35](1681 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:48, 09:53](1720 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:39, 10:03](2138 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:21] ( 787 warnings 412 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 03:50](1864 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 08:41] ( 691 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:43, 03:59](1194 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:50, 04:26](1378 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:25, 02:48](1471 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:04, 04:57](1313 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:51, 30:32](1358 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:57, 22:29](1389 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:42, 03:27](821 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:52, 04:28](818 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:33, 01:57](533 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:42, 05:15](612 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:46, 02:27](760 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:41, 02:14](753 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:40, 02:47](800 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:19, 01:03](522 MB) -PASS -- TEST 'gnv1_nested_intel' [13:17, 10:19](1748 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:03] ( 1480 warnings 2047 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:54, 08:15](715 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:11, 08:05] ( 656 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [29:57, 27:27](899 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [27:58, 25:54](1111 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 08:03] ( 925 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:18, 18:50](1090 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:11, 07:57] ( 633 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:44, 04:28](1321 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:44, 04:37](1318 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:42, 11:49](1823 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:11, 04:24] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 01:36](1223 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:03](1168 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 01:44](1109 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:16, 01:39](1109 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:53](1104 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 01:48](1235 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 01:50](1219 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 01:38](1106 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:54, 04:46](1285 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:10, 04:47](1297 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 01:36](1214 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 02:54](2480 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:15, 02:41](2502 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:43] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:04](1139 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 04:51] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:15, 01:50](1218 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:52] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:23, 00:49](363 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:39](622 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:29](620 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:11, 07:09] ( 606 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:46, 02:40](2839 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 06:04] ( 495 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:43, 06:46](2905 MB) - -PASS -- COMPILE 'atml_intel' [08:11, 06:38] ( 8 warnings 550 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:41, 02:31](1943 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:27, 01:30](1271 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 03:19] ( 888 warnings 550 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:44, 03:34](1970 MB) - -PASS -- COMPILE 'atmw_intel' [10:11, 08:23] ( 516 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:36, 01:52](2702 MB) - -PASS -- COMPILE 'atmaero_intel' [08:11, 06:33] ( 409 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:43, 03:05](2027 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:43, 03:13](2406 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:34, 03:15](2420 MB) - -PASS -- COMPILE 'atmaq_intel' [08:11, 06:27] ( 8 warnings 603 remarks ) -PASS -- TEST 'regional_atmaq_intel' [13:15, 11:05](2877 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:19] ( 865 warnings 603 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:11, 26:50](2891 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:42] ( 3 warnings 419 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:19, 06:57](1129 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [14:11, 12:58] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [13:57, 11:52](2066 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:11, 03:19] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:52, 13:27](2088 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [15:11, 13:47] -PASS -- TEST 'cpld_control_sfs_intelllvm' [14:38, 12:37](2023 MB) - -PASS -- COMPILE 's2swa_intelllvm' [10:10, 09:06] -PASS -- TEST 'cpld_control_p8_intelllvm' [10:12, 07:40](2492 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:10, 05:31] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [06:26, 04:20](1877 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:10, 05:45] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [04:28, 03:01](1811 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [10:10, 08:28] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [04:38, 02:46](810 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [04:12, 02:44] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [10:41, 08:14](707 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [06:13, 04:30] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:14, 01:48](1222 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:13, 02:22] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [07:15, 05:16](1147 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 03:32] -PASS -- TEST 'control_c48_gnu' [07:27, 05:44](1513 MB) -PASS -- TEST 'control_stochy_gnu' [03:16, 01:55](515 MB) -PASS -- TEST 'control_ras_gnu' [04:16, 03:06](520 MB) -PASS -- TEST 'control_p8_gnu' [04:37, 02:59](1465 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:39, 03:01](1461 MB) -PASS -- TEST 'control_flake_gnu' [05:17, 04:02](560 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:10, 02:52] -PASS -- TEST 'rap_control_gnu' [08:37, 06:16](854 MB) -PASS -- TEST 'rap_decomp_gnu' [08:24, 06:19](855 MB) -PASS -- TEST 'rap_2threads_gnu' [12:26, 10:32](923 MB) -PASS -- TEST 'rap_restart_gnu' [05:27, 03:15](584 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:33, 06:13](853 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:27, 06:18](853 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:28, 04:41](588 MB) -PASS -- TEST 'hrrr_control_gnu' [05:29, 03:20](857 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:21, 03:21](840 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:28, 05:18](916 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:22, 03:21](855 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:18, 01:45](579 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 01:49](668 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:30, 06:13](849 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 02:51] -PASS -- TEST 'control_csawmg_gnu' [07:25, 05:34](760 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 06:00] -PASS -- TEST 'control_diag_debug_gnu' [03:31, 01:20](1283 MB) -PASS -- TEST 'regional_debug_gnu' [07:29, 05:33](773 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:17, 01:50](861 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:48](863 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:21, 01:47](867 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 01:48](866 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:01](946 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 02:54](860 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:22, 02:02](859 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:30](506 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:40, 01:17](498 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:16](1459 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:30, 01:46](859 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 01:47](863 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:32, 03:02](872 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:33] -PASS -- TEST 'control_wam_debug_gnu' [06:32, 04:27](1311 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 03:11] -PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 01:47](742 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 03:04] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:31, 06:13](709 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:27, 03:04](712 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:26, 09:06](754 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:26, 04:55](747 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:21, 03:05](712 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:25, 04:22](555 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:17, 01:39](557 MB) -PASS -- TEST 'conus13km_control_gnu' [03:40, 02:04](859 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:32, 01:09](862 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:32, 01:17](538 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:10, 06:52] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:29, 03:35](736 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 05:34] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:51](717 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:19, 01:44](720 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:34, 04:35](875 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:31, 04:36](586 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [06:29, 04:27](882 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:30, 04:51](940 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:12, 05:23] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:53](744 MB) - -PASS -- COMPILE 's2swa_gnu' [15:18, 14:02] -PASS -- TEST 'cpld_control_p8_gnu' [10:21, 07:46](1595 MB) - -PASS -- COMPILE 's2s_gnu' [12:15, 10:57] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:16, 06:44](1556 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:25] -PASS -- TEST 'cpld_debug_p8_gnu' [07:15, 04:45](1603 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [13:11, 11:17] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [11:04, 08:58](1568 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:14, 01:59] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:59, 06:41](1579 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [13:13, 11:29] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:15, 02:03](705 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:59] ( 1035 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_mixedmode_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gefs_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gefs_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_dcp_gefs_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:12, 12:50] ( 1033 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_gfsv17_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_control_gfsv17_nowav_iau_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gfsv17_nowav_iau_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:11, 12:45] ( 1033 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:29] ( 1537 warnings 2918 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_intel' [10:11, 08:40] ( 1035 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8.v2.sfc_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_qr_p8_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_qr_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_2threads_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_decomp_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_ciceC_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c192_p8_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c192_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2swal_intel' [10:11, 08:58] ( 1056 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_lnd_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_s2sa_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_intel' [10:11, 08:22] ( 1003 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_noaero_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_nowave_noaero_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:29] ( 1427 warnings 2168 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:25] ( 1427 warnings 2150 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_noaero_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:11, 07:11] ( 939 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_noaero_p8_agrid_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:12, 09:25] ( 1021 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_faster_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:11, 12:22] ( 1026 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_pdlib_p8_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c48_5deg_intel' [, ]( MB) +FAILED: TEST TIMED OUT -- TEST 'cpld_warmstart_c48_5deg_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c48_5deg_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c24_5deg_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_warmstart_c24_5deg_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c24_5deg_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c24_9deg_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_warmstart_c24_9deg_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c24_9deg_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c12_9deg_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_warmstart_c12_9deg_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c12_9deg_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 03:20] ( 1537 warnings 2900 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:12, 06:59] ( 494 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_flake_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_latlon_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48.v2.sfc_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_lnd_iau_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c192_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c384_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c384gdas_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_stochy_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'control_stochy_restart_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_lndp_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_iovr4_intel' [, ]( MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'control_iovr4_gfdlmpv3_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_iovr5_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8.v2.sfc_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_ugwpv1_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_ugwpv1_tempo_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'control_restart_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_noqr_p8_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'control_restart_noqr_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_decomp_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_2threads_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_lndp_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_rrtmgp_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_mynn_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_control_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'regional_restart_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_decomp_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_2threads_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_noquilt_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_netcdf_parallel_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_2dwrtdecomp_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_wofs_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_intel' [08:12, 06:21] ( 3 warnings 441 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_spp_sppt_shum_skeb_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_decomp_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_2threads_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'rap_restart_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_decomp_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'rap_sfcdiff_restart_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_decomp_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_2threads_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rrfs_v1beta_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rrfs_v1nssl_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [, ]( MB) + +PASS -- COMPILE 'csawmg_intel' [07:12, 06:01] ( 409 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_csawmg_intel' [, ]( MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'control_ras_intel' [, ]( MB) + +PASS -- COMPILE 'wam_intel' [07:12, 06:01] ( 386 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_intel' [, ]( MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:12, 06:08] ( 403 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_faster_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_control_faster_intel' [, ]( MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 03:48] ( 885 warnings 581 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_stochy_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_lndp_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_csawmg_debug_intel' [, ]( MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'control_ras_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_debug_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_gf_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_c3_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_unified_drag_suite_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_diag_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_unified_ugwp_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_lndp_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_progcld_thompson_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_noah_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_clm_lake_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_flake_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_c96_no_nest_debug_intel' [, ]( MB) + +PASS -- COMPILE 'wam_debug_intel' [04:12, 02:20] ( 842 warnings 386 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:45] ( 3 warnings 408 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn32_phy32_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_dyn32_phy32_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_2threads_dyn32_phy32_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'rap_restart_dyn32_phy32_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:12, 05:53] ( 3 warnings 387 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_control_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'conus13km_2threads_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'conus13km_restart_mismatch_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:03] ( 3 warnings 408 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:36] ( 790 warnings 414 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_debug_dyn32_phy32_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_qr_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:16] ( 790 warnings 408 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_debug_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_intel' [10:12, 08:42] ( 687 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_intel' [, ]( MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_ocn_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_wav_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_ocn_wav_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_1nest_atm_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_global_1nest_atm_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_global_multiple_4nests_atm_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_global_storm_following_1nest_atm_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:12, 02:56] ( 1482 warnings 2043 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:11, 08:11] ( 651 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [, ]( MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 08:09] ( 920 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [, ]( MB) + +PASS -- COMPILE 'hafs_all_intel' [09:11, 08:05] ( 629 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_docn_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [14:03, 11:32](1815 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:10, 04:50] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 02:56](1217 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:18, 01:01](1166 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:34, 11:09](1113 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 01:41](1103 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 01:46](1099 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 01:39](1211 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 01:46](1208 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [17:38, 15:47](1105 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:56, 04:49](1275 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:52, 04:57](1310 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:37](1229 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 02:49](2499 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 02:31](2483 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:34] ( 4 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:17, 03:48](1142 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:33] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 01:49](1206 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:41] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:41, 00:45](368 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:37, 00:35](624 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:27](621 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:11, 07:15] ( 601 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_pcice_intel' [, ]( MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 06:11] ( 490 remarks ) +FAILED: UNABLE TO START TEST -- TEST 'atm_ds2s_docn_dice_intel' [, ]( MB) + +PASS -- COMPILE 'atml_intel' [08:10, 06:41] ( 8 warnings 546 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_atmlnd_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 03:18] ( 890 warnings 546 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_atmlnd_debug_intel' [, ]( MB) + +PASS -- COMPILE 'atmw_intel' [09:11, 07:50] ( 511 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atmwav_control_noaero_p8_intel' [, ]( MB) + +PASS -- COMPILE 'atmaero_intel' [08:11, 06:13] ( 404 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atmaero_control_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atmaero_control_p8_rad_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) + +PASS -- COMPILE 'atmaq_intel' [07:11, 06:04] ( 8 warnings 599 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_atmaq_intel' [, ]( MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:26] ( 867 warnings 599 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_atmaq_debug_intel' [, ]( MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:10, 06:00] ( 3 warnings 417 remarks ) +FAILED: TEST TIMED OUT -- TEST 'cpld_regional_atm_fbh_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [14:11, 12:56] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intelllvm' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:11, 03:31] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intelllvm' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [14:11, 12:54] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_intelllvm' [, ]( MB) + +PASS -- COMPILE 's2swa_intelllvm' [10:11, 08:37] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intelllvm' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:39] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn32_phy32_intelllvm' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:11, 05:42] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_intelllvm' [, ]( MB) + +PASS -- COMPILE 'hafsw_intelllvm' [10:11, 08:18] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [04:11, 02:40] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [, ]( MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [06:11, 04:35] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [13:21, 11:11](1233 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:11, 02:17] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:17, 03:50](1146 MB) + +PASS -- COMPILE 'atm_gnu' [04:11, 03:07] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_stochy_gnu' [, ]( MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'control_ras_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_ugwpv1_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_flake_gnu' [, ]( MB) + +PASS -- COMPILE 'rrfs_gnu' [04:11, 02:58] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_decomp_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_2threads_gnu' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'rap_restart_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_decomp_gnu' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'rap_sfcdiff_restart_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_noqr_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_2threads_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_decomp_gnu' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_gnu' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_noqr_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rrfs_v1beta_gnu' [, ]( MB) + +PASS -- COMPILE 'csawmg_gnu' [04:11, 02:40] +FAILED: RUN DID NOT COMPLETE -- TEST 'control_csawmg_gnu' [, ]( MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 05:14] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_diag_debug_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_debug_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_debug_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_debug_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_gf_debug_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_c3_debug_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_diag_debug_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_progcld_thompson_debug_gnu' [, ]( MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'control_ras_debug_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_stochy_debug_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_debug_p8_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_flake_debug_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_clm_lake_debug_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_c96_no_nest_debug_gnu' [, ]( MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:29] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_gnu' [, ]( MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 02:47] +FAILED: RUN DID NOT COMPLETE -- TEST 'control_csawmg_debug_gnu' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 02:55] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_2threads_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'rap_restart_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_control_gnu' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'conus13km_2threads_gnu' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'conus13km_restart_mismatch_gnu' [, ]( MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:14, 06:19] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_gnu' [, ]( MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:12, 05:25] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_debug_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_qr_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_2threads_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_radar_tten_debug_gnu' [, ]( MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 05:13] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_debug_gnu' [, ]( MB) + +PASS -- COMPILE 's2swa_gnu' [14:17, 12:48] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_gnu' [, ]( MB) + +PASS -- COMPILE 's2s_gnu' [14:13, 12:39] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_nowave_noaero_p8_gnu' [, ]( MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:09] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_p8_gnu' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [13:12, 11:49] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_pdlib_p8_gnu' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 01:53] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [12:14, 10:31] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [20:19, 18:09](708 MB) SYNOPSIS: -Starting Date/Time: 20250713 21:10:09 -Ending Date/Time: 20250713 22:47:45 -Total Time: 01h:38m:08s +Starting Date/Time: 20250717 15:20:04 +Ending Date/Time: 20250717 18:02:08 +Total Time: 02h:42m:47s Compiles Completed: 69/69 -Tests Completed: 277/277 +Tests Completed: 22/277 +Failed Tests: +* TEST cpld_control_p8_mixedmode_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8_mixedmode_intel.log +* TEST cpld_control_gefs_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_gefs_intel.log +* TEST cpld_restart_gefs_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_dcp_gefs_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_dcp_gefs_intel.log +* TEST cpld_control_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_gfsv17_intel.log +* TEST cpld_control_gfsv17_iau_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_mpi_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_mpi_gfsv17_intel.log +* TEST cpld_control_gfsv17_nowav_iau_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_restart_gfsv17_nowav_iau_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_control_sfs_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_sfs_intel.log +* TEST cpld_debug_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_gfsv17_intel.log +* TEST cpld_control_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8_intel.log +* TEST cpld_control_p8.v2.sfc_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8.v2.sfc_intel.log +* TEST cpld_restart_p8_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_control_qr_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_qr_p8_intel.log +* TEST cpld_restart_qr_p8_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_2threads_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_2threads_p8_intel.log +* TEST cpld_decomp_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_decomp_p8_intel.log +* TEST cpld_mpi_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_mpi_p8_intel.log +* TEST cpld_control_ciceC_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_ciceC_p8_intel.log +* TEST cpld_control_c192_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_c192_p8_intel.log +* TEST cpld_restart_c192_p8_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_control_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8_lnd_intel.log +* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_s2sa_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_s2sa_p8_intel.log +* TEST cpld_control_noaero_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_noaero_p8_intel.log +* TEST cpld_control_nowave_noaero_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_nowave_noaero_p8_intel.log +* TEST cpld_debug_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_p8_intel.log +* TEST cpld_debug_noaero_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_noaero_p8_intel.log +* TEST cpld_control_noaero_p8_agrid_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_noaero_p8_agrid_intel.log +* TEST cpld_control_p8_faster_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8_faster_intel.log +* TEST cpld_control_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_pdlib_p8_intel.log +* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_mpi_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_mpi_pdlib_p8_intel.log +* TEST cpld_control_c48_5deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_c48_5deg_intel.log +* TEST cpld_warmstart_c48_5deg_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2299050/cpld_warmstart_c48_5deg_intel/err +* TEST cpld_restart_c48_5deg_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_control_c24_5deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_c24_5deg_intel.log +* TEST cpld_warmstart_c24_5deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_warmstart_c24_5deg_intel.log +* TEST cpld_restart_c24_5deg_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_control_c24_9deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_c24_9deg_intel.log +* TEST cpld_warmstart_c24_9deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_warmstart_c24_9deg_intel.log +* TEST cpld_restart_c24_9deg_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_control_c12_9deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_c12_9deg_intel.log +* TEST cpld_warmstart_c12_9deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_warmstart_c12_9deg_intel.log +* TEST cpld_restart_c12_9deg_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_debug_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_pdlib_p8_intel.log +* TEST control_flake_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_flake_intel.log +* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_CubedSphereGrid_intel.log +* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_CubedSphereGrid_parallel_intel.log +* TEST control_latlon_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_latlon_intel.log +* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_wrtGauss_netcdf_parallel_intel.log +* TEST control_c48_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c48_intel.log +* TEST control_c48.v2.sfc_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c48.v2.sfc_intel.log +* TEST control_c48_lnd_iau_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c48_lnd_iau_intel.log +* TEST control_c192_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c192_intel.log +* TEST control_c384_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c384_intel.log +* TEST control_c384gdas_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c384gdas_intel.log +* TEST control_stochy_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_stochy_intel.log +* TEST control_stochy_restart_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST control_lndp_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_lndp_intel.log +* TEST control_iovr4_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_iovr4_intel.log +* TEST control_iovr4_gfdlmpv3_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_iovr4_gfdlmpv3_intel.log +* TEST control_iovr5_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_iovr5_intel.log +* TEST control_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_intel.log +* TEST control_p8.v2.sfc_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8.v2.sfc_intel.log +* TEST control_p8_ugwpv1_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_ugwpv1_intel.log +* TEST control_p8_ugwpv1_tempo_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_ugwpv1_tempo_intel.log +* TEST control_p8_ugwpv1_tempo_aerosol_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_ugwpv1_tempo_aerosol_intel.log +* TEST control_p8_ugwpv1_tempo_aerosol_hail_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_ugwpv1_tempo_aerosol_hail_intel.log +* TEST control_restart_p8_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST control_noqr_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_noqr_p8_intel.log +* TEST control_restart_noqr_p8_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST control_decomp_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_decomp_p8_intel.log +* TEST control_2threads_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_2threads_p8_intel.log +* TEST control_p8_lndp_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_lndp_intel.log +* TEST control_p8_rrtmgp_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_rrtmgp_intel.log +* TEST control_p8_mynn_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_mynn_intel.log +* TEST merra2_thompson_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_merra2_thompson_intel.log +* TEST regional_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_control_intel.log +* TEST regional_restart_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST regional_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_decomp_intel.log +* TEST regional_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_2threads_intel.log +* TEST regional_noquilt_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_noquilt_intel.log +* TEST regional_netcdf_parallel_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_netcdf_parallel_intel.log +* TEST regional_2dwrtdecomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_2dwrtdecomp_intel.log +* TEST regional_wofs_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_wofs_intel.log +* TEST rap_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_intel.log +* TEST regional_spp_sppt_shum_skeb_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_spp_sppt_shum_skeb_intel.log +* TEST rap_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_decomp_intel.log +* TEST rap_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_2threads_intel.log +* TEST rap_restart_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST rap_sfcdiff_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_sfcdiff_intel.log +* TEST rap_sfcdiff_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_sfcdiff_decomp_intel.log +* TEST rap_sfcdiff_restart_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST hrrr_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_intel.log +* TEST hrrr_control_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_decomp_intel.log +* TEST hrrr_control_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_2threads_intel.log +* TEST hrrr_control_restart_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST rrfs_v1beta_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rrfs_v1beta_intel.log +* TEST rrfs_v1nssl_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rrfs_v1nssl_intel.log +* TEST rrfs_v1nssl_nohailnoccn_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rrfs_v1nssl_nohailnoccn_intel.log +* TEST control_csawmg_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_csawmg_intel.log +* TEST control_ras_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_ras_intel.log +* TEST control_wam_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_wam_intel.log +* TEST control_p8_faster_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_faster_intel.log +* TEST regional_control_faster_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_control_faster_intel.log +* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_CubedSphereGrid_debug_intel.log +* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_wrtGauss_netcdf_parallel_debug_intel.log +* TEST control_stochy_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_stochy_debug_intel.log +* TEST control_lndp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_lndp_debug_intel.log +* TEST control_csawmg_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_csawmg_debug_intel.log +* TEST control_ras_debug_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_ras_debug_intel.log +* TEST control_diag_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_diag_debug_intel.log +* TEST control_debug_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_debug_p8_intel.log +* TEST regional_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_debug_intel.log +* TEST rap_control_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_debug_intel.log +* TEST hrrr_control_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_debug_intel.log +* TEST hrrr_gf_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_gf_debug_intel.log +* TEST hrrr_c3_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_c3_debug_intel.log +* TEST rap_unified_drag_suite_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_unified_drag_suite_debug_intel.log +* TEST rap_diag_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_diag_debug_intel.log +* TEST rap_cires_ugwp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_cires_ugwp_debug_intel.log +* TEST rap_unified_ugwp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_unified_ugwp_debug_intel.log +* TEST rap_lndp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_lndp_debug_intel.log +* TEST rap_progcld_thompson_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_progcld_thompson_debug_intel.log +* TEST rap_noah_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_noah_debug_intel.log +* TEST rap_sfcdiff_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_sfcdiff_debug_intel.log +* TEST rap_noah_sfcdiff_cires_ugwp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_noah_sfcdiff_cires_ugwp_debug_intel.log +* TEST rap_clm_lake_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_clm_lake_debug_intel.log +* TEST rap_flake_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_flake_debug_intel.log +* TEST gnv1_c96_no_nest_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_gnv1_c96_no_nest_debug_intel.log +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_wam_debug_intel.log +* TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_spp_sppt_shum_skeb_dyn32_phy32_intel.log +* TEST rap_control_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn32_phy32_intel.log +* TEST hrrr_control_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_dyn32_phy32_intel.log +* TEST rap_2threads_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_2threads_dyn32_phy32_intel.log +* TEST hrrr_control_2threads_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_2threads_dyn32_phy32_intel.log +* TEST hrrr_control_decomp_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_decomp_dyn32_phy32_intel.log +* TEST rap_restart_dyn32_phy32_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST hrrr_control_restart_dyn32_phy32_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST conus13km_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_control_intel.log +* TEST conus13km_2threads_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST conus13km_restart_mismatch_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST rap_control_dyn64_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn64_phy32_intel.log +* TEST rap_control_debug_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_debug_dyn32_phy32_intel.log +* TEST hrrr_control_debug_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_debug_dyn32_phy32_intel.log +* TEST conus13km_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_debug_intel.log +* TEST conus13km_debug_qr_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_debug_qr_intel.log +* TEST conus13km_debug_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_debug_2threads_intel.log +* TEST conus13km_radar_tten_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_radar_tten_debug_intel.log +* TEST rap_control_dyn64_phy32_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn64_phy32_debug_intel.log +* TEST hafs_regional_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_atm_intel.log +* TEST hafs_regional_atm_gfdlmpv3_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_atm_gfdlmpv3_intel.log +* TEST hafs_regional_atm_thompson_gfdlsf_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_atm_thompson_gfdlsf_intel.log +* TEST hafs_regional_atm_ocn_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_atm_ocn_intel.log +* TEST hafs_regional_atm_wav_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_atm_wav_intel.log +* TEST hafs_regional_atm_ocn_wav_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_atm_ocn_wav_intel.log +* TEST hafs_regional_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_1nest_atm_intel.log +* TEST hafs_regional_telescopic_2nests_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_telescopic_2nests_atm_intel.log +* TEST hafs_global_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_global_1nest_atm_intel.log +* TEST hafs_global_multiple_4nests_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_global_multiple_4nests_atm_intel.log +* TEST hafs_regional_specified_moving_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_specified_moving_1nest_atm_intel.log +* TEST hafs_regional_storm_following_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_intel.log +* TEST hafs_regional_storm_following_1nest_atm_ocn_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_intel.log +* TEST hafs_global_storm_following_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_global_storm_following_1nest_atm_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_gnv1_nested_intel.log +* TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_debug_intel.log +* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_wav_intel.log +* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel.log +* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel.log +* TEST hafs_regional_docn_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_docn_intel.log +* TEST hafs_regional_docn_oisst_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_docn_oisst_intel.log +* TEST atm_ds2s_docn_pcice_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_atm_ds2s_docn_pcice_intel.log +* TEST atm_ds2s_docn_dice_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST control_p8_atmlnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_atmlnd_intel.log +* TEST control_restart_p8_atmlnd_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST control_p8_atmlnd_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_atmlnd_debug_intel.log +* TEST atmwav_control_noaero_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_atmwav_control_noaero_p8_intel.log +* TEST atmaero_control_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_atmaero_control_p8_intel.log +* TEST atmaero_control_p8_rad_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_atmaero_control_p8_rad_intel.log +* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_atmaero_control_p8_rad_micro_intel.log +* TEST regional_atmaq_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_atmaq_intel.log +* TEST regional_atmaq_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_atmaq_debug_intel.log +* TEST cpld_regional_atm_fbh_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2299050/cpld_regional_atm_fbh_intel/err +* TEST cpld_control_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_gfsv17_intelllvm.log +* TEST cpld_debug_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_gfsv17_intelllvm.log +* TEST cpld_control_sfs_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_sfs_intelllvm.log +* TEST cpld_control_p8_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8_intelllvm.log +* TEST rap_control_dyn32_phy32_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn32_phy32_intelllvm.log +* TEST rap_control_dyn64_phy32_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn64_phy32_intelllvm.log +* TEST hafs_regional_storm_following_1nest_atm_ocn_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_intelllvm.log +* TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm.log +* TEST control_c48_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c48_gnu.log +* TEST control_stochy_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_stochy_gnu.log +* TEST control_ras_gnu: FAILED: RUN DID NOT COMPLETE +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_ras_gnu.log +* TEST control_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_gnu.log +* TEST control_p8_ugwpv1_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_ugwpv1_gnu.log +* TEST control_flake_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_flake_gnu.log +* TEST rap_control_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_gnu.log +* TEST rap_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_decomp_gnu.log +* TEST rap_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_2threads_gnu.log +* TEST rap_restart_gnu: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST rap_sfcdiff_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_sfcdiff_gnu.log +* TEST rap_sfcdiff_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_sfcdiff_decomp_gnu.log +* TEST rap_sfcdiff_restart_gnu: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST hrrr_control_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_gnu.log +* TEST hrrr_control_noqr_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_noqr_gnu.log +* TEST hrrr_control_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_2threads_gnu.log +* TEST hrrr_control_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_decomp_gnu.log +* TEST hrrr_control_restart_gnu: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST hrrr_control_restart_noqr_gnu: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST rrfs_v1beta_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rrfs_v1beta_gnu.log +* TEST control_csawmg_gnu: FAILED: RUN DID NOT COMPLETE +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_csawmg_gnu.log +* TEST control_diag_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_diag_debug_gnu.log +* TEST regional_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_debug_gnu.log +* TEST rap_control_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_debug_gnu.log +* TEST hrrr_control_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_debug_gnu.log +* TEST hrrr_gf_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_gf_debug_gnu.log +* TEST hrrr_c3_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_c3_debug_gnu.log +* TEST rap_diag_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_diag_debug_gnu.log +* TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_noah_sfcdiff_cires_ugwp_debug_gnu.log +* TEST rap_progcld_thompson_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_progcld_thompson_debug_gnu.log +* TEST control_ras_debug_gnu: FAILED: RUN DID NOT COMPLETE +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_ras_debug_gnu.log +* TEST control_stochy_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_stochy_debug_gnu.log +* TEST control_debug_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_debug_p8_gnu.log +* TEST rap_flake_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_flake_debug_gnu.log +* TEST rap_clm_lake_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_clm_lake_debug_gnu.log +* TEST gnv1_c96_no_nest_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_gnv1_c96_no_nest_debug_gnu.log +* TEST control_wam_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_wam_debug_gnu.log +* TEST control_csawmg_debug_gnu: FAILED: RUN DID NOT COMPLETE +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_csawmg_debug_gnu.log +* TEST rap_control_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn32_phy32_gnu.log +* TEST hrrr_control_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_dyn32_phy32_gnu.log +* TEST rap_2threads_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_2threads_dyn32_phy32_gnu.log +* TEST hrrr_control_2threads_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_2threads_dyn32_phy32_gnu.log +* TEST hrrr_control_decomp_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_decomp_dyn32_phy32_gnu.log +* TEST rap_restart_dyn32_phy32_gnu: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST hrrr_control_restart_dyn32_phy32_gnu: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST conus13km_control_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_control_gnu.log +* TEST conus13km_2threads_gnu: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST conus13km_restart_mismatch_gnu: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST rap_control_dyn64_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn64_phy32_gnu.log +* TEST rap_control_debug_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_debug_dyn32_phy32_gnu.log +* TEST hrrr_control_debug_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_debug_dyn32_phy32_gnu.log +* TEST conus13km_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_debug_gnu.log +* TEST conus13km_debug_qr_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_debug_qr_gnu.log +* TEST conus13km_debug_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_debug_2threads_gnu.log +* TEST conus13km_radar_tten_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_radar_tten_debug_gnu.log +* TEST rap_control_dyn64_phy32_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn64_phy32_debug_gnu.log +* TEST cpld_control_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8_gnu.log +* TEST cpld_control_nowave_noaero_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_nowave_noaero_p8_gnu.log +* TEST cpld_debug_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_p8_gnu.log +* TEST cpld_control_pdlib_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_pdlib_p8_gnu.log +* TEST cpld_debug_pdlib_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_pdlib_p8_gnu.log NOTES: -A file 'test_changes.list' was generated but is empty. +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. If you are using this log as a pull request verification, please commit 'test_changes.list'. -Result: SUCCESS +Result: FAILURE ====END OF URSA REGRESSION TESTING LOG==== diff --git a/tests/test_changes.list b/tests/test_changes.list index 0586c07ad3..a26e7566a3 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,5 +1,255 @@ +cpld_control_p8_mixedmode intel +cpld_control_gefs intel +cpld_restart_gefs intel +cpld_dcp_gefs intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_gfsv17_nowav_iau intel +cpld_restart_gfsv17_nowav_iau intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_control_p8_lnd intel +cpld_restart_p8_lnd intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_control_c48_5deg intel +cpld_warmstart_c48_5deg intel +cpld_restart_c48_5deg intel +cpld_control_c24_5deg intel +cpld_warmstart_c24_5deg intel +cpld_restart_c24_5deg intel +cpld_control_c24_9deg intel +cpld_warmstart_c24_9deg intel +cpld_restart_c24_9deg intel +cpld_control_c12_9deg intel +cpld_warmstart_c12_9deg intel +cpld_restart_c12_9deg intel +cpld_debug_pdlib_p8 intel +control_flake intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c48.v2.sfc intel +control_c48_lnd_iau intel +control_c192 intel +control_c384 intel +control_c384gdas intel +control_stochy intel +control_stochy_restart intel +control_lndp intel +control_iovr4 intel control_iovr4_gfdlmpv3 intel +control_iovr5 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 intel control_p8_ugwpv1_tempo intel control_p8_ugwpv1_tempo_aerosol intel control_p8_ugwpv1_tempo_aerosol_hail intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +control_p8_rrtmgp intel +control_p8_mynn intel +merra2_thompson intel +regional_control intel +regional_restart intel +regional_decomp intel +regional_2threads intel +regional_noquilt intel +regional_netcdf_parallel intel +regional_2dwrtdecomp intel +regional_wofs intel +rap_control intel +regional_spp_sppt_shum_skeb intel +rap_decomp intel +rap_2threads intel +rap_restart intel +rap_sfcdiff intel +rap_sfcdiff_decomp intel +rap_sfcdiff_restart intel +hrrr_control intel +hrrr_control_decomp intel +hrrr_control_2threads intel +hrrr_control_restart intel +rrfs_v1beta intel +rrfs_v1nssl intel +rrfs_v1nssl_nohailnoccn intel +control_csawmg intel +control_ras intel +control_wam intel +control_p8_faster intel +regional_control_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_stochy_debug intel +control_lndp_debug intel +control_csawmg_debug intel +control_ras_debug intel +control_diag_debug intel +control_debug_p8 intel +regional_debug intel +rap_control_debug intel +hrrr_control_debug intel +hrrr_gf_debug intel +hrrr_c3_debug intel +rap_unified_drag_suite_debug intel +rap_diag_debug intel +rap_cires_ugwp_debug intel +rap_unified_ugwp_debug intel +rap_lndp_debug intel +rap_progcld_thompson_debug intel +rap_noah_debug intel +rap_sfcdiff_debug intel +rap_noah_sfcdiff_cires_ugwp_debug intel +rap_clm_lake_debug intel +rap_flake_debug intel +gnv1_c96_no_nest_debug intel +control_wam_debug intel +regional_spp_sppt_shum_skeb_dyn32_phy32 intel +rap_control_dyn32_phy32 intel +hrrr_control_dyn32_phy32 intel +rap_2threads_dyn32_phy32 intel +hrrr_control_2threads_dyn32_phy32 intel +hrrr_control_decomp_dyn32_phy32 intel +rap_restart_dyn32_phy32 intel +hrrr_control_restart_dyn32_phy32 intel +conus13km_control intel +conus13km_2threads intel +conus13km_restart_mismatch intel +rap_control_dyn64_phy32 intel +rap_control_debug_dyn32_phy32 intel +hrrr_control_debug_dyn32_phy32 intel +conus13km_debug intel +conus13km_debug_qr intel +conus13km_debug_2threads intel +conus13km_radar_tten_debug intel +rap_control_dyn64_phy32_debug intel +hafs_regional_atm intel hafs_regional_atm_gfdlmpv3 intel +hafs_regional_atm_thompson_gfdlsf intel +hafs_regional_atm_ocn intel +hafs_regional_atm_wav intel +hafs_regional_atm_ocn_wav intel +hafs_regional_1nest_atm intel +hafs_regional_telescopic_2nests_atm intel +hafs_global_1nest_atm intel +hafs_global_multiple_4nests_atm intel +hafs_regional_specified_moving_1nest_atm intel +hafs_regional_storm_following_1nest_atm intel +hafs_regional_storm_following_1nest_atm_ocn intel +hafs_global_storm_following_1nest_atm intel +gnv1_nested intel +hafs_regional_storm_following_1nest_atm_ocn_debug intel +hafs_regional_storm_following_1nest_atm_ocn_wav intel +hafs_regional_storm_following_1nest_atm_ocn_wav_inline intel +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel +hafs_regional_docn intel +hafs_regional_docn_oisst intel +atm_ds2s_docn_pcice intel +atm_ds2s_docn_dice intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel +control_p8_atmlnd_debug intel +atmwav_control_noaero_p8 intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +regional_atmaq intel +regional_atmaq_debug intel +cpld_regional_atm_fbh intel +cpld_control_gfsv17 intelllvm +cpld_debug_gfsv17 intelllvm +cpld_control_sfs intelllvm +cpld_control_p8 intelllvm +rap_control_dyn32_phy32 intelllvm +rap_control_dyn64_phy32 intelllvm +hafs_regional_storm_following_1nest_atm_ocn intelllvm +hafs_regional_storm_following_1nest_atm_ocn_debug intelllvm +control_c48 gnu +control_stochy gnu +control_ras gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_flake gnu +rap_control gnu +rap_decomp gnu +rap_2threads gnu +rap_restart gnu +rap_sfcdiff gnu +rap_sfcdiff_decomp gnu +rap_sfcdiff_restart gnu +hrrr_control gnu +hrrr_control_noqr gnu +hrrr_control_2threads gnu +hrrr_control_decomp gnu +hrrr_control_restart gnu +hrrr_control_restart_noqr gnu +rrfs_v1beta gnu +control_csawmg gnu +control_diag_debug gnu +regional_debug gnu +rap_control_debug gnu +hrrr_control_debug gnu +hrrr_gf_debug gnu +hrrr_c3_debug gnu +rap_diag_debug gnu +rap_noah_sfcdiff_cires_ugwp_debug gnu +rap_progcld_thompson_debug gnu +control_ras_debug gnu +control_stochy_debug gnu +control_debug_p8 gnu +rap_flake_debug gnu +rap_clm_lake_debug gnu +gnv1_c96_no_nest_debug gnu +control_wam_debug gnu +control_csawmg_debug gnu +rap_control_dyn32_phy32 gnu +hrrr_control_dyn32_phy32 gnu +rap_2threads_dyn32_phy32 gnu +hrrr_control_2threads_dyn32_phy32 gnu +hrrr_control_decomp_dyn32_phy32 gnu +rap_restart_dyn32_phy32 gnu +hrrr_control_restart_dyn32_phy32 gnu +conus13km_control gnu +conus13km_2threads gnu +conus13km_restart_mismatch gnu +rap_control_dyn64_phy32 gnu +rap_control_debug_dyn32_phy32 gnu +hrrr_control_debug_dyn32_phy32 gnu +conus13km_debug gnu +conus13km_debug_qr gnu +conus13km_debug_2threads gnu +conus13km_radar_tten_debug gnu +rap_control_dyn64_phy32_debug gnu +cpld_control_p8 gnu +cpld_control_nowave_noaero_p8 gnu +cpld_debug_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu From 1e71c20efdf0ad829d33c50bffda64e59d9d794c Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Wed, 30 Jul 2025 15:39:06 +0000 Subject: [PATCH 17/43] update FV3 submodule --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 42a6c03d78..f8f28e7dd2 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 42a6c03d788821920b32e3456d2b4976045d6c28 +Subproject commit f8f28e7dd29a4ad64f8254c36a7fe99251168123 From 5b17259edc0bca6115006a36588e03b788f8e5a2 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 18 Dec 2025 10:53:35 -0500 Subject: [PATCH 18/43] update UFSATM --- UFSATM | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UFSATM b/UFSATM index 17e724e2f3..6b0fa7ec08 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit 17e724e2f363ea53310591b00558e349dda8e932 +Subproject commit 6b0fa7ec08f4492a07420e4b9c7dd2627d19c34e From c576d585ffb423d6466ac8e802dcf298eba6e386 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 18 Dec 2025 11:14:46 -0500 Subject: [PATCH 19/43] update UFSATM --- UFSATM | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UFSATM b/UFSATM index 6b0fa7ec08..63dcef9a00 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit 6b0fa7ec08f4492a07420e4b9c7dd2627d19c34e +Subproject commit 63dcef9a00ebf29acea2b2531551ccab2b7bfff0 From 42202afb381b827343c38ce729043dc98c7ad75d Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 18 Dec 2025 11:29:09 -0500 Subject: [PATCH 20/43] update UFSATM --- UFSATM | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UFSATM b/UFSATM index 63dcef9a00..0c2090608a 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit 63dcef9a00ebf29acea2b2531551ccab2b7bfff0 +Subproject commit 0c2090608ace7910247d4558d525a80b1e53f273 From 066e3782a2aebb85a69f23c7a99219fa267655f7 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 18 Dec 2025 11:46:46 -0500 Subject: [PATCH 21/43] update UFSATM --- UFSATM | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UFSATM b/UFSATM index 0c2090608a..9574363575 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit 0c2090608ace7910247d4558d525a80b1e53f273 +Subproject commit 9574363575fc30bab102cafe4abe1eb200f368a1 From 7b23028c777143d64aa3d74a242a6370e774d902 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Fri, 13 Feb 2026 18:10:15 -0500 Subject: [PATCH 22/43] add hafs_regional_atm_ntiedtke test; temporary rt.conf --- tests/parm/input_regional_hafs.nml.IN | 4 +- tests/rt_add.conf | 48 +++++++++++++ tests/tests/hafs_regional_atm_ntiedtke | 98 ++++++++++++++++++++++++++ 3 files changed, 148 insertions(+), 2 deletions(-) create mode 100644 tests/rt_add.conf create mode 100644 tests/tests/hafs_regional_atm_ntiedtke diff --git a/tests/parm/input_regional_hafs.nml.IN b/tests/parm/input_regional_hafs.nml.IN index 7d028cb01b..82e1cabf9d 100644 --- a/tests/parm/input_regional_hafs.nml.IN +++ b/tests/parm/input_regional_hafs.nml.IN @@ -193,8 +193,8 @@ random_clds = .false. trans_trac = .true. cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 + imfshalcnv = @[IMFSHALCNV] + imfdeepcnv = @[IMFDEEPCNV] cdmbgwd = 1.0,1.0,1.0,1.0 sfc_z0_type = 6 prslrd0 = 0. diff --git a/tests/rt_add.conf b/tests/rt_add.conf new file mode 100644 index 0000000000..77f89b2591 --- /dev/null +++ b/tests/rt_add.conf @@ -0,0 +1,48 @@ +### RT.CONF FORMATTING ### +# COMPILE Line ( Items separated by a | ) +# Item 1: COMPILE - This tells rt.conf the following information is to be used in setting up a compile job +# Item 2: Compile name - The rt.sh will add _gnu or _intel to it. There must be no duplicate names for each compiler. +# If two compilations are identical except compiler, please use the same name for each. +# Item 3: Compiler to use in build (intel or gnu) +# Item 4: CMAKE Options - Provide all CMAKE options for the build +# Item 5: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines) +## -> EX: + hera orion gaea = compile will only run on hera orion and gaea machines +## -> EX: - wcoss2 acorn = compile will NOT be run on wcoss2 or acorn +# Item 6: [set as fv3]. Used to control the compile job only if FV3 was present, previously used to run a test w/o compiling code +# +# RUN Line ( Items separated by a | ) +## NOTE: The build resulting from the COMPILE line above the RUN line will be used to run the test +# Item 1: RUN - This tells rt.conf the following information is to be used in setting up a model run +# Item 2: Test name. (Which test in the tests/tests directory should be sourced) +# Item 3: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines). +## reference example above +# Item 4: Controls whether the run creates its own baseline or it uses the baseline from a different (control) test. +# Item 5: Test name to compare baselines with if not itself. + +############################# +### Intel (Classic) Tests ### +############################# + +COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8_rrtmgp,FV3_WoFS_v0,FV3_GFS_v17_p8_ugwpv1_tempo,FV3_GFS_2017_ntiedtke -D32BIT=ON | | fv3 | +RUN | control_p8_rrtmgp | - noaacloud | baseline | +RUN | control_p8_ugwpv1_tempo | - noaacloud | baseline | +RUN | regional_wofs | - s4 | baseline | + +COMPILE | atm_dyn32 | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8_rrtmgp,FV3_WoFS_v0,FV3_GFS_v17_p8_ugwpv1_tempo,FV3_GFS_2017_ntiedtke -D32BIT=ON | | fv3 | +RUN | control_p8_rrtmgp | - noaacloud | baseline | +RUN | control_p8_ugwpv1_tempo | - noaacloud | baseline | +RUN | regional_wofs | - s4 | baseline | + +COMPILE | hafsw | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmpv3_tedmf,FV3_HAFS_v1_gfdlmpv3_tedmf_ntiedtke -D32BIT=ON | | fv3 | +RUN | hafs_regional_atm_gfdlmpv3 | | baseline | +RUN | hafs_regional_atm_ntiedtke | | baseline | + +COMPILE | hafsw | gnu | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmpv3_tedmf,FV3_HAFS_v1_gfdlmpv3_tedmf_ntiedtke -D32BIT=ON | | fv3 | +RUN | hafs_regional_atm_gfdlmpv3 | | baseline | +RUN | hafs_regional_atm_ntiedtke | | baseline | + +COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP -D32BIT=ON | | fv3 | +RUN | rap_control | | baseline | + +COMPILE | rrfs | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP -D32BIT=ON | + hera hercules ursa derecho| fv3 | +RUN | rap_control | | baseline | diff --git a/tests/tests/hafs_regional_atm_ntiedtke b/tests/tests/hafs_regional_atm_ntiedtke new file mode 100644 index 0000000000..5b41635bf1 --- /dev/null +++ b/tests/tests/hafs_regional_atm_ntiedtke @@ -0,0 +1,98 @@ +############################################################################### +# +# HAFS regional atmosphere only +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional atmosphere only results with previous trunk version" + +export CNTL_DIR=hafs_regional_atm_ntiedtke + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + HURPRS.GrbF06" + +export_fv3 +export_hafs + +export HAFS=true +export FHMAX=6 +export RESTART_N=${FHMAX} +export atm_omp_num_threads=2 +export DT_ATMOS=180 +export ZSTANDARD_LEVEL=5 +export OUTPUT_FH='3 -1' +export OUTPUT_FILE="'netcdf' 'netcdf'" +export SDAY=29 +export SHOUR=00 +export SMONTH=08 +export SYEAR=2019 +export WRTTASK_PER_GROUP=60 +export WRITE_DOPOST=.true. +export POSTAPP='hafs' + +export OUTPUT_GRID='regional_latlon' +export CEN_LON=-62.0 +export CEN_LAT=22.0 +export LON1=-116.90 +export LAT1=-14.45 +export LON2=-7.10 +export LAT2=58.45 +export DLON=0.1 +export DLAT=0.1 + +export BLOCKSIZE=40 +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_ntiedtke +export IMFDEEPCNV=4 +export IMFSHALCNV=4 +export DEFLATE_LEVEL=-1 +export INPES=20 +export JNPES=12 +export NPX=721 +export NPY=601 +export NPZ=91 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=2 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="22.0" +export TARGET_LON="-62.0" +export STRETCH_FAC=1.0001 +export REGIONAL=.true. +export BC_UPDATE_INTERVAL=3 +export NROWS_BLEND=10 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="240" +export TILE_COARSE="0" +export NUM_TILE_TOP=1 +export NEST_REFINE="0" +export NEST_IOFFSETS="999" +export NEST_JOFFSETS="999" + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=2,0,0,0,0 +export CPLFLX=.false. +export CPLOCN2ATM=.true. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.false. + +export CMEPS=false +export RUNTYPE=startup +export USE_COLDSTART=false + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template.IN +export INPUT_NML=input_regional_hafs.nml.IN +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm.IN +export FV3_RUN=hafs_fv3_run.IN From 9f0b91c66883c1bbed4ea40ef5206df1cad65ed3 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Mon, 23 Mar 2026 16:18:46 -0400 Subject: [PATCH 23/43] update UFSATM submodule --- UFSATM | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UFSATM b/UFSATM index 125cefabce..3e9ecb242b 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit 125cefabcefa972023e15c5e34d24a872109370c +Subproject commit 3e9ecb242b93a60b75ee63b223a2f362fad98359 From 433d27ae831a4de57644a3ff2579d4d1d85622e4 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Mon, 23 Mar 2026 16:25:23 -0400 Subject: [PATCH 24/43] udpate UFSATM --- UFSATM | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UFSATM b/UFSATM index 3e9ecb242b..b7193106fb 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit 3e9ecb242b93a60b75ee63b223a2f362fad98359 +Subproject commit b7193106fbcfa42ee4bf302d87ba6f9972e6e7f0 From b729b5ea8fe8659d045cf9d3911b123568a02c39 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Mon, 23 Mar 2026 16:36:09 -0400 Subject: [PATCH 25/43] update UFSATM --- UFSATM | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UFSATM b/UFSATM index b7193106fb..0e87644e98 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit b7193106fbcfa42ee4bf302d87ba6f9972e6e7f0 +Subproject commit 0e87644e98f27fc5f802c66933ec207950f69e83 From 6a8f08c2bfdf4d99ddfd38d07da7d40eda824dd0 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Tue, 24 Mar 2026 14:32:00 +0000 Subject: [PATCH 26/43] update RT logs --- tests/logs/RegressionTests_ursa.log | 844 +++++++++++++--------------- tests/test_changes.list | 58 +- 2 files changed, 396 insertions(+), 506 deletions(-) diff --git a/tests/logs/RegressionTests_ursa.log b/tests/logs/RegressionTests_ursa.log index c1b6d7ad84..6a73dc4838 100644 --- a/tests/logs/RegressionTests_ursa.log +++ b/tests/logs/RegressionTests_ursa.log @@ -1,36 +1,38 @@ ====START OF URSA REGRESSION TESTING LOG==== UFSWM hash used in testing: -4d962e6e0fdf89a432970f5d164d727c26a0b776 +b729b5ea8fe8659d045cf9d3911b123568a02c39 Submodule hashes used in testing: - d3c1bc45492f8b35948c97021e4e6ab4d4c203e4 AQM (v0.2.0-38-gd3c1bc4) + fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386) 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) - 132fa6963ba2f7103f711eb567e4fe97ed0804a8 CDEPS-interface/CDEPS (cdeps0.4.17-406-g132fa69) - 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) - 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) - bb5c14cfb5cc7ecad9247e98d175efd4ddbabdce CMEPS-interface/CMEPS (cmeps_v0.4.1-2319-gbb5c14c) - 9b7652c75b40d9cbb40e52b824f8c0a423922757 CMakeModules (v1.0.0-33-g9b7652c) - 42a6c03d788821920b32e3456d2b4976045d6c28 FV3 (heads/feature/tendency_cleanup) - 11359cb04a420fc87e4cf0f035f4d1215ab24488 FV3/ccpp/framework (2025-01-06-dev-5-g11359cb) -+c277d2732b16c00dc61cc61e194aafb4343875e5 FV3/ccpp/physics (EP4-1761-gc277d273) - c62efd27caa26f660edf24232f33f154e608b77a FV3/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 4f1a5ef4b83461a79a62c8d965ebc2b26cf5eba8 FV3/fv3/atmos_cubed_sphere (201912_public_release-416-g4f1a5ef) - e5f9fcb5d4607e3576c7d507da594a9d3b516adc FV3/upp (upp_v10.2.0-272-ge5f9fcb5) --179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd --3d35332fe66e3e63a285cc8d96facdf255a33481 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 36e2ab48f2ae0cb8c0c5b661768c13897f40e9ac GOCART (sdr_v2.1.2.6-288-g36e2ab4) + 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) + def9c53b17d6722cc9991ba72ddae8ad2d5d25d9 CICE-interface/CICE (CICE6.0.0-445-gdef9c53) + 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) + 2c567b132c27e4538f1943ccf3beb99576676697 CMEPS-interface/CMEPS (cmeps_v0.4.1-2337-g2c567b1) + 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) + 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - f9e6e2e1686458df842a0b92c61ff241a920ed84 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10634-gf9e6e2e16) - 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) + 72563d619896492a9c61e2b7cdbe6a9cdbbd7920 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10791-g72563d619) + c38ddb7ebdd2d58c517b63a99bbdc8e348732db2 MOM6-interface/MOM6/pkg/CVMix-src (c38ddb7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - 6a5814ab52b5035b1710269bed24b30b5e7e772b WW3 (6.07.1-443-g6a5814ab) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) + 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) + 0e87644e98f27fc5f802c66933ec207950f69e83 UFSATM (remotes/grant-fork/feature/tendency_cleanup-13-g0e87644) + 22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5) + 6be9617a7afd596b905b6c49b8bb6868b892ef92 UFSATM/ccpp/physics (EP4-2332-g6be9617a) + c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) + 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) + b2d7d8731c84964c7afcab74cc9f2acb23d7fd71 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (remotes/origin/feature/tendency_cleanup) + 3e5db3750e382976b4d6011c6d9c1437b0cf34f6 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-502-g3e5db37) + 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/master-60-g38d2177a) + 7d9597c471470be061ab8853dd62bcd03f15d6aa UFSATM/upp (upp_v10.2.0-354-g7d9597c4) +-5afd607642ae0fd6a53b137230336386beb47ce6 UFSATM/upp/sorc/libIFI.fd +-3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd + dcc9da76c2d32c6ca7a5318a56db033295d9f43c WW3 (6.07.1-531-gdcc9da76) + 6b2d73f28d946eed74e474db22769602e41c422b fire_behavior (v0.2.0-71-g6b2d73f) + ae192f119b8614b4476a1b04ba55f6fb93e2953d stochastic_physics (ufs-v2.0.0-298-gae192f1) NOTES: @@ -39,8 +41,8 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20250701 -COMPARISON DIRECTORY: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2299050 +BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20260318 +COMPARISON DIRECTORY: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2867218 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: gmtb @@ -48,32 +50,32 @@ RT.SH OPTIONS USED: * (-k) - KEEP RUN DIRECTORY * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:59] ( 1035 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_mixedmode_intel' [, ]( MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:11, 13:57] ( 1 warnings 1087 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gefs_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gefs_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_dcp_gefs_intel' [, ]( MB) -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:12, 12:50] ( 1033 remarks ) +PASS -- COMPILE 's2sw_32bit_pdlib_intel' [16:11, 13:48] ( 1 warnings 1068 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gfsv17_iau_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_gfsv17_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_control_gfsv17_nowav_iau_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gfsv17_nowav_iau_intel' [, ]( MB) -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:11, 12:45] ( 1033 remarks ) +PASS -- COMPILE 's2s_32bit_sfs_intel' [16:11, 13:17] ( 1 warnings 982 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_sfs_intel' [, ]( MB) -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:29] ( 1537 warnings 2918 remarks ) +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:11, 03:10] ( 361 warnings 982 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_sfs_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [06:11, 03:22] ( 361 warnings 1380 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intel' [, ]( MB) -PASS -- COMPILE 's2swa_intel' [10:11, 08:40] ( 1035 remarks ) +PASS -- COMPILE 's2swa_intel' [16:11, 13:58] ( 1 warnings 1087 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8.v2.sfc_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_qr_p8_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_qr_p8_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_2threads_p8_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_decomp_p8_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_p8_intel' [, ]( MB) @@ -81,31 +83,14 @@ FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_ciceC_p8_intel' [, ] FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c192_p8_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c192_p8_intel' [, ]( MB) -PASS -- COMPILE 's2swal_intel' [10:11, 08:58] ( 1056 remarks ) +PASS -- COMPILE 's2swl_intel' [16:11, 14:01] ( 1 warnings 1090 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_lnd_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_s2sa_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_intel' [10:11, 08:22] ( 1003 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_noaero_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_nowave_noaero_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:29] ( 1427 warnings 2168 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:25] ( 1427 warnings 2150 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_noaero_p8_intel' [, ]( MB) -PASS -- COMPILE 's2s_aoflux_intel' [09:11, 07:11] ( 939 remarks ) +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 12:49] ( 1 warnings 993 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_noaero_p8_agrid_intel' [, ]( MB) -PASS -- COMPILE 's2swa_faster_intel' [11:12, 09:25] ( 1021 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_faster_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:11, 12:22] ( 1026 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_pdlib_p8_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) +PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 13:54] ( 1 warnings 1078 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c48_5deg_intel' [, ]( MB) FAILED: TEST TIMED OUT -- TEST 'cpld_warmstart_c48_5deg_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c48_5deg_intel' [, ]( MB) @@ -113,17 +98,13 @@ FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c24_5deg_intel' [, ] FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_warmstart_c24_5deg_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c24_5deg_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c24_9deg_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_warmstart_c24_9deg_intel' [, ]( MB) +FAILED: TEST TIMED OUT -- TEST 'cpld_warmstart_c24_9deg_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c24_9deg_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c12_9deg_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_warmstart_c12_9deg_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c12_9deg_intel' [, ]( MB) -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 03:20] ( 1537 warnings 2900 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:12, 06:59] ( 494 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_flake_intel' [, ]( MB) +PASS -- COMPILE 'atm_dyn32_intel' [10:11, 07:12] ( 1 warnings 534 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_latlon_intel' [, ]( MB) @@ -137,9 +118,7 @@ FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c384gdas_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_stochy_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'control_stochy_restart_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_lndp_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_iovr4_intel' [, ]( MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_iovr4_gfdlmpv3_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_iovr5_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_iovr4_gfdlmpv3_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8.v2.sfc_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_ugwpv1_intel' [, ]( MB) @@ -155,6 +134,7 @@ FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_lndp_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_rrtmgp_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_mynn_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'merra2_hf_thompson_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_control_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'regional_restart_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_decomp_intel' [, ]( MB) @@ -164,7 +144,10 @@ FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_netcdf_parallel_intel' [ FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_2dwrtdecomp_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_wofs_intel' [, ]( MB) -PASS -- COMPILE 'rrfs_intel' [08:12, 06:21] ( 3 warnings 441 remarks ) +PASS -- COMPILE 'atm_dyn32_rad32_intel' [09:11, 06:49] ( 1 warnings 515 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_rrtmgp_rad32_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 06:07] ( 4 warnings 485 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_spp_sppt_shum_skeb_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_decomp_intel' [, ]( MB) @@ -181,18 +164,14 @@ FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rrfs_v1beta_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rrfs_v1nssl_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [, ]( MB) -PASS -- COMPILE 'csawmg_intel' [07:12, 06:01] ( 409 remarks ) +PASS -- COMPILE 'csawmg_intel' [09:11, 06:45] ( 1 warnings 455 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_csawmg_intel' [, ]( MB) FAILED: RUN DID NOT COMPLETE -- TEST 'control_ras_intel' [, ]( MB) -PASS -- COMPILE 'wam_intel' [07:12, 06:01] ( 386 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_intel' [, ]( MB) +PASS -- COMPILE 'wam_intel' [08:11, 05:46] ( 1 warnings 437 remarks ) +FAILED: TEST TIMED OUT -- TEST 'control_wam_intel' [, ]( MB) -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:12, 06:08] ( 403 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_faster_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_control_faster_intel' [, ]( MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 03:48] ( 885 warnings 581 remarks ) +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 03:39] ( 496 warnings 624 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_stochy_debug_intel' [, ]( MB) @@ -216,13 +195,12 @@ FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_noah_debug_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_debug_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_clm_lake_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_flake_debug_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_c96_no_nest_debug_intel' [, ]( MB) -PASS -- COMPILE 'wam_debug_intel' [04:12, 02:20] ( 842 warnings 386 remarks ) +PASS -- COMPILE 'wam_debug_intel' [04:11, 02:17] ( 459 warnings 437 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:45] ( 3 warnings 408 remarks ) +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:11, 05:51] ( 4 warnings 452 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn32_phy32_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_dyn32_phy32_intel' [, ]( MB) @@ -231,153 +209,133 @@ FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_2threads_dyn32_phy32 FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'rap_restart_dyn32_phy32_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:12, 05:53] ( 3 warnings 387 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_control_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'conus13km_2threads_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'conus13km_restart_mismatch_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_2threads_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_decomp_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'conus13km_restart_intel' [, ]( MB) -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:03] ( 3 warnings 408 remarks ) +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [08:11, 06:06] ( 4 warnings 485 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_gl_inline_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 06:01] ( 4 warnings 452 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_intel' [, ]( MB) -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:36] ( 790 warnings 414 remarks ) +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:15] ( 333 warnings 458 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_debug_dyn32_phy32_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_qr_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_decomp_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:16] ( 790 warnings 408 remarks ) +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 02:25] ( 333 warnings 452 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_debug_intel' [, ]( MB) -PASS -- COMPILE 'hafsw_intel' [10:12, 08:42] ( 687 remarks ) +PASS -- COMPILE 'hafsw_intel' [11:11, 08:38] ( 1 warnings 734 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_intel' [, ]( MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_ocn_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_wav_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_ocn_wav_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_1nest_atm_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_global_1nest_atm_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_global_multiple_4nests_atm_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_global_storm_following_1nest_atm_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) -PASS -- COMPILE 'hafsw_debug_intel' [04:12, 02:56] ( 1482 warnings 2043 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:11, 08:11] ( 651 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [, ]( MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 08:09] ( 920 remarks ) +PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 08:18] ( 1 warnings 972 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [, ]( MB) -PASS -- COMPILE 'hafs_all_intel' [09:11, 08:05] ( 629 remarks ) +PASS -- COMPILE 'hafs_all_intel' [10:11, 08:08] ( 1 warnings 676 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_docn_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [14:03, 11:32](1815 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:10, 04:50] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 02:56](1217 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:18, 01:01](1166 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:34, 11:09](1113 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 01:41](1103 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 01:46](1099 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 01:39](1211 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 01:46](1208 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [17:38, 15:47](1105 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:56, 04:49](1275 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:52, 04:57](1310 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:37](1229 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 02:49](2499 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 02:31](2483 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:34] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:17, 03:48](1142 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 04:33] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 01:49](1206 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:41] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:41, 00:45](368 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:37, 00:35](624 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:27](621 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:11, 07:15] ( 601 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_pcice_intel' [, ]( MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 06:11] ( 490 remarks ) -FAILED: UNABLE TO START TEST -- TEST 'atm_ds2s_docn_dice_intel' [, ]( MB) +PASS -- COMPILE 'datm_cdeps_intel' [14:11, 11:39] ( 569 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:17, 05:33](1922 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:21](1876 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 01:53](1179 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 01:56](1163 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 01:55](1166 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 01:57](1916 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:01](1914 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [13:16, 11:01](1154 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [25:59, 05:26](1808 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [27:51, 05:13](1335 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:02](1912 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:21](4791 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [28:18, 26:24](4794 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:26] ( 2 warnings 569 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:16, 03:58](1830 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 00:44] ( 129 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [19:27, 00:43](366 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [23:21, 00:31](621 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [08:21, 00:25](624 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 11:55] ( 1 warnings 651 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_pcice_intel' [, ]( MB) -PASS -- COMPILE 'atml_intel' [08:10, 06:41] ( 8 warnings 546 remarks ) +PASS -- COMPILE 'atml_intel' [09:11, 06:54] ( 9 warnings 589 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_atmlnd_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB) -PASS -- COMPILE 'atml_debug_intel' [05:10, 03:18] ( 890 warnings 546 remarks ) +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:16] ( 503 warnings 589 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_atmlnd_debug_intel' [, ]( MB) -PASS -- COMPILE 'atmw_intel' [09:11, 07:50] ( 511 remarks ) +PASS -- COMPILE 'atmw_intel' [10:11, 07:51] ( 1 warnings 563 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atmwav_control_noaero_p8_intel' [, ]( MB) -PASS -- COMPILE 'atmaero_intel' [08:11, 06:13] ( 404 remarks ) +PASS -- COMPILE 'atmaero_intel' [11:11, 08:54] ( 1 warnings 455 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atmaero_control_p8_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atmaero_control_p8_rad_intel' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) -PASS -- COMPILE 'atmaq_intel' [07:11, 06:04] ( 8 warnings 599 remarks ) +PASS -- COMPILE 'atmaq_intel' [08:11, 06:34] ( 1 warnings 641 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_atmaq_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_atmaq_canopy_intel' [, ]( MB) -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:26] ( 867 warnings 599 remarks ) +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:19] ( 476 warnings 641 remarks ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_atmaq_debug_intel' [, ]( MB) -PASS -- COMPILE 'atm_fbh_intel' [07:10, 06:00] ( 3 warnings 417 remarks ) -FAILED: TEST TIMED OUT -- TEST 'cpld_regional_atm_fbh_intel' [, ]( MB) +PASS -- COMPILE 'atm_fbh_intel' [08:11, 05:46] ( 4 warnings 464 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_regional_atm_fbh_intel' [, ]( MB) -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [14:11, 12:56] +PASS -- COMPILE 's2sw_32bit_pdlib_intelllvm' [15:11, 12:41] FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intelllvm' [, ]( MB) -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:11, 03:31] +PASS -- COMPILE 's2sw_32bit_pdlib_debug_intelllvm' [05:11, 03:00] FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intelllvm' [, ]( MB) -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [14:11, 12:54] +PASS -- COMPILE 's2s_32bit_sfs_intelllvm' [14:11, 11:50] FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_intelllvm' [, ]( MB) -PASS -- COMPILE 's2swa_intelllvm' [10:11, 08:37] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intelllvm' [, ]( MB) +PASS -- COMPILE 's2s_32bit_sfs_debug_intelllvm' [04:12, 02:41] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_sfs_intelllvm' [, ]( MB) -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:39] +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 05:43] FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn32_phy32_intelllvm' [, ]( MB) -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:11, 05:42] +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 05:40] FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_intelllvm' [, ]( MB) -PASS -- COMPILE 'hafsw_intelllvm' [10:11, 08:18] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [, ]( MB) +PASS -- COMPILE 'datm_cdeps_intelllvm' [14:10, 12:22] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [04:15, 02:02](1919 MB) -PASS -- COMPILE 'hafsw_debug_intelllvm' [04:11, 02:40] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [, ]( MB) +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:10, 02:06] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [14:15, 12:30](1830 MB) -PASS -- COMPILE 'datm_cdeps_intelllvm' [06:11, 04:35] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [13:21, 11:11](1233 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:11, 02:17] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:17, 03:50](1146 MB) - -PASS -- COMPILE 'atm_gnu' [04:11, 03:07] +PASS -- COMPILE 'atm_gnu' [05:10, 02:48] ( 39 warnings ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_stochy_gnu' [, ]( MB) FAILED: RUN DID NOT COMPLETE -- TEST 'control_ras_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_ugwpv1_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_flake_gnu' [, ]( MB) -PASS -- COMPILE 'rrfs_gnu' [04:11, 02:58] +PASS -- COMPILE 'rrfs_gnu' [05:11, 02:52] ( 39 warnings ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_decomp_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_2threads_gnu' [, ]( MB) @@ -393,10 +351,10 @@ FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_gnu' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_noqr_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rrfs_v1beta_gnu' [, ]( MB) -PASS -- COMPILE 'csawmg_gnu' [04:11, 02:40] -FAILED: RUN DID NOT COMPLETE -- TEST 'control_csawmg_gnu' [, ]( MB) +PASS -- COMPILE 'csawmg_gnu' [04:10, 02:37] ( 39 warnings ) +FAILED: TEST TIMED OUT -- TEST 'control_csawmg_gnu' [, ]( MB) -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 05:14] +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 05:32] ( 42 warnings ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_diag_debug_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_debug_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_debug_gnu' [, ]( MB) @@ -409,17 +367,16 @@ FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_progcld_thompson_debug_gnu' [ FAILED: RUN DID NOT COMPLETE -- TEST 'control_ras_debug_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_stochy_debug_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_debug_p8_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_flake_debug_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_clm_lake_debug_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_c96_no_nest_debug_gnu' [, ]( MB) -PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:29] +PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:23] ( 39 warnings ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_gnu' [, ]( MB) -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 02:47] -FAILED: RUN DID NOT COMPLETE -- TEST 'control_csawmg_debug_gnu' [, ]( MB) +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:37] ( 39 warnings ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_csawmg_debug_gnu' [, ]( MB) -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 02:55] +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 02:44] ( 39 warnings ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn32_phy32_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_dyn32_phy32_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_2threads_dyn32_phy32_gnu' [, ]( MB) @@ -428,558 +385,513 @@ FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_decomp_dyn32_phy32_g FAILED: UNABLE TO START TEST -- TEST 'rap_restart_dyn32_phy32_gnu' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_control_gnu' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'conus13km_2threads_gnu' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'conus13km_restart_mismatch_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_2threads_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_decomp_gnu' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'conus13km_restart_gnu' [, ]( MB) -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:14, 06:19] +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 06:32] ( 42 warnings ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_gnu' [, ]( MB) -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:12, 05:25] +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 05:32] ( 42 warnings ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_debug_dyn32_phy32_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_qr_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_2threads_gnu' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_decomp_gnu' [, ]( MB) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_radar_tten_debug_gnu' [, ]( MB) -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 05:13] +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 05:20] ( 42 warnings ) FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_debug_gnu' [, ]( MB) -PASS -- COMPILE 's2swa_gnu' [14:17, 12:48] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_gnu' [, ]( MB) +PASS -- COMPILE 's2sw_32bit_pdlib_gnu' [14:10, 12:01] ( 39 warnings ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_gnu' [, ]( MB) -PASS -- COMPILE 's2s_gnu' [14:13, 12:39] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_nowave_noaero_p8_gnu' [, ]( MB) +PASS -- COMPILE 's2sw_32bit_pdlib_debug_gnu' [04:11, 01:45] ( 1932 warnings ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_gnu' [, ]( MB) -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:09] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_p8_gnu' [, ]( MB) +PASS -- COMPILE 's2s_32bit_sfs_gnu' [14:11, 12:00] ( 39 warnings ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_gnu' [, ]( MB) -PASS -- COMPILE 's2sw_pdlib_gnu' [13:12, 11:49] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_pdlib_p8_gnu' [, ]( MB) +PASS -- COMPILE 's2s_32bit_sfs_debug_gnu' [03:11, 01:42] ( 1172 warnings ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_sfs_gnu' [, ]( MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 01:53] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [12:14, 10:31] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [20:19, 18:09](708 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [12:11, 10:01] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:16, 02:10](1513 MB) SYNOPSIS: -Starting Date/Time: 20250717 15:20:04 -Ending Date/Time: 20250717 18:02:08 -Total Time: 02h:42m:47s -Compiles Completed: 69/69 -Tests Completed: 22/277 +Starting Date/Time: 20260323 21:07:45 +Ending Date/Time: 20260324 05:55:55 +Total Time: 08h:49m:20s +Compiles Completed: 58/58 +Tests Completed: 20/253 Failed Tests: -* TEST cpld_control_p8_mixedmode_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8_mixedmode_intel.log * TEST cpld_control_gefs_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_gefs_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_gefs_intel.log * TEST cpld_restart_gefs_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST cpld_dcp_gefs_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_dcp_gefs_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_dcp_gefs_intel.log * TEST cpld_control_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_gfsv17_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_gfsv17_intel.log * TEST cpld_control_gfsv17_iau_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO START TEST -- LOG: N/A -* TEST cpld_mpi_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_mpi_gfsv17_intel.log -* TEST cpld_control_gfsv17_nowav_iau_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_restart_gfsv17_nowav_iau_intel: FAILED: UNABLE TO START TEST +* TEST cpld_restart_gfsv17_iau_intel: FAILED: UNABLE TO START TEST -- LOG: N/A +* TEST cpld_mpi_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_mpi_gfsv17_intel.log * TEST cpld_control_sfs_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_sfs_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_sfs_intel.log +* TEST cpld_restart_sfs_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST cpld_debug_sfs_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_debug_sfs_intel.log * TEST cpld_debug_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_gfsv17_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_debug_gfsv17_intel.log * TEST cpld_control_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_p8_intel.log * TEST cpld_control_p8.v2.sfc_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8.v2.sfc_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_p8.v2.sfc_intel.log * TEST cpld_restart_p8_intel: FAILED: UNABLE TO START TEST -- LOG: N/A -* TEST cpld_control_qr_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_qr_p8_intel.log -* TEST cpld_restart_qr_p8_intel: FAILED: UNABLE TO START TEST --- LOG: N/A * TEST cpld_2threads_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_2threads_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_2threads_p8_intel.log * TEST cpld_decomp_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_decomp_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_decomp_p8_intel.log * TEST cpld_mpi_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_mpi_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_mpi_p8_intel.log * TEST cpld_control_ciceC_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_ciceC_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_ciceC_p8_intel.log * TEST cpld_control_c192_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_c192_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_c192_p8_intel.log * TEST cpld_restart_c192_p8_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST cpld_control_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8_lnd_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_p8_lnd_intel.log * TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO START TEST -- LOG: N/A -* TEST cpld_s2sa_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_s2sa_p8_intel.log -* TEST cpld_control_noaero_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_noaero_p8_intel.log -* TEST cpld_control_nowave_noaero_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_nowave_noaero_p8_intel.log -* TEST cpld_debug_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_p8_intel.log -* TEST cpld_debug_noaero_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_noaero_p8_intel.log * TEST cpld_control_noaero_p8_agrid_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_noaero_p8_agrid_intel.log -* TEST cpld_control_p8_faster_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8_faster_intel.log -* TEST cpld_control_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_pdlib_p8_intel.log -* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_mpi_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_mpi_pdlib_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_noaero_p8_agrid_intel.log * TEST cpld_control_c48_5deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_c48_5deg_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_c48_5deg_intel.log * TEST cpld_warmstart_c48_5deg_intel: FAILED: TEST TIMED OUT --- LOG: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2299050/cpld_warmstart_c48_5deg_intel/err +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2867218/cpld_warmstart_c48_5deg_intel/err * TEST cpld_restart_c48_5deg_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST cpld_control_c24_5deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_c24_5deg_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_c24_5deg_intel.log * TEST cpld_warmstart_c24_5deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_warmstart_c24_5deg_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_warmstart_c24_5deg_intel.log * TEST cpld_restart_c24_5deg_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST cpld_control_c24_9deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_c24_9deg_intel.log -* TEST cpld_warmstart_c24_9deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_warmstart_c24_9deg_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_c24_9deg_intel.log +* TEST cpld_warmstart_c24_9deg_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2867218/cpld_warmstart_c24_9deg_intel/err * TEST cpld_restart_c24_9deg_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST cpld_control_c12_9deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_c12_9deg_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_c12_9deg_intel.log * TEST cpld_warmstart_c12_9deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_warmstart_c12_9deg_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_warmstart_c12_9deg_intel.log * TEST cpld_restart_c12_9deg_intel: FAILED: UNABLE TO START TEST -- LOG: N/A -* TEST cpld_debug_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_pdlib_p8_intel.log -* TEST control_flake_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_flake_intel.log * TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_CubedSphereGrid_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_CubedSphereGrid_intel.log * TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_CubedSphereGrid_parallel_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_CubedSphereGrid_parallel_intel.log * TEST control_latlon_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_latlon_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_latlon_intel.log * TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_wrtGauss_netcdf_parallel_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_wrtGauss_netcdf_parallel_intel.log * TEST control_c48_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c48_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c48_intel.log * TEST control_c48.v2.sfc_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c48.v2.sfc_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c48.v2.sfc_intel.log * TEST control_c48_lnd_iau_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c48_lnd_iau_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c48_lnd_iau_intel.log * TEST control_c192_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c192_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c192_intel.log * TEST control_c384_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c384_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c384_intel.log * TEST control_c384gdas_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c384gdas_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c384gdas_intel.log * TEST control_stochy_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_stochy_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_stochy_intel.log * TEST control_stochy_restart_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST control_lndp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_lndp_intel.log -* TEST control_iovr4_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_iovr4_intel.log -* TEST control_iovr4_gfdlmpv3_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_iovr4_gfdlmpv3_intel.log -* TEST control_iovr5_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_iovr5_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_lndp_intel.log +* TEST control_iovr4_gfdlmpv3_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_iovr4_gfdlmpv3_intel.log * TEST control_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_intel.log * TEST control_p8.v2.sfc_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8.v2.sfc_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8.v2.sfc_intel.log * TEST control_p8_ugwpv1_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_ugwpv1_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_ugwpv1_intel.log * TEST control_p8_ugwpv1_tempo_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_ugwpv1_tempo_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_ugwpv1_tempo_intel.log * TEST control_p8_ugwpv1_tempo_aerosol_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_ugwpv1_tempo_aerosol_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_ugwpv1_tempo_aerosol_intel.log * TEST control_p8_ugwpv1_tempo_aerosol_hail_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_ugwpv1_tempo_aerosol_hail_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_ugwpv1_tempo_aerosol_hail_intel.log * TEST control_restart_p8_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST control_noqr_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_noqr_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_noqr_p8_intel.log * TEST control_restart_noqr_p8_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST control_decomp_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_decomp_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_decomp_p8_intel.log * TEST control_2threads_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_2threads_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_2threads_p8_intel.log * TEST control_p8_lndp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_lndp_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_lndp_intel.log * TEST control_p8_rrtmgp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_rrtmgp_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_rrtmgp_intel.log * TEST control_p8_mynn_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_mynn_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_mynn_intel.log * TEST merra2_thompson_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_merra2_thompson_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_merra2_thompson_intel.log +* TEST merra2_hf_thompson_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_merra2_hf_thompson_intel.log * TEST regional_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_control_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_control_intel.log * TEST regional_restart_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST regional_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_decomp_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_decomp_intel.log * TEST regional_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_2threads_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_2threads_intel.log * TEST regional_noquilt_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_noquilt_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_noquilt_intel.log * TEST regional_netcdf_parallel_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_netcdf_parallel_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_netcdf_parallel_intel.log * TEST regional_2dwrtdecomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_2dwrtdecomp_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_2dwrtdecomp_intel.log * TEST regional_wofs_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_wofs_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_wofs_intel.log +* TEST control_p8_rrtmgp_rad32_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_rrtmgp_rad32_intel.log * TEST rap_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_intel.log * TEST regional_spp_sppt_shum_skeb_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_spp_sppt_shum_skeb_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_spp_sppt_shum_skeb_intel.log * TEST rap_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_decomp_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_decomp_intel.log * TEST rap_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_2threads_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_2threads_intel.log * TEST rap_restart_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST rap_sfcdiff_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_sfcdiff_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_sfcdiff_intel.log * TEST rap_sfcdiff_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_sfcdiff_decomp_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_sfcdiff_decomp_intel.log * TEST rap_sfcdiff_restart_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST hrrr_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_intel.log * TEST hrrr_control_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_decomp_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_decomp_intel.log * TEST hrrr_control_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_2threads_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_2threads_intel.log * TEST hrrr_control_restart_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST rrfs_v1beta_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rrfs_v1beta_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rrfs_v1beta_intel.log * TEST rrfs_v1nssl_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rrfs_v1nssl_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rrfs_v1nssl_intel.log * TEST rrfs_v1nssl_nohailnoccn_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rrfs_v1nssl_nohailnoccn_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rrfs_v1nssl_nohailnoccn_intel.log * TEST control_csawmg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_csawmg_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_csawmg_intel.log * TEST control_ras_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_ras_intel.log -* TEST control_wam_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_wam_intel.log -* TEST control_p8_faster_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_faster_intel.log -* TEST regional_control_faster_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_control_faster_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_ras_intel.log +* TEST control_wam_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2867218/control_wam_intel/err * TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_CubedSphereGrid_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_CubedSphereGrid_debug_intel.log * TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_wrtGauss_netcdf_parallel_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_wrtGauss_netcdf_parallel_debug_intel.log * TEST control_stochy_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_stochy_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_stochy_debug_intel.log * TEST control_lndp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_lndp_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_lndp_debug_intel.log * TEST control_csawmg_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_csawmg_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_csawmg_debug_intel.log * TEST control_ras_debug_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_ras_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_ras_debug_intel.log * TEST control_diag_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_diag_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_diag_debug_intel.log * TEST control_debug_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_debug_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_debug_p8_intel.log * TEST regional_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_debug_intel.log * TEST rap_control_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_debug_intel.log * TEST hrrr_control_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_debug_intel.log * TEST hrrr_gf_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_gf_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_gf_debug_intel.log * TEST hrrr_c3_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_c3_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_c3_debug_intel.log * TEST rap_unified_drag_suite_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_unified_drag_suite_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_unified_drag_suite_debug_intel.log * TEST rap_diag_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_diag_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_diag_debug_intel.log * TEST rap_cires_ugwp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_cires_ugwp_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_cires_ugwp_debug_intel.log * TEST rap_unified_ugwp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_unified_ugwp_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_unified_ugwp_debug_intel.log * TEST rap_lndp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_lndp_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_lndp_debug_intel.log * TEST rap_progcld_thompson_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_progcld_thompson_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_progcld_thompson_debug_intel.log * TEST rap_noah_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_noah_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_noah_debug_intel.log * TEST rap_sfcdiff_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_sfcdiff_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_sfcdiff_debug_intel.log * TEST rap_noah_sfcdiff_cires_ugwp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_noah_sfcdiff_cires_ugwp_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_noah_sfcdiff_cires_ugwp_debug_intel.log * TEST rap_clm_lake_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_clm_lake_debug_intel.log -* TEST rap_flake_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_flake_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_clm_lake_debug_intel.log * TEST gnv1_c96_no_nest_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_gnv1_c96_no_nest_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_gnv1_c96_no_nest_debug_intel.log * TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_wam_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_wam_debug_intel.log * TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_spp_sppt_shum_skeb_dyn32_phy32_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_spp_sppt_shum_skeb_dyn32_phy32_intel.log * TEST rap_control_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn32_phy32_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn32_phy32_intel.log * TEST hrrr_control_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_dyn32_phy32_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_dyn32_phy32_intel.log * TEST rap_2threads_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_2threads_dyn32_phy32_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_2threads_dyn32_phy32_intel.log * TEST hrrr_control_2threads_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_2threads_dyn32_phy32_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_2threads_dyn32_phy32_intel.log * TEST hrrr_control_decomp_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_decomp_dyn32_phy32_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_decomp_dyn32_phy32_intel.log * TEST rap_restart_dyn32_phy32_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST hrrr_control_restart_dyn32_phy32_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST conus13km_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_control_intel.log -* TEST conus13km_2threads_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST conus13km_restart_mismatch_intel: FAILED: UNABLE TO START TEST --- LOG: N/A +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_control_intel.log +* TEST conus13km_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_2threads_intel.log +* TEST conus13km_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_decomp_intel.log +* TEST conus13km_restart_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A +* TEST conus13km_gl_inline_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_gl_inline_intel.log * TEST rap_control_dyn64_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn64_phy32_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn64_phy32_intel.log * TEST rap_control_debug_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_debug_dyn32_phy32_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_debug_dyn32_phy32_intel.log * TEST hrrr_control_debug_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_debug_dyn32_phy32_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_debug_dyn32_phy32_intel.log * TEST conus13km_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_intel.log * TEST conus13km_debug_qr_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_debug_qr_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_qr_intel.log * TEST conus13km_debug_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_debug_2threads_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_2threads_intel.log +* TEST conus13km_debug_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_decomp_intel.log * TEST conus13km_radar_tten_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_radar_tten_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_radar_tten_debug_intel.log * TEST rap_control_dyn64_phy32_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn64_phy32_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn64_phy32_debug_intel.log * TEST hafs_regional_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_atm_intel.log -* TEST hafs_regional_atm_gfdlmpv3_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_atm_gfdlmpv3_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_atm_intel.log +* TEST hafs_regional_atm_gfdlmpv3_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_atm_gfdlmpv3_intel.log * TEST hafs_regional_atm_thompson_gfdlsf_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_atm_thompson_gfdlsf_intel.log -* TEST hafs_regional_atm_ocn_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_atm_ocn_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_atm_thompson_gfdlsf_intel.log * TEST hafs_regional_atm_wav_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_atm_wav_intel.log -* TEST hafs_regional_atm_ocn_wav_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_atm_ocn_wav_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_atm_wav_intel.log * TEST hafs_regional_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_1nest_atm_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_1nest_atm_intel.log * TEST hafs_regional_telescopic_2nests_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_telescopic_2nests_atm_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_telescopic_2nests_atm_intel.log * TEST hafs_global_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_global_1nest_atm_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_global_1nest_atm_intel.log * TEST hafs_global_multiple_4nests_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_global_multiple_4nests_atm_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_global_multiple_4nests_atm_intel.log * TEST hafs_regional_specified_moving_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_specified_moving_1nest_atm_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_specified_moving_1nest_atm_intel.log * TEST hafs_regional_storm_following_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_intel.log -* TEST hafs_regional_storm_following_1nest_atm_ocn_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_intel.log * TEST hafs_global_storm_following_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_global_storm_following_1nest_atm_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_global_storm_following_1nest_atm_intel.log * TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_gnv1_nested_intel.log -* TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_debug_intel.log -* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_wav_intel.log -* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_gnv1_nested_intel.log * TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel.log * TEST hafs_regional_docn_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_docn_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_docn_intel.log * TEST hafs_regional_docn_oisst_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_docn_oisst_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_docn_oisst_intel.log * TEST atm_ds2s_docn_pcice_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_atm_ds2s_docn_pcice_intel.log -* TEST atm_ds2s_docn_dice_intel: FAILED: UNABLE TO START TEST --- LOG: N/A +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_atm_ds2s_docn_pcice_intel.log * TEST control_p8_atmlnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_atmlnd_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_atmlnd_intel.log * TEST control_restart_p8_atmlnd_intel: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST control_p8_atmlnd_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_atmlnd_debug_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_atmlnd_debug_intel.log * TEST atmwav_control_noaero_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_atmwav_control_noaero_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_atmwav_control_noaero_p8_intel.log * TEST atmaero_control_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_atmaero_control_p8_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_atmaero_control_p8_intel.log * TEST atmaero_control_p8_rad_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_atmaero_control_p8_rad_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_atmaero_control_p8_rad_intel.log * TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_atmaero_control_p8_rad_micro_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_atmaero_control_p8_rad_micro_intel.log * TEST regional_atmaq_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_atmaq_intel.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_atmaq_intel.log +* TEST regional_atmaq_canopy_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_atmaq_canopy_intel.log * TEST regional_atmaq_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_atmaq_debug_intel.log -* TEST cpld_regional_atm_fbh_intel: FAILED: TEST TIMED OUT --- LOG: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2299050/cpld_regional_atm_fbh_intel/err +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_atmaq_debug_intel.log +* TEST cpld_regional_atm_fbh_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_regional_atm_fbh_intel.log * TEST cpld_control_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_gfsv17_intelllvm.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_gfsv17_intelllvm.log * TEST cpld_debug_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_gfsv17_intelllvm.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_debug_gfsv17_intelllvm.log * TEST cpld_control_sfs_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_sfs_intelllvm.log -* TEST cpld_control_p8_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8_intelllvm.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_sfs_intelllvm.log +* TEST cpld_debug_sfs_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_debug_sfs_intelllvm.log * TEST rap_control_dyn32_phy32_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn32_phy32_intelllvm.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn32_phy32_intelllvm.log * TEST rap_control_dyn64_phy32_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn64_phy32_intelllvm.log -* TEST hafs_regional_storm_following_1nest_atm_ocn_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_intelllvm.log -* TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn64_phy32_intelllvm.log * TEST control_c48_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_c48_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c48_gnu.log * TEST control_stochy_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_stochy_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_stochy_gnu.log * TEST control_ras_gnu: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_ras_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_ras_gnu.log * TEST control_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_gnu.log * TEST control_p8_ugwpv1_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_p8_ugwpv1_gnu.log -* TEST control_flake_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_flake_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_ugwpv1_gnu.log * TEST rap_control_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_gnu.log * TEST rap_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_decomp_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_decomp_gnu.log * TEST rap_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_2threads_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_2threads_gnu.log * TEST rap_restart_gnu: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST rap_sfcdiff_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_sfcdiff_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_sfcdiff_gnu.log * TEST rap_sfcdiff_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_sfcdiff_decomp_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_sfcdiff_decomp_gnu.log * TEST rap_sfcdiff_restart_gnu: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST hrrr_control_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_gnu.log * TEST hrrr_control_noqr_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_noqr_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_noqr_gnu.log * TEST hrrr_control_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_2threads_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_2threads_gnu.log * TEST hrrr_control_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_decomp_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_decomp_gnu.log * TEST hrrr_control_restart_gnu: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST hrrr_control_restart_noqr_gnu: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST rrfs_v1beta_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rrfs_v1beta_gnu.log -* TEST control_csawmg_gnu: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_csawmg_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rrfs_v1beta_gnu.log +* TEST control_csawmg_gnu: FAILED: TEST TIMED OUT +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2867218/control_csawmg_gnu/err * TEST control_diag_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_diag_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_diag_debug_gnu.log * TEST regional_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_regional_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_debug_gnu.log * TEST rap_control_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_debug_gnu.log * TEST hrrr_control_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_debug_gnu.log * TEST hrrr_gf_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_gf_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_gf_debug_gnu.log * TEST hrrr_c3_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_c3_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_c3_debug_gnu.log * TEST rap_diag_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_diag_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_diag_debug_gnu.log * TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_noah_sfcdiff_cires_ugwp_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_noah_sfcdiff_cires_ugwp_debug_gnu.log * TEST rap_progcld_thompson_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_progcld_thompson_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_progcld_thompson_debug_gnu.log * TEST control_ras_debug_gnu: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_ras_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_ras_debug_gnu.log * TEST control_stochy_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_stochy_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_stochy_debug_gnu.log * TEST control_debug_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_debug_p8_gnu.log -* TEST rap_flake_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_flake_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_debug_p8_gnu.log * TEST rap_clm_lake_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_clm_lake_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_clm_lake_debug_gnu.log * TEST gnv1_c96_no_nest_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_gnv1_c96_no_nest_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_gnv1_c96_no_nest_debug_gnu.log * TEST control_wam_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_wam_debug_gnu.log -* TEST control_csawmg_debug_gnu: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_control_csawmg_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_wam_debug_gnu.log +* TEST control_csawmg_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_csawmg_debug_gnu.log * TEST rap_control_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn32_phy32_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn32_phy32_gnu.log * TEST hrrr_control_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_dyn32_phy32_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_dyn32_phy32_gnu.log * TEST rap_2threads_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_2threads_dyn32_phy32_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_2threads_dyn32_phy32_gnu.log * TEST hrrr_control_2threads_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_2threads_dyn32_phy32_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_2threads_dyn32_phy32_gnu.log * TEST hrrr_control_decomp_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_decomp_dyn32_phy32_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_decomp_dyn32_phy32_gnu.log * TEST rap_restart_dyn32_phy32_gnu: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST hrrr_control_restart_dyn32_phy32_gnu: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST conus13km_control_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_control_gnu.log -* TEST conus13km_2threads_gnu: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST conus13km_restart_mismatch_gnu: FAILED: UNABLE TO START TEST +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_control_gnu.log +* TEST conus13km_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_2threads_gnu.log +* TEST conus13km_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_decomp_gnu.log +* TEST conus13km_restart_gnu: FAILED: UNABLE TO START TEST -- LOG: N/A * TEST rap_control_dyn64_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn64_phy32_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn64_phy32_gnu.log * TEST rap_control_debug_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_debug_dyn32_phy32_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_debug_dyn32_phy32_gnu.log * TEST hrrr_control_debug_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_hrrr_control_debug_dyn32_phy32_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_debug_dyn32_phy32_gnu.log * TEST conus13km_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_gnu.log * TEST conus13km_debug_qr_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_debug_qr_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_qr_gnu.log * TEST conus13km_debug_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_debug_2threads_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_2threads_gnu.log +* TEST conus13km_debug_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_decomp_gnu.log * TEST conus13km_radar_tten_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_conus13km_radar_tten_debug_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_radar_tten_debug_gnu.log * TEST rap_control_dyn64_phy32_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_rap_control_dyn64_phy32_debug_gnu.log -* TEST cpld_control_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_p8_gnu.log -* TEST cpld_control_nowave_noaero_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_nowave_noaero_p8_gnu.log -* TEST cpld_debug_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_p8_gnu.log -* TEST cpld_control_pdlib_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_control_pdlib_p8_gnu.log -* TEST cpld_debug_pdlib_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model/tests/logs/log_ursa/run_cpld_debug_pdlib_p8_gnu.log +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn64_phy32_debug_gnu.log +* TEST cpld_control_gfsv17_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_gfsv17_gnu.log +* TEST cpld_debug_gfsv17_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_debug_gfsv17_gnu.log +* TEST cpld_control_sfs_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_sfs_gnu.log +* TEST cpld_debug_sfs_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_debug_sfs_gnu.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. diff --git a/tests/test_changes.list b/tests/test_changes.list index a26e7566a3..c5af8c8d45 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,20 +1,18 @@ -cpld_control_p8_mixedmode intel cpld_control_gefs intel cpld_restart_gefs intel cpld_dcp_gefs intel cpld_control_gfsv17 intel cpld_control_gfsv17_iau intel cpld_restart_gfsv17 intel +cpld_restart_gfsv17_iau intel cpld_mpi_gfsv17 intel -cpld_control_gfsv17_nowav_iau intel -cpld_restart_gfsv17_nowav_iau intel cpld_control_sfs intel +cpld_restart_sfs intel +cpld_debug_sfs intel cpld_debug_gfsv17 intel cpld_control_p8 intel cpld_control_p8.v2.sfc intel cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel cpld_2threads_p8 intel cpld_decomp_p8 intel cpld_mpi_p8 intel @@ -23,16 +21,7 @@ cpld_control_c192_p8 intel cpld_restart_c192_p8 intel cpld_control_p8_lnd intel cpld_restart_p8_lnd intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel cpld_control_noaero_p8_agrid intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel cpld_control_c48_5deg intel cpld_warmstart_c48_5deg intel cpld_restart_c48_5deg intel @@ -45,8 +34,6 @@ cpld_restart_c24_9deg intel cpld_control_c12_9deg intel cpld_warmstart_c12_9deg intel cpld_restart_c12_9deg intel -cpld_debug_pdlib_p8 intel -control_flake intel control_CubedSphereGrid intel control_CubedSphereGrid_parallel intel control_latlon intel @@ -60,9 +47,7 @@ control_c384gdas intel control_stochy intel control_stochy_restart intel control_lndp intel -control_iovr4 intel control_iovr4_gfdlmpv3 intel -control_iovr5 intel control_p8 intel control_p8.v2.sfc intel control_p8_ugwpv1 intel @@ -78,6 +63,7 @@ control_p8_lndp intel control_p8_rrtmgp intel control_p8_mynn intel merra2_thompson intel +merra2_hf_thompson intel regional_control intel regional_restart intel regional_decomp intel @@ -86,6 +72,7 @@ regional_noquilt intel regional_netcdf_parallel intel regional_2dwrtdecomp intel regional_wofs intel +control_p8_rrtmgp_rad32 intel rap_control intel regional_spp_sppt_shum_skeb intel rap_decomp intel @@ -104,8 +91,6 @@ rrfs_v1nssl_nohailnoccn intel control_csawmg intel control_ras intel control_wam intel -control_p8_faster intel -regional_control_faster intel control_CubedSphereGrid_debug intel control_wrtGauss_netcdf_parallel_debug intel control_stochy_debug intel @@ -129,7 +114,6 @@ rap_noah_debug intel rap_sfcdiff_debug intel rap_noah_sfcdiff_cires_ugwp_debug intel rap_clm_lake_debug intel -rap_flake_debug intel gnv1_c96_no_nest_debug intel control_wam_debug intel regional_spp_sppt_shum_skeb_dyn32_phy32 intel @@ -142,38 +126,34 @@ rap_restart_dyn32_phy32 intel hrrr_control_restart_dyn32_phy32 intel conus13km_control intel conus13km_2threads intel -conus13km_restart_mismatch intel +conus13km_decomp intel +conus13km_restart intel +conus13km_gl_inline intel rap_control_dyn64_phy32 intel rap_control_debug_dyn32_phy32 intel hrrr_control_debug_dyn32_phy32 intel conus13km_debug intel conus13km_debug_qr intel conus13km_debug_2threads intel +conus13km_debug_decomp intel conus13km_radar_tten_debug intel rap_control_dyn64_phy32_debug intel hafs_regional_atm intel hafs_regional_atm_gfdlmpv3 intel hafs_regional_atm_thompson_gfdlsf intel -hafs_regional_atm_ocn intel hafs_regional_atm_wav intel -hafs_regional_atm_ocn_wav intel hafs_regional_1nest_atm intel hafs_regional_telescopic_2nests_atm intel hafs_global_1nest_atm intel hafs_global_multiple_4nests_atm intel hafs_regional_specified_moving_1nest_atm intel hafs_regional_storm_following_1nest_atm intel -hafs_regional_storm_following_1nest_atm_ocn intel hafs_global_storm_following_1nest_atm intel gnv1_nested intel -hafs_regional_storm_following_1nest_atm_ocn_debug intel -hafs_regional_storm_following_1nest_atm_ocn_wav intel -hafs_regional_storm_following_1nest_atm_ocn_wav_inline intel hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel hafs_regional_docn intel hafs_regional_docn_oisst intel atm_ds2s_docn_pcice intel -atm_ds2s_docn_dice intel control_p8_atmlnd intel control_restart_p8_atmlnd intel control_p8_atmlnd_debug intel @@ -182,22 +162,20 @@ atmaero_control_p8 intel atmaero_control_p8_rad intel atmaero_control_p8_rad_micro intel regional_atmaq intel +regional_atmaq_canopy intel regional_atmaq_debug intel cpld_regional_atm_fbh intel cpld_control_gfsv17 intelllvm cpld_debug_gfsv17 intelllvm cpld_control_sfs intelllvm -cpld_control_p8 intelllvm +cpld_debug_sfs intelllvm rap_control_dyn32_phy32 intelllvm rap_control_dyn64_phy32 intelllvm -hafs_regional_storm_following_1nest_atm_ocn intelllvm -hafs_regional_storm_following_1nest_atm_ocn_debug intelllvm control_c48 gnu control_stochy gnu control_ras gnu control_p8 gnu control_p8_ugwpv1 gnu -control_flake gnu rap_control gnu rap_decomp gnu rap_2threads gnu @@ -225,7 +203,6 @@ rap_progcld_thompson_debug gnu control_ras_debug gnu control_stochy_debug gnu control_debug_p8 gnu -rap_flake_debug gnu rap_clm_lake_debug gnu gnv1_c96_no_nest_debug gnu control_wam_debug gnu @@ -239,17 +216,18 @@ rap_restart_dyn32_phy32 gnu hrrr_control_restart_dyn32_phy32 gnu conus13km_control gnu conus13km_2threads gnu -conus13km_restart_mismatch gnu +conus13km_decomp gnu +conus13km_restart gnu rap_control_dyn64_phy32 gnu rap_control_debug_dyn32_phy32 gnu hrrr_control_debug_dyn32_phy32 gnu conus13km_debug gnu conus13km_debug_qr gnu conus13km_debug_2threads gnu +conus13km_debug_decomp gnu conus13km_radar_tten_debug gnu rap_control_dyn64_phy32_debug gnu -cpld_control_p8 gnu -cpld_control_nowave_noaero_p8 gnu -cpld_debug_p8 gnu -cpld_control_pdlib_p8 gnu -cpld_debug_pdlib_p8 gnu +cpld_control_gfsv17 gnu +cpld_debug_gfsv17 gnu +cpld_control_sfs gnu +cpld_debug_sfs gnu From 01ea61f6594cbf2567d2bdb096b386d6e612f5c2 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Wed, 25 Mar 2026 11:07:38 -0400 Subject: [PATCH 27/43] remove RAS tests from rt.conf --- tests/rt.conf | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/tests/rt.conf b/tests/rt.conf index 12f8ba6995..4c19bbcec6 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -149,22 +149,20 @@ RUN | rrfs_v1beta | RUN | rrfs_v1nssl | | baseline | RUN | rrfs_v1nssl_nohailnoccn | | baseline | -COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 | +COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg | - noaacloud | fv3 | RUN | control_csawmg | - noaacloud | baseline | -RUN | control_ras | - noaacloud | baseline | # Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere COMPILE | wam | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON | - noaacloud | fv3 | RUN | control_wam | - noaacloud | baseline | ### DEBUG ATM tests ### -COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | - noaacloud | fv3 | +COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | - noaacloud | fv3 | RUN | control_CubedSphereGrid_debug | - noaacloud | baseline | RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud | baseline | RUN | control_stochy_debug | - noaacloud | baseline | RUN | control_lndp_debug | - noaacloud | baseline | RUN | control_csawmg_debug | - noaacloud | baseline | -RUN | control_ras_debug | - noaacloud | baseline | RUN | control_diag_debug | - noaacloud | baseline | RUN | control_debug_p8 | - noaacloud | baseline | RUN | regional_debug | - noaacloud | baseline | @@ -369,10 +367,9 @@ RUN | datm_cdeps_debug_cfsr | + ursa ############################# ### CCPP PROD tests ### -COMPILE | atm | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 | + hera hercules ursa derecho| fv3 | +COMPILE | atm | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 | + hera hercules ursa derecho| fv3 | RUN | control_c48 | + hera hercules ursa derecho | baseline | RUN | control_stochy | + hera hercules ursa derecho | baseline | -RUN | control_ras | + hera hercules ursa derecho | baseline | RUN | control_p8 | + hera hercules ursa derecho | baseline | RUN | control_p8_ugwpv1 | + hera hercules ursa derecho | baseline | @@ -392,7 +389,7 @@ RUN | hrrr_control_restart | + hera hercules ursa d RUN | hrrr_control_restart_noqr | + hera hercules ursa derecho | | hrrr_control_noqr RUN | rrfs_v1beta | + hera hercules ursa derecho | baseline | -COMPILE | csawmg | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | + hera hercules ursa derecho | fv3 | +COMPILE | csawmg | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg | + hera hercules ursa derecho | fv3 | RUN | control_csawmg | + hera hercules ursa derecho | baseline | ### CCPP DEBUG tests ### @@ -408,7 +405,6 @@ RUN | rap_diag_debug | + hera hercules ursa d RUN | rap_noah_sfcdiff_cires_ugwp_debug | + hera hercules ursa derecho | baseline | RUN | rap_progcld_thompson_debug | + hera hercules ursa derecho | baseline | ###RUN | rrfs_v1beta_debug | + hera hercules ursa derecho | baseline | -RUN | control_ras_debug | + hera hercules ursa derecho | baseline | RUN | control_stochy_debug | + hera hercules ursa derecho | baseline | RUN | control_debug_p8 | + hera hercules ursa derecho | baseline | RUN | rap_clm_lake_debug | + hera hercules ursa derecho | baseline | @@ -418,7 +414,7 @@ COMPILE | wam_debug | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -D RUN | control_wam_debug | + hera hercules ursa derecho | baseline | ### DEBUG ATM tests ### -COMPILE | atm_debug_dyn32 | gnu | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | + hera hercules ursa derecho| fv3 | +COMPILE | atm_debug_dyn32 | gnu | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | + hera hercules ursa derecho| fv3 | RUN | control_csawmg_debug | + hera hercules ursa derecho | baseline | ### 32-bit physics tests ### From b684bed93dae0b75f7b91a49dc3cc84af9787506 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Wed, 25 Mar 2026 11:11:35 -0400 Subject: [PATCH 28/43] cleanup from additional RT testing --- tests/parm/input_regional_hafs.nml.IN | 4 +- tests/rt_add.conf | 48 ------------- tests/rt_tend.conf | 50 ------------- tests/tests/hafs_regional_atm_ntiedtke | 98 -------------------------- 4 files changed, 2 insertions(+), 198 deletions(-) delete mode 100644 tests/rt_add.conf delete mode 100644 tests/rt_tend.conf delete mode 100644 tests/tests/hafs_regional_atm_ntiedtke diff --git a/tests/parm/input_regional_hafs.nml.IN b/tests/parm/input_regional_hafs.nml.IN index 82e1cabf9d..7d028cb01b 100644 --- a/tests/parm/input_regional_hafs.nml.IN +++ b/tests/parm/input_regional_hafs.nml.IN @@ -193,8 +193,8 @@ random_clds = .false. trans_trac = .true. cnvcld = .true. - imfshalcnv = @[IMFSHALCNV] - imfdeepcnv = @[IMFDEEPCNV] + imfshalcnv = 2 + imfdeepcnv = 2 cdmbgwd = 1.0,1.0,1.0,1.0 sfc_z0_type = 6 prslrd0 = 0. diff --git a/tests/rt_add.conf b/tests/rt_add.conf deleted file mode 100644 index 77f89b2591..0000000000 --- a/tests/rt_add.conf +++ /dev/null @@ -1,48 +0,0 @@ -### RT.CONF FORMATTING ### -# COMPILE Line ( Items separated by a | ) -# Item 1: COMPILE - This tells rt.conf the following information is to be used in setting up a compile job -# Item 2: Compile name - The rt.sh will add _gnu or _intel to it. There must be no duplicate names for each compiler. -# If two compilations are identical except compiler, please use the same name for each. -# Item 3: Compiler to use in build (intel or gnu) -# Item 4: CMAKE Options - Provide all CMAKE options for the build -# Item 5: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines) -## -> EX: + hera orion gaea = compile will only run on hera orion and gaea machines -## -> EX: - wcoss2 acorn = compile will NOT be run on wcoss2 or acorn -# Item 6: [set as fv3]. Used to control the compile job only if FV3 was present, previously used to run a test w/o compiling code -# -# RUN Line ( Items separated by a | ) -## NOTE: The build resulting from the COMPILE line above the RUN line will be used to run the test -# Item 1: RUN - This tells rt.conf the following information is to be used in setting up a model run -# Item 2: Test name. (Which test in the tests/tests directory should be sourced) -# Item 3: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines). -## reference example above -# Item 4: Controls whether the run creates its own baseline or it uses the baseline from a different (control) test. -# Item 5: Test name to compare baselines with if not itself. - -############################# -### Intel (Classic) Tests ### -############################# - -COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8_rrtmgp,FV3_WoFS_v0,FV3_GFS_v17_p8_ugwpv1_tempo,FV3_GFS_2017_ntiedtke -D32BIT=ON | | fv3 | -RUN | control_p8_rrtmgp | - noaacloud | baseline | -RUN | control_p8_ugwpv1_tempo | - noaacloud | baseline | -RUN | regional_wofs | - s4 | baseline | - -COMPILE | atm_dyn32 | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8_rrtmgp,FV3_WoFS_v0,FV3_GFS_v17_p8_ugwpv1_tempo,FV3_GFS_2017_ntiedtke -D32BIT=ON | | fv3 | -RUN | control_p8_rrtmgp | - noaacloud | baseline | -RUN | control_p8_ugwpv1_tempo | - noaacloud | baseline | -RUN | regional_wofs | - s4 | baseline | - -COMPILE | hafsw | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmpv3_tedmf,FV3_HAFS_v1_gfdlmpv3_tedmf_ntiedtke -D32BIT=ON | | fv3 | -RUN | hafs_regional_atm_gfdlmpv3 | | baseline | -RUN | hafs_regional_atm_ntiedtke | | baseline | - -COMPILE | hafsw | gnu | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmpv3_tedmf,FV3_HAFS_v1_gfdlmpv3_tedmf_ntiedtke -D32BIT=ON | | fv3 | -RUN | hafs_regional_atm_gfdlmpv3 | | baseline | -RUN | hafs_regional_atm_ntiedtke | | baseline | - -COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP -D32BIT=ON | | fv3 | -RUN | rap_control | | baseline | - -COMPILE | rrfs | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP -D32BIT=ON | + hera hercules ursa derecho| fv3 | -RUN | rap_control | | baseline | diff --git a/tests/rt_tend.conf b/tests/rt_tend.conf deleted file mode 100644 index 7329ba4456..0000000000 --- a/tests/rt_tend.conf +++ /dev/null @@ -1,50 +0,0 @@ -### RT.CONF FORMATTING ### -# COMPILE Line ( Items separated by a | ) -# Item 1: COMPILE - This tells rt.conf the following information is to be used in setting up a compile job -# Item 2: Compile name - The rt.sh will add _gnu or _intel to it. There must be no duplicate names for each compiler. -# If two compilations are identical except compiler, please use the same name for each. -# Item 3: Compiler to use in build (intel or gnu) -# Item 4: CMAKE Options - Provide all CMAKE options for the build -# Item 5: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines) -## -> EX: + hera orion gaea = compile will only run on hera orion and gaea machines -## -> EX: - wcoss2 acorn = compile will NOT be run on wcoss2 or acorn -# Item 6: [set as fv3]. Used to control the compile job only if FV3 was present, previously used to run a test w/o compiling code -# -# RUN Line ( Items separated by a | ) -## NOTE: The build resulting from the COMPILE line above the RUN line will be used to run the test -# Item 1: RUN - This tells rt.conf the following information is to be used in setting up a model run -# Item 2: Test name. (Which test in the tests/tests directory should be sourced) -# Item 3: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines). -## reference example above -# Item 4: Controls whether the run creates its own baseline or it uses the baseline from a different (control) test. -# Item 5: Test name to compare baselines with if not itself. - -############################# -### Intel (Classic) Tests ### -############################# - -### ATM tests ### -COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 | -RUN | control_p8 | - noaacloud | baseline | -RUN | control_restart_p8 | - noaacloud | baseline | - -COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RRFS_v1beta -D32BIT=ON | | fv3 | -RUN | rrfs_v1beta | | baseline | - -### DEBUG ATM tests ### -COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_p8_ugwpv1,FV3_RRFS_v1beta | - noaacloud | fv3 | -RUN | control_debug_p8 | - noaacloud | baseline | -RUN | rrfs_v1beta_debug | - noaacloud | baseline | - -### ATM-GOCART tests ### -COMPILE | atmaero | intel | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - noaacloud | fv3 | -RUN | atmaero_control_p8 | - noaacloud | baseline | - -############################# -### Gnu Tests ############### -############################# - -### CCPP PROD tests ### -COMPILE | atm | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8_ugwpv1 | + hera hercules | fv3 | -RUN | control_p8 | + hera hercules | baseline | - diff --git a/tests/tests/hafs_regional_atm_ntiedtke b/tests/tests/hafs_regional_atm_ntiedtke deleted file mode 100644 index 5b41635bf1..0000000000 --- a/tests/tests/hafs_regional_atm_ntiedtke +++ /dev/null @@ -1,98 +0,0 @@ -############################################################################### -# -# HAFS regional atmosphere only -# -############################################################################### - -export TEST_DESCR="Compare HAFS regional atmosphere only results with previous trunk version" - -export CNTL_DIR=hafs_regional_atm_ntiedtke - -export LIST_FILES="atmf006.nc \ - sfcf006.nc \ - HURPRS.GrbF06" - -export_fv3 -export_hafs - -export HAFS=true -export FHMAX=6 -export RESTART_N=${FHMAX} -export atm_omp_num_threads=2 -export DT_ATMOS=180 -export ZSTANDARD_LEVEL=5 -export OUTPUT_FH='3 -1' -export OUTPUT_FILE="'netcdf' 'netcdf'" -export SDAY=29 -export SHOUR=00 -export SMONTH=08 -export SYEAR=2019 -export WRTTASK_PER_GROUP=60 -export WRITE_DOPOST=.true. -export POSTAPP='hafs' - -export OUTPUT_GRID='regional_latlon' -export CEN_LON=-62.0 -export CEN_LAT=22.0 -export LON1=-116.90 -export LAT1=-14.45 -export LON2=-7.10 -export LAT2=58.45 -export DLON=0.1 -export DLAT=0.1 - -export BLOCKSIZE=40 -export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_ntiedtke -export IMFDEEPCNV=4 -export IMFSHALCNV=4 -export DEFLATE_LEVEL=-1 -export INPES=20 -export JNPES=12 -export NPX=721 -export NPY=601 -export NPZ=91 -export NPZP=$(($NPZ + 1)) -export K_SPLIT=2 -export N_SPLIT=5 -export NWAT=6 -export NA_INIT=1 -export EXTERNAL_IC=.true. -export NGGPS_IC=.true. -export MOUNTAIN=.false. -export WARM_START=.false. -export TARGET_LAT="22.0" -export TARGET_LON="-62.0" -export STRETCH_FAC=1.0001 -export REGIONAL=.true. -export BC_UPDATE_INTERVAL=3 -export NROWS_BLEND=10 -export FULL_ZS_FILTER=.false. -export N_ZS_FILTER=0 - -export GRID_PES="240" -export TILE_COARSE="0" -export NUM_TILE_TOP=1 -export NEST_REFINE="0" -export NEST_IOFFSETS="999" -export NEST_JOFFSETS="999" - -export FHCYC=0 -export FHSWR=1800 -export FHLWR=1800 -export NSTF_NAME=2,0,0,0,0 -export CPLFLX=.false. -export CPLOCN2ATM=.true. -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export CPL_IMP_MRG=.false. - -export CMEPS=false -export RUNTYPE=startup -export USE_COLDSTART=false - -export FIELD_TABLE=field_table_hafs -export DIAG_TABLE=diag_table_hafs_template.IN -export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE=model_configure_hafs.IN -export UFS_CONFIGURE=ufs.configure.hafs_atm.IN -export FV3_RUN=hafs_fv3_run.IN From 4b749626c2c2339c6b957c08f3eb1584342b712c Mon Sep 17 00:00:00 2001 From: Fernando Andrade - NOAA <121964418+FernandoAndrade-NOAA@users.noreply.github.com> Date: Wed, 25 Mar 2026 13:21:07 -0700 Subject: [PATCH 29/43] Update bl_date.conf --- tests/bl_date.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 08dca52ac6..e3b4d8b262 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20260324 +export BL_DATE=20260325 From 2e52a2f7aa29b3dc03b230a748f5859e9e239707 Mon Sep 17 00:00:00 2001 From: gspetro-NOAA Date: Thu, 26 Mar 2026 11:59:18 -0500 Subject: [PATCH 30/43] orion rt log - passed --- tests/logs/RegressionTests_orion.log | 528 +++++++++++++-------------- 1 file changed, 263 insertions(+), 265 deletions(-) diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 42ae69ae98..b4c4029dc5 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: -a7890928cc212c7238ab30367306f1deeca535d3 +4b749626c2c2339c6b957c08f3eb1584342b712c Submodule hashes used in testing: fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) def9c53b17d6722cc9991ba72ddae8ad2d5d25d9 CICE-interface/CICE (CICE6.0.0-445-gdef9c53) 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) - 33d42f9b1b2eb50900faa58a18677079aeff8a73 CMEPS-interface/CMEPS (cmeps_v0.4.1-2333-g33d42f9) + 5e4a79fb2523a78b35e8969661ab8bd05e6575bf CMEPS-interface/CMEPS (remotes/origin/feature/tendency_cleanup) 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) @@ -19,12 +19,12 @@ Submodule hashes used in testing: 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) - f8a223c90ba5adb1257e5cf16d269c176dff2a49 UFSATM (remotes/origin/updraft) + 0562ff53f1781a17d87c2261f55cdf730380b9c2 UFSATM (remotes/origin/feature/tendency_cleanup) 22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5) - e5ebf607cd342b1125941ea4e843a064503008f6 UFSATM/ccpp/physics (ccpp_transition_to_vlab_master_20190705-5747-ge5ebf607) + ad9d897c2348764695dfc6cc976b70c47c8f2ee2 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6788-gad9d897c) 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 (remotes/origin/ccpp/dev) + b2d7d8731c84964c7afcab74cc9f2acb23d7fd71 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (remotes/origin/feature/tendency_cleanup) 3e5db3750e382976b4d6011c6d9c1437b0cf34f6 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-502-g3e5db37) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/master-60-g38d2177a) 7d9597c471470be061ab8853dd62bcd03f15d6aa UFSATM/upp (upp_v10.2.0-354-g7d9597c4) @@ -41,274 +41,272 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work2/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20260324 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3514878 +BASELINE DIRECTORY: /work2/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20260325 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_225888 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [32:11, 30:54] ( 1 warnings 1092 remarks ) -PASS -- TEST 'cpld_control_gefs_intel' [36:51, 20:05](3032 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [31:00, 06:54](2701 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [41:40, 23:21](3052 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_intel' [32:11, 30:46] ( 1 warnings 1073 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:45, 23:33](1959 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:48, 24:46](2114 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:21, 09:35](1223 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [16:09, 10:41](2092 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:36, 28:10](1882 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [27:11, 25:33] ( 1 warnings 987 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:49, 13:58](2225 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [16:08, 07:50](1504 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:11, 05:50] ( 359 warnings 987 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [20:56, 13:01](2256 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [07:13, 05:34] ( 359 warnings 1385 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:11, 23:32](1947 MB) - -PASS -- COMPILE 's2swa_intel' [27:11, 25:16] ( 1 warnings 1092 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [22:14, 18:29](2195 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:01, 16:45](2178 MB) -PASS -- TEST 'cpld_restart_p8_intel' [13:26, 09:41](1776 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:47, 12:51](2290 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:54, 17:17](2173 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [18:00, 15:04](2066 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:59, 16:52](2186 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:02, 16:52](2667 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:38, 10:16](2833 MB) - -PASS -- COMPILE 's2swl_intel' [29:11, 27:45] ( 1 warnings 1095 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [19:57, 16:56](2074 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:38, 08:14](1507 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [29:11, 27:48] ( 1 warnings 998 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:54, 05:03](2093 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [27:11, 25:40] ( 1 warnings 1083 remarks ) -PASS -- TEST 'cpld_control_c48_5deg_intel' [11:09, 08:19](3047 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:06, 02:25](3041 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:10, 01:25](2480 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [04:56, 02:52](2239 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:52, 02:30](2239 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:44, 00:35](1548 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:52, 01:33](2237 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:51, 01:11](2234 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:46, 00:36](1550 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [03:49, 01:28](2162 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:49, 00:41](2161 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:38, 00:34](1494 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:11, 16:22] ( 1 warnings 539 remarks ) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:44, 02:38](1585 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:57, 02:47](1601 MB) -PASS -- TEST 'control_latlon_intel' [04:40, 02:44](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:44, 02:44](1594 MB) -PASS -- TEST 'control_c48_intel' [10:51, 08:37](1708 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:44, 07:57](838 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:50, 08:52](1717 MB) -PASS -- TEST 'control_c192_intel' [10:17, 07:55](1780 MB) -PASS -- TEST 'control_c384_intel' [13:26, 09:42](1978 MB) -PASS -- TEST 'control_c384gdas_intel' [16:39, 10:44](1296 MB) -PASS -- TEST 'control_stochy_intel' [03:35, 01:52](658 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:44, 01:07](487 MB) -PASS -- TEST 'control_lndp_intel' [03:35, 01:44](658 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:20, 04:37](956 MB) -PASS -- TEST 'control_p8_intel' [08:11, 04:56](1889 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:04, 04:25](1881 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:03, 03:32](1886 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [08:12, 04:04](1901 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [08:27, 04:04](1911 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [06:54, 03:13](2405 MB) -PASS -- TEST 'control_restart_p8_intel' [06:10, 02:33](1131 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:13, 04:06](1878 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:48, 02:58](1134 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:54, 05:25](1881 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:59, 04:10](1961 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:25, 06:07](1877 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:02, 05:29](1945 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:09, 04:28](1896 MB) -PASS -- TEST 'merra2_thompson_intel' [08:24, 05:03](1898 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [08:44, 05:57](1907 MB) -PASS -- TEST 'regional_control_intel' [09:15, 07:01](1086 MB) -PASS -- TEST 'regional_restart_intel' [05:47, 03:31](1099 MB) -PASS -- TEST 'regional_decomp_intel' [08:42, 06:27](1067 MB) -PASS -- TEST 'regional_2threads_intel' [06:36, 04:59](1041 MB) -PASS -- TEST 'regional_noquilt_intel' [08:53, 07:00](1361 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:44, 07:55](1083 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:55, 07:31](1088 MB) -PASS -- TEST 'regional_wofs_intel' [09:49, 07:39](1903 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [16:11, 14:24] ( 1 warnings 519 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:39, 04:55](1911 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 13:19] ( 4 warnings 490 remarks ) -PASS -- TEST 'rap_control_intel' [07:33, 04:15](1039 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:19, 05:23](1349 MB) -PASS -- TEST 'rap_decomp_intel' [07:15, 04:25](1036 MB) -PASS -- TEST 'rap_2threads_intel' [07:10, 04:27](1142 MB) -PASS -- TEST 'rap_restart_intel' [05:43, 02:21](1006 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:14, 04:14](1040 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:11, 04:27](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:52, 02:19](1012 MB) -PASS -- TEST 'hrrr_control_intel' [06:35, 04:05](1037 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:21, 04:12](1024 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:20, 04:11](1098 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:46, 02:16](965 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:26, 07:31](1038 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:08](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:32, 08:53](2008 MB) - -PASS -- COMPILE 'csawmg_intel' [15:11, 13:22] ( 1 warnings 459 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:38, 07:16](1047 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:24](743 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:19] ( 1 warnings 442 remarks ) -PASS -- TEST 'control_wam_intel' [14:53, 12:35](1665 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:25] ( 494 warnings 628 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:32, 02:16](1622 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:32, 02:20](1624 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:23, 03:05](823 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:44](826 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:48, 05:26](1127 MB) -PASS -- TEST 'control_ras_debug_intel' [04:28, 02:45](835 MB) -PASS -- TEST 'control_diag_debug_intel' [04:35, 02:47](1684 MB) -PASS -- TEST 'control_debug_p8_intel' [05:59, 03:53](1919 MB) -PASS -- TEST 'regional_debug_intel' [19:46, 17:56](1097 MB) -PASS -- TEST 'rap_control_debug_intel' [06:29, 04:59](1216 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:48](1216 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:55](1204 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:59](1211 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 04:51](1213 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:06](1308 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:05](1202 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:00](1216 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:08, 05:12](1213 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:28, 05:03](1210 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:28, 04:58](1210 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 05:03](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:30, 08:05](1209 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:35, 04:57](1214 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:37] ( 457 warnings 442 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:59, 13:37](1702 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:44] ( 4 warnings 457 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:05, 05:00](1240 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:18, 03:45](939 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:37, 03:36](920 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:58, 03:59](967 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:09, 03:49](960 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:35, 03:46](913 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:34, 02:04](890 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:43, 02:02](875 MB) -PASS -- TEST 'conus13km_control_intel' [06:22, 03:43](1308 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:00, 01:29](1225 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:12, 03:44](1336 MB) -PASS -- TEST 'conus13km_restart_intel' [04:04, 02:08](1192 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [14:11, 12:35] ( 4 warnings 487 remarks ) -PASS -- TEST 'conus13km_gl_inline_intel' [05:32, 02:49](969 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:36] ( 4 warnings 457 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:51, 04:24](1010 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:29] ( 330 warnings 463 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 05:00](1090 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:29, 04:57](1087 MB) -PASS -- TEST 'conus13km_debug_intel' [26:21, 22:56](1348 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:27, 22:04](1051 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [24:00, 21:40](1269 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [25:54, 23:38](1380 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:57, 22:17](1411 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:34] ( 330 warnings 457 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:54](1182 MB) - -PASS -- COMPILE 'hafsw_intel' [21:11, 19:43] ( 1 warnings 738 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:53, 04:41](873 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:40, 06:03](1061 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:37, 04:22](1184 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:08, 29:18](976 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:04, 06:36](487 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:17, 07:33](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:53, 03:17](367 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:17, 08:09](421 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:56, 04:22](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:00, 04:11](519 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:24](398 MB) -PASS -- TEST 'gnv1_nested_intel' [07:11, 03:50](1733 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:30, 11:27](714 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 13:37] ( 1 warnings 680 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:08, 06:31](952 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:09, 06:36](936 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [23:11, 21:54] ( 569 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:22, 03:33](1847 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 02:28](1797 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:11](1108 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:22, 03:10](1086 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:20, 03:11](1091 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:31](1849 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:29, 07:43](1664 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:25, 07:21](1026 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:19, 03:31](1848 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:21, 05:53](4831 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:21, 05:53](4829 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:49] ( 2 warnings 569 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 07:03](1778 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:18] ( 129 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:21](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:27, 00:52](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:32](310 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:33] ( 167 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:36, 00:38](560 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:38, 00:20](444 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [25:12, 23:53] ( 1 warnings 656 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:35, 04:18](1991 MB) - -PASS -- COMPILE 'atml_intel' [17:11, 15:59] ( 9 warnings 593 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [06:46, 04:02](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:07, 02:41](1107 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:55] ( 501 warnings 593 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:07, 05:55](1886 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 13:42] ( 1 warnings 568 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:37, 02:05](1912 MB) - -PASS -- COMPILE 'atmaero_intel' [17:11, 15:16] ( 1 warnings 460 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:33, 04:26](1985 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:16, 05:13](1761 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:03, 05:18](1773 MB) - -PASS -- COMPILE 'atmaq_intel' [15:11, 13:25] ( 1 warnings 645 remarks ) -PASS -- TEST 'regional_atmaq_intel' [21:15, 18:07](2921 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [26:09, 22:45](2908 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:48] ( 474 warnings 645 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [44:00, 40:23](2921 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:11, 12:00] ( 4 warnings 466 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:34, 14:14](1087 MB) +PASS -- COMPILE 's2swa_32bit_intel' [26:11, 24:24] ( 1 warnings 1087 remarks ) +PASS -- TEST 'cpld_control_gefs_intel' [33:56, 20:04](3038 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [21:07, 06:07](2713 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [34:16, 21:06](3045 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_intel' [30:11, 28:15] ( 1 warnings 1068 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:04, 22:26](1968 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:47, 24:32](2128 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:54, 09:31](1239 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:33, 10:37](2083 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:19, 26:55](1878 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [29:11, 28:02] ( 1 warnings 982 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:32, 12:40](2229 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [13:54, 06:33](1500 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:10, 05:05] ( 361 warnings 982 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [17:13, 11:32](2257 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [07:10, 05:58] ( 361 warnings 1380 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:04, 21:58](1951 MB) + +PASS -- COMPILE 's2swa_intel' [27:11, 25:54] ( 1 warnings 1087 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [21:10, 17:13](2192 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:50, 16:18](2184 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:06, 08:37](1761 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:25, 11:35](2288 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:28, 15:55](2169 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:27, 13:26](2061 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:41, 16:10](2167 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:01, 16:17](2660 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:07, 08:34](2816 MB) + +PASS -- COMPILE 's2swl_intel' [26:11, 24:50] ( 1 warnings 1090 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [19:45, 16:45](2079 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:13, 08:18](1503 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [25:11, 23:09] ( 1 warnings 993 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:38, 04:48](2093 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [26:11, 24:34] ( 1 warnings 1078 remarks ) +PASS -- TEST 'cpld_control_c48_5deg_intel' [10:06, 07:38](3048 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:00, 02:24](3037 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:59, 01:25](2479 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:41, 01:20](2228 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:39, 00:46](2235 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:37, 00:34](1551 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:37, 01:19](2236 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:39, 00:46](2234 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:36, 00:34](1549 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:39, 00:47](2160 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:40, 00:40](2149 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:32, 00:31](1507 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:11, 16:23] ( 1 warnings 534 remarks ) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:42, 02:31](1582 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:48, 02:44](1605 MB) +PASS -- TEST 'control_latlon_intel' [04:38, 02:40](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:43, 02:43](1583 MB) +PASS -- TEST 'control_c48_intel' [10:46, 08:38](1704 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:39, 07:58](844 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:45, 08:53](1718 MB) +PASS -- TEST 'control_c192_intel' [10:04, 07:56](1781 MB) +PASS -- TEST 'control_c384_intel' [13:29, 09:56](1993 MB) +PASS -- TEST 'control_c384gdas_intel' [15:50, 10:56](1299 MB) +PASS -- TEST 'control_stochy_intel' [03:31, 01:50](649 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:39, 01:09](480 MB) +PASS -- TEST 'control_lndp_intel' [03:31, 01:42](654 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:17, 03:09](940 MB) +PASS -- TEST 'control_p8_intel' [05:46, 03:03](1879 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:56, 03:15](1885 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 03:01](1881 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:58, 03:00](1901 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [07:14, 03:10](1908 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:45, 02:08](2402 MB) +PASS -- TEST 'control_restart_p8_intel' [04:25, 01:49](1111 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:47, 03:03](1875 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:25, 01:48](1131 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:47, 03:06](1879 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:42, 03:29](1971 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:19, 05:17](1890 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:47, 04:35](1931 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:58, 03:13](1893 MB) +PASS -- TEST 'merra2_thompson_intel' [07:12, 03:40](1892 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [08:31, 05:33](1906 MB) +PASS -- TEST 'regional_control_intel' [08:12, 06:09](1084 MB) +PASS -- TEST 'regional_restart_intel' [05:41, 03:20](1102 MB) +PASS -- TEST 'regional_decomp_intel' [08:42, 06:30](1083 MB) +PASS -- TEST 'regional_2threads_intel' [06:40, 04:12](1040 MB) +PASS -- TEST 'regional_noquilt_intel' [07:42, 06:08](1365 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:40, 06:11](1079 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 06:10](1063 MB) +PASS -- TEST 'regional_wofs_intel' [09:38, 07:52](1900 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [16:11, 14:27] ( 1 warnings 515 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:13, 04:30](1907 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:50] ( 4 warnings 485 remarks ) +PASS -- TEST 'rap_control_intel' [07:20, 04:17](1038 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:04, 05:23](1361 MB) +PASS -- TEST 'rap_decomp_intel' [06:55, 04:26](1034 MB) +PASS -- TEST 'rap_2threads_intel' [06:55, 04:33](1145 MB) +PASS -- TEST 'rap_restart_intel' [05:36, 02:20](1013 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:26, 04:14](1041 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:17, 04:26](1031 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:30, 02:19](1005 MB) +PASS -- TEST 'hrrr_control_intel' [06:25, 04:05](1034 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:15, 04:13](1028 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:59, 04:16](1114 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:41, 02:15](962 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:18, 07:30](1048 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 09:13](1992 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 08:50](2021 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:51] ( 1 warnings 438 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:35, 06:22](1047 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:39] ( 1 warnings 437 remarks ) +PASS -- TEST 'control_wam_intel' [14:46, 12:37](1663 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 06:17] ( 496 warnings 616 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:26, 02:12](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:26, 02:17](1625 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:19, 03:04](825 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:45](821 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:36, 04:15](1133 MB) +PASS -- TEST 'control_diag_debug_intel' [04:29, 02:42](1687 MB) +PASS -- TEST 'control_debug_p8_intel' [04:41, 02:41](1913 MB) +PASS -- TEST 'regional_debug_intel' [19:39, 17:42](1083 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 04:59](1208 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:27, 04:53](1206 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:57](1214 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:54](1213 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:59](1213 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:31, 05:11](1291 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 04:59](1209 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 04:57](1213 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:20, 05:00](1213 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 05:01](1207 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:54](1226 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:57](1206 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:03](1215 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:32, 04:57](1215 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:39] ( 459 warnings 437 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:49, 13:09](1695 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:27] ( 4 warnings 452 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:02, 04:59](1240 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:06, 03:44](941 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:47, 03:38](927 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:01, 04:03](967 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:36, 03:52](967 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:34, 03:45](909 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:24, 02:04](889 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:47, 02:01](884 MB) +PASS -- TEST 'conus13km_control_intel' [06:11, 03:42](1306 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:50, 01:30](1228 MB) +PASS -- TEST 'conus13km_decomp_intel' [05:59, 03:44](1343 MB) +PASS -- TEST 'conus13km_restart_intel' [03:59, 02:07](1198 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [14:11, 12:47] ( 4 warnings 485 remarks ) +PASS -- TEST 'conus13km_gl_inline_intel' [05:18, 02:48](967 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:48] ( 4 warnings 452 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 04:24](1013 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:36] ( 333 warnings 458 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:59](1091 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 04:52](1085 MB) +PASS -- TEST 'conus13km_debug_intel' [25:02, 22:57](1346 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:53, 23:29](1049 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:50, 21:47](1254 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [25:45, 23:43](1385 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:52, 22:31](1408 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:36] ( 333 warnings 452 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 04:57](1181 MB) + +PASS -- COMPILE 'hafsw_intel' [21:11, 19:38] ( 1 warnings 734 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:47, 04:49](872 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:36, 06:03](1059 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 04:21](1192 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:56, 28:52](985 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:53, 06:45](492 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:58, 07:39](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:46, 03:21](364 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:06, 08:17](420 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:50, 04:37](560 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:51, 04:13](527 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:25](395 MB) +PASS -- TEST 'gnv1_nested_intel' [06:43, 03:48](1721 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:57] ( 1 warnings 972 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:18, 11:13](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 14:08] ( 1 warnings 676 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:56, 06:43](950 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:54, 06:44](935 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [25:11, 23:27] ( 569 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 03:29](1843 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:25](1800 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 03:08](1101 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 03:10](1087 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 03:11](1089 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:20, 03:27](1847 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:37](1666 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:13, 07:20](1020 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:29](1848 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 05:50](4829 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:21, 05:54](4828 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:38] ( 2 warnings 569 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:54](1776 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:18] ( 129 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:15](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:46](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:31](313 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:33] ( 167 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:37](566 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:21](455 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [25:11, 23:10] ( 1 warnings 651 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:12, 03:49](1992 MB) + +PASS -- COMPILE 'atml_intel' [17:11, 16:06] ( 9 warnings 589 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [06:32, 03:34](1856 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:04, 02:01](1107 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 05:49] ( 503 warnings 589 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:25, 04:56](1884 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:50] ( 1 warnings 563 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:23, 02:04](1903 MB) + +PASS -- COMPILE 'atmaero_intel' [17:10, 15:45] ( 1 warnings 455 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:14, 04:40](1973 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:00, 05:27](1756 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:00, 05:36](1771 MB) + +PASS -- COMPILE 'atmaq_intel' [15:11, 14:06] ( 1 warnings 641 remarks ) +PASS -- TEST 'regional_atmaq_intel' [22:11, 18:32](2909 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [25:50, 23:03](2911 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:50] ( 476 warnings 641 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:56, 40:11](2932 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:11, 12:05] ( 4 warnings 464 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:29, 14:18](1082 MB) SYNOPSIS: -Starting Date/Time: 20260324 17:56:01 -Ending Date/Time: 20260324 19:49:36 -Total Time: 01h:54m:32s +Starting Date/Time: 20260326 02:31:57 +Ending Date/Time: 20260326 04:21:44 +Total Time: 01h:50m:32s Compiles Completed: 36/36 -Tests Completed: 183/183 +Tests Completed: 181/181 NOTES: A file 'test_changes.list' was generated but is empty. From 150c932e170fc84b62fc0276f3bd422afdfb47f8 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Fri, 27 Mar 2026 13:35:34 -0400 Subject: [PATCH 31/43] update UFSATM --- UFSATM | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UFSATM b/UFSATM index 0562ff53f1..0416a7ef28 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit 0562ff53f1781a17d87c2261f55cdf730380b9c2 +Subproject commit 0416a7ef28c3ddcd2dee8499f77fcae96de3c021 From b1cbe2dea7c4628aa4334f00a0fd1629c04478f9 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Fri, 27 Mar 2026 18:45:21 +0000 Subject: [PATCH 32/43] reduce timestep for hafs_global_multiple_4nests_atm test to fix instability --- tests/tests/hafs_global_multiple_4nests_atm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests/hafs_global_multiple_4nests_atm b/tests/tests/hafs_global_multiple_4nests_atm index f441406465..2879370bcd 100644 --- a/tests/tests/hafs_global_multiple_4nests_atm +++ b/tests/tests/hafs_global_multiple_4nests_atm @@ -95,7 +95,7 @@ export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} export atm_omp_num_threads=2 -export DT_ATMOS=90 +export DT_ATMOS=60 export ZSTANDARD_LEVEL=5 export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" From df65a67bf8814c2359e0e5779e8d08a40e312593 Mon Sep 17 00:00:00 2001 From: gspetro-NOAA Date: Thu, 2 Apr 2026 12:50:38 -0500 Subject: [PATCH 33/43] update bl_date.conf --- tests/bl_date.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 1b473181be..0b0c4285ed 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20260331 +export BL_DATE=20260402 From e9d0e06dea6768f979befb97261c2e3376f565f2 Mon Sep 17 00:00:00 2001 From: gspetro-NOAA Date: Thu, 2 Apr 2026 23:27:12 -0500 Subject: [PATCH 34/43] hercules rt log - passed --- tests/logs/RegressionTests_hercules.log | 704 ++++++++++++------------ 1 file changed, 350 insertions(+), 354 deletions(-) diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index a46383a989..bc2e61ff5d 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: -17df77a2e3a92daa6478df16b09dc46b7f4e11a3 +df65a67bf8814c2359e0e5779e8d08a40e312593 Submodule hashes used in testing: fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) def9c53b17d6722cc9991ba72ddae8ad2d5d25d9 CICE-interface/CICE (CICE6.0.0-445-gdef9c53) 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) - ca7a727bbf0a1a0e6435f78fe514b6c5983e63ea CMEPS-interface/CMEPS (cmeps_v0.4.1-2338-gca7a727b) + 9a75264d39a331baeb54fb1a426e198d8b543119 CMEPS-interface/CMEPS (remotes/origin/feature/tendency_cleanup) 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) @@ -18,12 +18,12 @@ Submodule hashes used in testing: 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) - 2e2cfaa320ddc2d1b7ac21832904f131f0271836 UFSATM (heads/develop) + b988189f8eaf02db6596553c979cceb6c70df95e UFSATM (remotes/origin/feature/tendency_cleanup) 22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5) - eee1edf1c03d5d96abe379c167a1e2dd67a8c136 UFSATM/ccpp/physics (EP4-2263-geee1edf1) + 8cc471396e22039b0a4ca0ed484b85c2c3d0ff31 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6789-g8cc47139) 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 (remotes/origin/ccpp/dev) + b2d7d8731c84964c7afcab74cc9f2acb23d7fd71 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (remotes/origin/feature/tendency_cleanup) 3e5db3750e382976b4d6011c6d9c1437b0cf34f6 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-502-g3e5db37) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/master-60-g38d2177a) 7d9597c471470be061ab8853dd62bcd03f15d6aa UFSATM/upp (upp_v10.2.0-354-g7d9597c4) @@ -40,363 +40,359 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work2/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20260331 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_14378 +BASELINE DIRECTORY: /work2/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20260402 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_509832 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:11, 17:30] ( 1 warnings 1092 remarks ) -PASS -- TEST 'cpld_control_gefs_intel' [00:14, 19:29](3090 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [28:06, 07:07](2773 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [59:51, 18:21](3166 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_intel' [23:11, 21:13] ( 1 warnings 1073 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [50:16, 16:32](2022 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:40, 16:42](2343 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:36, 05:59](1330 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [17:52, 09:09](2216 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [49:13, 17:27](1925 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [23:11, 21:09] ( 1 warnings 987 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [30:07, 11:36](2310 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [25:01, 06:13](1635 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:10, 04:00] ( 359 warnings 987 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [15:45, 09:48](2339 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [06:10, 04:21] ( 359 warnings 1385 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:28, 19:08](1989 MB) - -PASS -- COMPILE 's2swa_intel' [16:10, 14:49] ( 1 warnings 1092 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [50:24, 10:37](2250 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [46:14, 10:31](2253 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:20, 05:04](1945 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [37:15, 12:21](2383 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [34:52, 10:29](2242 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [29:06, 08:58](2126 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:08, 10:08](2258 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [44:06, 16:08](2931 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [18:23, 09:06](2962 MB) - -PASS -- COMPILE 's2swl_intel' [23:11, 21:21] ( 1 warnings 1095 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [36:32, 09:08](2151 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [10:47, 05:04](1689 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [23:11, 21:11] ( 1 warnings 998 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:16, 05:12](2133 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:09] ( 1 warnings 1083 remarks ) -PASS -- TEST 'cpld_control_c48_5deg_intel' [32:44, 06:14](3049 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [30:41, 04:19](3036 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [07:46, 01:49](2486 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [27:29, 01:51](2243 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [27:28, 01:50](2230 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:26, 01:26](1552 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [27:25, 01:35](2238 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [26:26, 01:45](2233 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [04:25, 01:10](1552 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [26:24, 01:47](2165 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [26:27, 01:15](2170 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [05:28, 01:25](1500 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:10, 10:26] ( 1 warnings 539 remarks ) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:30, 02:07](1616 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:41, 02:20](1620 MB) -PASS -- TEST 'control_latlon_intel' [12:28, 02:09](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:30, 02:12](1616 MB) -PASS -- TEST 'control_c48_intel' [35:35, 05:42](1708 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [35:29, 05:29](842 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [36:35, 05:52](1721 MB) -PASS -- TEST 'control_c192_intel' [20:51, 06:31](1820 MB) -PASS -- TEST 'control_c384_intel' [43:27, 08:04](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [49:44, 07:59](1488 MB) -PASS -- TEST 'control_stochy_intel' [06:24, 01:30](675 MB) -PASS -- TEST 'control_stochy_restart_intel' [25:29, 00:54](558 MB) -PASS -- TEST 'control_lndp_intel' [08:24, 01:26](680 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [33:43, 03:36](972 MB) -PASS -- TEST 'control_p8_intel' [34:04, 03:36](1905 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [34:18, 03:46](1914 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [34:07, 03:38](1909 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [34:06, 03:32](1927 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [34:14, 03:53](1943 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [33:00, 02:53](2427 MB) -PASS -- TEST 'control_restart_p8_intel' [26:52, 02:01](1219 MB) -PASS -- TEST 'control_noqr_p8_intel' [34:03, 03:21](1898 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [26:48, 02:17](1220 MB) -PASS -- TEST 'control_decomp_p8_intel' [34:03, 03:33](1905 MB) -PASS -- TEST 'control_2threads_p8_intel' [35:05, 04:57](1984 MB) -PASS -- TEST 'control_p8_lndp_intel' [35:46, 05:24](1917 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [35:08, 04:24](1971 MB) -PASS -- TEST 'control_p8_mynn_intel' [35:05, 04:02](1917 MB) -PASS -- TEST 'merra2_thompson_intel' [35:09, 04:33](1914 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [20:59, 05:23](1922 MB) -PASS -- TEST 'regional_control_intel' [36:40, 06:06](1199 MB) -PASS -- TEST 'regional_restart_intel' [17:26, 03:36](1186 MB) -PASS -- TEST 'regional_decomp_intel' [20:28, 06:17](1181 MB) -PASS -- TEST 'regional_2threads_intel' [19:28, 05:31](1092 MB) -PASS -- TEST 'regional_noquilt_intel' [12:31, 05:41](1502 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [15:30, 05:26](1212 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [12:23, 05:54](1204 MB) -PASS -- TEST 'regional_wofs_intel' [11:23, 05:29](2087 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:11, 10:50] ( 1 warnings 519 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [09:59, 04:52](1948 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 09:19] ( 4 warnings 490 remarks ) -PASS -- TEST 'rap_control_intel' [07:45, 03:31](1114 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:49, 03:15](1447 MB) -PASS -- TEST 'rap_decomp_intel' [07:32, 03:39](1070 MB) -PASS -- TEST 'rap_2threads_intel' [13:50, 04:27](1165 MB) -PASS -- TEST 'rap_restart_intel' [08:55, 01:55](1116 MB) -PASS -- TEST 'rap_sfcdiff_intel' [05:48, 03:32](1124 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:51, 03:53](1067 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:54, 01:53](1104 MB) -PASS -- TEST 'hrrr_control_intel' [07:44, 03:22](1099 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:38, 03:33](1056 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:37, 04:13](1136 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:36, 01:52](1065 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:01, 06:16](1230 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:23, 07:49](2015 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:24, 07:18](2203 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 08:59] ( 1 warnings 459 remarks ) -PASS -- TEST 'control_csawmg_intel' [12:26, 06:29](1071 MB) -PASS -- TEST 'control_ras_intel' [07:20, 02:51](840 MB) - -PASS -- COMPILE 'wam_intel' [14:12, 08:32] ( 1 warnings 442 remarks ) -PASS -- TEST 'control_wam_intel' [17:39, 13:17](1685 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 04:11] ( 494 warnings 628 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:23, 02:00](1640 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:22, 02:01](1643 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:17, 02:34](854 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:19, 02:25](848 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:28, 04:32](1157 MB) -PASS -- TEST 'control_ras_debug_intel' [06:18, 02:25](864 MB) -PASS -- TEST 'control_diag_debug_intel' [06:26, 02:35](1700 MB) -PASS -- TEST 'control_debug_p8_intel' [06:38, 03:11](1945 MB) -PASS -- TEST 'regional_debug_intel' [19:28, 15:54](1153 MB) -PASS -- TEST 'rap_control_debug_intel' [11:26, 04:22](1236 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:23, 04:14](1235 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:20, 04:16](1235 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:26, 04:17](1242 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:24, 04:17](1240 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:32, 04:29](1321 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:19, 04:24](1240 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:18, 04:23](1241 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:19, 04:17](1231 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:20, 04:23](1244 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:21, 04:08](1241 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:18, 04:11](1235 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:18, 06:50](1241 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:21, 04:16](1245 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 02:39] ( 457 warnings 442 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 08:29] ( 4 warnings 457 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:52, 03:07](1313 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:45, 02:36](1040 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:36, 02:31](1016 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:45, 03:47](1083 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:56, 03:37](1054 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:56, 02:38](999 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:50, 01:29](990 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:22, 01:26](986 MB) -PASS -- TEST 'conus13km_control_intel' [09:06, 02:39](1501 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:41, 01:25](1334 MB) -PASS -- TEST 'conus13km_decomp_intel' [05:46, 02:39](1540 MB) -PASS -- TEST 'conus13km_restart_intel' [07:40, 01:38](1253 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [11:11, 08:29] ( 4 warnings 487 remarks ) -PASS -- TEST 'conus13km_gl_inline_intel' [05:02, 01:58](1057 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 08:36] ( 4 warnings 457 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 03:19](1094 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 02:37] ( 330 warnings 463 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 04:22](1121 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:23, 04:34](1102 MB) -PASS -- TEST 'conus13km_debug_intel' [25:38, 19:24](1518 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:39, 19:32](1153 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:34, 21:20](1367 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [25:32, 20:20](1583 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:33, 19:28](1615 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 02:34] ( 330 warnings 457 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:22, 04:20](1222 MB) - -PASS -- COMPILE 'hafsw_intel' [16:10, 12:15] ( 1 warnings 681 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:44, 03:27](987 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [12:27, 06:02](1168 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 03:00](1278 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:55, 14:30](1095 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:09, 04:44](585 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:14, 05:35](610 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:36, 02:19](426 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:56, 05:59](494 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:41, 03:14](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:48, 03:07](601 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:27, 00:59](446 MB) -PASS -- TEST 'gnv1_nested_intel' [12:26, 03:04](1758 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 11:19] ( 1 warnings 977 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:53, 12:22](827 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:12, 10:40] ( 1 warnings 623 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [15:44, 07:26](1058 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:51, 07:17](1057 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [23:12, 17:08] ( 569 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:17, 02:30](1846 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 01:39](1797 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:15, 02:31](1088 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:16, 02:37](1079 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:16, 02:32](1090 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 02:28](1855 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:07, 05:51](1713 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:57, 05:42](1178 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:22, 02:51](1846 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:17, 04:03](4830 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [10:17, 04:52](4828 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 03:33] ( 2 warnings 569 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:18, 05:26](1776 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 00:48] ( 129 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:32, 01:13](335 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:26, 00:44](556 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:38, 00:29](557 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [22:11, 20:14] ( 1 warnings 656 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:58, 05:17](2041 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 09:48] ( 9 warnings 593 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [09:00, 05:01](1875 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:39, 02:33](1199 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 03:22] ( 501 warnings 593 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:56, 06:09](1911 MB) - -PASS -- COMPILE 'atmw_intel' [15:10, 11:34] ( 1 warnings 568 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:55, 03:31](1939 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 12:50] ( 1 warnings 460 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:50, 06:00](2017 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:41, 04:47](1782 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:40, 04:48](1807 MB) - -PASS -- COMPILE 'atmaq_intel' [10:11, 08:52] ( 1 warnings 645 remarks ) -PASS -- TEST 'regional_atmaq_intel' [24:17, 13:49](2953 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [27:49, 21:31](2943 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:10, 02:34] ( 474 warnings 645 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [36:34, 32:09](2959 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 07:58] ( 4 warnings 466 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:30, 09:57](1080 MB) - -PASS -- COMPILE 'atm_gnu' [07:11, 03:50] ( 38 warnings ) -PASS -- TEST 'control_c48_gnu' [11:32, 08:01](1579 MB) -PASS -- TEST 'control_stochy_gnu' [05:22, 02:23](586 MB) -PASS -- TEST 'control_ras_gnu' [08:20, 05:05](591 MB) -PASS -- TEST 'control_p8_gnu' [07:01, 03:32](1532 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:39, 03:26](1545 MB) - -PASS -- COMPILE 'rrfs_gnu' [08:11, 03:45] ( 38 warnings ) -PASS -- TEST 'rap_control_gnu' [06:51, 04:18](936 MB) -PASS -- TEST 'rap_decomp_gnu' [11:50, 04:26](934 MB) -PASS -- TEST 'rap_2threads_gnu' [19:14, 03:39](989 MB) -PASS -- TEST 'rap_restart_gnu' [08:06, 02:13](675 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:42, 04:21](939 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:46, 04:22](934 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:07, 03:54](673 MB) -PASS -- TEST 'hrrr_control_gnu' [09:38, 04:11](933 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [09:33, 04:11](921 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [08:48, 03:44](991 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [09:33, 04:13](934 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:30, 03:13](669 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:29, 02:43](753 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [18:11, 07:55](930 MB) - -PASS -- COMPILE 'csawmg_gnu' [08:11, 03:20] ( 38 warnings ) -PASS -- TEST 'control_csawmg_gnu' [14:01, 07:35](830 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [14:11, 06:38] ( 41 warnings ) -PASS -- TEST 'control_diag_debug_gnu' [05:28, 01:26](1366 MB) -PASS -- TEST 'regional_debug_gnu' [11:59, 07:46](900 MB) -PASS -- TEST 'rap_control_debug_gnu' [05:17, 02:12](947 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [05:20, 02:15](939 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [08:33, 02:13](950 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [07:18, 02:03](950 MB) -PASS -- TEST 'rap_diag_debug_gnu' [07:27, 02:15](1035 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [08:49, 03:22](946 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [07:24, 02:06](946 MB) -PASS -- TEST 'control_ras_debug_gnu' [06:18, 01:14](585 MB) -PASS -- TEST 'control_stochy_debug_gnu' [06:18, 01:21](576 MB) -PASS -- TEST 'control_debug_p8_gnu' [10:22, 02:48](1533 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [05:22, 02:05](950 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [10:19, 03:45](955 MB) - -PASS -- COMPILE 'wam_debug_gnu' [08:11, 01:58] ( 38 warnings ) -PASS -- TEST 'control_wam_debug_gnu' [10:45, 06:48](1381 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:11, 03:21] ( 38 warnings ) -PASS -- TEST 'control_csawmg_debug_gnu' [04:56, 02:43](817 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 03:37] ( 38 warnings ) -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:53, 05:04](789 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [10:16, 04:38](789 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:24, 04:45](837 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:19, 05:27](828 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [10:03, 06:22](786 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:34, 02:41](647 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [06:21, 02:28](642 MB) -PASS -- TEST 'conus13km_control_gnu' [08:57, 04:15](1034 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:24, 03:00](1013 MB) -PASS -- TEST 'conus13km_decomp_gnu' [07:16, 04:39](1038 MB) -PASS -- TEST 'conus13km_restart_gnu' [05:40, 02:23](757 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:11, 09:50] ( 41 warnings ) -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [10:38, 07:19](819 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 06:20] ( 41 warnings ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [07:05, 04:28](802 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [07:08, 04:26](796 MB) -PASS -- TEST 'conus13km_debug_gnu' [13:17, 10:31](1051 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [15:04, 09:56](779 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [17:02, 11:30](1034 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [14:30, 09:58](1058 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [13:49, 09:59](1123 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 07:15] ( 41 warnings ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [09:59, 04:14](831 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_gnu' [18:11, 16:57] ( 38 warnings ) -PASS -- TEST 'cpld_control_gfsv17_gnu' [23:33, 15:25](1581 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_debug_gnu' [04:11, 02:15] ( 1921 warnings ) -PASS -- TEST 'cpld_debug_gfsv17_gnu' [15:04, 08:59](1564 MB) - -PASS -- COMPILE 's2s_32bit_sfs_gnu' [22:11, 17:25] ( 38 warnings ) -PASS -- TEST 'cpld_control_sfs_gnu' [27:14, 16:27](1845 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_gnu' [05:11, 02:01] ( 1171 warnings ) -PASS -- TEST 'cpld_debug_sfs_gnu' [16:48, 06:46](1837 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [18:12, 15:31] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [06:35, 03:14](1604 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [04:11, 02:56] ( 1 warnings ) -PASS -- TEST 'control_gfs_mpas_gnu' [03:49, 00:57](6445 MB) +PASS -- COMPILE 's2swa_32bit_intel' [27:11, 25:38] ( 1 warnings 1087 remarks ) +PASS -- TEST 'cpld_control_gefs_intel' [31:48, 17:52](3094 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [22:55, 05:51](2789 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [31:44, 17:02](3180 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_intel' [17:11, 15:56] ( 1 warnings 1068 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:31, 15:24](2030 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:08, 16:49](2346 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:43, 06:04](1348 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [10:51, 07:24](2215 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:08, 16:22](1926 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [16:11, 14:12] ( 1 warnings 982 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:18, 09:08](2307 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [12:50, 05:23](1646 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:10, 04:39] ( 354 warnings 982 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [15:32, 11:01](2336 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [06:10, 04:48] ( 354 warnings 1380 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:53, 19:25](1990 MB) + +PASS -- COMPILE 's2swa_intel' [25:11, 23:49] ( 1 warnings 1087 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:26, 08:23](2242 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:15, 08:03](2253 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:51, 04:33](1941 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:09, 12:01](2375 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:50, 08:09](2241 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:02, 06:54](2117 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:19, 08:10](2255 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:59, 15:18](2928 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:44, 05:25](2962 MB) + +PASS -- COMPILE 's2swl_intel' [25:11, 24:00] ( 1 warnings 1090 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [10:22, 08:06](2148 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:18, 04:09](1685 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [25:11, 23:28] ( 1 warnings 993 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:58, 05:20](2136 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:11, 23:28] ( 1 warnings 1078 remarks ) +PASS -- TEST 'cpld_control_c48_5deg_intel' [07:36, 05:51](3044 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:35, 01:49](3034 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:41, 01:02](2475 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:30, 01:04](2229 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:31, 00:57](2238 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:25, 00:27](1543 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:45, 01:10](2236 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:36, 01:18](2223 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:28, 00:24](1551 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:34, 00:50](2168 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:36, 00:40](2167 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:25, 00:23](1494 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 12:22] ( 1 warnings 534 remarks ) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:29, 02:03](1601 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:35, 02:12](1618 MB) +PASS -- TEST 'control_latlon_intel' [03:26, 02:07](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:30, 02:08](1617 MB) +PASS -- TEST 'control_c48_intel' [07:27, 05:47](1707 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 05:35](841 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [07:27, 05:56](1706 MB) +PASS -- TEST 'control_c192_intel' [08:44, 06:16](1819 MB) +PASS -- TEST 'control_c384_intel' [09:24, 07:03](2015 MB) +PASS -- TEST 'control_c384gdas_intel' [11:26, 08:06](1476 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:31](677 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:32, 00:55](560 MB) +PASS -- TEST 'control_lndp_intel' [03:24, 01:23](679 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:41, 02:38](969 MB) +PASS -- TEST 'control_p8_intel' [04:59, 02:29](1901 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:06, 02:38](1908 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:01, 02:25](1910 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:03, 02:25](1925 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:11, 02:34](1935 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:00, 01:43](2427 MB) +PASS -- TEST 'control_restart_p8_intel' [03:52, 01:30](1196 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:59, 02:27](1892 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 01:29](1203 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:59, 02:29](1893 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:58, 03:42](1984 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:44, 04:15](1906 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:04, 03:34](1963 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:01, 02:30](1903 MB) +PASS -- TEST 'merra2_thompson_intel' [05:07, 02:55](1908 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:52, 04:39](1916 MB) +PASS -- TEST 'regional_control_intel' [06:39, 04:24](1192 MB) +PASS -- TEST 'regional_restart_intel' [04:23, 02:23](1194 MB) +PASS -- TEST 'regional_decomp_intel' [06:29, 04:31](1187 MB) +PASS -- TEST 'regional_2threads_intel' [06:24, 04:27](1083 MB) +PASS -- TEST 'regional_noquilt_intel' [06:34, 04:25](1500 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:23, 04:20](1200 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:26, 04:18](1198 MB) +PASS -- TEST 'regional_wofs_intel' [07:28, 05:52](2092 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [13:10, 11:33] ( 1 warnings 515 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:53, 03:23](1947 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:33] ( 4 warnings 485 remarks ) +PASS -- TEST 'rap_control_intel' [04:49, 03:03](1104 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:50, 03:33](1431 MB) +PASS -- TEST 'rap_decomp_intel' [05:50, 03:13](1068 MB) +PASS -- TEST 'rap_2threads_intel' [06:47, 04:36](1172 MB) +PASS -- TEST 'rap_restart_intel' [03:38, 01:41](1098 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:38, 03:01](1090 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:35, 03:06](1069 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [04:03, 01:39](1099 MB) +PASS -- TEST 'hrrr_control_intel' [04:49, 02:53](1081 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:37, 03:02](1061 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:46, 04:11](1142 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:22, 01:36](1053 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:16, 05:10](1190 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 08:24](2015 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:22, 08:27](2201 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:27] ( 1 warnings 438 remarks ) +PASS -- TEST 'control_csawmg_intel' [07:52, 05:31](1073 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 08:10] ( 1 warnings 437 remarks ) +PASS -- TEST 'control_wam_intel' [14:39, 12:40](1677 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:36] ( 489 warnings 616 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:21, 02:00](1632 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:24, 02:02](1641 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:17, 02:40](852 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:24](842 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:25, 04:44](1160 MB) +PASS -- TEST 'control_diag_debug_intel' [04:37, 02:26](1701 MB) +PASS -- TEST 'control_debug_p8_intel' [04:47, 02:42](1936 MB) +PASS -- TEST 'regional_debug_intel' [17:30, 15:48](1155 MB) +PASS -- TEST 'rap_control_debug_intel' [06:18, 04:42](1245 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:22](1232 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:17](1229 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:12](1241 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:30](1247 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:26, 04:51](1317 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 04:25](1234 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:30](1245 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:50](1236 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:21](1242 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:17, 04:22](1242 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:17](1233 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:26, 06:51](1245 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 04:24](1239 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 03:09] ( 452 warnings 437 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:10] ( 4 warnings 452 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:48, 03:08](1304 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:45, 02:38](1049 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:55, 02:41](1012 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:34, 03:56](1083 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:47, 03:42](1061 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:49, 02:50](989 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:54, 01:30](966 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:25](975 MB) +PASS -- TEST 'conus13km_control_intel' [05:12, 02:36](1473 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:51, 01:23](1314 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:48, 02:36](1539 MB) +PASS -- TEST 'conus13km_restart_intel' [03:48, 01:27](1285 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [10:11, 08:14] ( 4 warnings 485 remarks ) +PASS -- TEST 'conus13km_gl_inline_intel' [04:03, 01:55](1051 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:15] ( 4 warnings 452 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:34, 03:26](1087 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:21] ( 326 warnings 458 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:30](1117 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:25](1105 MB) +PASS -- TEST 'conus13km_debug_intel' [21:38, 19:35](1544 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:37, 19:51](1145 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [22:32, 21:02](1355 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [22:30, 20:33](1585 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:28, 19:51](1616 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:13, 02:39] ( 326 warnings 452 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 04:19](1216 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 12:27] ( 1 warnings 677 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:41, 03:35](973 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [07:14, 05:09](1169 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:23, 02:57](1281 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:49, 14:10](1100 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:44, 04:46](585 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:05, 05:37](606 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:47, 02:20](429 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:36, 08:09](500 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:09](601 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 03:00](599 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:36, 01:01](446 MB) +PASS -- TEST 'gnv1_nested_intel' [06:48, 03:27](1759 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:39] ( 1 warnings 972 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:01, 11:27](821 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 11:59] ( 1 warnings 619 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:51, 05:36](1073 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:47, 05:34](1055 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [26:11, 24:14] ( 569 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:24](1843 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:34](1798 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:17](1089 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:16](1087 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:19](1078 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:27](1850 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:57, 05:52](1709 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:54, 05:35](1171 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:27](1848 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:53](4831 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:56](4838 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:20] ( 2 warnings 569 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 05:26](1773 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:50] ( 129 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 01:00](334 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:22, 00:39](556 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:25](558 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [22:11, 20:52] ( 1 warnings 651 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:55, 03:51](2035 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 09:17] ( 9 warnings 589 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [05:04, 02:55](1884 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:37, 01:36](1210 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:13] ( 496 warnings 589 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:59, 05:23](1904 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:58] ( 1 warnings 563 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:52, 02:42](1941 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 12:54] ( 1 warnings 455 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:53, 05:09](2011 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:41, 05:41](1782 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:39, 05:59](1808 MB) + +PASS -- COMPILE 'atmaq_intel' [12:12, 10:50] ( 1 warnings 641 remarks ) +PASS -- TEST 'regional_atmaq_intel' [17:19, 14:11](2948 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [20:15, 18:09](2945 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:35] ( 469 warnings 641 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [35:32, 32:47](2954 MB) + +PASS -- COMPILE 'atm_fbh_intel' [10:11, 09:06] ( 4 warnings 464 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:22, 09:52](1079 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 03:55] ( 38 warnings ) +PASS -- TEST 'control_c48_gnu' [09:30, 08:03](1585 MB) +PASS -- TEST 'control_stochy_gnu' [04:18, 02:17](590 MB) +PASS -- TEST 'control_p8_gnu' [06:05, 03:44](1540 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:50, 03:32](1552 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 03:42] ( 38 warnings ) +PASS -- TEST 'rap_control_gnu' [06:33, 04:16](936 MB) +PASS -- TEST 'rap_decomp_gnu' [06:32, 04:27](933 MB) +PASS -- TEST 'rap_2threads_gnu' [05:48, 03:41](990 MB) +PASS -- TEST 'rap_restart_gnu' [04:55, 02:17](675 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [06:45, 04:23](933 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [06:41, 04:36](932 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:54, 02:20](672 MB) +PASS -- TEST 'hrrr_control_gnu' [05:52, 04:01](929 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:39, 04:09](922 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:34, 03:44](991 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:47, 04:09](933 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 02:13](668 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:21, 02:10](755 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [10:58, 08:21](928 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:28] ( 38 warnings ) +PASS -- TEST 'control_csawmg_gnu' [09:27, 08:02](845 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:37] ( 41 warnings ) +PASS -- TEST 'control_diag_debug_gnu' [03:27, 01:18](1362 MB) +PASS -- TEST 'regional_debug_gnu' [09:28, 07:22](898 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:20, 02:12](942 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 02:00](938 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:18, 02:01](944 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:18, 02:11](947 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:25, 02:25](1031 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:22, 03:20](962 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 02:06](944 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:17](577 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:38, 02:08](1527 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:23, 02:04](944 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:48, 03:36](953 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:45] ( 38 warnings ) +PASS -- TEST 'control_wam_debug_gnu' [07:41, 05:20](1380 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 03:09] ( 38 warnings ) +PASS -- TEST 'control_csawmg_debug_gnu' [04:28, 03:03](813 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 03:55] ( 38 warnings ) +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:46, 04:46](788 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:56, 04:39](786 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [06:31, 04:24](831 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:36, 04:23](831 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:36, 04:47](789 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:51, 02:29](644 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:19, 02:28](646 MB) +PASS -- TEST 'conus13km_control_gnu' [06:53, 04:51](1029 MB) +PASS -- TEST 'conus13km_2threads_gnu' [04:38, 02:15](1016 MB) +PASS -- TEST 'conus13km_decomp_gnu' [06:46, 04:51](1037 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:40, 02:40](758 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:48] ( 41 warnings ) +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:34, 05:15](817 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:12, 07:12] ( 41 warnings ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 02:12](795 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:21, 02:08](791 MB) +PASS -- TEST 'conus13km_debug_gnu' [11:42, 09:17](1052 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [11:38, 09:24](778 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [11:32, 09:23](1034 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [11:30, 09:35](1056 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:31, 09:32](1120 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:46] ( 41 warnings ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:21, 02:13](822 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_gnu' [19:12, 17:24] ( 38 warnings ) +PASS -- TEST 'cpld_control_gfsv17_gnu' [17:23, 14:18](1579 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_debug_gnu' [03:11, 02:00] ( 1921 warnings ) +PASS -- TEST 'cpld_debug_gfsv17_gnu' [10:35, 07:57](1586 MB) + +PASS -- COMPILE 's2s_32bit_sfs_gnu' [18:12, 16:29] ( 38 warnings ) +PASS -- TEST 'cpld_control_sfs_gnu' [23:13, 18:00](1806 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_gnu' [03:11, 02:07] ( 1171 warnings ) +PASS -- TEST 'cpld_debug_sfs_gnu' [12:04, 06:58](1824 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 14:16] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:47](1604 MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [04:11, 03:06] ( 1 warnings ) +PASS -- TEST 'control_gfs_mpas_gnu' [02:19, 00:38](7068 MB) SYNOPSIS: -Starting Date/Time: 20260331 11:22:26 -Ending Date/Time: 20260331 13:59:01 -Total Time: 02h:39m:01s +Starting Date/Time: 20260402 15:34:41 +Ending Date/Time: 20260402 17:06:42 +Total Time: 01h:33m:06s Compiles Completed: 51/51 -Tests Completed: 242/242 +Tests Completed: 238/238 NOTES: A file 'test_changes.list' was generated but is empty. From 027aaa7007441763eb80e21f1a0b2695ae1c968c Mon Sep 17 00:00:00 2001 From: gspetro-NOAA Date: Thu, 2 Apr 2026 23:28:01 -0500 Subject: [PATCH 35/43] orion rt log - passed --- tests/logs/RegressionTests_orion.log | 523 +++++++++++++-------------- 1 file changed, 261 insertions(+), 262 deletions(-) diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index b4c4029dc5..ef578b565c 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: -4b749626c2c2339c6b957c08f3eb1584342b712c +df65a67bf8814c2359e0e5779e8d08a40e312593 Submodule hashes used in testing: fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386) @@ -9,19 +9,18 @@ Submodule hashes used in testing: 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) def9c53b17d6722cc9991ba72ddae8ad2d5d25d9 CICE-interface/CICE (CICE6.0.0-445-gdef9c53) 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) - 5e4a79fb2523a78b35e8969661ab8bd05e6575bf CMEPS-interface/CMEPS (remotes/origin/feature/tendency_cleanup) + 9a75264d39a331baeb54fb1a426e198d8b543119 CMEPS-interface/CMEPS (remotes/origin/feature/tendency_cleanup) 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 72563d619896492a9c61e2b7cdbe6a9cdbbd7920 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10791-g72563d619) 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) - 0562ff53f1781a17d87c2261f55cdf730380b9c2 UFSATM (remotes/origin/feature/tendency_cleanup) + b988189f8eaf02db6596553c979cceb6c70df95e UFSATM (remotes/origin/feature/tendency_cleanup) 22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5) - ad9d897c2348764695dfc6cc976b70c47c8f2ee2 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6788-gad9d897c) + 8cc471396e22039b0a4ca0ed484b85c2c3d0ff31 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6789-g8cc47139) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (v2.1.3~3) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) b2d7d8731c84964c7afcab74cc9f2acb23d7fd71 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (remotes/origin/feature/tendency_cleanup) @@ -41,270 +40,270 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work2/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20260325 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_225888 +BASELINE DIRECTORY: /work2/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20260402 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2692629 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [26:11, 24:24] ( 1 warnings 1087 remarks ) -PASS -- TEST 'cpld_control_gefs_intel' [33:56, 20:04](3038 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [21:07, 06:07](2713 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [34:16, 21:06](3045 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_intel' [30:11, 28:15] ( 1 warnings 1068 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:04, 22:26](1968 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:47, 24:32](2128 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:54, 09:31](1239 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:33, 10:37](2083 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:19, 26:55](1878 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [29:11, 28:02] ( 1 warnings 982 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:32, 12:40](2229 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [13:54, 06:33](1500 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:10, 05:05] ( 361 warnings 982 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [17:13, 11:32](2257 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [07:10, 05:58] ( 361 warnings 1380 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:04, 21:58](1951 MB) - -PASS -- COMPILE 's2swa_intel' [27:11, 25:54] ( 1 warnings 1087 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [21:10, 17:13](2192 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:50, 16:18](2184 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:06, 08:37](1761 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:25, 11:35](2288 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:28, 15:55](2169 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:27, 13:26](2061 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:41, 16:10](2167 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:01, 16:17](2660 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:07, 08:34](2816 MB) - -PASS -- COMPILE 's2swl_intel' [26:11, 24:50] ( 1 warnings 1090 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [19:45, 16:45](2079 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:13, 08:18](1503 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [25:11, 23:09] ( 1 warnings 993 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:38, 04:48](2093 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:11, 24:34] ( 1 warnings 1078 remarks ) -PASS -- TEST 'cpld_control_c48_5deg_intel' [10:06, 07:38](3048 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:00, 02:24](3037 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:59, 01:25](2479 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:41, 01:20](2228 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:39, 00:46](2235 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:37, 00:34](1551 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:37, 01:19](2236 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:39, 00:46](2234 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:36, 00:34](1549 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:39, 00:47](2160 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:40, 00:40](2149 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:32, 00:31](1507 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:11, 16:23] ( 1 warnings 534 remarks ) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:42, 02:31](1582 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:48, 02:44](1605 MB) -PASS -- TEST 'control_latlon_intel' [04:38, 02:40](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:43, 02:43](1583 MB) -PASS -- TEST 'control_c48_intel' [10:46, 08:38](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:39, 07:58](844 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:45, 08:53](1718 MB) -PASS -- TEST 'control_c192_intel' [10:04, 07:56](1781 MB) -PASS -- TEST 'control_c384_intel' [13:29, 09:56](1993 MB) -PASS -- TEST 'control_c384gdas_intel' [15:50, 10:56](1299 MB) -PASS -- TEST 'control_stochy_intel' [03:31, 01:50](649 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:39, 01:09](480 MB) -PASS -- TEST 'control_lndp_intel' [03:31, 01:42](654 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:17, 03:09](940 MB) -PASS -- TEST 'control_p8_intel' [05:46, 03:03](1879 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:56, 03:15](1885 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 03:01](1881 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:58, 03:00](1901 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [07:14, 03:10](1908 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:45, 02:08](2402 MB) -PASS -- TEST 'control_restart_p8_intel' [04:25, 01:49](1111 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:47, 03:03](1875 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:25, 01:48](1131 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:47, 03:06](1879 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:42, 03:29](1971 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:19, 05:17](1890 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:47, 04:35](1931 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:58, 03:13](1893 MB) -PASS -- TEST 'merra2_thompson_intel' [07:12, 03:40](1892 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [08:31, 05:33](1906 MB) -PASS -- TEST 'regional_control_intel' [08:12, 06:09](1084 MB) -PASS -- TEST 'regional_restart_intel' [05:41, 03:20](1102 MB) -PASS -- TEST 'regional_decomp_intel' [08:42, 06:30](1083 MB) -PASS -- TEST 'regional_2threads_intel' [06:40, 04:12](1040 MB) -PASS -- TEST 'regional_noquilt_intel' [07:42, 06:08](1365 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:40, 06:11](1079 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 06:10](1063 MB) -PASS -- TEST 'regional_wofs_intel' [09:38, 07:52](1900 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [16:11, 14:27] ( 1 warnings 515 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:13, 04:30](1907 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 12:50] ( 4 warnings 485 remarks ) -PASS -- TEST 'rap_control_intel' [07:20, 04:17](1038 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:04, 05:23](1361 MB) -PASS -- TEST 'rap_decomp_intel' [06:55, 04:26](1034 MB) -PASS -- TEST 'rap_2threads_intel' [06:55, 04:33](1145 MB) -PASS -- TEST 'rap_restart_intel' [05:36, 02:20](1013 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:26, 04:14](1041 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:17, 04:26](1031 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:30, 02:19](1005 MB) -PASS -- TEST 'hrrr_control_intel' [06:25, 04:05](1034 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:15, 04:13](1028 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:59, 04:16](1114 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:41, 02:15](962 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:18, 07:30](1048 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 09:13](1992 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 08:50](2021 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:51] ( 1 warnings 438 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:35, 06:22](1047 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:39] ( 1 warnings 437 remarks ) -PASS -- TEST 'control_wam_intel' [14:46, 12:37](1663 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 06:17] ( 496 warnings 616 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:26, 02:12](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:26, 02:17](1625 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:19, 03:04](825 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:45](821 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:36, 04:15](1133 MB) -PASS -- TEST 'control_diag_debug_intel' [04:29, 02:42](1687 MB) -PASS -- TEST 'control_debug_p8_intel' [04:41, 02:41](1913 MB) -PASS -- TEST 'regional_debug_intel' [19:39, 17:42](1083 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 04:59](1208 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:27, 04:53](1206 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:57](1214 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:54](1213 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:59](1213 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:31, 05:11](1291 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 04:59](1209 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 04:57](1213 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:20, 05:00](1213 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 05:01](1207 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:54](1226 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:57](1206 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:03](1215 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:32, 04:57](1215 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:39] ( 459 warnings 437 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:49, 13:09](1695 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:27] ( 4 warnings 452 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:02, 04:59](1240 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:06, 03:44](941 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:47, 03:38](927 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:01, 04:03](967 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:36, 03:52](967 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:34, 03:45](909 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:24, 02:04](889 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:47, 02:01](884 MB) -PASS -- TEST 'conus13km_control_intel' [06:11, 03:42](1306 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:50, 01:30](1228 MB) -PASS -- TEST 'conus13km_decomp_intel' [05:59, 03:44](1343 MB) -PASS -- TEST 'conus13km_restart_intel' [03:59, 02:07](1198 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [14:11, 12:47] ( 4 warnings 485 remarks ) -PASS -- TEST 'conus13km_gl_inline_intel' [05:18, 02:48](967 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:48] ( 4 warnings 452 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 04:24](1013 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:36] ( 333 warnings 458 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:59](1091 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 04:52](1085 MB) -PASS -- TEST 'conus13km_debug_intel' [25:02, 22:57](1346 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [25:53, 23:29](1049 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:50, 21:47](1254 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [25:45, 23:43](1385 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:52, 22:31](1408 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:36] ( 333 warnings 452 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 04:57](1181 MB) - -PASS -- COMPILE 'hafsw_intel' [21:11, 19:38] ( 1 warnings 734 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:47, 04:49](872 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:36, 06:03](1059 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 04:21](1192 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [30:56, 28:52](985 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:53, 06:45](492 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:58, 07:39](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:46, 03:21](364 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:06, 08:17](420 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:50, 04:37](560 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:51, 04:13](527 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:25](395 MB) -PASS -- TEST 'gnv1_nested_intel' [06:43, 03:48](1721 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:57] ( 1 warnings 972 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:18, 11:13](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 14:08] ( 1 warnings 676 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:56, 06:43](950 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:54, 06:44](935 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [25:11, 23:27] ( 569 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 03:29](1843 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:25](1800 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 03:08](1101 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 03:10](1087 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 03:11](1089 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:20, 03:27](1847 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:37](1666 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:13, 07:20](1020 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:29](1848 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 05:50](4829 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:21, 05:54](4828 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:38] ( 2 warnings 569 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 06:54](1776 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:18] ( 129 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:15](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:46](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:31](313 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:33] ( 167 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:37](566 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:21](455 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [25:11, 23:10] ( 1 warnings 651 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:12, 03:49](1992 MB) - -PASS -- COMPILE 'atml_intel' [17:11, 16:06] ( 9 warnings 589 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [06:32, 03:34](1856 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:04, 02:01](1107 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 05:49] ( 503 warnings 589 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:25, 04:56](1884 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 13:50] ( 1 warnings 563 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:23, 02:04](1903 MB) - -PASS -- COMPILE 'atmaero_intel' [17:10, 15:45] ( 1 warnings 455 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:14, 04:40](1973 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:00, 05:27](1756 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:00, 05:36](1771 MB) - -PASS -- COMPILE 'atmaq_intel' [15:11, 14:06] ( 1 warnings 641 remarks ) -PASS -- TEST 'regional_atmaq_intel' [22:11, 18:32](2909 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [25:50, 23:03](2911 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:50] ( 476 warnings 641 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [42:56, 40:11](2932 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:11, 12:05] ( 4 warnings 464 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:29, 14:18](1082 MB) +PASS -- COMPILE 's2swa_32bit_intel' [29:12, 27:48] ( 1 warnings 1087 remarks ) +PASS -- TEST 'cpld_control_gefs_intel' [38:56, 22:05](3043 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [25:32, 07:44](2710 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [39:19, 22:31](3049 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_intel' [30:12, 28:27] ( 1 warnings 1068 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:30, 22:24](1959 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:32, 24:58](2134 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:13, 09:49](1226 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [16:30, 11:49](2092 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:25, 27:16](1855 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [34:12, 27:38] ( 1 warnings 982 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:01, 14:12](2230 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [15:38, 07:54](1508 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:11, 05:20] ( 354 warnings 982 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [19:16, 12:27](2256 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [07:11, 05:40] ( 354 warnings 1380 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:22, 23:10](1955 MB) + +PASS -- COMPILE 's2swa_intel' [31:12, 29:34] ( 1 warnings 1087 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [21:01, 18:00](2186 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:07, 17:00](2189 MB) +PASS -- TEST 'cpld_restart_p8_intel' [13:22, 09:20](1764 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:02, 12:27](2287 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:59, 16:12](2163 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [18:32, 14:24](2056 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:52, 17:25](2187 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [23:13, 17:21](2658 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:16, 09:57](2822 MB) + +PASS -- COMPILE 's2swl_intel' [31:12, 29:09] ( 1 warnings 1090 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [22:57, 18:20](2071 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:26, 08:18](1511 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [34:12, 27:31] ( 1 warnings 993 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:00, 04:59](2091 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [33:12, 26:56] ( 1 warnings 1078 remarks ) +PASS -- TEST 'cpld_control_c48_5deg_intel' [11:08, 08:45](3051 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:01, 02:40](3031 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:21, 01:26](2477 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:37, 01:39](2237 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:49, 01:08](2234 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:43, 00:36](1550 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:47, 01:35](2233 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:48, 01:08](2232 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:42, 00:40](1550 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:45, 00:59](2165 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:49, 00:51](2159 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:38, 00:30](1503 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [22:11, 16:24] ( 1 warnings 534 remarks ) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:47, 02:36](1589 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:51, 02:51](1599 MB) +PASS -- TEST 'control_latlon_intel' [06:42, 02:43](1594 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:44, 02:48](1584 MB) +PASS -- TEST 'control_c48_intel' [13:55, 08:34](1710 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:47, 07:55](840 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:54, 08:47](1711 MB) +PASS -- TEST 'control_c192_intel' [12:11, 07:57](1783 MB) +PASS -- TEST 'control_c384_intel' [14:48, 09:58](1978 MB) +PASS -- TEST 'control_c384gdas_intel' [17:16, 11:00](1300 MB) +PASS -- TEST 'control_stochy_intel' [05:30, 01:54](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:40, 01:23](478 MB) +PASS -- TEST 'control_lndp_intel' [03:30, 01:44](664 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [08:21, 04:05](944 MB) +PASS -- TEST 'control_p8_intel' [08:58, 04:02](1877 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:17, 04:28](1878 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:08, 03:48](1880 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [09:09, 03:55](1902 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [10:34, 04:25](1908 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [07:56, 03:19](2406 MB) +PASS -- TEST 'control_restart_p8_intel' [04:57, 01:50](1134 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:58, 03:57](1882 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 01:47](1127 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:58, 03:48](1875 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:13, 04:20](1969 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:26, 06:35](1883 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:13, 05:21](1928 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:06, 04:01](1892 MB) +PASS -- TEST 'merra2_thompson_intel' [10:32, 04:40](1890 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [10:46, 06:01](1894 MB) +PASS -- TEST 'regional_control_intel' [12:15, 07:10](1063 MB) +PASS -- TEST 'regional_restart_intel' [05:50, 03:20](1092 MB) +PASS -- TEST 'regional_decomp_intel' [08:44, 06:40](1064 MB) +PASS -- TEST 'regional_2threads_intel' [06:32, 04:22](1045 MB) +PASS -- TEST 'regional_noquilt_intel' [08:52, 06:25](1357 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:40, 06:25](1084 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 06:17](1089 MB) +PASS -- TEST 'regional_wofs_intel' [10:47, 07:55](1899 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [16:11, 14:19] ( 1 warnings 515 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [09:32, 05:33](1912 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 13:31] ( 4 warnings 485 remarks ) +PASS -- TEST 'rap_control_intel' [08:17, 04:19](1039 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:16, 05:23](1352 MB) +PASS -- TEST 'rap_decomp_intel' [07:18, 04:29](1032 MB) +PASS -- TEST 'rap_2threads_intel' [07:00, 04:33](1107 MB) +PASS -- TEST 'rap_restart_intel' [05:12, 02:28](1010 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:08, 04:14](1042 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:59, 04:29](1029 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:41, 02:19](1003 MB) +PASS -- TEST 'hrrr_control_intel' [08:02, 06:01](1032 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:21, 04:12](1027 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:07, 04:30](1112 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:25, 02:15](958 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:31, 07:42](1047 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:26, 09:17](1992 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:02](2027 MB) + +PASS -- COMPILE 'csawmg_intel' [15:11, 13:12] ( 1 warnings 438 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:49, 06:27](1042 MB) + +PASS -- COMPILE 'wam_intel' [14:13, 12:24] ( 1 warnings 437 remarks ) +PASS -- TEST 'control_wam_intel' [14:57, 13:02](1678 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 06:51] ( 489 warnings 616 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:31, 02:29](1617 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:29, 02:23](1628 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:15](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:50](827 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:44, 05:39](1135 MB) +PASS -- TEST 'control_diag_debug_intel' [04:37, 02:53](1690 MB) +PASS -- TEST 'control_debug_p8_intel' [07:03, 03:56](1913 MB) +PASS -- TEST 'regional_debug_intel' [21:46, 19:28](1101 MB) +PASS -- TEST 'rap_control_debug_intel' [06:28, 05:03](1212 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:32, 04:57](1208 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 05:01](1207 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 05:04](1217 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:05](1214 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:34, 05:16](1301 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:29, 05:17](1216 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 05:05](1212 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:27, 05:11](1210 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 04:53](1211 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:24, 05:06](1216 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:24, 05:06](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:17](1214 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:39, 05:08](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:25] ( 452 warnings 437 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:59, 13:48](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:48] ( 4 warnings 452 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:04, 04:59](1239 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:24, 03:44](942 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:50, 03:37](926 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:21, 05:57](970 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:09, 03:52](957 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:03, 03:46](912 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:31, 02:05](891 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:10, 02:04](887 MB) +PASS -- TEST 'conus13km_control_intel' [06:29, 03:45](1305 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:01, 01:30](1216 MB) +PASS -- TEST 'conus13km_decomp_intel' [05:59, 03:46](1344 MB) +PASS -- TEST 'conus13km_restart_intel' [04:59, 02:11](1195 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [15:10, 13:10] ( 4 warnings 485 remarks ) +PASS -- TEST 'conus13km_gl_inline_intel' [05:39, 02:50](968 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:59] ( 4 warnings 452 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:54, 04:28](1009 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 04:46] ( 326 warnings 458 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:48](1086 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 04:57](1079 MB) +PASS -- TEST 'conus13km_debug_intel' [25:07, 22:58](1343 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:02, 22:58](1055 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:50, 21:49](1258 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [25:11, 23:28](1378 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [25:05, 22:40](1412 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 04:36] ( 326 warnings 452 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:03](1177 MB) + +PASS -- COMPILE 'hafsw_intel' [21:12, 19:44] ( 1 warnings 677 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:59, 04:51](871 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:37, 06:01](1065 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:30, 04:22](1193 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:17, 29:11](963 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:03, 06:47](499 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:08, 07:42](497 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 03:23](362 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:39, 11:36](412 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:59, 04:30](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:07, 04:15](514 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:58](394 MB) +PASS -- TEST 'gnv1_nested_intel' [06:59, 03:48](1720 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:54] ( 1 warnings 972 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:24, 11:20](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:12, 14:06] ( 1 warnings 619 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:19, 06:39](941 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:11, 06:46](933 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [25:12, 23:47] ( 569 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:30](1838 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 02:28](1793 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:21, 03:09](1082 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:21, 03:10](1084 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 03:11](1102 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:20, 03:31](1845 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:45, 07:43](1662 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:12, 07:19](1014 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:29](1847 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:24, 05:53](4830 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 06:04](4832 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:29] ( 2 warnings 569 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:22, 07:01](1778 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:16] ( 129 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:18](250 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:47](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:34, 00:32](311 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:34] ( 167 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:37](563 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:40, 00:25](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:11, 24:21] ( 1 warnings 651 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:44, 04:01](1986 MB) + +PASS -- COMPILE 'atml_intel' [17:11, 15:10] ( 9 warnings 589 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 03:56](1856 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:12, 02:01](1107 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 06:05] ( 496 warnings 589 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:27, 05:47](1887 MB) + +PASS -- COMPILE 'atmw_intel' [16:11, 14:38] ( 1 warnings 563 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:37, 02:07](1908 MB) + +PASS -- COMPILE 'atmaero_intel' [17:11, 15:35] ( 1 warnings 455 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:17, 04:56](2029 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:03, 05:38](1761 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:03, 05:43](1786 MB) + +PASS -- COMPILE 'atmaq_intel' [15:11, 13:45] ( 1 warnings 641 remarks ) +PASS -- TEST 'regional_atmaq_intel' [23:36, 19:53](2916 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [28:18, 24:35](2920 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:33] ( 469 warnings 641 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [45:12, 42:08](2934 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:11, 12:38] ( 4 warnings 464 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:45, 14:04](1078 MB) SYNOPSIS: -Starting Date/Time: 20260326 02:31:57 -Ending Date/Time: 20260326 04:21:44 -Total Time: 01h:50m:32s +Starting Date/Time: 20260402 15:34:43 +Ending Date/Time: 20260402 17:40:45 +Total Time: 02h:06m:46s Compiles Completed: 36/36 Tests Completed: 181/181 From 7b9043f3f23797dae6472f82cb7e08e17a82c3b2 Mon Sep 17 00:00:00 2001 From: gspetro-NOAA Date: Fri, 3 Apr 2026 06:24:34 -0600 Subject: [PATCH 36/43] derecho rt log - passed --- tests/logs/RegressionTests_derecho.log | 674 ++++++++++++------------- 1 file changed, 335 insertions(+), 339 deletions(-) diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 2d1e40f0ae..ac728a3f21 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: -77c216e156c142b4bb2cb8962e894ee30442196b +df65a67bf8814c2359e0e5779e8d08a40e312593 Submodule hashes used in testing: fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) def9c53b17d6722cc9991ba72ddae8ad2d5d25d9 CICE-interface/CICE (CICE6.0.0-445-gdef9c53) 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) - ca7a727bbf0a1a0e6435f78fe514b6c5983e63ea CMEPS-interface/CMEPS (cmeps_v0.4.1-2338-gca7a727b) + 9a75264d39a331baeb54fb1a426e198d8b543119 CMEPS-interface/CMEPS (remotes/origin/feature/tendency_cleanup) 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) @@ -18,12 +18,12 @@ Submodule hashes used in testing: 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) - 2e2cfaa320ddc2d1b7ac21832904f131f0271836 UFSATM (heads/develop) + b988189f8eaf02db6596553c979cceb6c70df95e UFSATM (remotes/origin/feature/tendency_cleanup) 22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5) - eee1edf1c03d5d96abe379c167a1e2dd67a8c136 UFSATM/ccpp/physics (EP4-2263-geee1edf1) + 8cc471396e22039b0a4ca0ed484b85c2c3d0ff31 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6789-g8cc47139) 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 (remotes/origin/ccpp/dev) + b2d7d8731c84964c7afcab74cc9f2acb23d7fd71 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (remotes/origin/feature/tendency_cleanup) 3e5db3750e382976b4d6011c6d9c1437b0cf34f6 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-502-g3e5db37) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/master-60-g38d2177a) 7d9597c471470be061ab8853dd62bcd03f15d6aa UFSATM/upp (upp_v10.2.0-354-g7d9597c4) @@ -40,354 +40,350 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20260331 -COMPARISON DIRECTORY: /glade/derecho/scratch/gpetro/FV3_RT/rt_85105 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20260402 +COMPARISON DIRECTORY: /glade/derecho/scratch/gpetro/FV3_RT/rt_53808 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: NRAL0032 * (-r) - USE ROCOTO -PASS -- COMPILE 's2swa_32bit_intel' [28:16, 28:16] ( 1 warnings 1092 remarks ) - -PASS -- COMPILE 's2sw_32bit_pdlib_intel' [25:21, 25:21] ( 1 warnings 1073 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:29, 12:43](1869 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:46, 13:58](1888 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:24, 06:37](1015 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [08:34, 06:42](1885 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:12, 14:23](1829 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [18:57, 18:57] ( 1 warnings 987 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:02, 10:25](2163 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [10:36, 06:09](1300 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:33, 06:33] ( 359 warnings 987 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [15:49, 12:17](2187 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [07:12, 07:12] ( 359 warnings 1385 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [20:25, 18:44](1865 MB) - -PASS -- COMPILE 's2swa_intel' [28:18, 28:18] ( 1 warnings 1092 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:38, 08:10](2011 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:45, 08:29](2010 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:15, 04:51](1537 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:53, 14:41](2163 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:18, 08:06](2010 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:55, 06:39](1949 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:30, 08:17](2011 MB) - -PASS -- COMPILE 's2swl_intel' [24:56, 24:56] ( 1 warnings 1095 remarks ) - -PASS -- COMPILE 's2s_aoflux_intel' [19:17, 19:17] ( 1 warnings 998 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:40, 05:22](1929 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:01, 26:00] ( 1 warnings 1083 remarks ) -PASS -- TEST 'cpld_control_c48_5deg_intel' [05:53, 05:05](2851 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [02:27, 01:38](2859 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [01:50, 01:01](2269 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [01:23, 00:56](2079 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [01:00, 00:33](2078 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [00:57, 00:26](1422 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [01:24, 00:56](2074 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [01:00, 00:33](2075 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [00:56, 00:26](1424 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [01:02, 00:34](2003 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [00:54, 00:26](2005 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [00:51, 00:23](1363 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:04, 14:04] ( 1 warnings 539 remarks ) -PASS -- TEST 'control_CubedSphereGrid_intel' [02:33, 02:16](1515 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:48, 02:25](1521 MB) -PASS -- TEST 'control_latlon_intel' [02:36, 02:21](1516 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:42, 02:24](1517 MB) -PASS -- TEST 'control_c48_intel' [05:43, 05:26](1555 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [05:23, 05:07](682 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [05:51, 05:34](1557 MB) -PASS -- TEST 'control_c192_intel' [06:51, 06:21](1658 MB) -PASS -- TEST 'control_c384_intel' [08:34, 07:11](1937 MB) -PASS -- TEST 'control_c384gdas_intel' [10:55, 08:19](1131 MB) -PASS -- TEST 'control_stochy_intel' [01:59, 01:46](580 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:25, 01:10](389 MB) -PASS -- TEST 'control_lndp_intel' [01:51, 01:39](582 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [03:57, 03:27](875 MB) -PASS -- TEST 'control_p8_intel' [04:51, 03:26](1802 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:41, 03:37](1810 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:36, 03:19](1817 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:29, 03:11](1828 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:10, 03:40](1836 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:11, 03:08](2392 MB) -PASS -- TEST 'control_restart_p8_intel' [03:39, 02:24](969 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:45, 03:28](1803 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:38, 02:24](970 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:44, 03:30](1802 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:23, 05:05](1896 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:34, 05:02](1817 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:42, 04:28](1855 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:45, 03:30](1813 MB) -PASS -- TEST 'merra2_thompson_intel' [05:25, 03:52](1815 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:00, 04:46](1822 MB) -PASS -- TEST 'regional_control_intel' [04:50, 04:21](855 MB) -PASS -- TEST 'regional_restart_intel' [03:00, 02:31](860 MB) -PASS -- TEST 'regional_decomp_intel' [05:07, 04:38](860 MB) -PASS -- TEST 'regional_noquilt_intel' [04:57, 04:25](1139 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [04:53, 04:23](843 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:58, 04:27](843 MB) -PASS -- TEST 'regional_wofs_intel' [06:21, 05:53](1576 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [13:04, 13:04] ( 1 warnings 519 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:12, 03:54](1837 MB) - -PASS -- COMPILE 'rrfs_intel' [11:14, 11:13] ( 4 warnings 490 remarks ) -PASS -- TEST 'rap_control_intel' [04:26, 03:17](966 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:34, 03:43](1147 MB) -PASS -- TEST 'rap_decomp_intel' [04:32, 03:25](965 MB) -PASS -- TEST 'rap_2threads_intel' [06:57, 05:45](1043 MB) -PASS -- TEST 'rap_restart_intel' [03:08, 01:58](826 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:21, 03:18](964 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:33, 03:27](964 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:08, 01:58](825 MB) -PASS -- TEST 'hrrr_control_intel' [04:21, 03:09](961 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:27, 03:16](962 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:39, 05:27](1041 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:12, 01:54](789 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:55, 05:41](959 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:51, 07:35](1907 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:30, 07:15](1896 MB) - -PASS -- COMPILE 'csawmg_intel' [10:37, 10:37] ( 1 warnings 459 remarks ) -PASS -- TEST 'control_csawmg_intel' [07:07, 06:36](917 MB) -PASS -- TEST 'control_ras_intel' [03:18, 03:06](621 MB) - -PASS -- COMPILE 'wam_intel' [10:07, 10:06] ( 1 warnings 442 remarks ) -PASS -- TEST 'control_wam_intel' [11:36, 11:00](1595 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:26, 07:26] ( 494 warnings 628 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:44, 02:22](1546 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:48, 02:29](1553 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:17, 03:03](750 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:05, 02:52](752 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:22, 04:53](1049 MB) -PASS -- TEST 'control_ras_debug_intel' [03:07, 02:54](758 MB) -PASS -- TEST 'control_diag_debug_intel' [03:17, 02:52](1607 MB) -PASS -- TEST 'control_debug_p8_intel' [04:02, 03:25](1843 MB) -PASS -- TEST 'regional_debug_intel' [16:38, 16:09](882 MB) -PASS -- TEST 'rap_control_debug_intel' [05:14, 05:01](1131 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:06, 04:52](1127 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 05:01](1133 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:12, 04:59](1133 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:15, 05:01](1131 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:45, 05:13](1221 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:18, 05:04](1134 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 05:04](1131 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:15, 05:00](1134 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:12, 04:58](1131 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:09, 04:55](1130 MB) +PASS -- COMPILE 's2swa_32bit_intel' [28:18, 28:18] ( 1 warnings 1087 remarks ) + +PASS -- COMPILE 's2sw_32bit_pdlib_intel' [25:42, 25:42] ( 1 warnings 1068 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [14:30, 12:49](1868 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:47, 13:53](1894 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:28, 06:38](1026 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [08:34, 06:35](1887 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:02, 14:20](1829 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [18:53, 18:53] ( 1 warnings 982 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:59, 10:49](2151 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [11:29, 06:43](1303 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:34, 06:34] ( 354 warnings 982 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [16:17, 12:18](2175 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [07:11, 07:11] ( 354 warnings 1380 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [20:37, 18:51](1869 MB) + +PASS -- COMPILE 's2swa_intel' [28:16, 28:16] ( 1 warnings 1087 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:34, 09:03](2013 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:22, 09:03](2012 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:48, 05:17](1539 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:26, 16:12](2169 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:51, 08:37](2014 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:33, 07:15](1955 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:08, 08:51](2015 MB) + +PASS -- COMPILE 's2swl_intel' [24:56, 24:56] ( 1 warnings 1090 remarks ) + +PASS -- COMPILE 's2s_aoflux_intel' [19:23, 19:23] ( 1 warnings 993 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:35, 06:16](1930 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [26:12, 26:12] ( 1 warnings 1078 remarks ) +PASS -- TEST 'cpld_control_c48_5deg_intel' [06:00, 05:13](2851 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [02:28, 01:42](2858 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [01:52, 01:00](2269 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [01:25, 00:56](2076 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [01:01, 00:33](2077 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [00:55, 00:25](1420 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [01:25, 00:57](2074 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [01:01, 00:32](2075 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [00:55, 00:24](1421 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [01:03, 00:35](2002 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [00:56, 00:27](2004 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [00:51, 00:22](1360 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:20, 14:20] ( 1 warnings 534 remarks ) +PASS -- TEST 'control_CubedSphereGrid_intel' [02:37, 02:18](1514 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:54, 02:29](1520 MB) +PASS -- TEST 'control_latlon_intel' [02:40, 02:25](1514 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:48, 02:30](1514 MB) +PASS -- TEST 'control_c48_intel' [05:54, 05:35](1553 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [05:27, 05:10](681 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:01, 05:41](1556 MB) +PASS -- TEST 'control_c192_intel' [07:08, 06:35](1656 MB) +PASS -- TEST 'control_c384_intel' [09:04, 07:34](1938 MB) +PASS -- TEST 'control_c384gdas_intel' [11:24, 08:39](1116 MB) +PASS -- TEST 'control_stochy_intel' [02:01, 01:47](579 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:27, 01:12](389 MB) +PASS -- TEST 'control_lndp_intel' [01:54, 01:40](579 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:07, 03:34](872 MB) +PASS -- TEST 'control_p8_intel' [04:58, 03:33](1800 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:52, 03:42](1809 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:51, 03:35](1814 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:43, 03:24](1827 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:18, 03:45](1833 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:02, 02:56](2395 MB) +PASS -- TEST 'control_restart_p8_intel' [03:49, 02:35](972 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:44, 03:25](1800 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:40, 02:28](973 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:46, 03:26](1800 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:28, 05:11](1888 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:45, 05:07](1815 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:48, 04:30](1854 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:49, 03:34](1813 MB) +PASS -- TEST 'merra2_thompson_intel' [05:17, 03:47](1813 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:00, 04:51](1820 MB) +PASS -- TEST 'regional_control_intel' [05:00, 04:30](856 MB) +PASS -- TEST 'regional_restart_intel' [03:05, 02:34](859 MB) +PASS -- TEST 'regional_decomp_intel' [05:12, 04:45](839 MB) +PASS -- TEST 'regional_noquilt_intel' [05:02, 04:33](1137 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [04:58, 04:29](845 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:01, 04:34](844 MB) +PASS -- TEST 'regional_wofs_intel' [07:05, 06:37](1575 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [13:11, 13:11] ( 1 warnings 515 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:35, 04:18](1835 MB) + +PASS -- COMPILE 'rrfs_intel' [11:23, 11:23] ( 4 warnings 485 remarks ) +PASS -- TEST 'rap_control_intel' [04:31, 03:21](952 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:40, 03:46](1145 MB) +PASS -- TEST 'rap_decomp_intel' [04:35, 03:25](962 MB) +PASS -- TEST 'rap_2threads_intel' [06:59, 05:46](1040 MB) +PASS -- TEST 'rap_restart_intel' [03:07, 01:57](826 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:30, 03:20](962 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:40, 03:27](951 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:07, 01:57](824 MB) +PASS -- TEST 'hrrr_control_intel' [04:20, 03:08](957 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:29, 03:14](959 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 05:26](1027 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:11, 01:52](788 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:54, 05:37](957 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:50, 07:35](1905 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:31, 07:16](1894 MB) + +PASS -- COMPILE 'csawmg_intel' [10:04, 10:04] ( 1 warnings 438 remarks ) +PASS -- TEST 'control_csawmg_intel' [07:32, 06:59](917 MB) + +PASS -- COMPILE 'wam_intel' [10:05, 10:04] ( 1 warnings 437 remarks ) +PASS -- TEST 'control_wam_intel' [12:08, 11:30](1595 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:15, 07:15] ( 489 warnings 616 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:48, 02:28](1549 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:48, 02:31](1553 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:10](748 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:08, 02:55](750 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:34, 05:04](1052 MB) +PASS -- TEST 'control_diag_debug_intel' [03:20, 02:54](1608 MB) +PASS -- TEST 'control_debug_p8_intel' [04:02, 03:24](1841 MB) +PASS -- TEST 'regional_debug_intel' [16:47, 16:16](898 MB) +PASS -- TEST 'rap_control_debug_intel' [05:13, 05:00](1131 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:04, 04:51](1127 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:13, 04:58](1133 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 05:02](1133 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 05:04](1131 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:45, 05:12](1219 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 05:12](1131 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 05:06](1131 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:16, 05:02](1134 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 05:00](1132 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:06, 04:52](1129 MB) PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 05:01](1131 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:02, 07:49](1130 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:12, 04:58](1135 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:32, 08:17](1137 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:16, 04:16] ( 457 warnings 442 remarks ) -PASS -- TEST 'control_wam_debug_intel' [13:06, 12:29](1630 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:04, 10:04] ( 4 warnings 457 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:22, 03:30](1041 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:55, 02:50](845 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:17, 02:46](840 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:01, 04:55](895 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:16, 04:44](887 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:27, 02:54](843 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:48, 01:44](737 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:58, 01:43](723 MB) -PASS -- TEST 'conus13km_control_intel' [03:27, 02:39](987 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:36, 01:55](1116 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:26, 02:42](1007 MB) -PASS -- TEST 'conus13km_restart_intel' [02:21, 01:41](877 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [10:06, 10:05] ( 4 warnings 487 remarks ) -PASS -- TEST 'conus13km_gl_inline_intel' [02:42, 02:03](662 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:12, 10:12] ( 4 warnings 457 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:09, 03:39](882 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:30, 04:30] ( 330 warnings 463 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:05, 04:52](1013 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:59, 04:46](1007 MB) -PASS -- TEST 'conus13km_debug_intel' [21:35, 20:57](1037 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:34, 20:56](742 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:15, 22:39](1162 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [21:56, 21:22](1049 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:27, 20:53](1108 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:17, 04:17] ( 330 warnings 457 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:02, 04:50](1052 MB) - -PASS -- COMPILE 'hafsw_intel' [17:09, 17:09] ( 1 warnings 681 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:15, 03:43](742 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:54, 05:46](993 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [03:34, 03:15](993 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [10:36, 10:00](822 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:20, 04:52](411 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:06, 05:32](425 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [02:52, 02:27](335 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:09, 05:59](378 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:51, 03:23](449 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:42, 03:10](450 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:29, 01:16](367 MB) -PASS -- TEST 'gnv1_nested_intel' [04:36, 03:18](1645 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' [05:48, 04:32](618 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:10, 13:10] ( 1 warnings 623 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:23, 05:50](776 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:24, 05:50](773 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:44, 13:44] ( 569 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:00, 02:52](1543 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:05, 01:54](1543 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:47, 02:39](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:49, 02:40](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:51, 02:42](645 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:07, 07:53](1129 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:14, 04:59](1135 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:46, 08:30](1137 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 04:11] ( 452 warnings 437 remarks ) +PASS -- TEST 'control_wam_debug_intel' [13:32, 12:51](1627 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:03, 10:03] ( 4 warnings 452 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:27, 03:33](1037 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:59, 02:53](844 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:23, 02:50](839 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:09, 04:59](891 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:19, 04:46](900 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:24, 02:56](842 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:49, 01:46](728 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:00, 01:43](727 MB) +PASS -- TEST 'conus13km_control_intel' [03:35, 02:46](988 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:36, 01:56](1111 MB) +PASS -- TEST 'conus13km_decomp_intel' [03:30, 02:44](1007 MB) +PASS -- TEST 'conus13km_restart_intel' [02:27, 01:44](877 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [10:04, 10:03] ( 4 warnings 485 remarks ) +PASS -- TEST 'conus13km_gl_inline_intel' [02:45, 02:05](662 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:08, 10:08] ( 4 warnings 452 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:14, 03:43](882 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:24, 04:24] ( 326 warnings 458 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:10, 04:54](1011 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:00, 04:46](1006 MB) +PASS -- TEST 'conus13km_debug_intel' [21:43, 21:01](1035 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:55, 21:16](737 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:17, 22:43](1152 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [22:11, 21:36](1042 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:53, 21:17](1103 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 04:12] ( 326 warnings 452 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:19, 05:03](1053 MB) + +PASS -- COMPILE 'hafsw_intel' [17:12, 17:12] ( 1 warnings 677 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:23, 03:51](740 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [07:00, 05:49](992 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [03:42, 03:20](995 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [10:38, 10:02](821 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:26, 04:55](413 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:19, 05:42](422 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:00, 02:31](335 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:27, 08:11](377 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:57, 03:27](450 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:51, 03:14](450 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:30, 01:16](368 MB) +PASS -- TEST 'gnv1_nested_intel' [04:44, 03:19](1645 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:20, 20:20] ( 1 warnings 972 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:55, 04:33](620 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:22, 13:22] ( 1 warnings 619 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:31, 05:56](779 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:38, 06:03](773 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:32, 13:32] ( 569 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:59, 02:51](1543 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:04, 01:54](1543 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:48, 02:40](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:49, 02:41](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:50, 02:42](646 MB) PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:59, 02:51](1543 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:30, 06:35](1334 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:29, 06:32](652 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:58, 02:52](1543 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:50, 04:41](4497 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:41, 04:34](4500 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:35, 03:34] ( 2 warnings 569 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:43, 05:34](1543 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:33, 01:33] ( 129 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 01:14](267 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:11, 00:56](402 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:01, 00:44](402 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:02, 16:02] ( 1 warnings 656 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:07, 04:10](1857 MB) - -PASS -- COMPILE 'atml_intel' [13:38, 13:38] ( 9 warnings 593 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [06:13, 06:13] ( 501 warnings 593 remarks ) - -PASS -- COMPILE 'atmw_intel' [12:41, 12:41] ( 1 warnings 568 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:42, 02:26](1822 MB) - -PASS -- COMPILE 'atmaero_intel' [12:17, 12:17] ( 1 warnings 460 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:42, 04:32](1895 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:30, 04:37](1663 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:36, 04:43](1678 MB) - -PASS -- COMPILE 'atmaq_intel' [11:37, 11:37] ( 1 warnings 645 remarks ) -PASS -- TEST 'regional_atmaq_intel' [14:50, 13:10](2925 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [19:36, 18:02](2925 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:47, 04:47] ( 474 warnings 645 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [35:57, 34:20](2939 MB) - -PASS -- COMPILE 'atm_fbh_intel' [09:45, 09:45] ( 4 warnings 466 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:55, 08:40](773 MB) - -PASS -- COMPILE 'atm_gnu' [05:46, 05:46] ( 40 warnings ) -PASS -- TEST 'control_c48_gnu' [07:39, 07:11](1510 MB) -PASS -- TEST 'control_stochy_gnu' [02:50, 02:37](610 MB) -PASS -- TEST 'control_ras_gnu' [04:10, 03:58](614 MB) -PASS -- TEST 'control_p8_gnu' [05:23, 04:23](1542 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:13, 04:22](1570 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:49, 05:49] ( 40 warnings ) -PASS -- TEST 'rap_control_gnu' [05:26, 04:17](954 MB) -PASS -- TEST 'rap_decomp_gnu' [05:26, 04:19](953 MB) -PASS -- TEST 'rap_2threads_gnu' [08:18, 07:10](1033 MB) -PASS -- TEST 'rap_restart_gnu' [03:33, 02:24](704 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [05:24, 04:18](954 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:29, 04:20](955 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:37, 02:26](704 MB) -PASS -- TEST 'hrrr_control_gnu' [05:23, 04:10](952 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:14, 04:08](936 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [08:05, 06:51](1019 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:21, 04:11](950 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:40, 02:23](692 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:35, 02:17](781 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:54, 07:39](952 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:56, 04:56] ( 40 warnings ) -PASS -- TEST 'control_csawmg_gnu' [08:23, 07:53](849 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [15:46, 15:46] ( 43 warnings ) -PASS -- TEST 'control_diag_debug_gnu' [02:13, 01:47](1386 MB) -PASS -- TEST 'regional_debug_gnu' [07:58, 07:29](780 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:51, 02:39](963 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:49, 02:34](958 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:55, 02:41](962 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:56, 02:41](962 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:20, 02:51](1054 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:15, 04:01](963 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:54, 02:40](964 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:52, 01:41](605 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:03, 01:51](597 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:06, 02:28](1573 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:54, 02:41](966 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:23](974 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:15, 03:15] ( 40 warnings ) -PASS -- TEST 'control_wam_debug_gnu' [06:58, 06:20](1403 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:57, 06:57] ( 40 warnings ) -PASS -- TEST 'control_csawmg_debug_gnu' [03:27, 02:58](837 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:33, 07:30](1334 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:48, 06:45](656 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:57, 02:51](1543 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:45, 04:36](4498 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:45, 04:36](4497 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:35, 03:35] ( 2 warnings 569 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:38, 05:30](1543 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:35, 01:35] ( 129 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:33, 01:15](267 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:10, 00:54](402 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:00, 00:43](402 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:55, 15:54] ( 1 warnings 651 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:07, 04:05](1847 MB) + +PASS -- COMPILE 'atml_intel' [13:45, 13:45] ( 9 warnings 589 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [06:15, 06:15] ( 496 warnings 589 remarks ) + +PASS -- COMPILE 'atmw_intel' [12:34, 12:34] ( 1 warnings 563 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:55, 02:38](1822 MB) + +PASS -- COMPILE 'atmaero_intel' [12:33, 12:33] ( 1 warnings 455 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:30, 05:18](1899 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:18, 05:22](1663 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:27, 05:33](1680 MB) + +PASS -- COMPILE 'atmaq_intel' [11:45, 11:45] ( 1 warnings 641 remarks ) +PASS -- TEST 'regional_atmaq_intel' [16:44, 15:03](2925 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [22:56, 21:15](2924 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:44, 04:44] ( 469 warnings 641 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [36:27, 34:47](2936 MB) + +PASS -- COMPILE 'atm_fbh_intel' [09:45, 09:45] ( 4 warnings 464 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:57, 08:40](775 MB) + +PASS -- COMPILE 'atm_gnu' [05:33, 05:33] ( 40 warnings ) +PASS -- TEST 'control_c48_gnu' [07:47, 07:18](1510 MB) +PASS -- TEST 'control_stochy_gnu' [02:55, 02:41](606 MB) +PASS -- TEST 'control_p8_gnu' [05:43, 04:38](1553 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:20, 04:27](1564 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:54, 05:54] ( 40 warnings ) +PASS -- TEST 'rap_control_gnu' [05:29, 04:22](958 MB) +PASS -- TEST 'rap_decomp_gnu' [05:38, 04:27](957 MB) +PASS -- TEST 'rap_2threads_gnu' [08:28, 07:23](1027 MB) +PASS -- TEST 'rap_restart_gnu' [03:36, 02:28](707 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [05:27, 04:21](955 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:35, 04:24](956 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:38, 02:28](702 MB) +PASS -- TEST 'hrrr_control_gnu' [05:27, 04:13](951 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:18, 04:14](934 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [08:13, 06:58](1022 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:26, 04:14](952 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:43, 02:23](694 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:40, 02:23](780 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:10, 07:51](953 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:43, 04:43] ( 40 warnings ) +PASS -- TEST 'control_csawmg_gnu' [08:38, 08:04](855 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [16:31, 16:31] ( 43 warnings ) +PASS -- TEST 'control_diag_debug_gnu' [02:17, 01:50](1386 MB) +PASS -- TEST 'regional_debug_gnu' [08:29, 07:56](782 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:00, 02:43](964 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:55, 02:39](959 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:54, 02:39](963 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:53, 02:39](962 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:28, 02:55](1050 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 04:07](963 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:56, 02:42](968 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:10, 01:53](598 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:18, 02:35](1547 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:02, 02:46](964 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:29, 04:15](972 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:14, 03:14] ( 40 warnings ) +PASS -- TEST 'control_wam_debug_gnu' [06:58, 06:19](1404 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:54, 06:54] ( 40 warnings ) +PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 03:05](836 MB) PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:03, 05:02] ( 40 warnings ) -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:07, 04:00](814 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:26, 03:54](806 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:36, 06:33](864 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:52, 06:21](854 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:28, 03:54](806 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:14, 02:14](674 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:30, 02:14](674 MB) -PASS -- TEST 'conus13km_control_gnu' [04:38, 03:48](930 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:00, 02:20](1041 MB) -PASS -- TEST 'conus13km_decomp_gnu' [04:34, 03:51](935 MB) -PASS -- TEST 'conus13km_restart_gnu' [02:57, 02:15](587 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [21:13, 21:13] ( 43 warnings ) -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:03, 04:34](848 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [15:48, 15:48] ( 43 warnings ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:51, 02:37](816 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:48, 02:34](815 MB) -PASS -- TEST 'conus13km_debug_gnu' [10:42, 10:04](946 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [10:31, 09:53](657 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:53, 10:19](1058 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [10:48, 10:13](952 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:49, 10:14](1015 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [15:49, 15:49] ( 43 warnings ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:51, 02:39](845 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_gnu' [19:22, 19:22] ( 61 warnings ) -PASS -- TEST 'cpld_control_gfsv17_gnu' [13:41, 12:03](1562 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_debug_gnu' [05:13, 05:13] ( 1953 warnings ) -PASS -- TEST 'cpld_debug_gfsv17_gnu' [09:15, 07:31](1575 MB) - -PASS -- COMPILE 's2s_32bit_sfs_gnu' [18:20, 18:20] ( 61 warnings ) -PASS -- TEST 'cpld_control_sfs_gnu' [15:44, 12:03](1830 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_gnu' [04:43, 04:42] ( 1194 warnings ) -PASS -- TEST 'cpld_debug_sfs_gnu' [10:01, 06:37](1839 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 16:12] ( 21 warnings ) -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:10, 03:02](1517 MB) +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:08, 04:04](810 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:35, 03:59](808 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:59, 06:46](860 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [08:08, 06:32](853 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:34, 03:59](806 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:26, 02:16](674 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:33, 02:15](673 MB) +PASS -- TEST 'conus13km_control_gnu' [04:41, 03:52](930 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:10, 02:26](1041 MB) +PASS -- TEST 'conus13km_decomp_gnu' [04:45, 03:54](936 MB) +PASS -- TEST 'conus13km_restart_gnu' [03:00, 02:17](587 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [22:02, 22:02] ( 43 warnings ) +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:10, 04:40](841 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [16:30, 16:29] ( 43 warnings ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:54, 02:40](820 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:51, 02:36](818 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:45, 10:06](950 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [10:50, 10:14](662 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:41, 10:06](1065 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [10:31, 09:57](956 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:28, 09:54](1019 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [16:29, 16:28] ( 43 warnings ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:56, 02:43](852 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_gnu' [19:34, 19:34] ( 61 warnings ) +PASS -- TEST 'cpld_control_gfsv17_gnu' [13:37, 11:53](1573 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_debug_gnu' [05:14, 05:14] ( 1953 warnings ) +PASS -- TEST 'cpld_debug_gfsv17_gnu' [09:22, 07:38](1572 MB) + +PASS -- COMPILE 's2s_32bit_sfs_gnu' [18:30, 18:30] ( 61 warnings ) +PASS -- TEST 'cpld_control_sfs_gnu' [16:45, 12:24](1812 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_gnu' [04:42, 04:42] ( 1194 warnings ) +PASS -- TEST 'cpld_debug_sfs_gnu' [10:42, 06:53](1839 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 16:11] ( 21 warnings ) +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:12, 03:03](1516 MB) PASS -- COMPILE 'atm_mpas_dyn32_gnu' [03:00, 03:00] ( 1 warnings ) -PASS -- TEST 'control_gfs_mpas_gnu' [01:15, 00:53](6361 MB) +PASS -- TEST 'control_gfs_mpas_gnu' [01:21, 00:57](6995 MB) SYNOPSIS: -Starting Date/Time: 20260331 21:09:24 -Ending Date/Time: 20260331 23:28:39 -Total Time: 02h:20m:24s +Starting Date/Time: 20260402 22:30:08 +Ending Date/Time: 20260403 00:48:27 +Total Time: 02h:19m:31s Compiles Completed: 51/51 -Tests Completed: 233/233 +Tests Completed: 229/229 NOTES: A file 'test_changes.list' was generated but is empty. From 52fce060ea95db256b7044e62a9c9f9d0f7dc24e Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 3 Apr 2026 14:22:22 +0000 Subject: [PATCH 37/43] WCOSS2 RT Log: passed --- tests/logs/RegressionTests_wcoss2.log | 452 +++++++++++++------------- 1 file changed, 225 insertions(+), 227 deletions(-) diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index f57352331a..bd7670c3c3 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: -17df77a2e3a92daa6478df16b09dc46b7f4e11a3 +df65a67bf8814c2359e0e5779e8d08a40e312593 Submodule hashes used in testing: fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) def9c53b17d6722cc9991ba72ddae8ad2d5d25d9 CICE-interface/CICE (CICE6.0.0-445-gdef9c53) 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) - ca7a727bbf0a1a0e6435f78fe514b6c5983e63ea CMEPS-interface/CMEPS (cmeps_v0.4.1-2338-gca7a727b) + 9a75264d39a331baeb54fb1a426e198d8b543119 CMEPS-interface/CMEPS (remotes/origin/feature/tendency_cleanup) 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) @@ -18,12 +18,12 @@ Submodule hashes used in testing: 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) - 2e2cfaa320ddc2d1b7ac21832904f131f0271836 UFSATM (heads/develop) + b988189f8eaf02db6596553c979cceb6c70df95e UFSATM (remotes/origin/feature/tendency_cleanup) 22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5) - eee1edf1c03d5d96abe379c167a1e2dd67a8c136 UFSATM/ccpp/physics (EP4-2263-geee1edf1) + 8cc471396e22039b0a4ca0ed484b85c2c3d0ff31 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6789-g8cc47139) 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 (remotes/origin/ccpp/dev) + b2d7d8731c84964c7afcab74cc9f2acb23d7fd71 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (remotes/origin/feature/tendency_cleanup) 3e5db3750e382976b4d6011c6d9c1437b0cf34f6 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-502-g3e5db37) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/master-60-g38d2177a) 7d9597c471470be061ab8853dd62bcd03f15d6aa UFSATM/upp (upp_v10.2.0-354-g7d9597c4) @@ -40,236 +40,234 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20260331 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3216410 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20260402 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3115952 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:01, 16:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_gefs_intel' [41:00, 17:12](2895 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [31:33, 06:42](2575 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_intel' [18:33, 15:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:56, 13:51](1815 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:11, 14:59](1839 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:39, 06:27](974 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [13:20, 06:53](1839 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:49, 16:25](1795 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [17:30, 15:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:42, 12:03](2100 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [17:50, 06:39](1254 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:22, 04:31] ( 355 warnings 1 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [27:27, 12:59](2144 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [07:19, 04:39] ( 355 warnings 324 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [34:00, 20:04](1857 MB) - -PASS -- COMPILE 's2swa_intel' [19:33, 16:35] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:56, 08:28](1979 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:55, 08:32](1979 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:24, 04:56](1542 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:05, 08:04](2120 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:45, 08:57](1971 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:24, 07:10](1922 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:42, 08:50](1974 MB) - -PASS -- COMPILE 's2swl_intel' [18:33, 15:20] ( 1 warnings 2 remarks ) - -PASS -- COMPILE 's2s_aoflux_intel' [17:38, 14:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:13, 05:35](1895 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 15:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_5deg_intel' [11:14, 06:15](2895 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:37, 02:09](2903 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [06:07, 01:34](2312 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [04:57, 01:24](2122 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:58, 01:01](2120 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:02, 00:46](1459 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [04:59, 01:26](2119 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:10, 00:53](2118 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [05:05, 00:47](1458 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [04:02, 00:57](2053 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:00, 00:50](2050 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [05:02, 00:41](1405 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:16, 10:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:49, 02:30](1472 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:16, 02:52](1484 MB) -PASS -- TEST 'control_latlon_intel' [06:46, 03:44](1489 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:50, 02:40](1481 MB) -PASS -- TEST 'control_c48_intel' [10:02, 06:14](1599 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:13, 05:35](725 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:05, 06:28](1602 MB) -PASS -- TEST 'control_c192_intel' [13:16, 07:25](1614 MB) -PASS -- TEST 'control_c384_intel' [14:11, 08:26](1905 MB) -PASS -- TEST 'control_c384gdas_intel' [17:10, 09:27](1052 MB) -PASS -- TEST 'control_stochy_intel' [07:38, 02:04](548 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:58, 01:13](298 MB) -PASS -- TEST 'control_lndp_intel' [04:39, 01:46](542 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:11, 03:04](829 MB) -PASS -- TEST 'control_p8_intel' [09:15, 03:14](1764 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:55, 03:12](1766 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:26, 03:10](1773 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [08:29, 03:10](1782 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [09:10, 03:29](1792 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [07:12, 02:31](2359 MB) -PASS -- TEST 'control_restart_p8_intel' [07:23, 01:57](919 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:03, 03:43](1762 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:50, 01:56](918 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:23, 03:13](1760 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:03, 02:56](1850 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:29, 05:21](1774 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:28, 04:28](1816 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:24, 03:53](1778 MB) -PASS -- TEST 'merra2_thompson_intel' [09:10, 03:37](1770 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [10:53, 05:31](1778 MB) -PASS -- TEST 'regional_control_intel' [09:12, 05:11](916 MB) -PASS -- TEST 'regional_restart_intel' [05:59, 03:00](910 MB) -PASS -- TEST 'regional_decomp_intel' [08:53, 05:37](915 MB) -PASS -- TEST 'regional_2threads_intel' [06:48, 03:15](916 MB) -PASS -- TEST 'regional_noquilt_intel' [10:03, 05:11](1188 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:01, 05:10](912 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:57, 05:13](913 MB) -PASS -- TEST 'regional_wofs_intel' [10:14, 06:58](1648 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:24, 09:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [09:23, 04:10](1790 MB) - -PASS -- COMPILE 'rrfs_intel' [11:25, 08:49] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [09:22, 04:27](915 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:01, 04:08](1075 MB) -PASS -- TEST 'rap_decomp_intel' [09:07, 04:06](924 MB) -PASS -- TEST 'rap_2threads_intel' [07:33, 03:35](989 MB) -PASS -- TEST 'rap_restart_intel' [07:21, 02:20](669 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:31, 03:55](917 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:57, 03:59](918 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:36, 02:13](666 MB) -PASS -- TEST 'hrrr_control_intel' [08:36, 04:04](913 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 03:53](913 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:49, 03:23](975 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:48, 02:10](661 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:07, 07:04](914 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:41, 08:37](1877 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:45, 08:15](1869 MB) - -PASS -- COMPILE 'csawmg_intel' [11:28, 09:05] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:04, 06:31](868 MB) -PASS -- TEST 'control_ras_intel' [07:06, 03:26](576 MB) - -PASS -- COMPILE 'wam_intel' [11:24, 08:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [17:17, 13:06](1560 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:20, 04:51] ( 490 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:55, 02:41](1516 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:39, 03:09](1525 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:47, 03:45](719 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:36, 03:12](722 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:09, 05:00](1015 MB) -PASS -- TEST 'control_ras_debug_intel' [06:37, 03:14](735 MB) -PASS -- TEST 'control_diag_debug_intel' [06:54, 03:14](1577 MB) -PASS -- TEST 'control_debug_p8_intel' [07:10, 03:15](1798 MB) -PASS -- TEST 'regional_debug_intel' [22:59, 18:57](986 MB) -PASS -- TEST 'rap_control_debug_intel' [08:44, 05:42](1098 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:43, 05:35](1091 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:04, 05:40](1097 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:44, 05:38](1093 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:45, 05:39](1099 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:09, 05:56](1183 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:44, 05:54](1099 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:10, 06:13](1101 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:51, 06:01](1102 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:04, 05:42](1098 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:03, 05:46](1099 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:59, 05:41](1098 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:06, 09:34](1094 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:39, 05:39](1099 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:48, 09:38](1101 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:18, 03:46] ( 454 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [20:44, 14:48](1601 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 08:19] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:02, 04:37](940 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:04, 03:27](800 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:48, 03:25](795 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:39, 03:13](847 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:21, 03:13](843 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:11, 03:24](795 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:16, 01:53](637 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:40, 01:49](627 MB) -PASS -- TEST 'conus13km_control_intel' [07:51, 03:12](1026 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:42, 01:18](1046 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:59, 03:03](1033 MB) -PASS -- TEST 'conus13km_restart_intel' [06:02, 02:00](697 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [11:25, 08:23] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_gl_inline_intel' [06:56, 02:42](740 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:24, 08:31] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:27, 04:15](830 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:18, 03:49] ( 327 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:50, 05:28](983 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:53, 05:24](978 MB) -PASS -- TEST 'conus13km_debug_intel' [28:23, 23:55](1109 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [28:23, 24:01](846 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [19:50, 13:17](1107 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [31:11, 24:37](1115 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:57, 24:02](1178 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 03:43] ( 327 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:46, 05:35](1010 MB) - -PASS -- COMPILE 'hafsw_intel' [14:39, 11:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:05, 04:46](606 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [11:06, 05:31](832 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 03:51](963 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:04, 12:04](836 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:18, 05:45](379 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:22, 06:48](395 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:15, 02:57](278 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:30, 07:55](360 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:23, 04:04](419 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:20, 03:37](418 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:48, 01:44](302 MB) -PASS -- TEST 'gnv1_nested_intel' [12:35, 04:12](1589 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:33, 10:25] ( 1 warnings ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:23, 05:44](702 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:25, 08:57] ( 1 warnings ) -PASS -- TEST 'hafs_regional_docn_intel' [11:18, 06:53](657 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:39, 07:14](640 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:45, 15:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:26, 03:52](1824 MB) - -PASS -- COMPILE 'atml_intel' [12:27, 10:00] ( 9 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:24, 04:26] ( 497 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [17:32, 14:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:52, 04:54](1868 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:19, 05:14](1693 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:47, 05:30](1703 MB) - -PASS -- COMPILE 'atmaq_intel' [12:27, 09:11] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [23:00, 15:32](2320 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [35:57, 20:20](2370 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:18, 03:47] ( 471 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [46:51, 40:39](1889 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:22, 16:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_gefs_intel' [37:53, 18:02](2877 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [36:09, 07:16](2595 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_intel' [18:23, 15:11] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:03, 13:49](1811 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:30, 14:47](1841 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:35, 06:22](978 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [13:06, 06:48](1843 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:10, 16:25](1794 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [17:20, 14:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:03, 12:01](2101 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [15:36, 06:34](1260 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:41, 04:28] ( 350 warnings 1 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [22:22, 13:05](2148 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [07:09, 04:36] ( 350 warnings 324 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [56:59, 52:38](1855 MB) + +PASS -- COMPILE 's2swa_intel' [19:55, 16:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:18, 09:05](1984 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:38, 09:05](1970 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:40, 05:07](1538 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:07, 08:32](2128 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:49, 08:58](1964 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:22, 07:26](1927 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:27, 09:08](1974 MB) + +PASS -- COMPILE 's2swl_intel' [18:06, 15:25] ( 1 warnings 2 remarks ) + +PASS -- COMPILE 's2s_aoflux_intel' [17:53, 14:44] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:58, 05:55](1893 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:22, 15:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_5deg_intel' [10:34, 06:09](2897 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:48, 02:21](2904 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [06:10, 01:31](2327 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [05:01, 01:27](2124 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:55, 01:04](2123 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:01, 00:49](1463 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [05:20, 01:27](2121 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:09, 01:07](2119 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [04:16, 00:48](1462 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [04:11, 01:09](2054 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:55, 01:00](2052 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:06, 00:46](1409 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:15, 10:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:27, 02:32](1470 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:02, 02:43](1481 MB) +PASS -- TEST 'control_latlon_intel' [05:43, 02:41](1481 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:26, 02:42](1478 MB) +PASS -- TEST 'control_c48_intel' [10:01, 06:19](1597 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:56, 05:38](725 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:02, 06:28](1598 MB) +PASS -- TEST 'control_c192_intel' [11:30, 07:20](1620 MB) +PASS -- TEST 'control_c384_intel' [14:09, 08:37](1910 MB) +PASS -- TEST 'control_c384gdas_intel' [17:09, 09:48](1039 MB) +PASS -- TEST 'control_stochy_intel' [04:37, 01:53](543 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:46, 01:14](294 MB) +PASS -- TEST 'control_lndp_intel' [04:34, 01:48](542 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [07:12, 03:09](828 MB) +PASS -- TEST 'control_p8_intel' [08:19, 03:07](1752 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:59, 03:15](1762 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:32, 03:08](1772 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [08:36, 03:03](1782 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [09:02, 03:15](1794 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [07:04, 02:52](2343 MB) +PASS -- TEST 'control_restart_p8_intel' [07:45, 02:03](915 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:06, 04:14](1760 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:09, 01:56](919 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:19, 03:04](1759 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:19, 03:00](1851 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:22, 05:11](1767 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:34, 04:29](1818 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:31, 03:12](1767 MB) +PASS -- TEST 'merra2_thompson_intel' [09:03, 03:42](1771 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [11:14, 05:38](1779 MB) +PASS -- TEST 'regional_control_intel' [09:16, 05:16](917 MB) +PASS -- TEST 'regional_restart_intel' [06:12, 03:08](905 MB) +PASS -- TEST 'regional_decomp_intel' [09:23, 05:42](912 MB) +PASS -- TEST 'regional_2threads_intel' [06:51, 03:17](913 MB) +PASS -- TEST 'regional_noquilt_intel' [09:00, 05:24](1190 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:15, 05:27](908 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:03, 05:17](911 MB) +PASS -- TEST 'regional_wofs_intel' [11:08, 07:25](1639 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [13:03, 09:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [09:27, 04:12](1786 MB) + +PASS -- COMPILE 'rrfs_intel' [11:24, 09:05] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [09:24, 04:03](919 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:50, 04:16](1074 MB) +PASS -- TEST 'rap_decomp_intel' [09:07, 04:38](924 MB) +PASS -- TEST 'rap_2threads_intel' [07:28, 03:37](993 MB) +PASS -- TEST 'rap_restart_intel' [07:34, 02:22](676 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:31, 04:00](915 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:44, 04:06](921 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:09, 02:18](676 MB) +PASS -- TEST 'hrrr_control_intel' [08:03, 03:51](913 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:57, 04:00](914 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:57, 03:26](978 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:57, 02:11](665 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:26, 06:57](913 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:00, 08:40](1877 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:05, 08:13](1870 MB) + +PASS -- COMPILE 'csawmg_intel' [11:31, 08:34] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:07, 06:54](871 MB) + +PASS -- COMPILE 'wam_intel' [11:27, 08:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [16:50, 12:57](1570 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:27, 05:05] ( 485 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:12, 02:40](1509 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:43, 02:49](1518 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:54, 03:31](725 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:54, 03:11](723 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:05, 04:53](1016 MB) +PASS -- TEST 'control_diag_debug_intel' [06:46, 03:10](1576 MB) +PASS -- TEST 'control_debug_p8_intel' [07:21, 03:16](1800 MB) +PASS -- TEST 'regional_debug_intel' [22:33, 18:44](988 MB) +PASS -- TEST 'rap_control_debug_intel' [08:59, 05:38](1094 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:56, 05:32](1089 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:05, 05:59](1099 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:59, 05:43](1099 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:54, 05:41](1100 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:53, 06:34](1183 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:44, 05:59](1101 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:43, 05:48](1095 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:37, 05:43](1105 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:48, 05:39](1096 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:03, 05:32](1100 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:59, 05:38](1092 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:54, 09:05](1092 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:39, 05:42](1109 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:51, 09:39](1100 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:18, 03:51] ( 449 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:56, 14:55](1598 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:27, 08:27] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:52, 03:51](939 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 03:30](796 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:03, 03:11](793 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:50, 02:58](850 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:39, 02:46](834 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:26, 03:14](798 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:54, 01:50](636 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:49, 01:49](626 MB) +PASS -- TEST 'conus13km_control_intel' [07:34, 03:03](1026 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:19, 01:17](1049 MB) +PASS -- TEST 'conus13km_decomp_intel' [06:19, 03:03](1034 MB) +PASS -- TEST 'conus13km_restart_intel' [05:28, 01:55](697 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [11:28, 08:29] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_gl_inline_intel' [06:29, 02:10](740 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:23, 08:33] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:08, 04:11](826 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:21, 03:37] ( 323 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:49, 05:33](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:03, 05:24](972 MB) +PASS -- TEST 'conus13km_debug_intel' [28:06, 24:22](1109 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [27:50, 24:27](846 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:28, 13:52](1119 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [29:51, 24:49](1101 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:33, 24:21](1176 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:36, 03:38] ( 323 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:46, 05:37](1011 MB) + +PASS -- COMPILE 'hafsw_intel' [14:47, 11:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:12, 04:38](602 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [10:46, 05:31](835 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:09, 03:42](957 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:31, 11:58](700 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:19, 05:39](380 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:25, 06:45](407 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:12, 02:53](273 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:49, 09:45](323 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:17, 03:54](421 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:35, 03:38](420 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:38, 01:17](307 MB) +PASS -- TEST 'gnv1_nested_intel' [09:33, 03:53](1594 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:37, 10:28] ( 1 warnings ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:45, 05:33](702 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:25, 08:55] ( 1 warnings ) +PASS -- TEST 'hafs_regional_docn_intel' [11:19, 07:09](765 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:26, 07:15](699 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:35, 14:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:01, 03:53](1817 MB) + +PASS -- COMPILE 'atml_intel' [12:31, 10:07] ( 9 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:24, 04:32] ( 492 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [17:36, 14:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:15, 05:01](1868 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:37, 05:49](1694 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:30, 06:00](1715 MB) + +PASS -- COMPILE 'atmaq_intel' [11:24, 09:07] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [26:42, 17:13](2326 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [28:59, 21:55](2392 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:18, 03:38] ( 466 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [47:18, 41:23](1897 MB) SYNOPSIS: -Starting Date/Time: 20260331 16:09:15 -Ending Date/Time: 20260331 18:02:53 -Total Time: 01h:54m:52s +Starting Date/Time: 20260403 12:33:22 +Ending Date/Time: 20260403 14:20:27 +Total Time: 01h:47m:50s Compiles Completed: 30/30 -Tests Completed: 157/157 +Tests Completed: 155/155 NOTES: A file 'test_changes.list' was generated but is empty. From 32b6cd610778a673c5ff9bf960c7e009a95d23b0 Mon Sep 17 00:00:00 2001 From: FernandoAndrade-NOAA Date: Fri, 3 Apr 2026 15:07:42 +0000 Subject: [PATCH 38/43] add ursa ORTs passed --- tests/logs/OpnReqTests_control_p8_ursa.log | 48 +++++++++---------- .../OpnReqTests_regional_control_ursa.log | 30 ++++++------ 2 files changed, 39 insertions(+), 39 deletions(-) diff --git a/tests/logs/OpnReqTests_control_p8_ursa.log b/tests/logs/OpnReqTests_control_p8_ursa.log index bab4b10ea7..b427d9dba4 100644 --- a/tests/logs/OpnReqTests_control_p8_ursa.log +++ b/tests/logs/OpnReqTests_control_p8_ursa.log @@ -1,9 +1,9 @@ -Wed Apr 1 14:44:33 UTC 2026 +Fri Apr 3 01:11:46 UTC 2026 Start Operation Requirement Test baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3881778/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3773520/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 = 175.038070 - 0: The maximum resident set size (KB) = 2613084 + 0: The total amount of wall time = 159.465267 + 0: The maximum resident set size (KB) = 2585084 Test bit_base PASS baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3881778/dbg_base_dbg_base +working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3773520/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 = 1291.541792 - 0: The maximum resident set size (KB) = 2539404 + 0: The total amount of wall time = 1258.145626 + 0: The maximum resident set size (KB) = 2539208 Test dbg_base PASS baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3881778/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3773520/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 = 634.448146 - 0: The maximum resident set size (KB) = 2532184 + 0: The total amount of wall time = 117.971130 + 0: The maximum resident set size (KB) = 2493464 Test dcp PASS baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3881778/mpi_mpi +working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3773520/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 = 126.764861 - 0: The maximum resident set size (KB) = 2496176 + 0: The total amount of wall time = 711.315961 + 0: The maximum resident set size (KB) = 2510984 Test mpi PASS baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3881778/rst_rst +working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3773520/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 = 132.100862 - 0: The maximum resident set size (KB) = 2504228 + 0: The total amount of wall time = 737.140390 + 0: The maximum resident set size (KB) = 2511400 Test rst PASS baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3881778/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3773520/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 = 146.508393 - 0: The maximum resident set size (KB) = 2505484 + 0: The total amount of wall time = 130.680513 + 0: The maximum resident set size (KB) = 2502272 Test std_base PASS baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3881778/thr_thr +working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3773520/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 = 137.335669 - 0: The maximum resident set size (KB) = 2494664 + 0: The total amount of wall time = 124.910317 + 0: The maximum resident set size (KB) = 2507656 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Apr 1 16:00:45 UTC 2026 -Elapsed time: 01h:16m:13s. Have a nice day! +Fri Apr 3 02:51:04 UTC 2026 +Elapsed time: 01h:39m:19s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_ursa.log b/tests/logs/OpnReqTests_regional_control_ursa.log index f0347ea294..aff2fff058 100644 --- a/tests/logs/OpnReqTests_regional_control_ursa.log +++ b/tests/logs/OpnReqTests_regional_control_ursa.log @@ -1,9 +1,9 @@ -Wed Apr 1 14:45:31 UTC 2026 +Fri Apr 3 01:12:43 UTC 2026 Start Operation Requirement Test baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3898492/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3783062/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 = 384.321468 - 0: The maximum resident set size (KB) = 2065788 + 0: The total amount of wall time = 295.659709 + 0: The maximum resident set size (KB) = 2080744 Test bit_base PASS baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3898492/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3783062/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 = 197.276651 - 0: The maximum resident set size (KB) = 1722864 + 0: The total amount of wall time = 205.156393 + 0: The maximum resident set size (KB) = 1707020 Test dcp PASS baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3898492/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3783062/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 = 201.394385 - 0: The maximum resident set size (KB) = 1702100 + 0: The total amount of wall time = 202.262119 + 0: The maximum resident set size (KB) = 1717640 Test std_base PASS baseline dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-stmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel -working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3898492/thr_thr +working dir = /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/ORT-ptmp/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_3783062/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 = 200.471902 - 0: The maximum resident set size (KB) = 1717600 + 0: The total amount of wall time = 204.518285 + 0: The maximum resident set size (KB) = 1724304 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Apr 1 15:24:08 UTC 2026 -Elapsed time: 00h:38m:37s. Have a nice day! +Fri Apr 3 02:06:57 UTC 2026 +Elapsed time: 00h:54m:14s. Have a nice day! From 0f645a87ace61027fe0493f3d6c1a21113289d07 Mon Sep 17 00:00:00 2001 From: FernandoAndrade-NOAA Date: Fri, 3 Apr 2026 11:09:18 -0400 Subject: [PATCH 39/43] add gaeaC6 RT log passed --- tests/logs/RegressionTests_gaeac6.log | 482 +++++++++++++------------- 1 file changed, 240 insertions(+), 242 deletions(-) diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 87feeb8f83..73dbe9204d 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: -17df77a2e3a92daa6478df16b09dc46b7f4e11a3 +df65a67bf8814c2359e0e5779e8d08a40e312593 Submodule hashes used in testing: fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) def9c53b17d6722cc9991ba72ddae8ad2d5d25d9 CICE-interface/CICE (CICE6.0.0-445-gdef9c53) 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) - ca7a727bbf0a1a0e6435f78fe514b6c5983e63ea CMEPS-interface/CMEPS (cmeps_v0.4.1-2338-gca7a727b) + 9a75264d39a331baeb54fb1a426e198d8b543119 CMEPS-interface/CMEPS (remotes/origin/feature/tendency_cleanup) 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) @@ -18,12 +18,12 @@ Submodule hashes used in testing: 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) - 2e2cfaa320ddc2d1b7ac21832904f131f0271836 UFSATM (heads/develop) + b988189f8eaf02db6596553c979cceb6c70df95e UFSATM (remotes/origin/feature/tendency_cleanup) 22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5) - eee1edf1c03d5d96abe379c167a1e2dd67a8c136 UFSATM/ccpp/physics (EP4-2263-geee1edf1) + 8cc471396e22039b0a4ca0ed484b85c2c3d0ff31 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6789-g8cc47139) 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 (remotes/origin/ccpp/dev) + b2d7d8731c84964c7afcab74cc9f2acb23d7fd71 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (remotes/origin/feature/tendency_cleanup) 3e5db3750e382976b4d6011c6d9c1437b0cf34f6 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-502-g3e5db37) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/master-60-g38d2177a) 7d9597c471470be061ab8853dd62bcd03f15d6aa UFSATM/upp (upp_v10.2.0-354-g7d9597c4) @@ -40,267 +40,265 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20260331 -COMPARISON DIRECTORY: /gpfs/f6/epic/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3667264 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20260402 +COMPARISON DIRECTORY: /gpfs/f6/epic/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2275602 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:07] ( 1 warnings 3 remarks ) - -PASS -- COMPILE 's2sw_32bit_pdlib_intel' [13:11, 11:15] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [10:51, 08:42](6338 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:42, 09:26](6339 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [06:34, 04:12](6340 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:34, 04:16](6339 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [11:32, 10:01](6339 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [12:11, 10:34] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [12:04, 07:09](6339 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [06:33, 03:46](6339 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:11, 03:30] ( 359 warnings 3 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [10:50, 07:43](6338 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [05:11, 03:31] ( 359 warnings 316 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [14:52, 12:49](6338 MB) - -PASS -- COMPILE 's2swa_intel' [13:11, 11:26] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:17, 05:06](6339 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:16, 05:08](6339 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:03, 02:59](6339 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:27, 06:18](6339 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:44, 05:01](6339 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:43, 04:09](6339 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:13, 05:06](6339 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [09:28, 05:30](6339 MB) - -PASS -- COMPILE 's2swl_intel' [12:11, 11:04] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [07:31, 04:29](6338 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [04:48, 02:29](6338 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 10:48] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:45, 03:17](6340 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:15] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_5deg_intel' [05:28, 03:58](6337 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:28, 01:16](6337 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:27, 00:45](6337 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:30, 00:45](6338 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:23, 00:27](6338 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:25, 00:22](6338 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:21, 00:46](6337 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:20, 00:27](6338 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:23, 00:21](6338 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:20, 00:29](6337 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:19, 00:22](6337 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:23, 00:19](6337 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:11, 07:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 01:38](6339 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:28, 01:41](6339 MB) -PASS -- TEST 'control_latlon_intel' [03:23, 01:40](6338 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:25, 01:43](6338 MB) -PASS -- TEST 'control_c48_intel' [06:24, 04:26](6338 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:25, 04:05](6336 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:24, 04:36](6339 MB) -PASS -- TEST 'control_c192_intel' [07:32, 04:42](6338 MB) -PASS -- TEST 'control_c384_intel' [12:49, 09:26](6339 MB) -PASS -- TEST 'control_c384gdas_intel' [14:54, 10:27](6338 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:17](6339 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:16, 00:46](6339 MB) -PASS -- TEST 'control_lndp_intel' [03:22, 01:11](6339 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [03:26, 01:59](6339 MB) -PASS -- TEST 'control_p8_intel' [04:37, 01:56](6338 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:46, 02:01](6339 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:37, 01:55](6339 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:37, 01:54](6339 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:37, 02:00](6339 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:38, 01:31](6339 MB) -PASS -- TEST 'control_restart_p8_intel' [03:33, 01:14](6339 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:37, 01:56](6338 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:23, 01:13](6338 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:37, 01:59](6338 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:37, 02:07](6338 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:29, 03:12](6338 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:40, 02:43](6339 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:38, 02:02](6339 MB) -PASS -- TEST 'merra2_thompson_intel' [04:36, 02:17](6339 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [05:30, 03:51](6339 MB) -PASS -- TEST 'regional_control_intel' [05:26, 03:18](6339 MB) -PASS -- TEST 'regional_restart_intel' [03:25, 01:52](6339 MB) -PASS -- TEST 'regional_decomp_intel' [05:21, 03:27](6338 MB) -PASS -- TEST 'regional_2threads_intel' [04:38, 02:35](6339 MB) -PASS -- TEST 'regional_noquilt_intel' [05:22, 03:17](6339 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:19, 03:18](6339 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:17, 03:18](6338 MB) -PASS -- TEST 'regional_wofs_intel' [06:23, 04:12](6339 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:56] ( 1 warnings 3 remarks ) + +PASS -- COMPILE 's2sw_32bit_pdlib_intel' [13:11, 11:55] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [10:38, 08:40](6339 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:39, 09:24](6338 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [06:35, 04:11](6338 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:43, 04:17](6338 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [12:31, 10:00](6339 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [12:11, 10:13] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [11:22, 07:20](6340 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [06:27, 03:53](6338 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:11, 03:25] ( 354 warnings 3 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [10:01, 07:53](6339 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [23:11, 21:26] ( 354 warnings 316 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [14:38, 12:51](6338 MB) + +PASS -- COMPILE 's2swa_intel' [21:15, 19:36] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:42, 05:32](6338 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:45, 05:35](6339 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:32, 03:03](6339 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:33, 06:29](6339 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:34, 05:33](6339 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:41, 04:28](6338 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:45, 05:33](6338 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [08:24, 06:00](6339 MB) + +PASS -- COMPILE 's2swl_intel' [12:10, 11:07] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [09:57, 06:36](6339 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [04:39, 02:38](6338 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 10:33] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:36, 03:43](6338 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 12:03] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_5deg_intel' [06:26, 04:06](6337 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:22, 01:17](6338 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:27, 00:48](6338 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:19, 00:44](6338 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:19, 00:27](6338 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:18, 00:21](6338 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [02:24, 00:45](6337 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:23, 00:26](6338 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:20, 00:22](6338 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:22, 00:28](6337 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:22, 00:22](6338 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:20, 00:19](6338 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:11, 07:15] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:27, 01:39](6339 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:22, 01:44](6338 MB) +PASS -- TEST 'control_latlon_intel' [04:23, 01:41](6339 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:21, 08:34](6339 MB) +PASS -- TEST 'control_c48_intel' [06:21, 04:29](6337 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:20, 04:07](6337 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [07:21, 04:38](6337 MB) +PASS -- TEST 'control_c192_intel' [08:30, 04:45](6338 MB) +PASS -- TEST 'control_c384_intel' [14:43, 09:49](6339 MB) +PASS -- TEST 'control_c384gdas_intel' [16:19, 10:47](6339 MB) +PASS -- TEST 'control_stochy_intel' [03:18, 01:18](6339 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:16, 00:47](6339 MB) +PASS -- TEST 'control_lndp_intel' [03:18, 01:12](6339 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:26, 02:01](6339 MB) +PASS -- TEST 'control_p8_intel' [05:34, 01:57](6338 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:41, 02:03](6339 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:33, 01:57](6338 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:34, 01:55](6339 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:35, 02:03](6339 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:35, 01:33](6339 MB) +PASS -- TEST 'control_restart_p8_intel' [03:26, 01:12](6339 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:32, 01:56](6339 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:10](6339 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:33, 01:59](6339 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:32, 02:21](6338 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:27, 03:15](6339 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:32, 02:47](6339 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:33, 02:03](6338 MB) +PASS -- TEST 'merra2_thompson_intel' [05:33, 02:19](6339 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:29, 03:59](6339 MB) +PASS -- TEST 'regional_control_intel' [05:23, 03:20](6339 MB) +PASS -- TEST 'regional_restart_intel' [03:21, 01:52](6339 MB) +PASS -- TEST 'regional_decomp_intel' [06:23, 03:30](6339 MB) +PASS -- TEST 'regional_2threads_intel' [04:21, 02:37](6339 MB) +PASS -- TEST 'regional_noquilt_intel' [05:19, 03:22](6339 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:18, 03:21](6338 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:18, 03:22](6339 MB) +PASS -- TEST 'regional_wofs_intel' [06:18, 04:26](6339 MB) PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:11, 06:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:38, 02:38](6339 MB) - -PASS -- COMPILE 'rrfs_intel' [07:11, 05:58] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [04:55, 02:33](6339 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:50, 02:45](6339 MB) -PASS -- TEST 'rap_decomp_intel' [04:50, 02:37](6339 MB) -PASS -- TEST 'rap_2threads_intel' [04:44, 02:50](6341 MB) -PASS -- TEST 'rap_restart_intel' [03:25, 01:24](6338 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:49, 02:32](6338 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:37, 02:37](6339 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:29, 01:27](6339 MB) -PASS -- TEST 'hrrr_control_intel' [04:36, 02:26](6339 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:28, 02:33](6339 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:24, 02:41](6338 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:21](6339 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:30, 04:16](6339 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:16, 05:30](6339 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:17, 05:13](6339 MB) - -PASS -- COMPILE 'csawmg_intel' [07:11, 06:04] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:22, 04:08](6339 MB) -PASS -- TEST 'control_ras_intel' [04:15, 02:13](6339 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 05:51] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:25, 07:44](6339 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 03:29] ( 494 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:20, 01:39](6339 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:17, 01:42](6339 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:15, 02:12](6338 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:57](6338 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:20, 02:55](6339 MB) -PASS -- TEST 'control_ras_debug_intel' [03:15, 01:58](6338 MB) -PASS -- TEST 'control_diag_debug_intel' [03:18, 01:59](6338 MB) -PASS -- TEST 'control_debug_p8_intel' [03:53, 01:57](6339 MB) -PASS -- TEST 'regional_debug_intel' [13:52, 11:33](6339 MB) -PASS -- TEST 'rap_control_debug_intel' [05:19, 03:28](6339 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:25, 03:25](6339 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:28](6338 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 03:29](6339 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:15, 03:30](6339 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:19, 03:38](6339 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 03:35](6339 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 03:32](6339 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:16, 03:31](6339 MB) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:40, 02:39](6339 MB) + +PASS -- COMPILE 'rrfs_intel' [08:12, 06:15] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [04:41, 02:28](6339 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:38, 02:46](6338 MB) +PASS -- TEST 'rap_decomp_intel' [04:41, 02:36](6339 MB) +PASS -- TEST 'rap_2threads_intel' [05:25, 02:51](6339 MB) +PASS -- TEST 'rap_restart_intel' [03:25, 01:24](6339 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:43, 02:30](6339 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:43, 02:37](6339 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:25, 01:24](6339 MB) +PASS -- TEST 'hrrr_control_intel' [04:40, 02:27](6339 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:22, 02:31](6338 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:23, 08:40](6338 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:20](6339 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:30, 04:19](6339 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:17, 05:35](6338 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:16, 05:18](6339 MB) + +PASS -- COMPILE 'csawmg_intel' [07:12, 05:55] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:01, 04:20](6339 MB) + +PASS -- COMPILE 'wam_intel' [07:12, 06:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:07, 07:56](6339 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 03:25] ( 489 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:18, 01:37](6339 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:16, 01:41](6339 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:13](6338 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:19, 02:01](6338 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:20, 02:58](6339 MB) +PASS -- TEST 'control_diag_debug_intel' [03:19, 01:56](6339 MB) +PASS -- TEST 'control_debug_p8_intel' [03:22, 01:59](6339 MB) +PASS -- TEST 'regional_debug_intel' [13:20, 11:23](6339 MB) +PASS -- TEST 'rap_control_debug_intel' [05:15, 03:35](6339 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:21, 03:26](6339 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:28](6339 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:33](6338 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:30](6339 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:21, 03:39](6338 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 03:36](6339 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 03:32](6338 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:34](6338 MB) PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 03:28](6338 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:24](6339 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:29](6338 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:34](6339 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:30](6339 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:25, 05:53](6339 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 02:12] ( 457 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:23, 08:53](6339 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 06:07] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:34, 02:33](6339 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:25, 02:09](6339 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:23, 02:04](6338 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:26](6339 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 03:30](6339 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:33](6339 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:19, 03:30](6339 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:25, 05:59](6339 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:12, 02:10] ( 452 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:24, 09:00](6339 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:46] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:35, 02:34](6338 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:25, 02:09](6338 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:23, 02:05](6339 MB) PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:20, 02:27](6339 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:20, 02:22](6338 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:19, 02:10](6339 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:29, 01:14](6339 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:11](6339 MB) -PASS -- TEST 'conus13km_control_intel' [03:35, 01:52](6339 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:26, 00:58](6339 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:24, 01:53](6339 MB) -PASS -- TEST 'conus13km_restart_intel' [03:23, 01:10](6339 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [07:11, 05:47] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_gl_inline_intel' [03:26, 01:24](6339 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:52] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:23, 02:39](6339 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:13] ( 330 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 03:20](6339 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 03:16](6339 MB) -PASS -- TEST 'conus13km_debug_intel' [16:25, 14:11](6339 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:24, 14:10](6339 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:23, 12:48](6339 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [16:23, 14:09](6338 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:21, 13:53](6338 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:11] ( 330 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:29](6338 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 08:35] ( 1 warnings 1 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:36, 02:45](6338 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:48, 03:54](6338 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:20, 02:24](6340 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:19, 02:23](6338 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:20, 02:12](6339 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:23, 01:12](6338 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:11](6339 MB) +PASS -- TEST 'conus13km_control_intel' [03:32, 01:54](6338 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:24, 00:59](6338 MB) +PASS -- TEST 'conus13km_decomp_intel' [03:25, 01:53](6339 MB) +PASS -- TEST 'conus13km_restart_intel' [03:20, 01:09](6338 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [07:12, 05:46] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_gl_inline_intel' [03:30, 01:26](6338 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 06:05] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:26, 02:39](6339 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:14] ( 326 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 03:23](6338 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:16, 03:16](6338 MB) +PASS -- TEST 'conus13km_debug_intel' [16:24, 14:09](6339 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:27, 14:02](6339 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:21, 12:54](6339 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [16:23, 14:46](6339 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:21, 14:56](6338 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:16] ( 326 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:24](6339 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 08:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:28, 02:49](6339 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:49, 03:58](6339 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:18, 02:24](6340 MB) PASS -- TEST 'hafs_regional_atm_wav_intel' [09:28, 07:28](6338 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 03:23](6340 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:33, 04:01](6339 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 01:43](6338 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:54, 04:19](6339 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:25, 02:27](6338 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:26, 02:17](6338 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:18, 00:54](6340 MB) -PASS -- TEST 'gnv1_nested_intel' [04:42, 02:20](6338 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:13, 08:14] ( 1 warnings ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:49, 03:24](6339 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:13, 07:47] ( 1 warnings ) -PASS -- TEST 'hafs_regional_docn_intel' [06:26, 04:16](6338 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:27, 04:20](6338 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:13, 09:05] ( 2 remarks ) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:30, 03:27](6340 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:32, 04:04](6338 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:26, 01:45](6339 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:35, 05:52](6339 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 02:31](6339 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:29, 02:19](6338 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:19, 00:57](6339 MB) +PASS -- TEST 'gnv1_nested_intel' [04:44, 02:24](6338 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:46] ( 1 warnings ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:53, 03:26](6338 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:12, 07:26] ( 1 warnings ) +PASS -- TEST 'hafs_regional_docn_intel' [07:03, 04:21](6338 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:28, 04:27](6339 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:54] ( 2 remarks ) PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:01](6338 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:21](6337 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 01:50](6337 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 01:52](6337 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:54](6337 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:02](6337 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:37, 04:46](6339 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:38, 04:33](6339 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:01](6338 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:39](6337 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:38](6338 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:22](6338 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 01:49](6338 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 01:50](6339 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:51](6338 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 01:59](6337 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:32, 04:43](6339 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:28, 04:38](6339 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:00](6337 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:39](6338 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:39](6338 MB) -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:49] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 03:59](6338 MB) +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:32] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:16, 04:03](6337 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:41] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 01:00](6338 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:42](6338 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:34](6338 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:41] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:23, 01:00](6338 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:46](6339 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:33](6339 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:10, 09:43] ( 1 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:32, 02:25](6338 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 10:03] ( 1 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:33, 02:33](6338 MB) -PASS -- COMPILE 'atml_intel' [09:10, 07:16] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:32, 02:27](6338 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:19, 01:25](6339 MB) +PASS -- COMPILE 'atml_intel' [59:16, 57:39] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:35, 02:29](6339 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:19, 01:26](6339 MB) -PASS -- COMPILE 'atml_debug_intel' [04:10, 02:50] ( 501 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:31, 03:31](6338 MB) +PASS -- COMPILE 'atml_debug_intel' [04:10, 02:53] ( 496 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:30, 03:29](6339 MB) -PASS -- COMPILE 'atmw_intel' [09:11, 07:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 01:19](6339 MB) +PASS -- COMPILE 'atmw_intel' [09:11, 07:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:31, 01:23](6339 MB) -PASS -- COMPILE 'atmaero_intel' [10:11, 08:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:30, 02:48](6339 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:26, 03:16](6338 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 03:18](6339 MB) +PASS -- COMPILE 'atmaero_intel' [19:18, 17:22] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:28, 03:06](6339 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:26, 03:39](6339 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:27, 03:44](6339 MB) -PASS -- COMPILE 'atmaq_intel' [08:10, 06:38] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [14:55, 12:41](6339 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [17:48, 15:19](6338 MB) +PASS -- COMPILE 'atmaq_intel' [08:11, 06:18] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [16:05, 13:22](6339 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [18:03, 16:07](6338 MB) -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:16] ( 474 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:48, 28:02](6338 MB) +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:13] ( 469 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:57, 26:25](6339 MB) -PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:47] ( 4 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:22, 06:26](6337 MB) +PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:35] ( 4 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:21, 06:27](6338 MB) SYNOPSIS: -Starting Date/Time: 20260331 19:16:17 -Ending Date/Time: 20260331 20:25:27 -Total Time: 01h:09m:33s +Starting Date/Time: 20260403 01:00:01 +Ending Date/Time: 20260403 02:51:06 +Total Time: 01h:51m:29s Compiles Completed: 35/35 -Tests Completed: 178/178 +Tests Completed: 176/176 NOTES: A file 'test_changes.list' was generated but is empty. From 2de6205c8c9319c19e5161364e97f4e90e813c76 Mon Sep 17 00:00:00 2001 From: FernandoAndrade-NOAA Date: Fri, 3 Apr 2026 17:03:21 +0000 Subject: [PATCH 40/43] add ursa RT log passed --- tests/logs/RegressionTests_ursa.log | 1291 ++++++++++----------------- 1 file changed, 448 insertions(+), 843 deletions(-) diff --git a/tests/logs/RegressionTests_ursa.log b/tests/logs/RegressionTests_ursa.log index 6a73dc4838..a5f602030b 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: -b729b5ea8fe8659d045cf9d3911b123568a02c39 +df65a67bf8814c2359e0e5779e8d08a40e312593 Submodule hashes used in testing: fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386) @@ -9,20 +9,19 @@ Submodule hashes used in testing: 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) def9c53b17d6722cc9991ba72ddae8ad2d5d25d9 CICE-interface/CICE (CICE6.0.0-445-gdef9c53) 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) - 2c567b132c27e4538f1943ccf3beb99576676697 CMEPS-interface/CMEPS (cmeps_v0.4.1-2337-g2c567b1) + 9a75264d39a331baeb54fb1a426e198d8b543119 CMEPS-interface/CMEPS (remotes/origin/feature/tendency_cleanup) 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 72563d619896492a9c61e2b7cdbe6a9cdbbd7920 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10791-g72563d619) 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) - 0e87644e98f27fc5f802c66933ec207950f69e83 UFSATM (remotes/grant-fork/feature/tendency_cleanup-13-g0e87644) + b988189f8eaf02db6596553c979cceb6c70df95e UFSATM (remotes/origin/feature/tendency_cleanup) 22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5) - 6be9617a7afd596b905b6c49b8bb6868b892ef92 UFSATM/ccpp/physics (EP4-2332-g6be9617a) - c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) + 8cc471396e22039b0a4ca0ed484b85c2c3d0ff31 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6789-g8cc47139) + c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (v2.1.3~3) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) b2d7d8731c84964c7afcab74cc9f2acb23d7fd71 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (remotes/origin/feature/tendency_cleanup) 3e5db3750e382976b4d6011c6d9c1437b0cf34f6 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-502-g3e5db37) @@ -41,857 +40,392 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20260318 -COMPARISON DIRECTORY: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2867218 +BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20260402 +COMPARISON DIRECTORY: /scratch3/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_467370 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: gmtb -* (-l) - USE CONFIG FILE: rt.conf -* (-k) - KEEP RUN DIRECTORY +* (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 13:57] ( 1 warnings 1087 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gefs_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gefs_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_dcp_gefs_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_intel' [16:11, 13:48] ( 1 warnings 1068 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_gfsv17_iau_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_gfsv17_intel' [, ]( MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [16:11, 13:17] ( 1 warnings 982 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_sfs_intel' [, ]( MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:11, 03:10] ( 361 warnings 982 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_sfs_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [06:11, 03:22] ( 361 warnings 1380 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 13:58] ( 1 warnings 1087 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8.v2.sfc_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_2threads_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_decomp_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_ciceC_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c192_p8_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c192_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2swl_intel' [16:11, 14:01] ( 1 warnings 1090 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_lnd_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 12:49] ( 1 warnings 993 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_noaero_p8_agrid_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 13:54] ( 1 warnings 1078 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c48_5deg_intel' [, ]( MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:11, 13:12] ( 1 warnings 1087 remarks ) +PASS -- TEST 'cpld_control_gefs_intel' [46:40, 20:51](3218 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [19:25, 06:20](2939 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [55:33, 33:09](3452 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_intel' [15:11, 13:25] ( 1 warnings 1068 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:51, 09:42](2053 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:54, 10:19](2656 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:53, 03:55](1494 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [08:08, 04:44](2343 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:40, 17:06](2003 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [15:11, 13:21] ( 1 warnings 982 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:23, 08:24](2390 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [16:10, 05:20](1869 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:10, 03:46] ( 354 warnings 982 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [23:21, 08:25](2420 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [05:11, 04:00] ( 354 warnings 1380 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:53, 13:15](2083 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 14:14] ( 1 warnings 1087 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:56, 07:25](2460 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:53, 06:55](2496 MB) +PASS -- TEST 'cpld_restart_p8_intel' [13:56, 03:47](2237 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [26:45, 13:54](2977 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:41, 07:48](2455 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:49, 11:28](2313 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:53, 07:56](2453 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [26:33, 17:58](3572 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [17:02, 12:30](3458 MB) + +PASS -- COMPILE 's2swl_intel' [16:11, 14:13] ( 1 warnings 1090 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [15:51, 07:25](2298 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:01, 03:32](2059 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 12:57] ( 1 warnings 993 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:50, 04:02](2171 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:11, 13:54] ( 1 warnings 1078 remarks ) +PASS -- TEST 'cpld_control_c48_5deg_intel' [26:33, 23:52](3033 MB) FAILED: TEST TIMED OUT -- TEST 'cpld_warmstart_c48_5deg_intel' [, ]( MB) FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c48_5deg_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c24_5deg_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_warmstart_c24_5deg_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c24_5deg_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c24_9deg_intel' [, ]( MB) -FAILED: TEST TIMED OUT -- TEST 'cpld_warmstart_c24_9deg_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c24_9deg_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c12_9deg_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_warmstart_c12_9deg_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c12_9deg_intel' [, ]( MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:11, 07:12] ( 1 warnings 534 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_latlon_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48.v2.sfc_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_lnd_iau_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c192_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c384_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c384gdas_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_stochy_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'control_stochy_restart_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_lndp_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_iovr4_gfdlmpv3_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8.v2.sfc_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_ugwpv1_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_ugwpv1_tempo_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'control_restart_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_noqr_p8_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'control_restart_noqr_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_decomp_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_2threads_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_lndp_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_rrtmgp_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_mynn_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'merra2_hf_thompson_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_control_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'regional_restart_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_decomp_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_2threads_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_noquilt_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_netcdf_parallel_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_2dwrtdecomp_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_wofs_intel' [, ]( MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [09:11, 06:49] ( 1 warnings 515 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_rrtmgp_rad32_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_intel' [08:11, 06:07] ( 4 warnings 485 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_spp_sppt_shum_skeb_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_decomp_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_2threads_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'rap_restart_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_decomp_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'rap_sfcdiff_restart_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_decomp_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_2threads_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rrfs_v1beta_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rrfs_v1nssl_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [, ]( MB) - -PASS -- COMPILE 'csawmg_intel' [09:11, 06:45] ( 1 warnings 455 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_csawmg_intel' [, ]( MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_ras_intel' [, ]( MB) - -PASS -- COMPILE 'wam_intel' [08:11, 05:46] ( 1 warnings 437 remarks ) -FAILED: TEST TIMED OUT -- TEST 'control_wam_intel' [, ]( MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 03:39] ( 496 warnings 624 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_stochy_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_lndp_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_csawmg_debug_intel' [, ]( MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_ras_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_debug_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_gf_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_c3_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_unified_drag_suite_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_diag_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_unified_ugwp_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_lndp_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_progcld_thompson_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_noah_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_clm_lake_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_c96_no_nest_debug_intel' [, ]( MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 02:17] ( 459 warnings 437 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:11, 05:51] ( 4 warnings 452 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn32_phy32_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_dyn32_phy32_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_2threads_dyn32_phy32_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'rap_restart_dyn32_phy32_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_control_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_2threads_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_decomp_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'conus13km_restart_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [08:11, 06:06] ( 4 warnings 485 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_gl_inline_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 06:01] ( 4 warnings 452 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:15] ( 333 warnings 458 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_debug_dyn32_phy32_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_qr_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_decomp_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 02:25] ( 333 warnings 452 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_debug_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_intel' [11:11, 08:38] ( 1 warnings 734 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_atm_wav_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_1nest_atm_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_global_1nest_atm_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_global_multiple_4nests_atm_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_global_storm_following_1nest_atm_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 08:18] ( 1 warnings 972 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [, ]( MB) - -PASS -- COMPILE 'hafs_all_intel' [10:11, 08:08] ( 1 warnings 676 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_docn_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:11, 11:39] ( 569 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:17, 05:33](1922 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:21](1876 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 01:53](1179 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 01:56](1163 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 01:55](1166 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 01:57](1916 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:01](1914 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [13:16, 11:01](1154 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [25:59, 05:26](1808 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [27:51, 05:13](1335 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:02](1912 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:21](4791 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [28:18, 26:24](4794 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:26] ( 2 warnings 569 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:16, 03:58](1830 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 00:44] ( 129 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [19:27, 00:43](366 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [23:21, 00:31](621 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [08:21, 00:25](624 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 11:55] ( 1 warnings 651 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atm_ds2s_docn_pcice_intel' [, ]( MB) - -PASS -- COMPILE 'atml_intel' [09:11, 06:54] ( 9 warnings 589 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_atmlnd_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 03:16] ( 503 warnings 589 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_atmlnd_debug_intel' [, ]( MB) - -PASS -- COMPILE 'atmw_intel' [10:11, 07:51] ( 1 warnings 563 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atmwav_control_noaero_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [20:30, 18:06](2216 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:27, 00:31](2210 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:30, 00:24](1531 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:27, 00:52](2211 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:26, 01:13](2211 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:26, 00:25](1532 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:27, 00:33](2137 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:26, 00:26](2138 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:25, 00:23](1489 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:10, 07:22] ( 1 warnings 534 remarks ) +PASS -- TEST 'control_CubedSphereGrid_intel' [12:22, 10:08](2233 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:24, 11:53](2234 MB) +PASS -- TEST 'control_latlon_intel' [13:21, 11:14](2243 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:23, 09:49](2235 MB) +PASS -- TEST 'control_c48_intel' [06:24, 04:22](1665 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:21, 04:05](807 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:23, 04:33](1670 MB) +PASS -- TEST 'control_c192_intel' [14:39, 05:04](1810 MB) +PASS -- TEST 'control_c384_intel' [18:18, 07:49](2068 MB) +PASS -- TEST 'control_c384gdas_intel' [26:01, 06:39](1879 MB) +PASS -- TEST 'control_stochy_intel' [10:20, 08:45](1314 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:19, 02:47](1237 MB) +PASS -- TEST 'control_lndp_intel' [23:20, 21:11](1302 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [17:34, 10:08](1615 MB) +PASS -- TEST 'control_p8_intel' [20:43, 08:52](2519 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [22:49, 02:17](2507 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [25:46, 11:36](2521 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [21:43, 02:00](2547 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [22:45, 02:10](2548 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [19:44, 01:54](2408 MB) +PASS -- TEST 'control_restart_p8_intel' [09:32, 05:19](1956 MB) +PASS -- TEST 'control_noqr_p8_intel' [30:49, 11:47](2513 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [11:34, 01:14](1842 MB) +PASS -- TEST 'control_decomp_p8_intel' [25:44, 11:34](2518 MB) +PASS -- TEST 'control_2threads_p8_intel' [20:42, 01:44](2007 MB) +PASS -- TEST 'control_p8_lndp_intel' [23:40, 03:59](2531 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [22:44, 02:52](2581 MB) +PASS -- TEST 'control_p8_mynn_intel' [24:47, 12:06](2545 MB) +PASS -- TEST 'merra2_thompson_intel' [28:48, 10:08](2540 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [18:29, 12:03](2557 MB) +PASS -- TEST 'regional_control_intel' [22:36, 03:28](1725 MB) +PASS -- TEST 'regional_restart_intel' [12:27, 02:01](1690 MB) +PASS -- TEST 'regional_decomp_intel' [13:25, 03:38](1714 MB) +PASS -- TEST 'regional_2threads_intel' [16:25, 02:09](1570 MB) +PASS -- TEST 'regional_noquilt_intel' [17:26, 03:27](1991 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [18:26, 03:27](1719 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [18:25, 03:26](1716 MB) +PASS -- TEST 'regional_wofs_intel' [19:27, 04:38](2622 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:10, 06:51] ( 1 warnings 515 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [15:39, 09:27](2570 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 06:19] ( 4 warnings 485 remarks ) +PASS -- TEST 'rap_control_intel' [15:28, 12:38](1951 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:48, 02:52](1609 MB) +PASS -- TEST 'rap_decomp_intel' [11:24, 02:37](1724 MB) +PASS -- TEST 'rap_2threads_intel' [11:24, 02:03](1173 MB) +PASS -- TEST 'rap_restart_intel' [03:26, 01:21](1761 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:24, 02:44](1745 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:28, 02:37](1715 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [04:26, 01:21](1769 MB) +PASS -- TEST 'hrrr_control_intel' [08:29, 02:25](1778 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:22, 02:31](1682 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:22, 01:55](1162 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:20, 01:18](1726 MB) +PASS -- TEST 'rrfs_v1beta_intel' [24:32, 19:01](2241 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [27:19, 23:01](2782 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 05:52](2909 MB) + +PASS -- COMPILE 'csawmg_intel' [08:11, 05:53] ( 1 warnings 438 remarks ) +PASS -- TEST 'control_csawmg_intel' [06:26, 04:31](1738 MB) + +PASS -- COMPILE 'wam_intel' [08:11, 05:59] ( 1 warnings 437 remarks ) +PASS -- TEST 'control_wam_intel' [10:36, 08:17](2406 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 03:41] ( 489 warnings 616 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:21, 01:42](2237 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:19, 01:43](2243 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:17, 02:19](1475 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:17, 02:08](1479 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:28, 03:07](1799 MB) +PASS -- TEST 'control_diag_debug_intel' [05:23, 02:00](2328 MB) +PASS -- TEST 'control_debug_p8_intel' [04:29, 02:04](2555 MB) +PASS -- TEST 'regional_debug_intel' [15:28, 12:28](1623 MB) +PASS -- TEST 'rap_control_debug_intel' [06:18, 03:38](1868 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:19, 03:30](1862 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:40](1867 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:18, 03:33](1864 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 03:34](1864 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:23, 03:59](1955 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 03:42](1871 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:18, 09:33](1877 MB) +PASS -- TEST 'rap_lndp_debug_intel' [11:18, 08:37](1868 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:18, 09:34](1874 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:20, 09:24](1845 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:19, 10:35](1871 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 05:44](1861 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 03:47](1869 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:29, 06:11](1878 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 02:27] ( 452 warnings 437 remarks ) +PASS -- TEST 'control_wam_debug_intel' [11:32, 09:36](2308 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:11, 05:52] ( 4 warnings 452 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 02:31](1480 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:25, 02:13](1739 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:24, 02:05](1715 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:22, 01:44](1061 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:22, 01:42](1049 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:23, 02:11](1655 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:24, 01:21](1637 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:19, 04:08](1720 MB) +PASS -- TEST 'conus13km_control_intel' [05:45, 01:56](1770 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:33, 00:51](1777 MB) +PASS -- TEST 'conus13km_decomp_intel' [05:33, 01:57](1829 MB) +PASS -- TEST 'conus13km_restart_intel' [03:33, 01:13](1546 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [08:11, 06:13] ( 4 warnings 485 remarks ) +PASS -- TEST 'conus13km_gl_inline_intel' [13:39, 11:16](1327 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 05:58] ( 4 warnings 452 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:28, 02:40](1808 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:20] ( 326 warnings 458 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:19, 09:59](1768 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:18, 03:22](1751 MB) +PASS -- TEST 'conus13km_debug_intel' [16:39, 15:01](1790 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:31, 15:09](1420 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:30, 08:27](1820 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [17:29, 15:44](1849 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:31, 14:58](1881 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:11] ( 326 warnings 452 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:21, 08:13](1861 MB) + +PASS -- COMPILE 'hafsw_intel' [10:10, 08:19] ( 1 warnings 677 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:35, 02:50](1141 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:49, 04:06](1366 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:22, 02:28](1472 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [33:36, 31:51](1354 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:31, 03:30](790 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:35, 04:25](813 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:29, 01:43](535 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:58, 07:44](628 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:28, 02:20](756 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:27, 02:17](746 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 00:45](518 MB) +PASS -- TEST 'gnv1_nested_intel' [04:47, 02:28](1739 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 08:03] ( 1 warnings 972 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:16, 17:13](1093 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:11, 08:05] ( 1 warnings 619 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:32, 04:27](1284 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:35, 05:22](1297 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:12, 11:01] ( 569 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:01](1927 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [09:18, 07:36](1861 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:15, 10:27](1147 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [12:16, 10:44](1171 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [12:15, 10:40](1157 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [13:19, 11:19](1922 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:59, 05:53](1801 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:01, 05:40](1319 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:03](1917 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [21:16, 19:48](4793 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:17, 03:38](4787 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:47] ( 2 warnings 569 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:16, 04:02](1837 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:41] ( 129 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:27, 00:47](367 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:21, 00:32](620 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:21, 00:23](621 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:15, 11:56] ( 1 warnings 651 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [27:52, 25:18](2877 MB) + +PASS -- COMPILE 'atml_intel' [09:12, 07:17] ( 9 warnings 589 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:34, 02:44](1897 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:29, 01:28](1333 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:50] ( 496 warnings 589 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:35, 04:06](1944 MB) + +PASS -- COMPILE 'atmw_intel' [09:11, 07:45] ( 1 warnings 563 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [16:33, 14:24](2681 MB) PASS -- COMPILE 'atmaero_intel' [11:11, 08:54] ( 1 warnings 455 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atmaero_control_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atmaero_control_p8_rad_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB) - -PASS -- COMPILE 'atmaq_intel' [08:11, 06:34] ( 1 warnings 641 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_atmaq_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_atmaq_canopy_intel' [, ]( MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:19] ( 476 warnings 641 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_atmaq_debug_intel' [, ]( MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:11, 05:46] ( 4 warnings 464 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_regional_atm_fbh_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_intelllvm' [15:11, 12:41] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intelllvm' [, ]( MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_debug_intelllvm' [05:11, 03:00] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intelllvm' [, ]( MB) - -PASS -- COMPILE 's2s_32bit_sfs_intelllvm' [14:11, 11:50] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_intelllvm' [, ]( MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intelllvm' [04:12, 02:41] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_sfs_intelllvm' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 05:43] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn32_phy32_intelllvm' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 05:40] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_intelllvm' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [14:10, 12:22] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [04:15, 02:02](1919 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:10, 02:06] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [14:15, 12:30](1830 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 02:48] ( 39 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_stochy_gnu' [, ]( MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_ras_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_p8_ugwpv1_gnu' [, ]( MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 02:52] ( 39 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_decomp_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_2threads_gnu' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'rap_restart_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_sfcdiff_decomp_gnu' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'rap_sfcdiff_restart_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_noqr_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_2threads_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_decomp_gnu' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_gnu' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_noqr_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rrfs_v1beta_gnu' [, ]( MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 02:37] ( 39 warnings ) -FAILED: TEST TIMED OUT -- TEST 'control_csawmg_gnu' [, ]( MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 05:32] ( 42 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_diag_debug_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_debug_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_debug_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_debug_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_gf_debug_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_c3_debug_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_diag_debug_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_progcld_thompson_debug_gnu' [, ]( MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_ras_debug_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_stochy_debug_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_debug_p8_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_clm_lake_debug_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_c96_no_nest_debug_gnu' [, ]( MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:23] ( 39 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_gnu' [, ]( MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:37] ( 39 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_csawmg_debug_gnu' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 02:44] ( 39 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn32_phy32_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_dyn32_phy32_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_2threads_dyn32_phy32_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'rap_restart_dyn32_phy32_gnu' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_control_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_2threads_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_decomp_gnu' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'conus13km_restart_gnu' [, ]( MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 06:32] ( 42 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_gnu' [, ]( MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 05:32] ( 42 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_debug_dyn32_phy32_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_qr_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_2threads_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_decomp_gnu' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_radar_tten_debug_gnu' [, ]( MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 05:20] ( 42 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'rap_control_dyn64_phy32_debug_gnu' [, ]( MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_gnu' [14:10, 12:01] ( 39 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_gnu' [, ]( MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_debug_gnu' [04:11, 01:45] ( 1932 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_gnu' [, ]( MB) - -PASS -- COMPILE 's2s_32bit_sfs_gnu' [14:11, 12:00] ( 39 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_gnu' [, ]( MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_gnu' [03:11, 01:42] ( 1172 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_sfs_gnu' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [12:11, 10:01] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:16, 02:10](1513 MB) +PASS -- TEST 'atmaero_control_p8_intel' [05:40, 03:42](1985 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:31, 04:38](2385 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:34, 04:05](2402 MB) + +PASS -- COMPILE 'atmaq_intel' [08:13, 06:33] ( 1 warnings 641 remarks ) +PASS -- TEST 'regional_atmaq_intel' [17:30, 13:24](2875 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [20:03, 14:50](2875 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:21] ( 469 warnings 641 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [32:03, 27:23](2892 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:15, 06:12] ( 4 warnings 464 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:21, 06:49](1136 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_intelllvm' [17:11, 15:38] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [13:42, 09:31](2050 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_debug_intelllvm' [05:13, 03:16] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [20:39, 13:26](2078 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intelllvm' [15:18, 13:20] +PASS -- TEST 'cpld_control_sfs_intelllvm' [17:20, 08:47](2395 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intelllvm' [06:12, 03:26] +PASS -- TEST 'cpld_debug_sfs_intelllvm' [19:10, 08:44](2440 MB) + +PASS -- COMPILE 'hafs_mom6w_intelllvm' [11:11, 08:25] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intelllvm' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:52] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [04:25, 02:18](1716 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 05:48] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [04:27, 02:54](1797 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [20:12, 18:07] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [08:16, 06:58](1922 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:11, 02:12] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [05:16, 03:56](1830 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 02:45] ( 39 warnings ) +PASS -- TEST 'control_c48_gnu' [07:22, 05:52](1508 MB) +PASS -- TEST 'control_stochy_gnu' [11:17, 10:01](507 MB) +PASS -- TEST 'control_p8_gnu' [12:46, 10:16](1447 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [12:34, 10:25](1456 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:11, 02:53] ( 39 warnings ) +PASS -- TEST 'rap_control_gnu' [05:27, 03:48](847 MB) +PASS -- TEST 'rap_decomp_gnu' [05:26, 03:46](848 MB) +PASS -- TEST 'rap_2threads_gnu' [11:23, 02:43](899 MB) +PASS -- TEST 'rap_restart_gnu' [04:28, 01:52](581 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [05:26, 03:30](848 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:23, 09:54](846 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:27, 01:50](580 MB) +PASS -- TEST 'hrrr_control_gnu' [13:26, 10:51](843 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:26, 03:23](834 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:23, 02:36](889 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [13:22, 10:29](849 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [08:19, 06:27](571 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:19, 06:07](662 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [24:28, 22:06](842 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:11, 02:35] ( 39 warnings ) +PASS -- TEST 'control_csawmg_gnu' [17:29, 14:44](752 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 05:21] ( 42 warnings ) +PASS -- TEST 'control_diag_debug_gnu' [06:24, 03:33](1279 MB) +PASS -- TEST 'regional_debug_gnu' [07:29, 05:46](773 MB) +PASS -- TEST 'rap_control_debug_gnu' [06:18, 04:30](852 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [06:18, 04:59](854 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [06:18, 04:50](859 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [06:17, 04:43](859 MB) +PASS -- TEST 'rap_diag_debug_gnu' [06:26, 02:16](940 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:18, 02:52](853 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:18, 01:50](853 MB) +PASS -- TEST 'control_stochy_debug_gnu' [04:17, 01:12](492 MB) +PASS -- TEST 'control_debug_p8_gnu' [04:29, 01:23](1456 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 01:47](856 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:28, 03:00](865 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:27] ( 39 warnings ) +PASS -- TEST 'control_wam_debug_gnu' [07:36, 04:40](1305 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 02:30] ( 39 warnings ) +PASS -- TEST 'control_csawmg_debug_gnu' [04:25, 01:51](734 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:07] ( 39 warnings ) +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:25, 03:19](706 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:25, 03:18](709 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [06:24, 02:32](732 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:23, 02:27](725 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [12:22, 10:27](707 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:24, 05:39](547 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [07:19, 06:00](553 MB) +PASS -- TEST 'conus13km_control_gnu' [04:44, 03:02](902 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:31, 01:12](904 MB) +PASS -- TEST 'conus13km_decomp_gnu' [04:33, 03:05](907 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:32, 01:43](579 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:11, 06:49] ( 42 warnings ) +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [14:31, 12:32](733 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 05:26] ( 42 warnings ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:19, 01:49](713 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [06:18, 04:32](717 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:34, 07:08](922 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:33, 07:16](650 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [06:31, 04:06](925 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [09:30, 07:26](925 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:31, 07:13](980 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 05:22] ( 42 warnings ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:52](741 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_gnu' [13:11, 10:27] ( 39 warnings ) +PASS -- TEST 'cpld_control_gfsv17_gnu' [08:45, 06:15](1557 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_debug_gnu' [04:12, 01:45] ( 1932 warnings ) +PASS -- TEST 'cpld_debug_gfsv17_gnu' [07:38, 05:31](1574 MB) + +PASS -- COMPILE 's2s_32bit_sfs_gnu' [12:11, 10:25] ( 39 warnings ) +PASS -- TEST 'cpld_control_sfs_gnu' [17:25, 13:19](1752 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_gnu' [03:11, 01:37] ( 1172 warnings ) +PASS -- TEST 'cpld_debug_sfs_gnu' [09:15, 05:21](1776 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [11:10, 09:49] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [10:16, 08:13](1513 MB) SYNOPSIS: -Starting Date/Time: 20260323 21:07:45 -Ending Date/Time: 20260324 05:55:55 -Total Time: 08h:49m:20s -Compiles Completed: 58/58 -Tests Completed: 20/253 +Starting Date/Time: 20260403 05:47:26 +Ending Date/Time: 20260403 07:57:20 +Total Time: 02h:10m:22s +Compiles Completed: 59/59 +Tests Completed: 245/248 Failed Tests: -* TEST cpld_control_gefs_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_gefs_intel.log -* TEST cpld_restart_gefs_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_dcp_gefs_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_dcp_gefs_intel.log -* TEST cpld_control_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_gfsv17_intel.log -* TEST cpld_control_gfsv17_iau_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_restart_gfsv17_iau_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_mpi_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_mpi_gfsv17_intel.log -* TEST cpld_control_sfs_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_sfs_intel.log -* TEST cpld_restart_sfs_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_debug_sfs_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_debug_sfs_intel.log -* TEST cpld_debug_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_debug_gfsv17_intel.log -* TEST cpld_control_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_p8_intel.log -* TEST cpld_control_p8.v2.sfc_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_p8.v2.sfc_intel.log -* TEST cpld_restart_p8_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_2threads_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_2threads_p8_intel.log -* TEST cpld_decomp_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_decomp_p8_intel.log -* TEST cpld_mpi_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_mpi_p8_intel.log -* TEST cpld_control_ciceC_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_ciceC_p8_intel.log -* TEST cpld_control_c192_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_c192_p8_intel.log -* TEST cpld_restart_c192_p8_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_control_p8_lnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_p8_lnd_intel.log -* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_control_noaero_p8_agrid_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_noaero_p8_agrid_intel.log -* TEST cpld_control_c48_5deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_c48_5deg_intel.log * TEST cpld_warmstart_c48_5deg_intel: FAILED: TEST TIMED OUT --- LOG: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2867218/cpld_warmstart_c48_5deg_intel/err +-- LOG: /scratch3/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_467370/cpld_warmstart_c48_5deg_intel/err * TEST cpld_restart_c48_5deg_intel: FAILED: UNABLE TO START TEST -- LOG: N/A -* TEST cpld_control_c24_5deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_c24_5deg_intel.log -* TEST cpld_warmstart_c24_5deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_warmstart_c24_5deg_intel.log -* TEST cpld_restart_c24_5deg_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_control_c24_9deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_c24_9deg_intel.log -* TEST cpld_warmstart_c24_9deg_intel: FAILED: TEST TIMED OUT --- LOG: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2867218/cpld_warmstart_c24_9deg_intel/err -* TEST cpld_restart_c24_9deg_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST cpld_control_c12_9deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_c12_9deg_intel.log -* TEST cpld_warmstart_c12_9deg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_warmstart_c12_9deg_intel.log -* TEST cpld_restart_c12_9deg_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_CubedSphereGrid_intel.log -* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_CubedSphereGrid_parallel_intel.log -* TEST control_latlon_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_latlon_intel.log -* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_wrtGauss_netcdf_parallel_intel.log -* TEST control_c48_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c48_intel.log -* TEST control_c48.v2.sfc_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c48.v2.sfc_intel.log -* TEST control_c48_lnd_iau_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c48_lnd_iau_intel.log -* TEST control_c192_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c192_intel.log -* TEST control_c384_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c384_intel.log -* TEST control_c384gdas_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c384gdas_intel.log -* TEST control_stochy_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_stochy_intel.log -* TEST control_stochy_restart_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST control_lndp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_lndp_intel.log -* TEST control_iovr4_gfdlmpv3_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_iovr4_gfdlmpv3_intel.log -* TEST control_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_intel.log -* TEST control_p8.v2.sfc_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8.v2.sfc_intel.log -* TEST control_p8_ugwpv1_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_ugwpv1_intel.log -* TEST control_p8_ugwpv1_tempo_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_ugwpv1_tempo_intel.log -* TEST control_p8_ugwpv1_tempo_aerosol_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_ugwpv1_tempo_aerosol_intel.log -* TEST control_p8_ugwpv1_tempo_aerosol_hail_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_ugwpv1_tempo_aerosol_hail_intel.log -* TEST control_restart_p8_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST control_noqr_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_noqr_p8_intel.log -* TEST control_restart_noqr_p8_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST control_decomp_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_decomp_p8_intel.log -* TEST control_2threads_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_2threads_p8_intel.log -* TEST control_p8_lndp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_lndp_intel.log -* TEST control_p8_rrtmgp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_rrtmgp_intel.log -* TEST control_p8_mynn_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_mynn_intel.log -* TEST merra2_thompson_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_merra2_thompson_intel.log -* TEST merra2_hf_thompson_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_merra2_hf_thompson_intel.log -* TEST regional_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_control_intel.log -* TEST regional_restart_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST regional_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_decomp_intel.log -* TEST regional_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_2threads_intel.log -* TEST regional_noquilt_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_noquilt_intel.log -* TEST regional_netcdf_parallel_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_netcdf_parallel_intel.log -* TEST regional_2dwrtdecomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_2dwrtdecomp_intel.log -* TEST regional_wofs_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_wofs_intel.log -* TEST control_p8_rrtmgp_rad32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_rrtmgp_rad32_intel.log -* TEST rap_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_intel.log -* TEST regional_spp_sppt_shum_skeb_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_spp_sppt_shum_skeb_intel.log -* TEST rap_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_decomp_intel.log -* TEST rap_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_2threads_intel.log -* TEST rap_restart_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST rap_sfcdiff_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_sfcdiff_intel.log -* TEST rap_sfcdiff_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_sfcdiff_decomp_intel.log -* TEST rap_sfcdiff_restart_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST hrrr_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_intel.log -* TEST hrrr_control_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_decomp_intel.log -* TEST hrrr_control_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_2threads_intel.log -* TEST hrrr_control_restart_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST rrfs_v1beta_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rrfs_v1beta_intel.log -* TEST rrfs_v1nssl_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rrfs_v1nssl_intel.log -* TEST rrfs_v1nssl_nohailnoccn_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rrfs_v1nssl_nohailnoccn_intel.log -* TEST control_csawmg_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_csawmg_intel.log -* TEST control_ras_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_ras_intel.log -* TEST control_wam_intel: FAILED: TEST TIMED OUT --- LOG: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2867218/control_wam_intel/err -* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_CubedSphereGrid_debug_intel.log -* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_wrtGauss_netcdf_parallel_debug_intel.log -* TEST control_stochy_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_stochy_debug_intel.log -* TEST control_lndp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_lndp_debug_intel.log -* TEST control_csawmg_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_csawmg_debug_intel.log -* TEST control_ras_debug_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_ras_debug_intel.log -* TEST control_diag_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_diag_debug_intel.log -* TEST control_debug_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_debug_p8_intel.log -* TEST regional_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_debug_intel.log -* TEST rap_control_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_debug_intel.log -* TEST hrrr_control_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_debug_intel.log -* TEST hrrr_gf_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_gf_debug_intel.log -* TEST hrrr_c3_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_c3_debug_intel.log -* TEST rap_unified_drag_suite_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_unified_drag_suite_debug_intel.log -* TEST rap_diag_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_diag_debug_intel.log -* TEST rap_cires_ugwp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_cires_ugwp_debug_intel.log -* TEST rap_unified_ugwp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_unified_ugwp_debug_intel.log -* TEST rap_lndp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_lndp_debug_intel.log -* TEST rap_progcld_thompson_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_progcld_thompson_debug_intel.log -* TEST rap_noah_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_noah_debug_intel.log -* TEST rap_sfcdiff_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_sfcdiff_debug_intel.log -* TEST rap_noah_sfcdiff_cires_ugwp_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_noah_sfcdiff_cires_ugwp_debug_intel.log -* TEST rap_clm_lake_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_clm_lake_debug_intel.log -* TEST gnv1_c96_no_nest_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_gnv1_c96_no_nest_debug_intel.log -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_wam_debug_intel.log -* TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_spp_sppt_shum_skeb_dyn32_phy32_intel.log -* TEST rap_control_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn32_phy32_intel.log -* TEST hrrr_control_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_dyn32_phy32_intel.log -* TEST rap_2threads_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_2threads_dyn32_phy32_intel.log -* TEST hrrr_control_2threads_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_2threads_dyn32_phy32_intel.log -* TEST hrrr_control_decomp_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_decomp_dyn32_phy32_intel.log -* TEST rap_restart_dyn32_phy32_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST hrrr_control_restart_dyn32_phy32_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST conus13km_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_control_intel.log -* TEST conus13km_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_2threads_intel.log -* TEST conus13km_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_decomp_intel.log -* TEST conus13km_restart_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST conus13km_gl_inline_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_gl_inline_intel.log -* TEST rap_control_dyn64_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn64_phy32_intel.log -* TEST rap_control_debug_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_debug_dyn32_phy32_intel.log -* TEST hrrr_control_debug_dyn32_phy32_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_debug_dyn32_phy32_intel.log -* TEST conus13km_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_intel.log -* TEST conus13km_debug_qr_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_qr_intel.log -* TEST conus13km_debug_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_2threads_intel.log -* TEST conus13km_debug_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_decomp_intel.log -* TEST conus13km_radar_tten_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_radar_tten_debug_intel.log -* TEST rap_control_dyn64_phy32_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn64_phy32_debug_intel.log -* TEST hafs_regional_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_atm_intel.log -* TEST hafs_regional_atm_gfdlmpv3_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_atm_gfdlmpv3_intel.log -* TEST hafs_regional_atm_thompson_gfdlsf_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_atm_thompson_gfdlsf_intel.log -* TEST hafs_regional_atm_wav_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_atm_wav_intel.log -* TEST hafs_regional_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_1nest_atm_intel.log -* TEST hafs_regional_telescopic_2nests_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_telescopic_2nests_atm_intel.log -* TEST hafs_global_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_global_1nest_atm_intel.log -* TEST hafs_global_multiple_4nests_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_global_multiple_4nests_atm_intel.log -* TEST hafs_regional_specified_moving_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_specified_moving_1nest_atm_intel.log -* TEST hafs_regional_storm_following_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_intel.log -* TEST hafs_global_storm_following_1nest_atm_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_global_storm_following_1nest_atm_intel.log -* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_gnv1_nested_intel.log -* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel.log -* TEST hafs_regional_docn_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_docn_intel.log -* TEST hafs_regional_docn_oisst_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hafs_regional_docn_oisst_intel.log -* TEST atm_ds2s_docn_pcice_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_atm_ds2s_docn_pcice_intel.log -* TEST control_p8_atmlnd_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_atmlnd_intel.log -* TEST control_restart_p8_atmlnd_intel: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST control_p8_atmlnd_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_atmlnd_debug_intel.log -* TEST atmwav_control_noaero_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_atmwav_control_noaero_p8_intel.log -* TEST atmaero_control_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_atmaero_control_p8_intel.log -* TEST atmaero_control_p8_rad_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_atmaero_control_p8_rad_intel.log -* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_atmaero_control_p8_rad_micro_intel.log -* TEST regional_atmaq_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_atmaq_intel.log -* TEST regional_atmaq_canopy_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_atmaq_canopy_intel.log -* TEST regional_atmaq_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_atmaq_debug_intel.log -* TEST cpld_regional_atm_fbh_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_regional_atm_fbh_intel.log -* TEST cpld_control_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_gfsv17_intelllvm.log -* TEST cpld_debug_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_debug_gfsv17_intelllvm.log -* TEST cpld_control_sfs_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_sfs_intelllvm.log -* TEST cpld_debug_sfs_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_debug_sfs_intelllvm.log -* TEST rap_control_dyn32_phy32_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn32_phy32_intelllvm.log -* TEST rap_control_dyn64_phy32_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn64_phy32_intelllvm.log -* TEST control_c48_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_c48_gnu.log -* TEST control_stochy_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_stochy_gnu.log -* TEST control_ras_gnu: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_ras_gnu.log -* TEST control_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_gnu.log -* TEST control_p8_ugwpv1_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_p8_ugwpv1_gnu.log -* TEST rap_control_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_gnu.log -* TEST rap_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_decomp_gnu.log -* TEST rap_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_2threads_gnu.log -* TEST rap_restart_gnu: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST rap_sfcdiff_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_sfcdiff_gnu.log -* TEST rap_sfcdiff_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_sfcdiff_decomp_gnu.log -* TEST rap_sfcdiff_restart_gnu: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST hrrr_control_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_gnu.log -* TEST hrrr_control_noqr_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_noqr_gnu.log -* TEST hrrr_control_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_2threads_gnu.log -* TEST hrrr_control_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_decomp_gnu.log -* TEST hrrr_control_restart_gnu: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST hrrr_control_restart_noqr_gnu: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST rrfs_v1beta_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rrfs_v1beta_gnu.log -* TEST control_csawmg_gnu: FAILED: TEST TIMED OUT --- LOG: /scratch3/BMC/gmtb/Grant.Firl/stmp2/Grant.Firl/FV3_RT/rt_2867218/control_csawmg_gnu/err -* TEST control_diag_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_diag_debug_gnu.log -* TEST regional_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_regional_debug_gnu.log -* TEST rap_control_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_debug_gnu.log -* TEST hrrr_control_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_debug_gnu.log -* TEST hrrr_gf_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_gf_debug_gnu.log -* TEST hrrr_c3_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_c3_debug_gnu.log -* TEST rap_diag_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_diag_debug_gnu.log -* TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_noah_sfcdiff_cires_ugwp_debug_gnu.log -* TEST rap_progcld_thompson_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_progcld_thompson_debug_gnu.log -* TEST control_ras_debug_gnu: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_ras_debug_gnu.log -* TEST control_stochy_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_stochy_debug_gnu.log -* TEST control_debug_p8_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_debug_p8_gnu.log -* TEST rap_clm_lake_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_clm_lake_debug_gnu.log -* TEST gnv1_c96_no_nest_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_gnv1_c96_no_nest_debug_gnu.log -* TEST control_wam_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_wam_debug_gnu.log -* TEST control_csawmg_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_control_csawmg_debug_gnu.log -* TEST rap_control_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn32_phy32_gnu.log -* TEST hrrr_control_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_dyn32_phy32_gnu.log -* TEST rap_2threads_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_2threads_dyn32_phy32_gnu.log -* TEST hrrr_control_2threads_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_2threads_dyn32_phy32_gnu.log -* TEST hrrr_control_decomp_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_decomp_dyn32_phy32_gnu.log -* TEST rap_restart_dyn32_phy32_gnu: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST hrrr_control_restart_dyn32_phy32_gnu: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST conus13km_control_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_control_gnu.log -* TEST conus13km_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_2threads_gnu.log -* TEST conus13km_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_decomp_gnu.log -* TEST conus13km_restart_gnu: FAILED: UNABLE TO START TEST --- LOG: N/A -* TEST rap_control_dyn64_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn64_phy32_gnu.log -* TEST rap_control_debug_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_debug_dyn32_phy32_gnu.log -* TEST hrrr_control_debug_dyn32_phy32_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_hrrr_control_debug_dyn32_phy32_gnu.log -* TEST conus13km_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_gnu.log -* TEST conus13km_debug_qr_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_qr_gnu.log -* TEST conus13km_debug_2threads_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_2threads_gnu.log -* TEST conus13km_debug_decomp_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_debug_decomp_gnu.log -* TEST conus13km_radar_tten_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_conus13km_radar_tten_debug_gnu.log -* TEST rap_control_dyn64_phy32_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_rap_control_dyn64_phy32_debug_gnu.log -* TEST cpld_control_gfsv17_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_gfsv17_gnu.log -* TEST cpld_debug_gfsv17_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_debug_gfsv17_gnu.log -* TEST cpld_control_sfs_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_control_sfs_gnu.log -* TEST cpld_debug_sfs_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch3/BMC/gmtb/Grant.Firl/ufs-weather-model-test/tests/logs/log_ursa/run_cpld_debug_sfs_gnu.log +* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch3/NAGAPE/epic/Fernando.Andrade-maldonado/reg-test/wm/2810/ufs-weather-model/tests/logs/log_ursa/run_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intelllvm.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -901,3 +435,74 @@ If you are using this log as a pull request verification, please commit 'test_ch Result: FAILURE ====END OF URSA REGRESSION TESTING LOG==== +====START OF URSA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +df65a67bf8814c2359e0e5779e8d08a40e312593 + +Submodule hashes used in testing: + fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386) + 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) + 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) + def9c53b17d6722cc9991ba72ddae8ad2d5d25d9 CICE-interface/CICE (CICE6.0.0-445-gdef9c53) + 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) + 9a75264d39a331baeb54fb1a426e198d8b543119 CMEPS-interface/CMEPS (remotes/origin/feature/tendency_cleanup) + 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) + 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) + 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 72563d619896492a9c61e2b7cdbe6a9cdbbd7920 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10791-g72563d619) + 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) + b988189f8eaf02db6596553c979cceb6c70df95e UFSATM (remotes/origin/feature/tendency_cleanup) + 22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5) + 8cc471396e22039b0a4ca0ed484b85c2c3d0ff31 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6789-g8cc47139) + c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (v2.1.3~3) + 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) + b2d7d8731c84964c7afcab74cc9f2acb23d7fd71 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (remotes/origin/feature/tendency_cleanup) + 3e5db3750e382976b4d6011c6d9c1437b0cf34f6 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-502-g3e5db37) + 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/master-60-g38d2177a) + 7d9597c471470be061ab8853dd62bcd03f15d6aa UFSATM/upp (upp_v10.2.0-354-g7d9597c4) +-5afd607642ae0fd6a53b137230336386beb47ce6 UFSATM/upp/sorc/libIFI.fd +-3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd + dcc9da76c2d32c6ca7a5318a56db033295d9f43c WW3 (6.07.1-531-gdcc9da76) + 6b2d73f28d946eed74e474db22769602e41c422b fire_behavior (v0.2.0-71-g6b2d73f) + ae192f119b8614b4476a1b04ba55f6fb93e2953d stochastic_physics (ufs-v2.0.0-298-gae192f1) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20260402 +COMPARISON DIRECTORY: /scratch3/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1758390 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list.rerun +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2sw_pdlib_intel' [14:11, 13:05] ( 1 warnings 1078 remarks ) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:33, 01:22](3017 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:28, 00:50](2462 MB) + +PASS -- COMPILE 'hafs_mom6w_intelllvm' [09:11, 07:57] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intelllvm' [25:24, 17:22](1095 MB) + +SYNOPSIS: +Starting Date/Time: 20260403 16:02:56 +Ending Date/Time: 20260403 16:55:55 +Total Time: 00h:53m:06s +Compiles Completed: 2/2 +Tests Completed: 3/3 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF URSA REGRESSION TESTING LOG==== From 056a6b53a2915e3b0f89f0ba78891cc37768501d Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Sat, 4 Apr 2026 12:50:03 +0000 Subject: [PATCH 41/43] Acorn RT Log: Passed --- tests/logs/RegressionTests_acorn.log | 485 +++++++++++++-------------- 1 file changed, 241 insertions(+), 244 deletions(-) diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 8f5510d2ba..1e73b0dbdc 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: -bbabd4cab004ed737928136f439a59c6d636a350 +df65a67bf8814c2359e0e5779e8d08a40e312593 Submodule hashes used in testing: fc153862cfcc01fc4da513a2ff56af0bbd1234e0 AQM (v0.2.0-73-gfc15386) @@ -9,22 +9,21 @@ Submodule hashes used in testing: 9f53664ef2e607ad25d6b6c939f2eac9ec818ee6 CDEPS-interface/CDEPS (cdeps0.4.17-432-g9f53664) def9c53b17d6722cc9991ba72ddae8ad2d5d25d9 CICE-interface/CICE (CICE6.0.0-445-gdef9c53) 4954a6f9033f78e5c32bf33780384cbf2d0843e6 CICE-interface/CICE/icepack (Icepack1.1.0-225-g4954a6f) - 33d42f9b1b2eb50900faa58a18677079aeff8a73 CMEPS-interface/CMEPS (cmeps_v0.4.1-2333-g33d42f9) + 9a75264d39a331baeb54fb1a426e198d8b543119 CMEPS-interface/CMEPS (remotes/origin/feature/tendency_cleanup) 69049ec0c26b3160c3dbe1980b2feb78470a37a6 CMakeModules (v1.0.0-36-g69049ec) 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 72563d619896492a9c61e2b7cdbe6a9cdbbd7920 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10791-g72563d619) 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) - d802fee18ae15ba2686be134d6f78b49b41c23b9 UFSATM (remotes/origin/fix/IAU_avg_at_f000) + b988189f8eaf02db6596553c979cceb6c70df95e UFSATM (remotes/origin/feature/tendency_cleanup) 22bc1a5de8a19996310aedc3482931616cd74a1b UFSATM/ccpp/framework (2025-10-15-dev-5-g22bc1a5) - eee1edf1c03d5d96abe379c167a1e2dd67a8c136 UFSATM/ccpp/physics (EP4-2263-geee1edf1) + 8cc471396e22039b0a4ca0ed484b85c2c3d0ff31 UFSATM/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-6789-g8cc47139) 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 (remotes/origin/ccpp/dev) + b2d7d8731c84964c7afcab74cc9f2acb23d7fd71 UFSATM/ccpp/physics/physics/SFC_Layer/MYNN/MYNN (remotes/origin/feature/tendency_cleanup) 3e5db3750e382976b4d6011c6d9c1437b0cf34f6 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-502-g3e5db37) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/master-60-g38d2177a) 7d9597c471470be061ab8853dd62bcd03f15d6aa UFSATM/upp (upp_v10.2.0-354-g7d9597c4) @@ -41,261 +40,259 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20260324 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1714820 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20260402 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_399386 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:32, 16:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_gefs_intel' [33:04, 16:51](4084 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [24:52, 07:39](3884 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_intel' [18:31, 15:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:15, 13:01](1899 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:14, 13:52](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:02, 06:13](1074 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [13:17, 06:16](1936 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:01, 15:12](1877 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [17:29, 14:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:23, 11:08](2195 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [15:20, 06:06](1358 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:20, 04:31] ( 355 warnings 1 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [18:06, 12:44](2240 MB) - -PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [07:20, 04:40] ( 355 warnings 324 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:04, 20:07](1937 MB) - -PASS -- COMPILE 's2swa_intel' [19:33, 16:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:52, 08:22](3355 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:11, 08:10](3355 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:17, 04:45](3235 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:56, 07:35](3558 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:44, 08:15](3343 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:12, 06:43](3292 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:20, 08:19](3355 MB) - -PASS -- COMPILE 's2swl_intel' [18:30, 15:33] ( 1 warnings 2 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [16:21, 07:11](2007 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [11:16, 03:59](1378 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:32, 14:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:03, 05:10](1986 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:30, 15:36] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_5deg_intel' [10:25, 05:58](2885 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:21, 02:06](2900 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [07:21, 01:21](2303 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [05:48, 01:17](2115 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [05:47, 00:53](2113 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [05:47, 00:31](1448 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [06:47, 01:05](2113 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [05:48, 01:00](2113 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [05:47, 00:42](1450 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [06:53, 00:41](2037 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [06:48, 00:46](2040 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:46, 00:46](1395 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:27, 10:29] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:45, 02:23](1564 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:49, 02:37](1573 MB) -PASS -- TEST 'control_latlon_intel' [05:40, 02:30](1575 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:46, 02:36](1574 MB) -PASS -- TEST 'control_c48_intel' [09:52, 06:20](1595 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:47, 05:51](719 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:53, 06:30](1591 MB) -PASS -- TEST 'control_c192_intel' [12:07, 07:00](1704 MB) -PASS -- TEST 'control_c384_intel' [56:15, 08:31](2000 MB) -PASS -- TEST 'control_c384gdas_intel' [58:48, 09:30](1145 MB) -PASS -- TEST 'control_stochy_intel' [04:36, 01:49](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [09:40, 01:06](394 MB) -PASS -- TEST 'control_lndp_intel' [04:36, 01:46](632 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [08:29, 02:56](912 MB) -PASS -- TEST 'control_p8_intel' [10:25, 02:50](1853 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:07, 03:03](1854 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:43, 02:56](1854 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [13:42, 02:50](1874 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [14:06, 03:08](1884 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [14:13, 02:25](2430 MB) -PASS -- TEST 'control_restart_p8_intel' [10:50, 01:43](1012 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:18, 02:52](1850 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [10:47, 01:41](1012 MB) -PASS -- TEST 'control_decomp_p8_intel' [12:39, 02:50](1844 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:18, 02:43](1929 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:29, 04:57](1857 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:41, 04:07](1905 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:37, 02:58](1869 MB) -PASS -- TEST 'merra2_thompson_intel' [14:04, 03:25](1855 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [09:38, 04:41](1861 MB) -PASS -- TEST 'regional_control_intel' [08:17, 04:54](878 MB) -PASS -- TEST 'regional_restart_intel' [07:53, 02:50](879 MB) -PASS -- TEST 'regional_decomp_intel' [10:55, 05:24](881 MB) -PASS -- TEST 'regional_2threads_intel' [10:52, 03:00](996 MB) -PASS -- TEST 'regional_noquilt_intel' [09:52, 04:51](1169 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:52, 04:51](872 MB) -PASS -- TEST 'regional_wofs_intel' [11:56, 06:43](1607 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:24, 09:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [11:13, 03:59](1881 MB) - -PASS -- COMPILE 'rrfs_intel' [11:24, 08:51] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [10:14, 03:54](1016 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:21, 04:08](1188 MB) -PASS -- TEST 'rap_decomp_intel' [09:25, 04:05](1018 MB) -PASS -- TEST 'rap_2threads_intel' [08:23, 03:27](1080 MB) -PASS -- TEST 'rap_restart_intel' [08:14, 02:17](765 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:37, 03:47](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:30, 03:52](1010 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:14, 02:05](763 MB) -PASS -- TEST 'hrrr_control_intel' [09:11, 03:44](1004 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:22, 03:40](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:22, 03:17](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:34, 02:04](758 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:02, 06:35](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:42, 08:29](1967 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:40, 08:02](1961 MB) - -PASS -- COMPILE 'csawmg_intel' [11:24, 08:39] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [11:56, 06:39](959 MB) -PASS -- TEST 'control_ras_intel' [08:34, 03:25](665 MB) - -PASS -- COMPILE 'wam_intel' [11:23, 08:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [17:14, 12:27](1650 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 04:57] ( 490 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:40, 02:37](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:39, 02:41](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:34, 03:29](813 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:35, 03:02](815 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:58, 04:45](1105 MB) -PASS -- TEST 'control_ras_debug_intel' [06:32, 03:12](822 MB) -PASS -- TEST 'control_diag_debug_intel' [06:38, 03:10](1669 MB) -PASS -- TEST 'control_debug_p8_intel' [08:02, 03:09](1894 MB) -PASS -- TEST 'regional_debug_intel' [22:10, 18:35](934 MB) -PASS -- TEST 'rap_control_debug_intel' [10:36, 05:38](1186 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:38, 05:36](1184 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:36, 05:31](1182 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:37, 05:43](1182 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:35, 05:38](1183 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:44, 05:51](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:37, 05:45](1184 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:34, 05:48](1183 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:35, 05:56](1191 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:36, 05:33](1184 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:35, 05:30](1184 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:35, 05:38](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:41, 08:58](1182 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:36, 05:32](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:27, 09:46](1194 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:20, 03:33] ( 454 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [20:18, 14:36](1694 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:26, 08:19] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:21, 03:51](1023 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:37, 03:14](889 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:11, 03:07](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:25, 02:53](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:49, 02:47](927 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:51, 03:26](890 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:03, 01:54](734 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:34, 01:44](724 MB) -PASS -- TEST 'conus13km_control_intel' [07:24, 02:58](1017 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:02, 01:22](1139 MB) -PASS -- TEST 'conus13km_decomp_intel' [07:05, 02:59](1027 MB) -PASS -- TEST 'conus13km_restart_intel' [06:11, 01:52](687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [12:25, 08:15] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_gl_inline_intel' [07:14, 02:07](698 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:25, 08:27] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:54, 04:06](922 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:19, 03:36] ( 327 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:34, 05:28](1065 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:36, 05:26](1067 MB) -PASS -- TEST 'conus13km_debug_intel' [27:30, 24:01](1076 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [27:28, 24:05](796 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [18:16, 13:30](1199 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [28:24, 24:43](1105 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:25, 24:06](1167 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:21, 03:36] ( 327 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:37, 05:33](1100 MB) - -PASS -- COMPILE 'hafsw_intel' [17:31, 12:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [16:07, 04:32](691 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [18:12, 04:39](905 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [18:51, 03:34](1042 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:08, 11:25](785 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:02, 05:28](459 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [21:20, 06:34](469 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [18:04, 03:06](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [32:14, 07:45](421 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:51, 03:51](493 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:07, 03:42](491 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [17:44, 01:31](404 MB) -PASS -- TEST 'gnv1_nested_intel' [09:19, 03:45](1691 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:29, 10:16] ( 1 warnings ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:31, 05:25](774 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:28, 09:17] ( 1 warnings ) -PASS -- TEST 'hafs_regional_docn_intel' [15:07, 06:41](746 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:06, 06:48](725 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [18:33, 13:40] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:26, 02:54](1567 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:28, 02:04](1567 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:27, 02:32](686 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:27, 02:52](673 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 02:39](671 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 02:47](1567 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:34, 07:06](1365 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:30, 06:36](679 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:24, 02:53](1565 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:27, 04:55](4520 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:30, 05:07](4521 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:31, 16:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_gefs_intel' [35:16, 18:48](4094 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [26:01, 08:18](3898 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_intel' [17:29, 15:04] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:02, 13:08](1898 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 14:02](1941 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:01, 06:12](1074 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:22, 06:24](1934 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:19, 15:16](1873 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [17:30, 14:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:31, 11:57](2198 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [19:36, 06:16](1361 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:19, 04:36] ( 350 warnings 1 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [18:13, 12:56](2239 MB) + +PASS -- COMPILE 's2sw_32bit_pdlib_debug_intel' [07:19, 04:41] ( 350 warnings 324 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:06, 20:41](1936 MB) + +PASS -- COMPILE 's2swa_intel' [19:32, 17:04] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:58, 08:52](3353 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:17, 08:51](3353 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:20, 05:04](3234 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:56, 08:19](3567 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:37, 08:51](3343 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:10, 07:12](3292 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:15, 09:00](3354 MB) + +PASS -- COMPILE 's2swl_intel' [18:32, 15:40] ( 1 warnings 2 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [16:13, 07:59](2005 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [11:35, 04:20](1373 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:31, 14:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:04, 05:51](1989 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:32, 15:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_5deg_intel' [10:26, 06:09](2891 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:28, 02:06](2901 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [07:21, 01:10](2300 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [05:48, 01:26](2117 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [05:49, 00:54](2114 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [06:51, 00:47](1449 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [06:48, 01:04](2106 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [05:47, 00:41](2112 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [06:49, 00:46](1450 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [06:51, 00:53](2041 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [06:51, 00:48](2042 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [05:52, 00:30](1395 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:26, 10:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:46, 02:38](1566 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:55, 02:39](1575 MB) +PASS -- TEST 'control_latlon_intel' [05:40, 02:35](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:48, 02:37](1574 MB) +PASS -- TEST 'control_c48_intel' [09:52, 06:23](1593 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:54, 05:54](720 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:52, 06:34](1591 MB) +PASS -- TEST 'control_c192_intel' [13:07, 07:20](1703 MB) +PASS -- TEST 'control_c384_intel' [57:21, 08:53](1995 MB) +PASS -- TEST 'control_c384gdas_intel' [00:50, 09:57](1147 MB) +PASS -- TEST 'control_stochy_intel' [05:36, 01:57](632 MB) +PASS -- TEST 'control_stochy_restart_intel' [09:40, 01:14](397 MB) +PASS -- TEST 'control_lndp_intel' [04:36, 01:52](636 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [08:30, 03:01](913 MB) +PASS -- TEST 'control_p8_intel' [13:54, 03:06](1852 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:09, 03:06](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:54, 03:03](1857 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [13:44, 03:01](1875 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [14:10, 03:06](1884 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [14:15, 02:23](2429 MB) +PASS -- TEST 'control_restart_p8_intel' [10:51, 01:52](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:19, 02:58](1854 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [11:09, 01:39](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:19, 03:01](1846 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:06, 02:54](1929 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:28, 05:01](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:43, 04:16](1907 MB) +PASS -- TEST 'control_p8_mynn_intel' [13:36, 03:05](1868 MB) +PASS -- TEST 'merra2_thompson_intel' [12:07, 03:43](1856 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [09:57, 04:44](1861 MB) +PASS -- TEST 'regional_control_intel' [09:19, 05:20](871 MB) +PASS -- TEST 'regional_restart_intel' [07:55, 02:50](879 MB) +PASS -- TEST 'regional_decomp_intel' [10:57, 05:36](886 MB) +PASS -- TEST 'regional_2threads_intel' [10:55, 03:09](993 MB) +PASS -- TEST 'regional_noquilt_intel' [10:54, 04:59](1168 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:53, 05:16](880 MB) +PASS -- TEST 'regional_wofs_intel' [12:53, 07:28](1601 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:24, 09:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [10:31, 04:02](1883 MB) + +PASS -- COMPILE 'rrfs_intel' [11:23, 09:07] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [10:31, 03:49](1016 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:22, 04:15](1179 MB) +PASS -- TEST 'rap_decomp_intel' [09:42, 03:54](1015 MB) +PASS -- TEST 'rap_2threads_intel' [09:18, 03:37](1091 MB) +PASS -- TEST 'rap_restart_intel' [07:02, 02:13](768 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:13, 03:54](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:27, 03:58](1010 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:14, 02:05](765 MB) +PASS -- TEST 'hrrr_control_intel' [09:15, 03:43](1009 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:24, 03:43](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:27, 03:26](1073 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:33, 02:07](757 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:02, 06:38](1005 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:42, 08:45](1968 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:41, 08:13](1963 MB) + +PASS -- COMPILE 'csawmg_intel' [11:24, 08:36] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [13:00, 06:52](957 MB) + +PASS -- COMPILE 'wam_intel' [11:23, 08:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [19:17, 12:50](1650 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 04:55] ( 485 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:40, 02:38](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:42, 02:47](1615 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:35, 03:33](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:35, 03:10](820 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:58, 04:49](1111 MB) +PASS -- TEST 'control_diag_debug_intel' [06:39, 03:11](1673 MB) +PASS -- TEST 'control_debug_p8_intel' [07:04, 03:03](1900 MB) +PASS -- TEST 'regional_debug_intel' [22:12, 18:45](953 MB) +PASS -- TEST 'rap_control_debug_intel' [09:36, 05:51](1186 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:37, 05:33](1188 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:43, 05:42](1191 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:35, 05:43](1190 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:35, 05:43](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:44, 05:55](1275 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:35, 05:45](1188 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:36, 05:43](1186 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:34, 05:44](1197 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:33, 05:35](1185 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:33, 05:36](1186 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:33, 05:39](1188 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:36, 08:58](1188 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:33, 05:42](1191 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:25, 09:41](1193 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:21, 03:35] ( 449 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [20:18, 14:50](1696 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:26, 08:22] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:21, 04:03](1037 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:06, 03:11](889 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:04, 03:08](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:25, 02:56](940 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:53, 02:49](931 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:16, 03:17](892 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:03, 01:55](732 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:38, 01:44](725 MB) +PASS -- TEST 'conus13km_control_intel' [07:22, 02:56](1020 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:01, 01:16](1140 MB) +PASS -- TEST 'conus13km_decomp_intel' [07:07, 02:58](1028 MB) +PASS -- TEST 'conus13km_restart_intel' [06:11, 01:48](688 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_cdeps_intel' [12:26, 08:22] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_gl_inline_intel' [05:10, 02:00](705 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:25, 08:24] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:53, 04:09](914 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:19, 03:40] ( 323 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:34, 05:38](1068 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:34, 05:31](1068 MB) +PASS -- TEST 'conus13km_debug_intel' [27:39, 24:21](1101 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [28:34, 24:32](812 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:17, 13:46](1203 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [28:26, 25:05](1109 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:27, 24:28](1149 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:20, 03:34] ( 323 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:37, 05:32](1101 MB) + +PASS -- COMPILE 'hafsw_intel' [16:29, 12:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [17:07, 04:38](695 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [22:15, 04:50](903 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:52, 03:47](1038 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:07, 11:36](769 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:09, 05:44](464 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [22:17, 06:50](473 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [19:05, 03:09](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [37:20, 10:08](426 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:57, 03:52](495 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:07, 03:44](491 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [18:46, 01:33](404 MB) +PASS -- TEST 'gnv1_nested_intel' [09:14, 03:47](1688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:29, 10:30] ( 1 warnings ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:39, 05:20](769 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:26, 08:53] ( 1 warnings ) +PASS -- TEST 'hafs_regional_docn_intel' [15:11, 06:57](726 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:12, 07:05](723 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [18:32, 13:39] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:26, 02:59](1564 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:27, 01:56](1568 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:27, 02:33](673 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:26, 02:54](686 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 02:46](672 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:25, 02:47](1567 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:33, 06:50](1366 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:32, 06:40](683 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:25, 03:04](1565 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:28, 04:56](4523 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:29, 05:04](4521 MB) PASS -- COMPILE 'datm_cdeps_land_intel' [05:18, 00:53] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [08:46, 01:10](303 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:37, 00:59](437 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:34, 00:44](438 MB) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [08:44, 01:16](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [08:37, 00:55](438 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:34, 00:46](438 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:32, 14:24] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:41, 03:39](1905 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:32, 14:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:36, 03:54](1908 MB) -PASS -- COMPILE 'atml_intel' [16:28, 10:00] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [12:18, 03:21](1860 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:00, 02:06](1030 MB) +PASS -- COMPILE 'atml_intel' [15:27, 10:06] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [12:17, 03:21](1862 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:01, 02:03](1030 MB) -PASS -- COMPILE 'atml_debug_intel' [08:21, 04:29] ( 497 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:21, 05:41](1906 MB) +PASS -- COMPILE 'atml_debug_intel' [09:21, 04:25] ( 492 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:19, 05:30](1903 MB) -PASS -- COMPILE 'atmw_intel' [13:27, 08:52] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:06, 02:02](1874 MB) +PASS -- COMPILE 'atmw_intel' [14:26, 09:11] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:07, 02:05](1871 MB) -PASS -- COMPILE 'atmaero_intel' [19:35, 15:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:55, 04:39](3231 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [12:36, 05:13](3112 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:38, 05:12](3116 MB) +PASS -- COMPILE 'atmaero_intel' [21:35, 15:53] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [13:00, 04:56](3228 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [13:37, 05:40](3108 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:39, 06:15](3115 MB) -PASS -- COMPILE 'atmaq_intel' [13:27, 09:03] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [21:51, 14:47](2397 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [26:01, 19:17](2455 MB) +PASS -- COMPILE 'atmaq_intel' [13:26, 09:02] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [24:03, 16:10](2404 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [28:44, 20:59](2449 MB) -PASS -- COMPILE 'atmaq_debug_intel' [06:18, 03:42] ( 471 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [46:06, 40:16](1864 MB) +PASS -- COMPILE 'atmaq_debug_intel' [07:20, 03:41] ( 466 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [49:02, 41:08](1979 MB) SYNOPSIS: -Starting Date/Time: 20260327 16:48:17 -Ending Date/Time: 20260327 19:08:03 -Total Time: 02h:20m:14s +Starting Date/Time: 20260404 01:58:15 +Ending Date/Time: 20260404 04:21:24 +Total Time: 02h:23m:39s Compiles Completed: 33/33 -Tests Completed: 176/176 +Tests Completed: 174/174 NOTES: A file 'test_changes.list' was generated but is empty. From 9ee32b45ba07ee16ae6a34129a0484d83341e629 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Mon, 6 Apr 2026 12:59:49 -0400 Subject: [PATCH 42/43] revert .gitmodule and update UFSATM and CMEPS --- .gitmodules | 12 ++++-------- CMEPS-interface/CMEPS | 2 +- UFSATM | 2 +- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.gitmodules b/.gitmodules index 9736ce8e25..b881f89393 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,7 @@ [submodule "UFSATM"] path = UFSATM - #url = https://github.com/NOAA-EMC/ufsatm - #branch = develop - url = https://github.com/grantfirl/fv3atm - branch = feature/tendency_cleanup + url = https://github.com/NOAA-EMC/ufsatm + branch = develop [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 @@ -18,10 +16,8 @@ branch = develop [submodule "CMEPS"] path = CMEPS-interface/CMEPS - #url = https://github.com/NOAA-EMC/CMEPS - #branch = emc/develop - url = https://github.com/grantfirl/CMEPS - branch = feature/tendency_cleanup + url = https://github.com/NOAA-EMC/CMEPS + branch = emc/develop [submodule "HYCOM"] path = HYCOM-interface/HYCOM url = https://github.com/NOAA-EMC/HYCOM-src diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 9a75264d39..fc8b9140e0 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 9a75264d39a331baeb54fb1a426e198d8b543119 +Subproject commit fc8b9140e08465dcb5eab48056d4d5636c0e1716 diff --git a/UFSATM b/UFSATM index b988189f8e..972a45054d 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit b988189f8eaf02db6596553c979cceb6c70df95e +Subproject commit 972a45054d579ff6f0c6cdb751452d29b25c133f From f0bfae5b97fccfe032fe54c33fc2f44e3e46b67c Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Mon, 6 Apr 2026 13:08:31 -0400 Subject: [PATCH 43/43] remove HYCOM from .gitmodules --- .gitmodules | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitmodules b/.gitmodules index b881f89393..82a96cfeb7 100644 --- a/.gitmodules +++ b/.gitmodules @@ -18,10 +18,6 @@ path = CMEPS-interface/CMEPS url = https://github.com/NOAA-EMC/CMEPS branch = emc/develop -[submodule "HYCOM"] - path = HYCOM-interface/HYCOM - url = https://github.com/NOAA-EMC/HYCOM-src - branch = emc/develop [submodule "MOM6"] path = MOM6-interface/MOM6 url = https://github.com/NOAA-EMC/MOM6